| from_address | VARCHAR(16777216) | Address where the token is being transferred from. |
| to_address | VARCHAR(16777216) | Address where the token is being transferred to. |
| token_acc_from | VARCHAR(16777216) | Token account sender address. |
| token_acc_to | VARCHAR(16777216) | Token account recipient address. |
| mint | VARCHAR(16777216) | Mint address of the token transferred. |
| decimals | NUMBER(38,0) | The number of decimal points the token amounts are represented in. This is used to calculate the normalized amount of a token by taking the raw amount divided by 10^decimal_points. |
| token_name | VARCHAR(16777216) | Full name of the token (e.g. “USD Coin”, “Wrapped Ether”). |
| symbol | VARCHAR(16777216) | Ticker symbol of this token or asset. Short alias for token_symbol used in tables that preserve the original blockchain field naming convention. |
| raw_amount | FLOAT | Raw of amount of token (unnormalized) transferred. Note that any fee withheld is not deducted from this amount. |
| raw_amount_str | VARCHAR(16777216) | Raw of amount of token (unnormalized) transferred, in string format. |
| amount | FLOAT | Amount of token transferred, normalized. |
| amount_str | VARCHAR(16777216) | Amount of token transferred, normalized in string format. |
| usd_amount | FLOAT | USD value of the token amount transferred. |
| usd_exchange_rate | VARCHAR(16777216) | Price of the token at the time of transfer. |
| is_dex_price | BOOLEAN | Whether the USD price used for this record was sourced from Solana DEX data rather than an external market feed (e.g. CoinGecko). |
| signer | VARCHAR(16777216) | Primary signing account (fee payer) of the transaction. This is the account that authorized the transaction and paid transaction fees. |
| block_slot | NUMBER(38,0) | Block slot of the transfer. |
| block_height | NUMBER(38,0) | Block height of the transfer |
| block_timestamp | TIMESTAMP_NTZ(9) | Block timestamp of the transfer. |
| block_hash | VARCHAR(16777216) | Block hash of the transfer. |
| txn_id | VARCHAR(16777216) | Transaction ID of the transfer. |
| txn_index | NUMBER(38,0) | Transaction Index of the transfer. |
| instruction_index | NUMBER(38,0) | Transfer instruction index. |
| inner_instruction_index | NUMBER(38,0) | Transfer inner instruction index. |
| program_name | VARCHAR(16777216) | Program name of the transfer transaction. Includes system and spl-token |
| program_id | VARCHAR(16777216) | Base58-encoded public key of the Solana program that processed this instruction (e.g. TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA for SPL Token). |
| type | VARCHAR(16777216) | Instruction type. Includes transfer, transferChecked, transferCheckedWithFee, transferWithSeed, createAccount, createAccountWithSeed, closeAccount, setAuthority, mintTo, mintToChecked, burn, burnChecked. See Transfer types for how it combines with program_name and transfer_type. |
| transfer_type | VARCHAR(16777216) | Token transfer type. Includes sol_transfer, spl_token_transfer, token_account_transfer, account_closure_sol_balance_transfer |
| outer_program_id | VARCHAR(16777216) | Program ID of the outermost instruction that invoked this inner instruction on Solana |
| unique_id | VARCHAR(16777216) | Unique id of the transfer. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |