Skip to main content

Tables

CCTP_ChainGasAirdropped_event

Cross-Chain Transfer Protocol (CCTP) event logs recording native gas token airdrops to bridge users. Tracks the input amount of gas distributed to facilitate cross-chain transactions and improve user experience.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_ChainGasAirdropped_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_ChainGasAmountUpdated_event

Cross-Chain Transfer Protocol (CCTP) configuration events recording updates to destination chain gas amount allocations. Emitted when protocol administrators modify the gas reserves allocated for cross-chain message execution.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_chainGasAmountSTRINGAmount of native gas token allocated for executing the transaction on the destination chain. Numeric string representing the gas amount in the smallest denomination (wei for EVM chains).
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_ChainGasAmountUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_CircleRequestFulfilled_event

Cross-Chain Transfer Protocol (CCTP) fulfillment events recording completed token mints on destination chains. Contains origin domain identifiers, request IDs, mint token addresses, recipient addresses, transfer amounts, and protocol fees for tracking cross-chain USDC transfers.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_originDomainSTRINGDomain identifier for the originating blockchain in a cross-chain transfer. Numeric string representation of the source chain identifier.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_mintTokenSTRINGContract address of the token being minted. Hex-encoded, 0x-prefixed, 42-character string.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_requestIDSTRINGUnique identifier for a cross-chain CCTP (Cross-Chain Transfer Protocol) request. 66-character hex string including 0x prefix.
in_feeaddressremovedin_tokenin_amountlog_indexblock_numberin_mintTokenin_recipientin_requestIDblock_timestampin_originDomaintransaction_hash
150000000xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb481985000000383178940500xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480x3845984fbffc249cd11aa6ec55a562604ee1c8150x7ce460b9ac3f52380fc4b5254cd42204c5c4e68ee03a1e8a68b9414bac0116932023-08-11T20:32:35.000Z10x157778e651bb57279d1f646b8c7cc6aa1c1664a2463a3157d7979945bd1ce867
150000000xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48985000000386178921230xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480xb8dad308ac6e4dfa8496712e3dcfe6b0b70872d60xdcea25a60833982c86bd2df4722a080c407d97cb7309a0e1c430cbd2a329b6572023-08-11T14:04:35.000Z10x92bcf8fa9b5c281f5e0f0d47df41ab54a271d8e2a01ef8d4c9d8f25515597e24
150000000xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb481035000000458178932510xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480xdd38620521c66d9c9ed1c37ee7af7344b2b15f5e0x31d07f54638d18344804604cc27e4d541bde9c2c18e57a3e10bf7c58e3d4494d2023-08-11T17:51:35.000Z10x4687fa5d033b870575f725ea03f0c91cf219f188c2677afa52c32b159566aab4
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_CircleRequestFulfilled_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_CircleRequestSent_event

Cross-Chain Transfer Protocol (CCTP) request initiation events containing sender address, token details, transfer amount, destination chain identifier, and unique request ID with nonce. Used for tracking cross-chain token transfer requests and analyzing bridge activity.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_nonceSTRINGUnique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_requestVersionSTRINGVersion identifier for the CCTP request format. Numeric string representation of the protocol version number.
in_formattedRequestSTRINGABI-encoded CCTP request parameters containing the destination chain, nonce, token, amount, sender, and recipient details. Hex-encoded string with 0x prefix.
in_requestIDSTRINGUnique identifier for a cross-chain CCTP (Cross-Chain Transfer Protocol) request. 66-character hex string including 0x prefix.
addressremovedin_noncein_tokenin_amountin_senderlog_indexin_chainIdblock_numberin_requestIDblock_timestamptransaction_hashin_requestVersionin_formattedRequest
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false11990xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48500210000000x2eef4219055fd3c514ba7b50316f1c3965a537517942161177269420xac2a5e4024bcaffb2d55417c80aa4fd9535552fd9a95814cf8e48a6cb1dd20512023-07-19T11:29:11.000Z0x2284c819130539a75eb816f9bd0ddf86d62ad12a0baae2430e497cd70f67798e00x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004af000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000ba57be3400000000000000000000000002eef4219055fd3c514ba7b50316f1c3965a53751
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false12070xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4827239634120x480741c7740ae259351585aa50f7ea22cd4ac47824542161177293590xb0def7bfcb9efb800e825ef526ba6adcb86c327b2ecddad0fd5836c41eff7c922023-07-19T19:36:59.000Z0xd37b9136ed67b29074743f84c9695f01bab2ed01d5ee845c6bdcfabb20347c7300x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a25c6214000000000000000000000000480741c7740ae259351585aa50f7ea22cd4ac478
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false11860xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb481000000000x4a0503912fe5fecfac79aca0be841824cb9be43b53942161177260360xe9f0c67163345c0df8b68326b8810e32d01b40ad8e6c743433fcbc68a3d3c7da2023-07-19T08:25:47.000Z0x5bfa772792e72f9b718225490ef47af1084de4eae5a15dd79478c0db9f9ae3e800x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000004a0503912fe5fecfac79aca0be841824cb9be43b
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_CircleRequestSent_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_FeeCollected_event

