| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| txn_index | NUMBER(38,0) | Zero-based position of this transaction within its slot. |
| txn_id | VARCHAR(88) | Base58-encoded transaction signature on Solana. Analogous to transaction_hash on EVM chains. Uniquely identifies a transaction. |
| project | VARCHAR(16777216) | Business name of the protocol being used (e.g. uniswap, aave, lido, paraswap). Consistent across verticals — every table with a project column uses this field to identify the top-level protocol brand. |
| 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. |
| aggregator | VARCHAR(16777216) | (Solana) Aggregator used for the trade. (Only applicable for Solana trades currently). |
| sender_address | VARCHAR(44) | Address that initiated the bridge transfer on the source chain. |
| to_address | VARCHAR(44) | Address that received in this event. For token transfers, the account whose balance increased. For transactions, the destination address (may be a smart contract). |
| sender_token_acc | VARCHAR(44) | SPL token account of the trade initiator (sender side of the swap). |
| to_token_acc | VARCHAR(44) | SPL token account of the trade recipient (destination side of the swap). |
| token_sold_mint | VARCHAR(44) | Mint address of the token sold in this swap. |
| token_sold_symbol | VARCHAR(16777216) | Ticker symbol of the token sold in this swap. |
| token_sold_amount_raw | FLOAT | Raw amount of the token sold, not adjusted for decimals. |
| token_sold_amount_raw_str | VARCHAR(16777216) | Raw amount of the token sold as a string for full precision. |
| token_sold_amount | FLOAT | Decimal-adjusted amount of the token sold (token_sold_amount_raw / 10^decimals). |
| token_sold_amount_str | VARCHAR(16777216) | Decimal-adjusted amount of the token sold as a string for full precision. |
| usd_sold_amount | FLOAT | USD value of the tokens sold in this swap, computed from the token_sold price at block time. |
| usd_sold_exchange_rate | FLOAT | USD price per unit of the sold token at trade time. |
| token_bought_mint | VARCHAR(44) | Mint address of the token acquired in this swap. |
| token_bought_symbol | VARCHAR(16777216) | Ticker symbol of the token bought in this swap. |
| token_bought_amount_raw | FLOAT | Raw amount of the token bought, not adjusted for decimals. |
| token_bought_amount_raw_str | VARCHAR(16777216) | Raw amount of the token bought as a string for full precision. |
| token_bought_amount | FLOAT | Decimal-adjusted amount of the token bought (token_bought_amount_raw / 10^decimals). |
| token_bought_amount_str | VARCHAR(16777216) | Decimal-adjusted amount of the token bought as a string for full precision. |
| usd_bought_amount | FLOAT | USD value of the tokens bought in this swap, computed from the token_bought price at block time. |
| usd_bought_exchange_rate | FLOAT | USD price per unit of the bought token at trade time. |
| usd_amount | FLOAT | USD value of the token amount at the time of the event, computed using the hourly USD exchange rate. |
| tokens_sold_symbols | VARIANT | Array of ticker symbols for tokens sold across all hops of this multi-hop trade. |
| tokens_bought_symbols | VARIANT | Array of ticker symbols for tokens acquired across all hops of this multi-hop trade. |
| token_pairs | VARIANT | Array of token pair strings (e.g. ["SOL/USDC"]) representing the swap legs in this trade. |
| signer | VARCHAR(44) | 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) | 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(44) | Cryptographic hash of the block header that contains this record. Uniquely identifies a block. |
| 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. |
| program_id | VARCHAR(44) | Base58-encoded public key of the Solana program that processed this instruction (e.g. TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA for SPL Token). |
| accounts | VARIANT | Array of account addresses referenced by this instruction |
| data | VARCHAR(16777216) | ABI-encoded non-indexed parameters of an event log, or the calldata of a transaction/trace. Decode using the relevant ABI to extract individual field values. |
| selector | VARCHAR(16777216) | First 4 bytes of the transaction calldata, identifying the function being called. Null for plain native-currency transfers. Also known as the function selector. |
| 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. |
| pool | VARCHAR(44) | Address of the liquidity pool associated with this position or trade. |
| _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. |
| outer_program_id | VARCHAR(44) | Program ID of the outermost instruction that invoked this inner instruction on Solana |
| tx_base_fee | NUMBER(38,0) | Base transaction fee paid in lamports (5000 lamports per signature by default). |
| tx_priority_fee | NUMBER(38,0) | Priority fee paid above the base fee in lamports, set via ComputeBudget instructions. |
| tx_total_fee | NUMBER(38,0) | Total transaction fee in lamports (base + priority). |
| tx_account_keys | VARIANT | Array of all account addresses referenced in the transaction. |
| tx_mint_to_decimals | VARIANT | JSON map of mint addresses to their decimal precision for all tokens referenced in the transaction. |
| tx_token_accounts | VARIANT | JSON map of SPL token account balance changes per account in this transaction. |
| tx_sol_amounts | VARIANT | JSON map of SOL balance changes per account in this transaction. |