| project | VARCHAR(16777216) | Project or application associated with this record. |
| protocol | VARCHAR(16777216) | Protocol associated with this record. |
| contract_address | VARCHAR(16777216) | Contract address that emitted this event. |
| event_name | VARCHAR(16777216) | Name of the onchain event that produced this record. |
| direction | VARCHAR(16777216) | Direction of the bridge transfer relative to this chain (inbound or outbound). |
| source_chain | VARCHAR(16777216) | Chain the bridged assets originated from. |
| destination_chain | VARCHAR(16777216) | Chain the bridged assets are being sent to. |
| sender_address | VARCHAR(16777216) | Address that initiated the transfer. |
| recipient_address | VARCHAR(16777216) | Address that received the transferred assets. |
| token_type | VARCHAR(16777216) | Token standard or category (e.g. erc20, erc721, native). |
| token_address | VARCHAR(16777216) | Contract address of the token. On EVM chains native currency is represented as the zero address. |
| token_name | VARCHAR(16777216) | Human-readable name of the token. |
| token_symbol | VARCHAR(16777216) | Ticker symbol of the token. |
| token_id | VARCHAR(16777216) | Identifier for non-fungible or semi-fungible tokens. Each unique token_id within a collection represents a distinct asset. |
| amount_raw | VARCHAR(16777216) | Token amount in the smallest indivisible unit (not decimal-adjusted). |
| amount | VARCHAR(16777216) | Decimal-adjusted amount of tokens involved in this record. |
| usd_amount | FLOAT | USD value of the amount, computed using the token’s USD exchange rate at the record’s timestamp. |
| fee_token_address | VARCHAR(16777216) | Contract address of the token used to pay the bridge fee. |
| fee_token_name | VARCHAR(16777216) | Name of the token used to pay the bridge fee. |
| fee_token_symbol | VARCHAR(16777216) | Symbol of the token used to pay the bridge fee. |
| fee_amount_raw | VARCHAR(16777216) | Bridge fee in the token’s smallest indivisible unit. |
| fee_amount | VARCHAR(16777216) | Decimal-adjusted bridge fee charged for this transfer. |
| fee_usd_amount | FLOAT | USD value of the bridge fee. |
| fee_details | VARIANT | Structured breakdown of the fees charged for this transfer. |
| extra_fields | VARIANT | Additional protocol-specific fields captured for this transfer. |
| transaction_from_address | VARCHAR(16777216) | Sender (msg.sender) of the transaction that produced this record. |
| transaction_to_address | VARCHAR(16777216) | Destination address of the transaction that produced this record (may be a smart contract). |
| transaction_hash | VARCHAR(16777216) | Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain. |
| transaction_index | NUMBER(38,0) | Zero-based position of the transaction within its block. The first transaction in a block has index 0. |
| log_index | NUMBER(38,0) | Zero-based position of this event log within its transaction. The first log emitted by a transaction has index 0. |
| block_number | NUMBER(38,0) | Sequential number of the block that contains this record. Starts at 0 (genesis) and increments by 1 per 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. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row, generated from the fields that uniquely identify the record. 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. |