| 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. |
| liquidity_pool_address | VARCHAR(16777216) | Contract address of the liquidity pool where this trade was executed. Null when the routing path is not emitted by the event (common for aggregator trades). |
| 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. |
| coin_sold_type | VARCHAR(16777216) | Type/address of the coin being sold |
| coin_sold_name | VARCHAR(16777216) | Name of the coin being sold |
| coin_sold_symbol | VARCHAR(16777216) | Symbol of the coin being sold |
| coin_sold_decimals | NUMBER(38,0) | Number of decimal places for the coin being sold |
| coin_sold_amount_raw_str | VARCHAR(16777216) | Raw amount of coin sold as string |
| coin_sold_amount_raw | FLOAT | Raw amount of coin sold as float |
| coin_sold_amount_str | VARCHAR(16777216) | Normalized amount of coin sold as string |
| coin_sold_amount | FLOAT | Normalized amount of coin sold as float |
| usd_sold_amount | FLOAT | USD value of the tokens sold in this swap, computed from the token_sold price at block time. |
| coin_bought_type | VARCHAR(16777216) | Type/address of the coin being bought |
| coin_bought_name | VARCHAR(16777216) | Name of the coin being bought |
| coin_bought_symbol | VARCHAR(16777216) | Symbol of the coin being bought |
| coin_bought_decimals | NUMBER(38,0) | Number of decimal places for the coin being bought |
| coin_bought_amount_raw_str | VARCHAR(16777216) | Raw amount of coin bought as string |
| coin_bought_amount_raw | FLOAT | Raw amount of coin bought as float |
| coin_bought_amount_str | VARCHAR(16777216) | Normalized amount of coin bought as string |
| coin_bought_amount | FLOAT | Normalized amount of coin bought as float |
| usd_bought_amount | FLOAT | USD value of the tokens bought in this swap, computed from the token_bought price at block time. |
| usd_amount | FLOAT | USD value of the token amount at the time of the event, computed using the hourly USD exchange rate. |
| transaction_hash | VARCHAR(16777216) | Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain. |
| transaction_version | NUMBER(38,0) | Monotonically increasing version number of the transaction on the Aptos blockchain. Aptos uses versions rather than block-scoped transaction indices. |
| event_index | NUMBER(38,0) | Zero-based index of this event within its transaction. The specific semantics depend on the chain — on Aptos this is the event_index within the transaction; on Cosmos this is within the message. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| 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. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |