Tables
Bridge_TokensSent_event
Cross-chain token transfer events from Allbridge V1 bridge on Polygon, capturing outbound transfers with amount, destination chain, recipient address, and receive token. Used for tracking bridge volume, analyzing cross-chain flows, and monitoring messenger protocol usage.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_destinationChainId | INT64 | Chain identifier for the destination blockchain where tokens or messages will be received. Numeric string representing the standard chain ID. |
in_receiveToken | STRING | Contract address of the token to be received on the destination chain. 66-character hex string including 0x prefix, left-padded with zeros. |
in_nonce | STRING | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros. |
in_messenger | INT64 | Identifier for the cross-chain messaging protocol used to relay the transaction. Integer value representing the messenger service type. |
Sample Data
Sample Data
| address | removed | in_nonce | in_amount | log_index | block_number | in_messenger | in_recipient | block_timestamp | in_receiveToken | transaction_hash | in_destinationChainId |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0xdbbe85a3e22f52f834c3d5ed627fb76db554669e | false | 23412548240561062402105751888738260381342619633299551658893242115378760467281 | 14948 | 132 | 39355280 | 1 | 0x00000000000000000000000073f9fb09c32c8359e51a815552859aac5ddf9a49 | 2023-02-16T10:43:19.000Z | 0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 0xd74183104b67d22d28c941be7b435199b55f0bf79bd1a7d5128eba33748b29a2 | 1 |
| 0xdbbe85a3e22f52f834c3d5ed627fb76db554669e | false | 47968240672859189951356208271985280025976294074802960889883779384622579863448 | 9967 | 121 | 39370047 | 1 | 0x0000000000000000000000007a97484f57d98a62b0195d79b9600624744de59c | 2023-02-16T20:14:46.000Z | 0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7 | 0xbc90d95a32adebad5eec0a3cf5d70a2c627b146f874fd30f9193f52c40c7c79f | 1 |
| 0xdbbe85a3e22f52f834c3d5ed627fb76db554669e | false | 82041973309412832379656129956247511551702425111482967808142089887925811525704 | 200341 | 120 | 39353895 | 1 | 0x0000000000000000000000009724b4b59ea926683c733e2a6951f831e13f07a4 | 2023-02-16T09:51:15.000Z | 0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7 | 0x0843d98b52915cad0cf9570e957ac62b9dbc273ca1c9cde8a4beb4acd4508122 | 1 |
Example Query
Example Query
Query with partition filter
Bridge2_receiveTokens_function
Cross-chain token receipt records from Allbridge V1 protocol on Polygon, tracking incoming bridge transfers with source chain identifiers, recipient addresses, token amounts, and messenger routing details. Enables analysis of bridge flow patterns, slippage tolerance (via minimum receive amounts), and cross-chain liquidity movements.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
trace_address | STRING | Hierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls. |
status | BOOL | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution. |
from_address | STRING | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
to_address | STRING | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
value | FLOAT64 | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC). |
gas_used | INT64 | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used. |
gas | NUMERIC | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed. |
signature | STRING | Function selector identifying which contract function was called. 10-character hex string including 0x prefix. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_sourceChainId | STRING | Allbridge-specific numeric identifier for the blockchain where the cross-chain transfer originated. Null for failed transactions, typically single-digit integers representing supported source chains in the Allbridge v1 protocol. |
in_receiveToken | STRING | Contract address of the token to be received on the destination chain. 66-character hex string including 0x prefix, left-padded with zeros. |
in_nonce | STRING | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros. |
in_messenger | INT64 | Identifier for the cross-chain messaging protocol used to relay the transaction. Integer value representing the messenger service type. |
in_receiveAmountMin | STRING | Minimum amount of tokens the recipient is willing to accept on the destination chain, denominated in the smallest token unit. This slippage protection parameter ensures the cross-chain transfer fails if the received amount would fall below this threshold. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_nonce | in_amount | signature | to_address | block_number | from_address | in_messenger | in_recipient | trace_address | block_timestamp | in_receiveToken | in_sourceChainId | transaction_hash | in_receiveAmountMin |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 300000 | 0 | false | 31953 | 0xe43bfe5e | 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | 58160173 | 0x2973ce550e652faa865915eace7073a59002c1c4 | 2024-06-14T18:24:34.000Z | 0x125bd4915ac31ee2caeaee838654976b6a2df853178f963409ab8ef4345440b8 | ||||||||
| 300000 | 0 | true | 139772 | 67206672 | 13674 | 0xe43bfe5e | 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | 58135330 | 0x2973ce550e652faa865915eace7073a59002c1c4 | 1 | 0x00000000000000000000000051b748867333148cdefb8831619f61385421e927 | 2024-06-14T03:16:48.000Z | 0x000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f | 2 | 0x0d53d14d13d02acf61a106cb08ea56a9aa0ffec24d1deafd837b2bd885ee915d | 13566380 | |
| 300000 | 0 | true | 139784 | 49742796 | 18376 | 0xe43bfe5e | 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | 58133994 | 0x2973ce550e652faa865915eace7073a59002c1c4 | 1 | 0x00000000000000000000000005a8ea95a1176b80c98a2826dc0508484f6099ea | 2024-06-14T02:29:24.000Z | 0x000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f | 2 | 0x71dd954a44e622c5ecd5f5d96231ca345886d8e52e7ad1cfa1e9f1837b9d670b | 18231182 |
Example Query
Example Query
Query with partition filter
Bridge2_TokensReceived_event
Token receipt events from Allbridge v1 cross-chain bridge on Polygon, capturing inbound transfers with amounts, recipients, and cross-chain message identifiers. Used for tracking bridge completion events and analyzing cross-chain token flow patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_nonce | STRING | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros. |
in_messenger | INT64 | Identifier for the cross-chain messaging protocol used to relay the transaction. Integer value representing the messenger service type. |
in_message | STRING | Optional arbitrary data payload for the cross-chain transfer. Hex-encoded byte string with 0x prefix. |
Sample Data
Sample Data
| address | removed | in_nonce | in_amount | log_index | in_message | block_number | in_messenger | in_recipient | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 33928656 | 276214057 | 41 | 0x0205e42bfdff95434b5bf5bd9922ba706194944a7c7c6bf0a889480f5112af6b | 57820489 | 1 | 0x0000000000000000000000009f089232616674b809018f9b57b19025c0ca906c | 2024-06-06T03:39:35.000Z | 0x43bc367ee2291354d0aadb06769cbb95de0315bbc477eff34b2416562393d7ad |
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 77668428365836999788085800159550119382299244727223585804981743199876632559871 | 35580549 | 48 | 0x02053a38a755b7795a8dea8dcc5cf23b9ad9379dd9b82ffb831bc0a584929902 | 57826125 | 1 | 0x0000000000000000000000001013c3ee29dc0ac93e17d58fa0c574565791276c | 2024-06-06T07:14:41.000Z | 0x6b5a119c2524d0dd65ade0cd6f14ef9b9d951cde41e8b039096b3ed2c86a7813 |
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 45246606035189659089291881846203310535061036779949436435010714629740369472181 | 110070646 | 52 | 0x040573d0b376ad5edaf311488e961f9554969769655cb890f123579c217739f4 | 57852356 | 1 | 0x000000000000000000000000d366bf6b22f56fd172d197fbdd9691bf6854c503 | 2024-06-06T23:22:58.000Z | 0x9f6dc01b0619ef1b6dec657ee433505a0916cd4fda041949a2b2696329e7486e |
Example Query
Example Query
Query with partition filter
Bridge2_TokensSent_event
Cross-chain token transfer events from Allbridge V1 bridge on Polygon, capturing sent tokens with recipient addresses, amounts, destination chain identifiers, and unique nonces. Used for tracking bridge volume, analyzing cross-chain flows, and monitoring token movements between Polygon and other supported chains.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_destinationChainId | STRING | Chain identifier for the destination blockchain where tokens or messages will be received. Numeric string representing the standard chain ID. |
in_receiveToken | STRING | Contract address of the token to be received on the destination chain. 66-character hex string including 0x prefix, left-padded with zeros. |
in_nonce | STRING | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros. |
in_messenger | INT64 | Identifier for the cross-chain messaging protocol used to relay the transaction. Integer value representing the messenger service type. |
Sample Data
Sample Data
| address | removed | in_nonce | in_amount | log_index | block_number | in_messenger | in_recipient | block_timestamp | in_receiveToken | transaction_hash | in_destinationChainId |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 42500958196590091745986339232657753859087573684765160207144632664755416837829 | 19978 | 386 | 70141115 | 1 | 0x0000000000000000000000008aa27e90e139d5ab5704df69429341cbcb2d2464 | 2025-04-10T19:50:07.000Z | 0x00000000000000000000000048065fbbe25f71c9282ddf5e1cd6d6a887483d5e | 0xffb8468ad2fddf45bf407e533cea05db9233a2659c4c0a07c207423ca0cc9fdb | 11 |
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 14537511772998642682147382837815032827617195375211113883342720971076391802916 | 7172 | 195 | 70109048 | 1 | 0x000000000000000000000000cbba66a6ff9bd6836f8f81b9f1cb39ad1fccb10a | 2025-04-10T00:53:41.000Z | 0x00000000000000000000000048065fbbe25f71c9282ddf5e1cd6d6a887483d5e | 0x77f3769d7b644e52f7dbc16aee9a457a698174685596ebcd9d79b0cd8e93d1e7 | 11 |
| 0x7775d63836987f444e2f14aa0fa2602204d7d3e0 | false | 22259332194710552471904873921426114764479182942562100350348795218486961678622 | 1372 | 422 | 70109277 | 1 | 0x00000000000000000000000092c0def4be3a88f663c80414c685e6ad45fdde0b | 2025-04-10T01:01:47.000Z | 0x00000000000000000000000048065fbbe25f71c9282ddf5e1cd6d6a887483d5e | 0xa250ad097569015f9c76602a89b66346f666f0c36e8e2fa3ee80354a567d9123 | 11 |
Example Query
Example Query
Query with partition filter