solana.defi Table: ez_bridge_activity Type: Base Table
Description
This table provides a comprehensive view of cross-chain bridge activity on Solana, capturing token transfers via major protocols including Wormhole, DeBridge, and Mayan Finance. It standardizes inbound and outbound bridge transactions, includes protocol/platform identification, and enriches each event with USD pricing and token metadata where available. Each row represents a single bridge transaction, supporting analytics on cross-chain liquidity flows, protocol usage, and multi-chain DeFi activity.Key Use Cases
- Analyze cross-chain liquidity flows and bridge protocol adoption
- Track token movements between Solana and other blockchains
- Study user behavior and protocol usage patterns for bridging
- Monitor USD-denominated bridge flows and capital movement
- Support analytics on multi-chain DeFi ecosystem growth and integration
Important Relationships
- Closely related to
defi.fact_bridge_activity(raw bridge events),defi.ez_liquidity_pool_actions(for liquidity flows after bridging), anddefi.ez_dex_swaps(for DEX activity of bridged tokens) - Use
defi.fact_bridge_activityfor protocol-level bridge event details - Use
defi.ez_liquidity_pool_actionsto analyze liquidity provision/removal after bridging - Use
defi.ez_dex_swapsto track trading activity of tokens post-bridge core.fact_transactionsfor transaction context
Commonly-used Fields
block_timestamp: For time-series and bridge flow analysisplatform: For protocol identification (Wormhole, DeBridge, Mayan, etc.)direction: For filtering inbound vs outbound transferssource_chain,destination_chain: For cross-chain analyticssource_address,destination_address: For user and address-level analysisamount,amount_usd: For value and USD-denominated analyticsmint,symbol,token_is_verified: For token and asset analyticssucceeded: For transaction success analysis
Sample Queries
Daily bridge volume by protocol
Top bridge routes (source to destination chains)
User bridge activity analysis
Token flow analysis
Bridge protocol comparison
Inbound vs Outbound flow analysis
Large bridge transfers monitoring (whale activity)
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The timestamp (UTC) at which the block was produced on the Solana blockchain. This field is recorded as a TIMESTAMP data type and represents the precise moment the block was finalized and added to the chain. It is essential for time-series analysis, block production monitoring, and aligning transaction and event data to specific points in time. Used extensively for analytics involving block intervals, network activity trends, and historical lookups. Format: YYYY-MM-DD HH:MI:SS (UTC). |
| BLOCK_ID | NUMBER | A unique identifier for the block in which this transaction was included on the Solana blockchain. Typically a sequential integer or hash, depending on the data source. Used to group transactions by block and analyze block-level activity. |
- 123456789
- Supports block-level analytics, such as block production rate and transaction throughput.
- Useful for tracing transaction inclusion and block explorer integrations.
- All transactions with the same ‘block_id’ share the same ‘block_timestamp’. | | TX_ID | TEXT | The unique transaction signature (hash) for each transaction on the Solana blockchain. This field is a base58-encoded string, typically 88 characters in length, and serves as the primary identifier for transactions across all Solana data models. Used to join transaction data with related tables (blocks, events, transfers, logs, decoded instructions) and to trace the full lifecycle and effects of a transaction. Essential for transaction-level analytics, debugging, and cross-referencing with block explorers or Solana APIs.
5Nf6Q2k6v1Qw2k3v4Qw5Nf6Q2k6v1Qw2k3v4Qw5Nf6Q2k6v1Qw2k3v4Qw5Nf6Q2k6v1Qw2k3v4Qw
- Enables precise tracking, auditing, and attribution of on-chain activity
- Used for linking transactions to events, logs, and protocol actions
- Critical for compliance, monitoring, and analytics workflows | | SUCCEEDED | BOOLEAN | Boolean flag indicating whether the transaction was successfully executed and confirmed on the Solana blockchain. A value of TRUE means the transaction was processed without errors; FALSE indicates failure due to program errors, insufficient funds, or other issues.
- true
- false
- Used to filter for successful transactions in analytics and reporting.
- Important for error analysis, user experience, and program debugging. | | INDEX | NUMBER | | | PROGRAM_ID | TEXT | The unique public key (base58-encoded address) of a Solana program. This field identifies the on-chain program (smart contract) responsible for processing instructions, emitting events, or managing accounts. Used throughout Solana analytics models—including events, transactions, IDLs, and program activity tables—to join, filter, and analyze program-level data.
- “4Nd1mY…”
- “TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA”
- Used as a join key for program activity, deployments, events, and interface changes.
- Supports segmentation of activity by protocol, DEX, NFT marketplace, or other on-chain application. | | PLATFORM | TEXT | The platform or protocol from which the bridge transaction or event originates. | | DIRECTION | TEXT | Indicates the direction in which the assets are being bridged, either inbound to Solana or outbound from Solana. | | SOURCE_CHAIN | TEXT | The name of the blockchain network to which the assets are being bridged from. | | DESTINATION_CHAIN | TEXT | The name of the blockchain network to which the assets are being bridged to. | | SOURCE_ADDRESS | TEXT | The address that initiated the bridge deposit or transfer. This address is the sender of the tokens/assets being bridged to the destination chain. | | DESTINATION_ADDRESS | TEXT | The designated address set to receive the bridged tokens on the target chain after the completion of the bridge transaction. | | AMOUNT | FLOAT | The decimal adjusted amount of tokens involved in the bridge transaction, where available. | | AMOUNT_USD | FLOAT | The value of the bridged tokens in USD at the time of the bridge transaction, where available. | | MINT | TEXT | The address associated with the token that is being bridged. It provides a unique identifier for the token within Solana. | | SYMBOL | TEXT | The symbol representing the token being bridged. This provides a shorthand representation of the token. | | TOKEN_IS_VERIFIED | BOOLEAN | A flag indicating if the asset has been verified by the Flipside team. | | EZ_BRIDGE_ACTIVITY_ID | TEXT | A unique, stable identifier for each record in this table. The primary key (PK) ensures that every row is uniquely identifiable and supports efficient joins, lookups, and data integrity across models. The PK may be a natural key (such as a blockchain transaction hash) or a surrogate key generated from one or more fields, depending on the table’s structure and requirements. | | INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when this transaction record was first inserted into the analytics database. Used for data freshness tracking and incremental model logic. Format: YYYY-MM-DD HH:MI:SS. Not derived from the blockchain, but from the ETL process. | | MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when this transaction record was last updated in the analytics database. Used for tracking updates and supporting incremental model logic. Format: YYYY-MM-DD HH:MI:SS. Not derived from the blockchain, but from the ETL process. |