Tables
Bridge_TokensSent_event
Cross-chain token transfer events from Allbridge V1 bridge on Ethereum, capturing outbound transfers with recipient addresses, token amounts, destination chain identifiers, and unique nonces. Used for tracking bridge activity, cross-chain flow analysis, and reconciling transfers across supported blockchains.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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0xa314330482f325d38a83b492ef6b006224a3bea9 | false | 80043213135148493314649434263331595408573687956087802914132586199356795691220 | 396030 | 237 | 15932990 | 1 | 0x0000000000000000000000000c6a6520a5fe89b2608ed8e07a194f4787c88794 | 2022-11-09T14:13:47.000Z | 0x000000000000000000000000a614f803b6fd780986a42c78ec9c7f77e6ded13c | 0x1258482b1d9cadc62b1b85793283eb46eac0ddb1ed0732b908d37bc709d19830 | 3 |
| 0xa314330482f325d38a83b492ef6b006224a3bea9 | false | 7900416107786471981774507907353559806223885739721327533001217266478260819122 | 8010584 | 116 | 15933224 | 1 | 0x00000000000000000000000046813abc181503cc96d39d7b54472b45ec95eca7 | 2022-11-09T15:00:47.000Z | 0x000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d56 | 0x9de4d3d2c1db6b890d8d713a9c66f06423c67f95f2d4aa21a1ec82fe1453e2d3 | 2 |
| 0xa314330482f325d38a83b492ef6b006224a3bea9 | false | 2003223189860698456996909322650809174243214439949058070120300428768867646812 | 18269892 | 126 | 15931726 | 1 | 0x29f8989f91bd89d5a147c92e2ae5662b1072fd3a1318b198fb96cdde5d24c1d4 | 2022-11-09T09:57:47.000Z | 0xc6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61 | 0xb246b47af4f78b0f13daf8bbe107792178cf1e0b1838ee04e94f0097aabc567c | 4 |
Example Query
Example Query
Query with partition filter
Bridge2_receiveTokens_function
Inbound cross-chain token receipt events from Allbridge V1 on Ethereum showing tokens arriving from other chains with recipient addresses, amounts, minimum receive thresholds, and source chain identifiers. Used to track bridge completion events and analyze cross-chain transfer volumes by source chain and receiving token.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 | INT64 | 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 | Source chain identifier where the bridged tokens originated from. Numeric chain ID (e.g., ‘2’ for BSC, ‘4’ for Polygon) representing the blockchain network sending tokens to Ethereum. |
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 after slippage and fees on the destination chain. Denominated in the smallest unit of the receive token (e.g., wei for ERC-20 tokens with 18 decimals). |
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 146455 | 0 | true | 145296 | 84853640 | 39961 | 0xe43bfe5e | 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | 19683326 | 0x1eaca1277bcdfa83e60658d8938b3d63cd3e63c1 | 1 | 0x00000000000000000000000043a9c7c965abe9aa99095cc0719531b6eaf6ec45 | 2024-04-18T15:46:11.000Z | 0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 2 | 0x9171c8c3c70994cab8ebf8108b9102f36695aba4821e8079bc8ccb364a6b37e4 | 39585083 | |
| 146757 | 0 | true | 145596 | 85584183537833118762948851483622599520850292871559218147507324069863058923244 | 14180 | 0xe43bfe5e | 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | 19683778 | 0x1eaca1277bcdfa83e60658d8938b3d63cd3e63c1 | 1 | 0x000000000000000000000000b5869236addd008ee9ac704ae5b2cbb3005c6bd8 | 2024-04-18T17:17:47.000Z | 0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 4 | 0x5bccd02ef707db3a34821b4013959fc1078f660a34f94cb5826438e0f8941f9d | 14060637 | |
| 146781 | 0 | true | 145620 | 28516435135508654365921616420727941360915436387924196715111362116295002952570 | 41979 | 0xe43bfe5e | 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | 19679752 | 0x1eaca1277bcdfa83e60658d8938b3d63cd3e63c1 | 1 | 0x000000000000000000000000486c9070290def659e3cd91111a0b643c8bf1a96 | 2024-04-18T03:47:23.000Z | 0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 4 | 0xdb654a1f60edf367490a12ac393bf6445884a0c6e48bf1fa1486f2d950d2780e | 41578918 |
Example Query
Example Query
Query with partition filter
Bridge2_TokensReceived_event
Token receipt events from Allbridge V1 cross-chain bridge on Ethereum. Tracks incoming bridged token transfers with amount, recipient address, nonce for deduplication, and messenger protocol identifier for analyzing bridge inflows 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. |
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 |
|---|---|---|---|---|---|---|---|---|---|---|
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 27403017273948967380383546322871727637348046689802399303692198505599837605691 | 2313631340 | 160 | 0x0401ab33058fde94038960e2092204ce6ff151a721b8468a4632882878b61409 | 17858941 | 1 | 0x00000000000000000000000001a494079dcb715f622340301463ce50cd69a4d0 | 2023-08-06T22:38:11.000Z | 0x073cf19ef932317dc2b0bc7c9e45b2b8e70ba9d16eaeeda5cef2fe1a02637418 |
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 84440512753153363849603322670415895313212919946760010962045580528181425434821 | 600919267 | 145 | 0x06011be1f2928166b4309b196af83f4a7d52f9c332e021e0e28cc8baa249b7fc | 17858479 | 1 | 0x0000000000000000000000002de373887b9742162c9a5885ddb5debea8e4486d | 2023-08-06T21:04:59.000Z | 0x186ee6e24627123a120b4c51ff433d8abde7334973dedbfa5a096956fb3a97d6 |
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 8623501184784382070680393231844832804412801961514199464766257266090305746947 | 169188836 | 198 | 0x0401ddbbb1dff68eafd53bbe20029f597629bc33c16691f7b2b60c7db881553e | 17854897 | 1 | 0x0000000000000000000000003bfaebad466c5b44de343c5b536d4c0253ea4c88 | 2023-08-06T09:02:35.000Z | 0xca950848cad5999089638e4e64f552f5936da90d9eac94287339cf51bf840036 |
Example Query
Example Query
Query with partition filter
Bridge2_TokensSent_event
Cross-chain token transfer events from Allbridge V1 bridge contract on Ethereum, recording outbound transfers with destination chain, recipient address, token amount, and messenger type. Used for analyzing bridge volume, cross-chain liquidity flows, and destination chain preferences.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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 34547033521145981727051163262546301149296050860326108553901496643137887092040 | 312985 | 166 | 17479508 | 1 | 0x0000000000000000000000008995a602db1b5df8078bd96ee82c1e2359f7317b | 2023-06-14T16:57:23.000Z | 0x000000000000000000000000a614f803b6fd780986a42c78ec9c7f77e6ded13c | 0xa6b164e758a0def47b2323acd3131339cc6fcfbeae2a775947badd3d170ea280 | 3 |
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 95522842494419318347887156010279755901914385148833089996373696002391628721231 | 1798795 | 106 | 17478664 | 1 | 0x5fd4ab8dc54ece00fe859de2b4f29c400d7a5af3fb71a7d3f92690e945a30dcb | 2023-06-14T14:06:35.000Z | 0xc6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61 | 0xe9e395c00f8c217157d5b269ba78c961f04cf152d98fdd3984a06bb01d88410c | 4 |
| 0x609c690e8f7d68a59885c9132e812eebdaaf0c9e | false | 60567420 | 1770276 | 151 | 17480764 | 1 | 0x0435bd941b8f24ab8f913e4f2a85306689b3166e4e8e4a498677695d0bc909cf | 2023-06-14T21:11:11.000Z | 0xc6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61 | 0x38b899af51eb15da1e671eb2cbed7fa261a7fa6d9da050f31b99446fb9f20263 | 4 |
Example Query
Example Query
Query with partition filter