| project | VARCHAR(16777216) | Name of the cross-chain messaging protocol project for this record. |
| protocol | VARCHAR(16777216) | Specific protocol or variant within the messaging project. |
| contract_id | VARCHAR(16777216) | Soroban contract address of the messaging protocol on Stellar. |
| message_id | VARCHAR(16777216) | Identifier of the cross-chain message emitted by the protocol. |
| direction | VARCHAR(16777216) | Direction of the message relative to Stellar (inbound for this table). |
| source_chain_raw | VARCHAR(16777216) | Raw source chain label as emitted by the protocol. |
| source_chain_id | VARCHAR(16777216) | Protocol-specific identifier of the source chain. |
| source_chain | VARCHAR(16777216) | Normalized name of the chain the message originated from. |
| destination_chain_raw | VARCHAR(16777216) | Raw destination chain label as emitted by the protocol. |
| destination_chain_id | VARCHAR(16777216) | Protocol-specific identifier of the destination chain. |
| destination_chain | VARCHAR(16777216) | Normalized name of the chain the message is being sent to. |
| sender_address | VARCHAR(16777216) | Address that sent the message on the source chain. |
| recipient_address | VARCHAR(16777216) | Address that receives the message on the destination chain. |
| token_address | VARCHAR(16777216) | Address of the token being transferred alongside the message. |
| token_symbol | VARCHAR(16777216) | Symbol of the token being transferred alongside the message. |
| amount_raw | VARCHAR(16777216) | Token amount in the smallest unit, not decimal-adjusted. |
| _token_decimals | NUMBER(38,0) | Number of decimals used to normalize the token amount. |
| amount | VARCHAR(16777216) | Token amount normalized by the token’s decimal precision. |
| _usd_amount | FLOAT | Intermediate raw USD value of the transferred amount. |
| usd_amount | FLOAT | USD value of the transferred token amount. |
| fee_token_address | VARCHAR(16777216) | Address of the token used to pay the messaging fee. |
| fee_token_symbol | VARCHAR(16777216) | Symbol of the token used to pay the messaging fee. |
| fee_amount_raw | VARCHAR(16777216) | Fee amount in the fee token’s smallest unit, not decimal-adjusted. |
| _fee_decimals | NUMBER(38,0) | Number of decimals used to normalize the fee amount. |
| fee_amount | VARCHAR(16777216) | Fee amount normalized by the fee token’s decimal precision. |
| _fee_usd | FLOAT | Intermediate raw USD value of the fee. |
| fee_usd_amount | FLOAT | USD value of the messaging fee. |
| fee_details | VARIANT | JSON breakdown of fee components for this message. |
| message_details | VARIANT | JSON blob of additional message payload and metadata. |
| match_key | VARCHAR(16777216) | Key used to pair this message with its counterpart leg on the other chain. |
| extra_fields | VARIANT | JSON catch-all for additional protocol-specific fields. |
| transaction_hash | VARCHAR(16777216) | Hash of the Stellar transaction that produced this record. |
| transaction_index | NUMBER(38,0) | Index of the transaction within the ledger. |
| event_index | NUMBER(38,0) | Index of the event within the transaction. |
| ledger_close_time | TIMESTAMP_NTZ(9) | Timestamp (UTC) when the Stellar ledger closed. |
| ledger_sequence | NUMBER(38,0) | Stellar ledger sequence number. |
| ledger_hash | VARCHAR(16777216) | Hash of the Stellar ledger containing this record. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row. |
| _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. |