Cross-Chain Transfer Protocol (CCTP) fee collection events recording protocol and relayer fees extracted from bridge transactions. Contains fee collector address, protocol fee amount, and relayer fee amount for tracking fee distribution and revenue analytics.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_feeCollectorSTRINGAddress of the account designated to receive collected fees. Hex-encoded, 0x-prefixed, 42-character string.
in_relayerFeeAmountSTRINGAmount of fees allocated to the relayer from the cross-chain transaction. String-encoded integer representing the fee in the smallest denomination of the token.
in_protocolFeeAmountSTRINGAmount of fees collected by the protocol from the transaction. String-encoded integer representing the fee in the smallest denomination of the token.
addressremovedlog_indexblock_numberblock_timestampin_feeCollectortransaction_hashin_relayerFeeAmountin_protocolFeeAmount
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false243177805072023-07-26T23:23:11.000Z0x00000000000000000000000000000000000000000x6e4984531667bca56af526ba088a67bf312c1b0c622aa7ced634cf9d258f8eb0015000000
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false222177745192023-07-26T03:17:35.000Z0x00000000000000000000000000000000000000000x2248e7a5abdb96fee080dfe31ed6832ea7d482b1b3e0d7e43bdb7905b0167794015000000
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false227177740782023-07-26T01:48:35.000Z0x00000000000000000000000000000000000000000xcfa35f3439b9e1d666d461bdcb9e10c8b2339ec85be4004f2fba03b532df40c6015000000
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_FeeCollected_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_FeeCollectorUpdated_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_oldFeeCollectorSTRINGAddress of the previous fee collector contract before a fee collector update. Hex-encoded, 0x-prefixed, 42-character string.
in_newFeeCollectorSTRINGAddress of the new fee collector contract after a fee collector update. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_FeeCollectorUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_OwnershipTransferred_event

Ownership transfer events from Cross-Chain Transfer Protocol (CCTP) contracts recording transitions from previous owner to new owner addresses. Used for tracking contract administration and governance authority changes across blockchain networks.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_previousOwnerSTRINGAddress of the prior owner in an ownership transfer event. Hex-encoded, 0x-prefixed, 42-character string.
in_newOwnerSTRINGAddress of the newly assigned owner in an ownership transfer event. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexin_newOwnerblock_numberblock_timestampin_previousOwnertransaction_hash
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false510xb73acb429ba868984c0236bdf940d4fe1e643f27175597912023-06-25T23:36:23.000Z0x890bc5691e6011f580e264065d09a7a1a69021310xbf8283ece476387c401786eb3b23e1de31abb0ce15eadbb2156af1f1cf6cac3b
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false500x890bc5691e6011f580e264065d09a7a1a6902131175597912023-06-25T23:36:23.000Z0x00000000000000000000000000000000000000000xbf8283ece476387c401786eb3b23e1de31abb0ce15eadbb2156af1f1cf6cac3b
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false780x67f60b0891ebd842ebe55e4ccca1098d7aac1a55175954022023-06-30T23:38:23.000Z0xb73acb429ba868984c0236bdf940d4fe1e643f270xac94158ea66575afa98f32ada8245e6bc4a4f2b3204ff45e10289783dd57a2bc
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_OwnershipTransferred_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_Paused_event

Cross-Chain Transfer Protocol (CCTP) pause state change events emitted when protocol operations are suspended or resumed. Records the account that triggered the pause action for tracking protocol governance and security controls.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexin_accountblock_numberblock_timestamptransaction_hash
0xfb2bfc368a7edfd51aa2cbec513ad50edea74e84false1920x67f60b0891ebd842ebe55e4ccca1098d7aac1a55188004462023-12-16T18:37:11.000Z0x1ec91c6cca86ec3edd7fde6a00cb4537910fc99feea9e39afe1dabdecf7880e0
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_Paused_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_ProtocolFeeUpdated_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_newProtocolFeeSTRINGUpdated protocol fee value. Integer representing the new fee amount in basis points or protocol-specific units.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_ProtocolFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CCTP_Unpaused_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.CCTP_Unpaused_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeDepositClaimed_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeDepositClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeDepositRefunded_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeDepositRefunded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeProofDisputed_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeProofDisputed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeProofProvided_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_transactionHashSTRINGTransaction hash on the destination chain for the cross-chain bridge or swap operation. 66-character hex string including 0x prefix.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeProofProvided_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeRelayed_event

