| program_id | VARCHAR(44) | Base58-encoded public key of the Solana program that processed this instruction (e.g. TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA for SPL Token). |
| name | VARCHAR(16777216) | Market display name. |
| parsed_data | VARIANT | Decoded instruction data as a JSON object with human-readable field names and values, parsed using the program’s IDL. |
| hex_data | VARCHAR(16777216) | Raw binary instruction or event payload encoded as a hex string. |
| 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. |
| 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_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| block_hash | VARCHAR(16777216) | Cryptographic hash of the block header that contains this record. Uniquely identifies a block. |
| 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. |
| parsed | VARCHAR(16777216) | Parsed decoded representation of this instruction as JSON when the program IDL is known |
| program_name | VARCHAR(16777216) | Human-readable name of the Solana program (e.g. “spl_token”, “system_program”, “jupiter_v6”). Resolved from Allium’s program registry. |
| 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. |
| is_voting | BOOLEAN | True if this transaction is a validator vote transaction |
| parent_tx_success | BOOLEAN | True if the parent transaction of this inner instruction succeeded |
| parent_tx_signer | VARCHAR(16777216) | Fee payer address of the parent transaction that spawned this inner instruction |
| parent_instruction_program_id | VARCHAR(16777216) | Program ID of the parent instruction that invoked this inner instruction |
| 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. |