| bridge | VARCHAR(16777216) | Name of the cross-chain bridge protocol for this Tron transfer. |
| protocol | VARCHAR(16777216) | Specific version or variant of the protocol (e.g. uniswap_v3, aave_v2, stargate_v2). Qualifies the project field with version information. |
| instruction_name | VARCHAR(16777216) | Human-readable name of a decoded program instruction (e.g. swap, deposit, transfer). Used in Solana decoded instruction tables. |
| program_id | VARCHAR(16777216) | Base58-encoded public key of the Solana program that processed this instruction (e.g. TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA for SPL Token). |
| sender_address | VARCHAR(16777216) | Address that initiated the bridge transfer on the source chain. |
| recipient_address | VARCHAR(16777216) | Address that will receive the tokens on the destination chain. May be null if the destination address is not emitted in the source-chain event. |
| token_in_address | VARCHAR(16777216) | Contract address of the token being deposited or locked on the source chain. |
| token_in_name | VARCHAR(16777216) | Full name of the token being deposited on the source chain. |
| token_in_symbol | VARCHAR(16777216) | Symbol of the token being deposited on the source chain. |
| token_in_amount_raw | VARCHAR(16777216) | Raw amount of tokens deposited (not decimal-adjusted). |
| token_in_amount_str | VARCHAR(16777216) | Decimal-adjusted amount of the token deposited on the source chain, as a string for full precision. |
| token_in_amount | FLOAT | Decimal-adjusted amount of tokens deposited. |
| usd_in_amount | FLOAT | USD value of the tokens deposited on the source chain. |
| token_out_address | VARCHAR(16777216) | Contract address of the token being received or minted on the destination chain. |
| token_out_name | VARCHAR(16777216) | Full name of the token being received on the destination chain. |
| token_out_symbol | VARCHAR(16777216) | Symbol of the token received on the destination chain. |
| token_out_amount_raw | VARCHAR(16777216) | Raw amount of tokens received on the destination chain (not decimal-adjusted). |
| token_out_amount_str | VARCHAR(16777216) | Decimal-adjusted amount of the token received on the destination chain, as a string for full precision. |
| token_out_amount | FLOAT | Decimal-adjusted amount of tokens received on the destination chain. |
| usd_out_amount | FLOAT | USD value of the tokens received on the destination chain. |
| usd_amount | FLOAT | USD value of the token amount at the time of the event, computed using the hourly USD exchange rate. |
| direction | VARCHAR(16777216) | Direction of this transfer relative to the chain where the event occurred. outbound = tokens leaving the chain; inbound = tokens arriving on the chain. |
| source_chain_id | VARCHAR(16777216) | Numeric EVM chain ID of the source chain. Null for non-EVM chains that do not use chain IDs. |
| source_chain | VARCHAR(16777216) | Slug of the chain where the tokens originated. |
| destination_chain_id | VARCHAR(16777216) | Numeric EVM chain ID of the destination chain. Null for non-EVM chains. |
| destination_chain | VARCHAR(16777216) | Slug of the chain where the tokens are being sent. |
| extra_fields | VARIANT | Protocol-specific fields as a JSON object. Keys: transfer_uuid (transfer identifier, uint128 as varchar, from the event). |
| parent_tx_signer | VARCHAR(16777216) | Fee payer address of the parent transaction that spawned this inner instruction |
| txn_id | VARCHAR(16777216) | Base58-encoded transaction signature on Solana. Analogous to transaction_hash on EVM chains. Uniquely identifies a transaction. |
| txn_index | NUMBER(38,0) | Zero-based position of this transaction within its slot. |
| instruction_index | NUMBER(38,0) | Zero-based position of this instruction within the transaction’s top-level instructions array. |
| inner_instruction_index | NUMBER(38,0) | Zero-based position of this inner instruction within its parent instruction’s inner instructions array. -1 for top-level instructions that are not inner instructions. |
| parent_instruction_program_id | VARCHAR(16777216) | Program ID of the parent instruction that invoked this inner instruction |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| block_slot | NUMBER(38,0) | Solana slot number in which this transaction was confirmed. Slots are the fundamental unit of time on Solana (analogous to block numbers on EVM chains). Not every slot produces a block. |
| block_height | NUMBER(38,0) | Number of confirmed blocks between this block and the genesis block (inclusive). Unlike block_slot, this only increments for slots that produced a block. |
| block_hash | VARCHAR(16777216) | Cryptographic hash of the block header that contains this record. Uniquely identifies a block. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row. Generated from the fields that uniquely identify the record (e.g. transaction hash + log index). Stable across full refreshes. |
| _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. |