Bridge relay completion events from Synapse FastBridge protocol on Ethereum, recording when cross-chain transfers are fulfilled by relayers. Tracks origin chain details (Arbitrum chain ID 42161), token amounts, relayer addresses, and gas costs for analyzing bridge relay economics and cross-chain liquidity flows.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_originChainIdSTRINGChain identifier for the source blockchain where the cross-chain transfer originated. Numeric string representing the standard chain ID.
in_originTokenSTRINGContract address of the token being deposited on the origin chain. Hex-encoded, 0x-prefixed, 42-character string.
in_destTokenSTRINGContract address of the destination token received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_originAmountSTRINGAmount of tokens sent from the origin chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_destAmountSTRINGAmount of tokens received on the destination chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_chainGasAmountSTRINGAmount of native gas token allocated for executing the transaction on the destination chain. Numeric string representing the gas amount in the smallest denomination (wei for EVM chains).
in_toaddressremovedlog_indexin_relayerblock_numberin_destTokenin_destAmountin_originTokenblock_timestampin_originAmountin_originChainIdin_transactionIdtransaction_hashin_chainGasAmount
0x53d5e17469a7f78d3c20c2b2610fe4acde0afeea0x6c0771ad91442d670159a8171c35f4828e19afd2false1410xdd50676f81f607fd8ba7ed3187ddf172db174cd3189943820xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48402855050xaf88d065e77c8cc2239327c5edb3a432268e58312024-01-13T00:26:11.000Z45980910421610xc6ab5fbb593a330aa9913ec96c46532c2e9559c8dc43f46b7954ffb9f2df0a040xae6fcff2650c0cdd878f9bcc8a6c214be1495f841607270c15c2528a8529ee1a0
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeRelayed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_BridgeRequested_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_requestSTRING-
in_destChainIdSTRING-
in_originTokenSTRINGContract address of the token being deposited on the origin chain. Hex-encoded, 0x-prefixed, 42-character string.
in_destTokenSTRINGContract address of the destination token received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_originAmountSTRINGAmount of tokens sent from the origin chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_destAmountSTRINGAmount of tokens received on the destination chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_sendChainGasBOOL-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_BridgeRequested_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_ChainGasAmountUpdated_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_oldChainGasAmountSTRING-
in_newChainGasAmountSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_ChainGasAmountUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_FeeRateUpdated_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_oldFeeRateSTRING-
in_newFeeRateSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_FeeRateUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_FeesSwept_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_FeesSwept_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_GovernorAdded_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_governorSTRINGAddress of the governor being added or removed from the governance role. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_GovernorAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_GovernorRemoved_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_governorSTRINGAddress of the governor being added or removed from the governance role. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_GovernorRemoved_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_GuardAdded_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_guardSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_GuardAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_GuardRemoved_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_guardSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_GuardRemoved_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_RelayerAdded_event

Events tracking relayer address additions to Synapse’s FastBridge contract on Ethereum. Used to monitor authorized relayers who can execute cross-chain bridge transactions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexin_relayerblock_numberblock_timestamptransaction_hash
0x6c0771ad91442d670159a8171c35f4828e19afd2false910xdd50676f81f607fd8ba7ed3187ddf172db174cd3189935912024-01-12T21:46:47.000Z0xb5d77e91b21f4753788fcbbb86af784a4ffac22b022857d21c138957cff0a705
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_RelayerAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_RelayerRemoved_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_RelayerRemoved_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_RoleAdminChanged_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_roleSTRINGRole identifier for access control. 66-character keccak256 hash including 0x prefix.
in_previousAdminRoleSTRINGPrevious admin role identifier before the role change. 66-character keccak256 hash including 0x prefix.
in_newAdminRoleSTRINGNew admin role identifier for the specified role. 66-character keccak256 hash including 0x prefix.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_RoleAdminChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_RoleGranted_event

