eth.wallet_lst_balances

SQL table schema for eth.wallet_lst_balances

Wallet balance changes for LSTs (Liquid Staking Tokens) on Ethereum.

Whenever the balance of a wallet holding one of the supported LSTs changes, a row is added to this dataset.

The supported LSTs are:

ColumnData TypeDescription

address

TEXT

The wallet address that contains this LST balance.

token_address

TEXT

The LST token address of the balance.

balance

DECIMAL

Scaled balance (from the token's decimals) of the token.

balance_delta

DECIMAL

The change in balance from the previous block, scaled by the token's decimals.

balance_raw

TEXT

The raw balance of the token as a decimal string.

balance_raw_hex

TEXT

The raw balance of the token as a hex string.

balance_raw_delta

TEXT

The change in balance from the previous block as a decimal string.

balance_raw_delta_hex

TEXT

The change in balance from the previous block as a hex string.

balance_usd

DECIMAL

The USD balance of this wallet at this block for the token.

balance_eth

DECIMAL

The ETH balance of the wallet at this block for the token.

block_timestamp

BIGINT

The timestamp of the block when this wallet had this balance.

block_number

BIGINT

The block number when this wallet had this balance.

block_hash

TEXT

The hash of the block when this wallet had this balance.

Last updated