| token_type | VARCHAR(4) | Token standard for the asset. One of: erc20 (fungible), erc721 (non-fungible), erc1155 (semi-fungible), or the native currency symbol (e.g. eth, matic, bnb). |
| mint | VARCHAR(16777216) | Base58-encoded mint address of the SPL token. Analogous to token_address on EVM chains. Each mint uniquely identifies a fungible or non-fungible token on Solana. |
| metadata_acc | VARCHAR(16777216) | Token Metadata program account address for this NFT, storing name, symbol, URI, and other on-chain metadata. |
| name | VARCHAR(16777216) | Market display name. |
| 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. |
| uri | VARCHAR(16777216) | URI pointing to this token’s off-chain metadata JSON (IPFS, Arweave, or HTTP endpoint). |
| seller_fee_basis_points | NUMBER(38,0) | Creator royalty in basis points (0–10000, e.g. 500 = 5%). Paid to creators on secondary sales when enforced by the marketplace. |
| creators | VARIANT | Array of creator objects for this token, each with address and share (royalty percentage). Defined in the Token Metadata program. |
| collection | VARIANT | Mint address of the NFT collection this token belongs to, as set in the Token Metadata program’s collection field. |
| primary_sale_happened | BOOLEAN | Whether this NFT has been sold at least once in a primary sale (minter → first buyer). Set by the Token Metadata program. |
| collection_details | VARIANT | Structured collection metadata including verified status and collection size. |
| edition_acc | VARCHAR(16777216) | Master Edition account address for this NFT (Token Metadata program standard). Indicates whether the token is a master edition or print edition. |
| token_standard | VARCHAR(16777216) | Token standard of the NFT. erc721 for non-fungible tokens (unique IDs, balance 0 or 1), erc1155 for semi-fungible tokens (multiple copies per ID). |
| merkle_tree | VARCHAR(44) | Address of the merkle tree for a cNFT |
| leaf_index | NUMBER(38,0) | Leaf index of the asset for a cNFT |
| last_updated_instruction | VARCHAR(16777216) | Identifier of the most recent instruction decoded using this IDL. |
| last_updated_block_slot | NUMBER(38,0) | Slot number of the block in which this stake account was last updated |
| last_updated_block_height | NUMBER(38,0) | Block height of the block in which this stake account was last updated |
| last_updated_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block in which this stake account was last updated |
| last_updated_block_hash | VARCHAR(44) | Block hash of the block in which this stake account was last updated |
| last_updated_txn_id | VARCHAR(88) | Transaction containing the most recently decoded instruction using this IDL. |
| last_updated_txn_index | NUMBER(38,0) | Position within the transaction of the most recently decoded instruction. |
| last_updated_pseudo_instruction_order | NUMBER(38,0) | Pseudo-instruction order of the most recently decoded instruction using this IDL. |
| last_updated_pseudo_global_order | NUMBER(38,0) | Pseudo-global order of the most recently decoded instruction using this IDL. |
| _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. |
| 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. |