Access control events from Synapse FastBridge contract on Ethereum recording role assignments to accounts. Tracks administrative permissions granted through role-based access control (RBAC) system with role identifiers and account addresses.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_roleSTRINGRole identifier for access control. 66-character keccak256 hash including 0x prefix.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressin_roleremovedin_senderlog_indexin_accountblock_numberblock_timestamptransaction_hash
0x6c0771ad91442d670159a8171c35f4828e19afd20x0000000000000000000000000000000000000000000000000000000000000000false0xbd88862fcc17de436f7bd17276c537acadda9a67850xbd88862fcc17de436f7bd17276c537acadda9a67189935812024-01-12T21:44:47.000Z0x47f2e51fbcd2dcf6d52c4d6d75ac2aa387074b8e26fe3905d279518c3cef4a68
0x6c0771ad91442d670159a8171c35f4828e19afd20xe2b7fb3b832174769106daebcfd6d1970523240dda11281102db9363b83b0dc4false0xbd88862fcc17de436f7bd17276c537acadda9a67900xdd50676f81f607fd8ba7ed3187ddf172db174cd3189935912024-01-12T21:46:47.000Z0xb5d77e91b21f4753788fcbbb86af784a4ffac22b022857d21c138957cff0a705
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_RoleGranted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge_RoleRevoked_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_roleSTRINGRole identifier for access control. 66-character keccak256 hash including 0x prefix.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge_RoleRevoked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge2_BridgeDepositClaimed_event

Bridge deposit claim events from Synapse FastBridge v2 protocol on Ethereum, recording when relayers successfully claim bridged assets after delivering them to destination chains. Contains claim details including token address, amount, relayer address, and transaction identifier for tracking cross-chain bridge settlement and relayer activity analysis.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressremovedin_tokenin_amountlog_indexin_relayerblock_numberblock_timestampin_transactionIdtransaction_hash
0xdd50676f81f607fd8ba7ed3187ddf172db174cd30x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4813786434802830xdd50676f81f607fd8ba7ed3187ddf172db174cd3194218882024-03-12T22:08:59.000Z0x7c12cf567ff20d683cead16e71bcd780b71ff5d24ab19062f95ba976439b1bf70x13b1d411ec84b413a1c5c1ebf910e3e3bd55b8388875b54341be7b46ffb7d43c
0xdd50676f81f607fd8ba7ed3187ddf172db174cd30x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee599880000000000002960xdd50676f81f607fd8ba7ed3187ddf172db174cd3194216712024-03-12T21:25:23.000Z0x329b5bd713e7875920b5b4d0dba3b8f811e82e8e5c32eac6111cae933bf7923f0x1dc5a7331e2a3ec6e1ee8b76e8d8aefc45c168d3f4e3c8ed575c478407d08f2b
0xdd50676f81f607fd8ba7ed3187ddf172db174cd30x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee20695860000000000003500xdd50676f81f607fd8ba7ed3187ddf172db174cd3194215852024-03-12T21:08:11.000Z0xc05dcf3c6575be7858a88ee37009014107f33e32adf1e85c49423ef2860b2f8e0x902f77c564bc1fa19530af5ac4d0cfdcc3df3e7fe06f3335b6c51d59e51cbe92
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge2_BridgeDepositClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge2_BridgeDepositRefunded_event

Refunded bridge deposit events from Synapse FastBridge v2 protocol on Ethereum, capturing failed or reversed cross-chain transfers with recipient address, token contract, and refund amount. Used for monitoring bridge reliability and analyzing failed transaction patterns.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressremovedin_tokenin_amountlog_indexblock_numberblock_timestampin_transactionIdtransaction_hash
0x0dea416af1ce58b383820a36b72d09e95571301c0x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2000000000000000058195528642024-03-31T09:02:35.000Z0xafbaeba70ee0145e29792ea900da5e729ab5de70fbf1d8a376df5b52ed0ce3260x530a2132e571a4a338f892bd420c276ec30fd199cdbfce216a2a9c2f9dc8691a
0xfbfe199b78798e438101bf55ac1a8c8a04fe60440x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee700000000000000078195528672024-03-31T09:03:11.000Z0x71bf823d46e275e869cc2bda629ec0bf6ae574e11fb8691ca59f2f5cb68f2ff00x6602f7c05f2a905d057ab054581e5de6c6589b03cd360571aea65799884c8f66
0x6c4cde76cacaf67b00d471e4c5fa45c0c2a526f60x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4810000000371209354712024-10-10T13:20:47.000Z0x8e50a991e98786e2dbc97208c7a5294511ec9318183608e105b10e1324f24f320x62e3e311daceff00bc99ab6b49b03a3c94e0dddbf48e94aa2aec26e4b2a68c45
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge2_BridgeDepositRefunded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge2_BridgeRelayed_event

