| bridge | VARCHAR(134217728) | The slug or name of the bridge. For canonical bridges, the bridge name corresponds to the destination chain name. |
| protocol | VARCHAR(134217728) | The protocol associated with the bridge transfer. Optimism stack bridge events will share the same bridge protocol, op. |
| sender_address | VARCHAR(134217728) | The address that initiated the transfer. |
| recipient_address | VARCHAR(134217728) | The address that received the transfer on the destination chain, if applicable. |
| direction | VARCHAR(134217728) | The direction of the transfer (e.g., inbound or outbound), based on the chain. |
| source_chain_id | VARCHAR(134217728) | The ID of the source chain. Note that for non-EVM chains, there is typically no chainID. |
| source_chain | VARCHAR(134217728) | The name of the source chain, i.e. the chain on which a token was originally deployed and minted. |
| destination_chain_id | VARCHAR(134217728) | The ID of the destination chain. Note that for non-EVM chains, there is typically no chainID. |
| destination_chain | VARCHAR(134217728) | The name of the destination chain, i.e. the chain on which a bridge user wants to have their tokens. |
| token_in_address | VARCHAR(134217728) | The address of the token being transferred. |
| token_in_name | VARCHAR(134217728) | The name of the token being transferred. |
| token_in_symbol | VARCHAR(134217728) | The symbol of the token being transferred. |
| token_in_amount_raw | VARCHAR(134217728) | The raw amount of the token being transferred. |
| token_in_amount_str | VARCHAR(134217728) | The string representation of the token amount being transferred. |
| token_in_amount | FLOAT | The normalized amount of the token being transferred. |
| usd_in_amount | FLOAT | The USD equivalent of the token being transferred. |
| token_out_address | VARCHAR(134217728) | (Nullable) The address of the token being transferred out. |
| token_out_name | VARCHAR(134217728) | (Nullable) The name of the token being transferred out. |
| token_out_symbol | VARCHAR(134217728) | (Nullable) The symbol of the token being transferred out. |
| token_out_amount_raw | VARCHAR(134217728) | (Nullable) The raw amount of the token being transferred out. |
| token_out_amount_str | VARCHAR(134217728) | (Nullable) The string representation of the token amount being transferred out. |
| token_out_amount | FLOAT | (Nullable) The normalized amount of the token being transferred out. |
| usd_out_amount | FLOAT | (Nullable) The USD equivalent of the token being transferred out. |
| usd_amount | FLOAT | The USD equivalent of the transfer, capped at a maximum value. |
| transaction_module | VARCHAR(134217728) | Module of the transaction |
| package_id | VARCHAR(134217728) | Object ID of the Sui Move package that emitted this event or executed this transaction. |
| transaction_sender_address | VARCHAR(134217728) | Address of the wallet that signed and submitted the bridge or cross-chain transaction. |
| type_address | VARCHAR(134217728) | Move package address component of a fully-qualified type (e.g. 0x2 in 0x2::coin::Coin). |
| extra_fields | VARIANT | Additional fields related to the transfer. |
| nonce | NUMBER(38,0) | Number of transactions sent from the sender’s address prior to this one. Used to prevent replay attacks and ensure transaction ordering. |
| transaction_block_digest | VARCHAR(134217728) | Base58-encoded digest of the Sui transaction block. Alias for sui_transaction_digest. |
| event_seq | NUMBER(38,0) | Zero-based sequence number of this event within its transaction block. |
| checkpoint_timestamp | TIMESTAMP_NTZ(9) | The timestamp of the checkpoint containing the transaction. |
| checkpoint_sequence | NUMBER(38,0) | Monotonically increasing sequence number of the Sui checkpoint. Alias for sui_checkpoint_sequence used in models that drop the chain prefix. |
| checkpoint_digest | VARCHAR(134217728) | The digest of the checkpoint containing the transaction (Sui-specific). |
| unique_id | VARCHAR(134217728) | A unique identifier for the transfer. |
| _created_at | TIMESTAMP_NTZ(9) | The timestamp when the record was created. |
| _updated_at | TIMESTAMP_NTZ(9) | The timestamp when the record was last updated. |