Skip to main content

Table description

The solana.account_activity table contains information from the transactions table focused on account usage. Each row contains all information about an account’s usage in a transaction.

Table Schema

ColumnTypeDescription
block_dateDATEThe date of the block this account activity occurred in
block_slotBIGINTThe slot number of the block containing this activity
block_timeTIMESTAMPThe timestamp of the block this activity belongs to
addressVARCHARThe Solana account address involved in the transaction
tx_indexINTEGERThe index position of the transaction within the block
token_mint_addressVARCHARThe mint address of the SPL token involved, null for native SOL transfers
tx_idVARCHARThe unique transaction signature/ID
block_hashVARCHARThe hash of the block containing this transaction
tx_successBOOLEANWhether the transaction completed successfully
signedBOOLEANWhether this account signed the transaction
writableBOOLEANWhether this account had write access in the transaction
pre_balanceBIGINTThe account’s SOL balance (in lamports) before the transaction
post_balanceBIGINTThe account’s SOL balance (in lamports) after the transaction
balance_changeBIGINTThe net change in SOL balance (in lamports) from this transaction
pre_token_balanceDECIMAL(38,18)The account’s SPL token balance before the transaction (decimal-adjusted)
post_token_balanceDECIMAL(38,18)The account’s SPL token balance after the transaction (decimal-adjusted)
token_balance_changeDECIMAL(38,17)The net change in SPL token balance from this transaction (decimal-adjusted)
token_balance_ownerVARCHARThe owner address of the token account

Table Sample