Bridge relay completion events from Synapse Protocol’s FastBridge v2 contract on Ethereum, capturing cross-chain token transfers delivered by relayers. Contains origin chain details, token amounts, destination recipients, and relayer addresses for analyzing bridge fulfillment activity and relayer performance across chains like Optimism (chain ID 10) and Arbitrum (chain ID 42161).
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_transactionIdSTRINGUnique identifier for the cross-chain transaction. 66-character hex string including 0x prefix.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_originChainIdSTRINGChain identifier for the source blockchain where the cross-chain transfer originated. Numeric string representing the standard chain ID.
in_originTokenSTRINGContract address of the token being deposited on the origin chain. Hex-encoded, 0x-prefixed, 42-character string.
in_destTokenSTRINGContract address of the destination token received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_originAmountSTRINGAmount of tokens sent from the origin chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_destAmountSTRINGAmount of tokens received on the destination chain in the smallest denomination of the token. Numeric string representing the token quantity in base units.
in_chainGasAmountSTRINGAmount of native gas token allocated for executing the transaction on the destination chain. Numeric string representing the gas amount in the smallest denomination (wei for EVM chains).
in_toaddressremovedlog_indexin_relayerblock_numberin_destTokenin_destAmountin_originTokenblock_timestampin_originAmountin_originChainIdin_transactionIdtransaction_hashin_chainGasAmount
0xa59c45a960d85bccfdd3beb380b3157d2405badb0x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse2390xdd50676f81f607fd8ba7ed3187ddf172db174cd3194215960xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48499188540980x0b2c639c533813f4aa9d7837caf62653d097ff852024-03-12T21:10:23.000Z49961035327100x4944a05d5bb8dc4fca8026ff24d0fdf690448011fac522c982e9cd22b3d746db0x7fd52bab1b14fb8fd25ad9639d592a990dad9f6449fa9392fd5d8cbf393725f60
0x5b9aabe3f7b43e08b99384997ea153bbe8c46d460x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse2960xdd50676f81f607fd8ba7ed3187ddf172db174cd3194220650xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1912228622449783000xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2024-03-12T22:44:59.000Z199960000000000000100x77d27ebfbdf07efa8b5354630ba6c377e8610ea4df1e97f2007973327940029b0x5fa9b4fc14d032527203ff5407ee71d19238fba9212ab7f85b39b1b8e316b25d0
0x5b9aabe3f7b43e08b99384997ea153bbe8c46d460x5523d3c98809dddb82c686e152f5c58b1b0fb59efalse2250xdd50676f81f607fd8ba7ed3187ddf172db174cd3194220680xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee414007408496629110xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2024-03-12T22:45:35.000Z49990000000000000100xddc6acdc10c2db1dcbff90a90dc268e72964c80813610a8becc27ffd6a545bda0xcf5672429dd2075960f2e92afd19247faaae60e217de51611db8d0f7db02fa4d0
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge2_BridgeRelayed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

FastBridge2_FeesSwept_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.FastBridge2_FeesSwept_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MiniChef_Harvest_event

Reward claims from MiniChef staking contracts emitted when users harvest accumulated incentive tokens. Contains pool identifier, user address, and harvested token amount for tracking yield farming rewards across liquidity mining programs.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_pidSTRINGPool identifier referencing a specific staking or liquidity pool within the protocol. Numeric string representation of the pool ID.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_pidaddressin_userremovedin_amountlog_indexblock_numberblock_timestamptransaction_hash
00xd10ef2a513cee0db54e959ef16cac711470b62cf0x0cf09c645cbec84feb3456b291ec17ac50774fd6false745120940877148908985227172722272023-05-16T12:20:35.000Z0x3f83d17cc95f1eb52929a89f504a5c0753126c2cb91b9b027ba594e434cad4fd
00xd10ef2a513cee0db54e959ef16cac711470b62cf0x031a9077f98996aeff09a572a8b4e3a6b394c09cfalse18615100032959219989621211172704732023-05-16T06:22:47.000Z0xa022c1d08abae515cfecf5ce18c09b7314cfe82a0dc0853f4fca0abf33af49c1
00xd10ef2a513cee0db54e959ef16cac711470b62cf0xabb4018ecfa760f18106b20d8e490a0c078bfa2bfalse26991730945907715807379172744802023-05-16T19:59:11.000Z0x10309954b8999ecca99e61b0932faa6adf050b0aa7e6e48c5bbce897b26eb868
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.MiniChef_Harvest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenDeposit_event

TokenDeposit events emitted by Synapse Bridge contracts recording cross-chain token transfers. Contains source token address, transfer amount, destination chain identifier (EIP-155), and recipient address for tracking bridge deposit flows.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressremovedin_tokenin_amountlog_indexin_chainIdblock_numberblock_timestamptransaction_hash
0x3834d63432ded5bfbf7154ea13f06ba29423e83c0x2796317b0ff8538f253012862c06787adfb8ceb6false0x0ab87046fbb341d058f17cbc4c1133f25a20a52f1087075659943160724256160685932022-11-28T12:50:11.000Z0xc2f87c8393d0ef82c2a1c6a51818efa2416e59e944f42b482fea4f5585dd4270
0xd54e4f8a55247487dd7c8c59f14ee5c0c28894770x2796317b0ff8538f253012862c06787adfb8ceb6false0x0ab87046fbb341d058f17cbc4c1133f25a20a52f200000000000000000031142161160705112022-11-28T19:15:11.000Z0x3ac6193f6d38cab5d2618ecca207e6f25f745f4ac579e5a5989371adc5161833
0x493374100e511b1b091fa5bace1929dc154fee800x2796317b0ff8538f253012862c06787adfb8ceb6false0x0ab87046fbb341d058f17cbc4c1133f25a20a52f665608748988125131556042161160700072022-11-28T17:33:35.000Z0x6def44add0cb62319cdc0cbc33fedc972631ac5425cf72e0466cfd12eef704a0
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenDeposit_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenDepositAndSwap_event

Cross-chain token deposit events where tokens are deposited to the Synapse Bridge and swapped via liquidity pool before being bridged to the destination chain. Contains deposit amount, destination chain ID (EIP-155), recipient address, pool swap parameters (token indexes, minimum output amount), and deadline timestamp for tracking combined deposit-and-swap operations across bridge transfers.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_tokenIndexFromINT64Index of the source token in the liquidity pool for the swap operation.
in_tokenIndexToINT64Index of the destination token in the liquidity pool for the swap operation.
in_minDySTRINGMinimum output amount expected from the swap operation. Numeric string representation of token quantity in smallest denomination.
in_deadlineSTRINGTimestamp after which the transaction or operation becomes invalid and will revert. Unix timestamp in seconds.
in_toaddressremovedin_minDyin_tokenin_amountlog_indexin_chainIdin_deadlineblock_numberblock_timestampin_tokenIndexTotransaction_hashin_tokenIndexFrom
0x4af61d30f81842525d17dbff71146e3c740aca570x2796317b0ff8538f253012862c06787adfb8ceb6false1863411080x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f189754967205477103327265101685535293173716772023-05-30T12:14:59.000Z10x301bd4026030c124dc0b5b429cd897a41ce5637d15eb836c1fe65c62f7358e1f0
0x2373d6be34980b895b2d489a9688efbf172ae2070x2796317b0ff8538f253012862c06787adfb8ceb6false3985612920x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f402458771475344843438184101685521665173705632023-05-30T08:27:59.000Z10xbd7aa311435de57beedb26232e743b6018f855e8c813092d8ae6381f112e04cb0
0x2373d6be34980b895b2d489a9688efbf172ae2070x2796317b0ff8538f253012862c06787adfb8ceb6false4952116080x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f499328421057515113931392101685520391173704602023-05-30T08:06:59.000Z10x090e9ec6e75896f4bdd294a95a3821af2a3c40a92bf35fc1ea4f6f995a7970db0
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenDepositAndSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenMint_event

Token minting events emitted by Synapse Bridge contracts when wrapped tokens are minted on the destination chain during cross-chain transfers. Contains recipient address, token contract, minted amount, bridge fee, and kappa identifier for tracking cross-chain message delivery.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_kappaSTRINGUnique identifier for the cross-chain bridge transaction. 66-character hex string including 0x prefix.
in_toin_feeaddressremovedin_kappain_tokenin_amountlog_indexblock_numberblock_timestamptransaction_hash
0x493374100e511b1b091fa5bace1929dc154fee80300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0x87c5c14290663138f5632a58c936bb0d87a4b91114de282984996de676fa93170x0f2d719407fdbeff09d87557abb7232601fd9f294600930418951122623012274138125492021-12-15T22:56:44.000Z0x95b32a7587934d4f67cd86918b791b0e2499e6bd6898adce4a4d693b3e7fc7c7
0x0c8ee7dbf8cb1d980c107d3df6357deac7dbe9ef300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0xd7ccf227d4fdbf5a095993c3a3c6222771f3e871a9d0cb0b3108103e86e1ffaf0x0f2d719407fdbeff09d87557abb7232601fd9f291134300809079499145770392138104712021-12-15T15:10:21.000Z0xa250e5dd20fb34ec5b841a88a14fbf4e967c4d127eab234c91fa35f67c80d32c
0x0f08790b25be18b068632bd582983b4838f70afc300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0x58975167470af5baa42c9a096f074f494d25fe0947cebabeb185d4ae3be9dc1b0x0f2d719407fdbeff09d87557abb7232601fd9f291672007091851099635227137138105192021-12-15T15:21:38.000Z0x805b89d1954bf34982489c84433594d4cde96793ea7ae98669b68f8faa123321
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenMint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenMintAndSwap_event

Synapse Bridge cross-chain token mint and swap events combining minting on destination chain with automatic token swap execution. Records bridge transaction identifier (kappa), source and destination token indices, swap amounts, slippage parameters, fees, deadlines, and swap success status for cross-chain liquidity operations.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_tokenIndexFromINT64Index of the source token in the liquidity pool for the swap operation.
in_tokenIndexToINT64Index of the destination token in the liquidity pool for the swap operation.
in_minDySTRINGMinimum output amount expected from the swap operation. Numeric string representation of token quantity in smallest denomination.
in_deadlineSTRINGTimestamp after which the transaction or operation becomes invalid and will revert. Unix timestamp in seconds.
in_swapSuccessBOOLBoolean flag indicating whether the token swap operation completed successfully within the cross-chain bridge transaction.
in_kappaSTRINGUnique identifier for the cross-chain bridge transaction. 66-character hex string including 0x prefix.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenMintAndSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenRedeem_event

TokenRedeem events emitted by Synapse Bridge contracts when tokens are redeemed from one chain to another. Contains destination chain identifier, recipient address, token address, and amount for tracking cross-chain token redemption operations.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressremovedin_tokenin_amountlog_indexin_chainIdblock_numberblock_timestamptransaction_hash
0x815fcf7e300a21fc3097e995feeb56fdec925b240x2796317b0ff8538f253012862c06787adfb8ceb6false0x0f2d719407fdbeff09d87557abb7232601fd9f29226001999914753980963322342161166415722023-02-16T13:25:23.000Z0xf377ae3c55d958c3f8612cd8754122dcebb363d2d02473eb05c27d2bf20d7526
0xd54e4f8a55247487dd7c8c59f14ee5c0c28894770x2796317b0ff8538f253012862c06787adfb8ceb6false0x0f2d719407fdbeff09d87557abb7232601fd9f2916801204771391534341533942161166382122023-02-16T02:07:59.000Z0x2914eb8d3af1ebd817ec2405afb485ee8cfd6961bc0d6df7875ce4e01c5de52d
0xd54e4f8a55247487dd7c8c59f14ee5c0c28894770x2796317b0ff8538f253012862c06787adfb8ceb6false0x0f2d719407fdbeff09d87557abb7232601fd9f2914370247598834076613619742161166445362023-02-16T23:20:35.000Z0x2989983402e43b7979ae50640ccad1e2e706b400f50327ccc4dc9b4a578de8d6
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenRedeem_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenRedeemAndRemove_event

Cross-chain bridge redemption events where synthetic tokens are burned and withdrawn with automatic pool swap execution. Contains source token amounts, destination chain identifiers (EIP-155), recipient addresses, swap parameters including deadline and slippage protection, and target liquidity pool token indices for atomic redeem-and-swap operations.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_swapTokenIndexINT64Index of the target token within a liquidity pool for the swap operation. Zero-indexed integer identifying which token in the pool will be received.
in_swapMinAmountSTRINGMinimum token amount acceptable from a swap operation. Numeric string representation of token quantity in smallest denomination.
in_swapDeadlineSTRINGUnix timestamp representing the deadline by which a token swap must be executed. Integer value encoded as a string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenRedeemAndRemove_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenRedeemAndSwap_event

Cross-chain token redemption events that combine bridging with an atomic swap operation. Records bridge transfers where the recipient receives a different token than sent, including source chain identifier, token addresses, pool indices, amounts, slippage parameters, and expiration deadline for tracking Synapse Protocol cross-chain asset conversions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_tokenIndexFromINT64Index of the source token in the liquidity pool for the swap operation.
in_tokenIndexToINT64Index of the destination token in the liquidity pool for the swap operation.
in_minDySTRINGMinimum output amount expected from the swap operation. Numeric string representation of token quantity in smallest denomination.
in_deadlineSTRINGTimestamp after which the transaction or operation becomes invalid and will revert. Unix timestamp in seconds.
in_toaddressremovedin_minDyin_tokenin_amountlog_indexin_chainIdin_deadlineblock_numberblock_timestampin_tokenIndexTotransaction_hashin_tokenIndexFrom
0xbf696cd28ef67da38f9625bdc7b373aaa89ca70a0x2796317b0ff8538f253012862c06787adfb8ceb6false6676891160624159215220x12f79f8c1a6e47a9b5f0796fdb008bdc182fa19e66862492350535401500116216666000001718511772200518562024-06-09T04:23:11.000Z00xdd3fcba9457759821b777369e201d7d5f3ac62ca5c9066cc8b8dfbc5bc4e9d071
0xd77684d365a4e1834ed9459d245603f7cff91b690x2796317b0ff8538f253012862c06787adfb8ceb6false11473918596000000000000x12f79f8c1a6e47a9b5f0796fdb008bdc182fa19e114900000000000000000023216666000001713100825196040802024-04-07T13:21:11.000Z00x6363e61bc4165ddb1db1053fd667a06711fedb54936040e20400a87d31f4d43d1
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenRedeemAndSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenRedeemV2_event

TokenRedeemV2 events emitted by Synapse Bridge contracts when users redeem tokens on the destination chain of a cross-chain transfer. Records the redeemed token address, amount, recipient address, and target chain identifier for tracking cross-chain asset movement completions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenRedeemV2_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenWithdraw_event

Token withdrawal events from Synapse Bridge contracts recording cross-chain bridge transaction completions. Contains recipient address, token contract, withdrawal amount, bridge fee, and kappa transaction identifier for tracking asset movements between blockchains.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_kappaSTRINGUnique identifier for the cross-chain bridge transaction. 66-character hex string including 0x prefix.
in_toin_feeaddressremovedin_kappain_tokenin_amountlog_indexblock_numberblock_timestamptransaction_hash
0xc941fbaf503e17d792995b09d431b064b94dbf43100000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0xa1546e06d6f7743c6c9e0f37a22c3b9e39624eb645c8ea296409bc53159ecf1f0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2186854373350049546256166087882023-02-11T23:25:35.000Z0x620448223640d4da1228a19a3093abafb01aab749ab8dd94eb35a5583bb57c26
0x0100029670faae0fd631810c483b9cae68e9bb1a100000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0x293f6b272c85988492326cf31ddee7c108c169119b148e65b9388c1e44ec77fb0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2870534059831426311256166070252023-02-11T17:31:23.000Z0x2b119e569e365b5fd57a848c6269625cbfe11a7b8b5802a5fb0b2fffc1bed9f7
0x1793452c0651725a14f6095e5ba5527dd75b7682100000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0x98ae8ff361cb6a2cc2648e5daa75cc41ee0741c51f47e74e4d8323862283b4600xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2264453416142604556256166070802023-02-11T17:42:23.000Z0x4ca17a8388a9e76f4000b11fe6bf3cc4b58f1f4752616921c2db7315456632bc
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenWithdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SynapseBridge_TokenWithdrawAndRemove_event

Cross-chain bridge withdrawal events recording token redemptions with integrated liquidity pool removal operations. Contains bridge transaction identifiers (kappa), token amounts, fees, swap parameters including deadline and minimum acceptable output, and swap execution status for tracking Synapse Bridge cross-chain asset transfers.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_swapTokenIndexINT64Index of the target token within a liquidity pool for the swap operation. Zero-indexed integer identifying which token in the pool will be received.
in_swapMinAmountSTRINGMinimum token amount acceptable from a swap operation. Numeric string representation of token quantity in smallest denomination.
in_swapDeadlineSTRINGUnix timestamp representing the deadline by which a token swap must be executed. Integer value encoded as a string.
in_swapSuccessBOOLBoolean flag indicating whether the token swap operation completed successfully within the cross-chain bridge transaction.
in_kappaSTRINGUnique identifier for the cross-chain bridge transaction. 66-character hex string including 0x prefix.
in_toin_feeaddressremovedin_kappain_tokenin_amountlog_indexblock_numberin_swapSuccessblock_timestampin_swapDeadlinein_swapMinAmounttransaction_hashin_swapTokenIndex
0xdf1971696fa95ee2e36277907c640a413d63cd3b300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0xb6f6e09c3b0d9c3370917a670b79dc01992a57c71ed79f4f55780b6e5a056bbb0x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f472820084470145399584750615236298true2022-07-29T08:31:42.000Z165916985745408952532553773866140xddf60b2718873456a43e9ced978a214f39f84f0cab7ef444d90e393382f6226e0
0x3bad5c4e4ddbe6c2cc7e0c82ba805ce7caf02620300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0x8e696eda2a104cb8edd72c41d27590012756d6b78d9079b44600a29a71fb81e90x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f48550465514075890080138415235640true2022-07-29T05:58:07.000Z16591606414662783893007501818450xab9e3ae24bef6d9226cff408d461f7084640cdbaf24f36d552303a4f8507b9f40
0x879c2ee5adc372d0542d65d80ebfe647ac1a5f10300000000000000000000x2796317b0ff8538f253012862c06787adfb8ceb6false0xa5f06c7925509961453d5257e61d32c965c0b8a3cd6d5f670c5638454cd2c7ae0x1b84765de8b7566e4ceaf4d0fd3c5af52d3dde4f560609324077815234242true2022-07-29T00:37:54.000Z165914142153840919470xcb9bb5b085757096af97a15b65bbab3b15e212d75737e79e3fe37621dc8283401
Query with partition filter
SELECT *
FROM `tt-contracts.synapse_v1_ethereum.SynapseBridge_TokenWithdrawAndRemove_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100