Skip to main content

Tables

AutoCompoundingRewards_RewardsDistributed_event

Reward distribution events from Bancor v1’s auto-compounding rewards contract on Ethereum, tracking periodic reward payouts to liquidity pools with amounts distributed, pool token quantities, and remaining reward balances. Used for analyzing liquidity mining incentives and reward accumulation patterns across Bancor pools.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_rewardsAmountSTRINGAmount of rewards being distributed or received. String-encoded integer representing the token quantity in its smallest denomination.
in_poolTokenAmountSTRINGAmount of pool tokens involved in the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
in_remainingRewardsSTRINGRemaining reward tokens in the pool after this distribution event. Stored as a string-encoded integer representing the token amount in smallest denomination (wei for ERC-20 tokens).
addressin_poolremovedlog_indexblock_numberblock_timestampin_rewardsAmounttransaction_hashin_poolTokenAmountin_remainingRewards
0x036f8b31d78ca354ada40dbd117e54f78b6f6cdc0x939b462ee3311f8926c047d2b576c389092b1649false54168463392023-03-17T08:26:35.000Z12311969890x823247f3c8c13556caff54f7b74334431f6cd5276dcabc56e16e6d6efa75f8101473740141226686569572
0x036f8b31d78ca354ada40dbd117e54f78b6f6cdc0xb2cabf797bc907b049e4ccb5b84d13be3a8cfc21false57168463392023-03-17T08:26:35.000Z1019385616043391598450900x823247f3c8c13556caff54f7b74334431f6cd5276dcabc56e16e6d6efa75f8101946774950610852232893480074077297266491667704
0x036f8b31d78ca354ada40dbd117e54f78b6f6cdc0x444d6088b0f625f8c20192623b3c43001135e0fafalse60168463392023-03-17T08:26:35.000Z1336934135150346314946130x823247f3c8c13556caff54f7b74334431f6cd5276dcabc56e16e6d6efa75f810108806723349985478071016561803759520228764649285
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.AutoCompoundingRewards_RewardsDistributed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_deposit_function

Token deposit function calls to Bancor V1 liquidity pools on Ethereum. Records token amounts deposited, pool addresses, and output amounts returned for analyzing liquidity provision 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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenAmountSTRINGAmount of tokens involved in the transaction or operation. String-encoded integer representing the token quantity in its smallest denomination.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusin_poolgas_usedout_anon0signatureto_addressblock_numberfrom_addresstrace_addressin_tokenAmountblock_timestamptransaction_hash
2698991000000000000000true0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2576699968488823403080x47e7ef240xeef417e1d5cc832e619ae18d2f140de2999dd4fb178690280x305938c5c6abb6440f1402cc7488b56fed153c0e10000000000000002023-08-08T08:31:47.000Z0xcf29704afd33a20333cf2e680ef623698d6161bbfa28f034210587712c726cb7
1928970true0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb481854162984970x47e7ef240xeef417e1d5cc832e619ae18d2f140de2999dd4fb178690360x305938c5c6abb6440f1402cc7488b56fed153c0e3000002023-08-08T08:33:23.000Z0xfa2fbd3d879dc1346224fceeae16e599f5c5827654c45e34bb7ed5d44e084bf1
1481440true0x6b3595068778dd592e39a122f4f5a5cf09c90fe21413633000000000000000000x47e7ef240xeef417e1d5cc832e619ae18d2f140de2999dd4fb178690310x305938c5c6abb6440f1402cc7488b56fed153c0e3000000000000000002023-08-08T08:32:23.000Z0x970c912e5e4f095e644bd4385aedae8133ffdf6d6910c633b5e3cc21d14df14d
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_deposit_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_depositFor_function

Liquidity deposits into Bancor V1 pools on Ethereum via the depositFor function, recording token amounts, pool addresses, and returned position amounts. Used for tracking liquidity provider activity and position sizing across Bancor liquidity pools.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_providerSTRINGAddress of the liquidity provider or participant in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenAmountSTRINGAmount of tokens involved in the transaction or operation. String-encoded integer representing the token quantity in its smallest denomination.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusin_poolgas_usedout_anon0signatureto_addressin_providerblock_numberfrom_addresstrace_addressin_tokenAmountblock_timestamptransaction_hash
6576490false438850xb3db428b0xeef417e1d5cc832e619ae18d2f140de2999dd4fb147169220xb0b958398abb0b5db4ce4d7598fb868f5a00f3720,42022-05-05T11:11:46.000Z0x047ed3e2dee6473174cc54f63a3ac384b97be327772136ee2ba638267af8501a
6576490true0x6b175474e89094c44da98b954eedeac495271d0f920495999311070894675359417790xb3db428b0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0xb0b958398abb0b5db4ce4d7598fb868f5a00f372147169240xb0b958398abb0b5db4ce4d7598fb868f5a00f3720,46000000000000000000000002022-05-05T11:12:53.000Z0xd845fc3b5bc7d4a681dce1b5a5eb850ac37311223a8150414c0310044088dfaa
6576370true0x6b175474e89094c44da98b954eedeac495271d0f920494999425892412229466181490xb3db428b0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0xb0b958398abb0b5db4ce4d7598fb868f5a00f372147172150xb0b958398abb0b5db4ce4d7598fb868f5a00f3720,45000000000000000000000002022-05-05T12:17:40.000Z0x82ea96b15884561d4835417c86ca87bfbc0e46b1f933e2c23727562f25033de8
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_depositFor_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_FlashLoanCompleted_event

Completed flash loan events from Bancor V1 protocol on Ethereum, recording borrowed token amounts and associated fees charged to borrowers. Useful for analyzing flash loan usage patterns, fee revenue, and arbitrage activity on the Bancor decentralized exchange.
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_borrowerSTRINGAddress of the borrower in the lending or loan transaction. 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_feeAmountSTRINGFee amount charged for the flash loan or transaction. Numeric string representation of fee quantity in smallest denomination.
addressremovedin_tokenin_amountlog_indexin_borrowerblock_numberin_feeAmountblock_timestamptransaction_hash
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c207015303182730570000004420x41eeba3355d7d6ff628b7982f3f9d055c39488cb1692779802023-03-28T19:06:59.000Z0xf70ec3cc6b5b2358cdc06584de88c671da11fb6a0ef0108a091b4ca9ac4cb58e
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c66461805465067210000003110x41eeba3355d7d6ff628b7982f3f9d055c39488cb1692518702023-03-28T10:17:11.000Z0x6d068f8e19f3bca0a838551e04ea542c716943d6027a602710915bb4f694d603
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c13380615867457427000000740x41eeba3355d7d6ff628b7982f3f9d055c39488cb1692408002023-03-28T06:31:47.000Z0x5e1addd68fc33c71b2f363eb99ce016d73e7ff65599d9a60d1af9c564b9317a9
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_FlashLoanCompleted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_PoolAdded_event

Liquidity pool registration events from Bancor v1 automated market maker protocol on Ethereum, tracking when pools are added to or removed from pool collections. Used for analyzing Bancor’s supported token pairs and historical pool availability.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_poolCollectionSTRINGContract address of the pool collection managing the referenced pool. Hex-encoded, 0x-prefixed, 42-character string.
addressin_poolremovedlog_indexblock_numberblock_timestamptransaction_hashin_poolCollection
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0x6b175474e89094c44da98b954eedeac495271d0ffalse98146094952022-04-18T13:39:39.000Z0x96141627a1b1106215811ee1981cfae638a81dbf7a23dbde01f33789f7c587830x6f9124c32a9f6e532c908798f872d5472e9cb714
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeefalse169146094862022-04-18T13:37:07.000Z0x894cc251eb4eeda2045c5cc9ebef8ad0b6c05c99cf2b0b46e9ce09864ceb30090x6f9124c32a9f6e532c908798f872d5472e9cb714
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0x514910771af9ca656af840dff83e8264ecf986cafalse29146095022022-04-18T13:41:03.000Z0xfff4a86939588de9f025080ea6fed80fe1938623160695397f625eb3f41ea0770x6f9124c32a9f6e532c908798f872d5472e9cb714
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_PoolAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_PoolCreated_event

Pool creation events from Bancor V1 automated market maker protocol on Ethereum. Records new liquidity pool deployments with pool addresses and their associated collection contracts for tracking protocol expansion.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_poolCollectionSTRINGContract address of the pool collection managing the referenced pool. Hex-encoded, 0x-prefixed, 42-character string.
addressin_poolremovedlog_indexblock_numberblock_timestamptransaction_hashin_poolCollection
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0xdac17f958d2ee523a2206206994597c13d831ec7false143150123162022-06-23T09:42:28.000Z0x6c9234acbfeea2c0b72628a8a9ac9651725643f430565a600cc36b1425755d1c0x05e29f07b9710368a1d5658750e9b4b478c15bb8
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0x444d6088b0f625f8c20192623b3c43001135e0fafalse127150123162022-06-23T09:42:28.000Z0x6c9234acbfeea2c0b72628a8a9ac9651725643f430565a600cc36b1425755d1c0x05e29f07b9710368a1d5658750e9b4b478c15bb8
0xeef417e1d5cc832e619ae18d2f140de2999dd4fb0x967da4048cd07ab37855c090aaf366e4ce1b9f48false135150123162022-06-23T09:42:28.000Z0x6c9234acbfeea2c0b72628a8a9ac9651725643f430565a600cc36b1425755d1c0x05e29f07b9710368a1d5658750e9b4b478c15bb8
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_TokensTraded_event

Token swap execution events from Bancor V1 decentralized exchange on Ethereum, capturing trade details including source/target tokens, amounts, BNT (Bancor Network Token) routing amounts, and protocol fees for analyzing trading volume and liquidity provider earnings.
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_contextIdSTRINGUnique identifier linking related events within a transaction or operation. 66-character hex string including 0x prefix.
in_sourceTokenSTRINGToken address of the asset being sold by the trader in this swap. Hex-encoded Ethereum address (0x-prefixed) representing the input token of the trade.
in_targetTokenSTRINGContract address of the token received by the trader in the swap. Hex-encoded, 0x-prefixed 40-character string, or 0xee…ee representing native ETH.
in_sourceAmountSTRINGAmount of the source token being sold in this trade. Expressed in the token’s smallest unit (wei-equivalent), typically 18 decimals for ERC-20 tokens.
in_targetAmountSTRINGAmount of target tokens received in the trade. String-encoded integer representing the token quantity in its smallest denomination.
in_bntAmountSTRINGAmount of BNT (Bancor Network Token) involved in the operation. String-encoded integer representing the token quantity in its smallest denomination.
in_targetFeeAmountSTRINGProtocol fee amount charged on the target token output, denominated in the smallest unit of that token. Typically a small percentage of the target amount received by the trader.
in_bntFeeAmountSTRINGFee amount denominated in BNT (Bancor Network Token) charged on this trade, stored as a wei-denominated string. Zero values indicate fee-exempt trades or promotional periods.
in_traderSTRINGAddress that initiated or executed the trade transaction. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_traderlog_indexblock_numberin_bntAmountin_contextIdin_sourceTokenin_targetTokenblock_timestampin_bntFeeAmountin_sourceAmountin_targetAmounttransaction_hashin_targetFeeAmount
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x0000000000a84d1a9b0063a910315c7ffa9cd248171742993833155359671729461998590x7ff1170bcc6fa10597630a1e70b17565ea4af3cacdf76d434f518b134ab8ff840x0f5d2fb29fb7d3cfee444a200298f468908cc9420xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb482023-06-07T17:20:47.000Z16660984759663046230303192819427448021672213033859020xb6150ffa6512e556b0467e0d3be6b27615827ed8573e410efdd6b2bc854fd0fa13165514
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x0eae044f00b0af300500f090ea00027097d03000471742690517884591002550836375380x5a96f64250a3350af6c80b74d96c32f0fa25b28e098503bf88e1504dc7a87a1b0x0f5d2fb29fb7d3cfee444a200298f468908cc9420x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c2023-06-07T07:05:35.000Z8987231659573284610159243592072902851843517884591002550836375380x99f9adbc9574f47f6c193359d5a5cbe0cd1c4f406157a3bbd9f14477c704622d8987231659573284610
0xeef417e1d5cc832e619ae18d2f140de2999dd4fbfalse0x24902aa0cf0000a08c0ea0b003b0c0bf600000e03281742895310255564970622993405750xdef89e1ccdd8a13f63ce7c7b02fb09b9a0de9ece06b6add20a9c866b77fe9f4c0x0f5d2fb29fb7d3cfee444a200298f468908cc9420x4104b135dbc9609fc1a9490e61369036497660c82023-06-07T14:00:59.000Z515355023649396653592272198249621330329613615597907920691269590xc01aca8cdd9f6a6ccd967441047d40adf39c19a75a0cc158cdbdd144f07444ce6842008998955121241
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_TokensTraded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetwork_withdraw_function

Withdraw function calls from Bancor V1’s network contract on Ethereum, capturing token withdrawals with amounts and transaction details. Used for analyzing liquidity removal patterns and user withdrawal behavior from Bancor pools.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasin_idvaluestatusgas_usedout_anon0signatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
37519993050true2936300x2e1a7d4d0xeef417e1d5cc832e619ae18d2f140de2999dd4fb230033990x18571698d3a7c1f5f768b79e0b0cbfd87cd712bf2025-07-26T12:43:59.000Z0xd8e724e29ed61fb459e03738141c1114ae72885540142525aa3300fcd2d4d03a
39792193060true3090951362295645064101355930x2e1a7d4d0xeef417e1d5cc832e619ae18d2f140de2999dd4fb230034090x18571698d3a7c1f5f768b79e0b0cbfd87cd712bf2025-07-26T12:45:59.000Z0x10a20f7c5786382ae520e4d29471b90e20a713f5d56504e9da801dafd7a58f8e
26838293070true20951233791617071409212901320x2e1a7d4d0xeef417e1d5cc832e619ae18d2f140de2999dd4fb230034150x18571698d3a7c1f5f768b79e0b0cbfd87cd712bf2025-07-26T12:47:11.000Z0x172bb65918d3670949cf3c34f25b4ae8b601cfbb586c0a2f1abfed53a36a901e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetwork_withdraw_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BancorNetworkV21_Conversion_event

Token swap events from Bancor V2.1 automated market maker on Ethereum. Contains conversion details including trader addresses, input/output token pairs, exchange amounts, and pool identifiers for analyzing liquidity pool trading 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__smartTokenSTRINGContract address of the Bancor pool smart token (relay token) through which the conversion was routed. Represents the intermediary liquidity pool on Ethereum, hex-encoded 0x-prefixed address.
in__fromTokenSTRINGContract address of the source token being swapped in the Bancor conversion. Hex-encoded, 0x-prefixed 40-character Ethereum address representing the token sent by the trader.
in__toTokenSTRINGContract address of the destination token received in this Bancor V2.1 conversion. Hex-encoded, 0x-prefixed 40-character Ethereum address.
in__fromAmountSTRINGAmount of tokens sent by the trader in the conversion, denominated in the fromToken’s smallest unit (wei-equivalent). Represents the input quantity before any conversion fees or slippage.
in__toAmountSTRINGAmount of destination tokens received by the trader in the conversion, denominated in the smallest unit (wei-equivalent) of the token. String format preserves precision for large token amounts with many decimal places.
in__traderSTRINGContract address of the user who initiated the token swap on Bancor v2.1. This is the wallet that executed the conversion transaction between the source and destination tokens.
addressremovedlog_indexin__traderin__toTokenblock_numberin__toAmountin__fromTokenin__fromAmountin__smartTokenblock_timestamptransaction_hash
0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0false220x0000d2fa2d0000a58c0000c300720b0ee3b02a810x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c1533896011318605912421376014570x0391d2021f89dc339f60fff84546ea23e337750f874229910204620827880x5189426a5906d00cbef2675764596e9a6a427fd52022-08-14T09:30:49.000Z0x2a4cfdba416e657e1e4e26a92fca462316c1f69c231759d3765b04b027c46fc3
0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0false350x0000d2fa2d0000a58c0000c300720b0ee3b02a810x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c1534017127749199228831196500190x0391d2021f89dc339f60fff84546ea23e337750f2127120251458928126000x5189426a5906d00cbef2675764596e9a6a427fd52022-08-14T14:02:17.000Z0x209462cd430aa389c1a481705ffc45893cb6c5ad2a4ec79339211fb749c2c71a
0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0false1130xed77777586d73c58eb4d6bebdf9c85c2d5f56c2d0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c1534039125197275765480134860330x0391d2021f89dc339f60fff84546ea23e337750f1955502031567548579840x5189426a5906d00cbef2675764596e9a6a427fd52022-08-14T14:49:13.000Z0xf1a8c5e793d87daa20514b343bb5c68b0a4cc4f3b816309b1fbb04ac2c60d83d
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BancorNetworkV21_Conversion_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BNT_Destruction_event

BNT token burn events from Bancor v1 protocol on Ethereum, recording the destruction of BNT (Bancor Network Token) with amounts destroyed per transaction. Used for tracking deflationary tokenomics and protocol-level BNT supply adjustments.
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__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
addressremovedlog_indexin__amountblock_numberblock_timestamptransaction_hash
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse4326240358644316340791860144814152022-03-29T13:40:07.000Z0x8545bc8ffab092fcc6bec980fa0d3cfda85bc22011b63d232f34c4bff3247645
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse5582838998945685619444045144826972022-03-29T18:21:55.000Z0x0cd40f6f7edc3369b8b4cda84af492b3a6d45a6b910b71f87f2d9e2bd41e598a
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse60013724987430741188465612144834772022-03-29T21:14:57.000Z0xd6496623b6e46620e636810ecaad457d01b5922d4f2b6cec405f2dbbf76466f1
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BNT_Destruction_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BNT_Issuance_event

BNT (Bancor Network Token) issuance events from Bancor v1 protocol on Ethereum, recording new token minting operations. Contains issuance amounts and timestamps for analyzing BNT token supply expansion and liquidity provision incentive 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__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
addressremovedlog_indexin__amountblock_numberblock_timestamptransaction_hash
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse350000000000000000000065382552018-10-18T13:19:49.000Z0x790719ac42be44ff2c1816fd94140b4f18c5a6d5ff602b66e00d17ac7b214a20
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse431666360640820308354565409082018-10-18T23:45:45.000Z0x3c77a4ec415bb9506d5a1b6b7ac1e4812c4f92642601784d1b904c9f16f788cc
0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse515800000000000000000065367092018-10-18T07:15:31.000Z0x7596372d6730addd12ae71ad73c79b6c9a747f9887d62788d31e07f7495a8757
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BNT_Issuance_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BNT_Transfer_event

BNT (Bancor Network Token) transfer events from the Bancor v1 protocol on Ethereum, capturing token movements between addresses with wei-denominated amounts. Used for analyzing BNT token flows, liquidity provider activity, and trading patterns within the Bancor decentralized exchange ecosystem.
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__fromSTRINGAddress initiating the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__toSTRINGDestination address for the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__valueSTRINGAmount transferred, approved, deposited, or withdrawn in the transaction. String-encoded integer representing token quantity in smallest denomination (wei for ETH, base units for ERC20 tokens).
in__toaddressremovedin__fromin__valuelog_indexblock_numberblock_timestamptransaction_hash
0x5142127a6703f5fc80bf11b7b57ff68998f218e40x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse0x3ab6564d5c214bc416ee8421e05219960504eead21559972121899988681255093802232020-01-30T00:01:40.000Z0x3241965ee8d1a31523ae8f2efb836cd4494b8ba2e493521bfd9eb5cdeff127d5
0x3ab6564d5c214bc416ee8421e05219960504eead0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse0x5142127a6703f5fc80bf11b7b57ff68998f218e41840860812160938554456493802232020-01-30T00:01:40.000Z0x93744e919893e6dd2fc9b5e06c996e63baf4e5a6e9deddd6f3dc3b010b80afa2
0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse0x3ab6564d5c214bc416ee8421e05219960504eead1840860812160938554457093802232020-01-30T00:01:40.000Z0x93744e919893e6dd2fc9b5e06c996e63baf4e5a6e9deddd6f3dc3b010b80afa2
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.BNT_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_FeesWithdrawn_event

Fee withdrawal events from Bancor Carbon’s automated market maker protocol on Ethereum, recording token amounts collected by recipients from the protocol’s CarbonController contract. Useful for analyzing protocol revenue distribution and fee accumulation patterns across different tokens including WBTC, USDT, USDC, and native ETH.
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.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_tokenin_amountin_senderlog_indexblock_numberin_recipientblock_timestamptransaction_hash
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x2260fac5e5542a773aa44fbcfedf7c193bc2c599110270xba7d1581db6248dc9177466a328bf457703c8f8434192243620xba7d1581db6248dc9177466a328bf457703c8f842024-02-14T06:15:59.000Z0x04c6f2911db1d7c532ac10f43a29ec34336c2386c6abc08268a4562ffdd9ceac
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c33043366779095761460xba7d1581db6248dc9177466a328bf457703c8f8436192243620xba7d1581db6248dc9177466a328bf457703c8f842024-02-14T06:15:59.000Z0x04c6f2911db1d7c532ac10f43a29ec34336c2386c6abc08268a4562ffdd9ceac
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee31642214521459990xba7d1581db6248dc9177466a328bf457703c8f84246183930540xba7d1581db6248dc9177466a328bf457703c8f842023-10-20T17:34:47.000Z0xc0e4d2516eb8fbc941bdd9559458c0d0430e90350e00f1cbc21bad218c761408
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_FeesWithdrawn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_Initialized_event

Initialization events for Bancor Carbon protocol controller contracts on Ethereum, tracking when new controller instances are deployed and initialized with their version number. Used for monitoring protocol upgrades and deployment history.
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_versionINT64Version identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false2541170873752023-04-20T11:20:59.000Z0xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_PairCreated_event

Trading pair creation events from Bancor Carbon’s automated market maker protocol on Ethereum. Records new liquidity pools with token pair addresses and unique pair IDs for tracking decentralized exchange strategy deployments.
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_pairIdSTRINGUnique identifier assigned to each trading pair created in the Bancor Carbon protocol. Sequential numeric values starting from creation, used to reference specific token pair configurations on-chain.
in_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_pairIdin_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false2230xa41d2f8ee4f47d3b860a149765a7df8c3287b7f00xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2267188179422023-12-19T05:31:35.000Z0xdb167e99e5cdaa5eec28def6ac28fffb7d91d61bd293bb9b8b2fee33dc7a12e9
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false560x9d65ff81a3c488d585bbfb0bfe3c7707c7917f540xdac17f958d2ee523a2206206994597c13d831ec7287174300022023-06-07T17:33:35.000Z0xa71922667f31e973603034c16b3af90a3810472009e5eb1f70926b28bdec49ae
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false2330x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0702189016992023-12-30T23:48:11.000Z0x1b3b8db1ddc100666db6865c71f604965a3678e16de971f229d7b73c080b2f26
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_Paused_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.bancor_v1_ethereum.CarbonController_Paused_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_RoleAdminChanged_event

Role administration changes in Bancor’s Carbon protocol on Ethereum, tracking when admin permissions are granted or revoked for different role identifiers. Useful for monitoring protocol governance and access control modifications.
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.
addressin_roleremovedlog_indexblock_numberblock_timestampin_newAdminRoletransaction_hashin_previousAdminRole
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false250170873752023-04-20T11:20:59.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e0x0000000000000000000000000000000000000000000000000000000000000000
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10x24a843cae781765d8cdc3bca1cc42497522c0508f4e621c2ca36ceea2fda7b16false253170873752023-04-20T11:20:59.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e0x0000000000000000000000000000000000000000000000000000000000000000
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10xf28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c0845false252170873752023-04-20T11:20:59.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e0x0000000000000000000000000000000000000000000000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_RoleAdminChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_RoleGranted_event

Role assignment events from Bancor’s Carbon Controller contract on Ethereum, tracking administrative permissions granted to accounts. Used for analyzing protocol governance and access control changes over time.
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
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10x24a843cae781765d8cdc3bca1cc42497522c0508f4e621c2ca36ceea2fda7b16false0x5beba4d3533a963dedb270a95ae5f7752fa0fe221100xba7d1581db6248dc9177466a328bf457703c8f84170874802023-04-20T11:42:11.000Z0x9184b57362983ea326e1aa284fa547095985e25df4376e258abe0731696e178c
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false0x5beba4d3533a963dedb270a95ae5f7752fa0fe222510x5beba4d3533a963dedb270a95ae5f7752fa0fe22170873752023-04-20T11:20:59.000Z0xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10xf28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c0845false0x5beba4d3533a963dedb270a95ae5f7752fa0fe221930x5beba4d3533a963dedb270a95ae5f7752fa0fe22170879232023-04-20T13:11:59.000Z0xb824c64d25e40d4b24d35c728160e39f6b8396d1a451c6b8fa82a7a9dc0cab08
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_RoleGranted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_RoleRevoked_event

Access control events from Bancor v1 Carbon protocol on Ethereum tracking role revocations from accounts. Used for monitoring administrative permissions and governance changes in the protocol’s role-based access system.
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
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10xf28f409b8cbe6b50c7ca45afe893f01f69626f8a4e33cb480bc1bc2d618c0845false0x5beba4d3533a963dedb270a95ae5f7752fa0fe223000x5beba4d3533a963dedb270a95ae5f7752fa0fe22194254492024-03-13T10:06:47.000Z0xe5483ced975da02ac39552c7afda7691110b0c20f6fa087b53528ef4c61bfe13
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e10x24a843cae781765d8cdc3bca1cc42497522c0508f4e621c2ca36ceea2fda7b16false0x5beba4d3533a963dedb270a95ae5f7752fa0fe22390xba7d1581db6248dc9177466a328bf457703c8f84213792092024-12-11T12:17:35.000Z0x1e283b9ac66e3384ae1a0ceb924e7fede82bc80a5769177e305f559a73fa5101
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_RoleRevoked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_StrategyCreated_event

Strategy creation events from Bancor Carbon (v1) automated market maker on Ethereum. Records bidirectional liquidity provision strategies with order parameters (A, B, y, z values) for analyzing concentrated liquidity positions and trading curve configurations.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_order0STRUCT<y STRING, z STRING, A STRING, B STRING>Order parameters for the first token in the strategy’s trading pair, containing bonding curve coefficients (A, B) and liquidity values (y, z). Values are null or zero when the strategy has no active buy or sell orders for token0.
in_order1STRUCT<y STRING, z STRING, A STRING, B STRING>Order parameters for the second token in the trading pair, containing liquidity curve coefficients (A, B, y, z) that define pricing and availability. Structured as a RECORD with numeric string values representing the automated market maker’s bonding curve configuration.
in_idaddressremovedin_ownerin_order0in_order1in_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
575077200096386003253103086559688277365610xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x25ca93c584756d674d6fe6d1e241a89791b18df3{“A”:“0”,“B”:“0”,“y”:“0”,“z”:“0”}{“A”:“46406659”,“B”:“267030609”,“y”:“13652792574”,“z”:“13652792574”}0xf16e81dce15b08f326220742020379b855b87df90xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48219181741122023-09-20T02:25:35.000Z0xf68f1bfa97599d96c8ddc61c5630645710c602b48672c7082df9a13913d73b93
23819765684465692442436222520223774806900xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0xddd6516ed7e9b2defb2e1ae50379943cc9ee2b73{“A”:“0”,“B”:“6111054486652827”,“y”:“1221000000000000000000”,“z”:“1221000000000000000000”}{“A”:“0”,“B”:“173512828”,“y”:“464234783”,“z”:“464234783”}0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48131181764382023-09-20T10:15:11.000Z0x2e147a21fa45c76c9fa0231a52629b71dcc7293747c4fb1c96f7e0ce5f058c9a
40833884030512615615604952891812185376430xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0xe76f1230c61160206306cb55e524d5843bad697a{“A”:“0”,“B”:“17373012734782”,“y”:“0”,“z”:“0”}{“A”:“0”,“B”:“1548301910034222”,“y”:“205000000”,“z”:“205000000”}0x2260fac5e5542a773aa44fbcfedf7c193bc2c5990xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48134174575262023-06-11T14:41:11.000Z0xb89ee5cad6d4a72cbc92ead7c81eef494121915c2a4ac3661381dff1dbc54d05
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_StrategyCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_StrategyDeleted_event

Strategy deletion events from Bancor Carbon automated market maker protocol on Ethereum. Captures removal of liquidity strategies with order parameters (y, z, A, B values) for both token pairs when liquidity providers exit positions.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_order0STRUCT<y STRING, z STRING, A STRING, B STRING>Order parameters for the first token in the trading pair, containing pricing curve coefficients (A, B) and liquidity amounts (y, z). All values are stored as strings representing integers due to precision requirements for on-chain calculations.
in_order1STRUCT<y STRING, z STRING, A STRING, B STRING>Order parameters for the second token in the deleted Bancor Carbon strategy, containing bonding curve coefficients (A, B) and liquidity amounts (y, z). The RECORD structure defines the automated market maker pricing algorithm for token1 trades.
in_idaddressremovedin_ownerin_order0in_order1in_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
459381195343266925675555720032887085469570xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x9f6dbfbfcc350d55a207e22ddd1d8813d4b19ff2{“A”:“2132133601889728”,“B”:“3303421762110733”,“y”:“0”,“z”:“0”}{“A”:“11128445448”,“B”:“163522184576”,“y”:“200000000000000000”,“z”:“200000000000000000”}0x3007083eaa95497cd6b2b809fb97b6a30bdf53d30xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee255179177832023-08-15T04:12:59.000Z0x55fc39cbacaf804d83ea23686a53116f80e9e88293896728254e5b4359c25ee1
476395313689313848848724450404475496042440xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x6609005145c7511a91a16301f298fd18a7b72ac8{“A”:“0”,“B”:“0”,“y”:“0”,“z”:“0”}{“A”:“0”,“B”:“8349897185747”,“y”:“16800000000000000”,“z”:“16800000000000000”}0xd8b90d2e680ea535eacce1b025c998b347892f680xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee296179220752023-08-15T18:38:11.000Z0xf177226c78b1d364826c6eca682b1cb20691b4962f8845c2d5e21124cb5c632c
472992490020104464214090704330157813927870xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x6609005145c7511a91a16301f298fd18a7b72ac8{“A”:“0”,“B”:“0”,“y”:“0”,“z”:“0”}{“A”:“0”,“B”:“7552766182682”,“y”:“500000000000000000”,“z”:“500000000000000000”}0xd8b90d2e680ea535eacce1b025c998b347892f680xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2360179220782023-08-15T18:38:47.000Z0xab90f965457d53bb0d842b96c1b359b618ac0e317a59b8fe1d2cb9734dc7e77e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_StrategyDeleted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_StrategyUpdated_event

Strategy update events from Bancor Carbon automated market maker on Ethereum. Contains paired order configurations with pricing parameters (A, B, y, z values) for analyzing automated trading strategy adjustments and liquidity provision behavior.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_order0STRUCT<y STRING, z STRING, A STRING, B STRING>Order parameters for the first token in a Bancor Carbon trading pair, containing pricing curve coefficients (A, B) and liquidity values (y, z). Structured record defining one side of a bidirectional automated market maker strategy.
in_order1STRUCT<y STRING, z STRING, A STRING, B STRING>Order configuration for the second token in the Bancor v3 Carbon trading strategy, containing pricing curve parameters (A, B, y, z). Typically represents the opposite direction of in_order0, with y and z values indicating available liquidity.
in_reasonINT64Enumerated code indicating the cause or category of the operation or state change. Non-negative integer value representing different reason types defined by the protocol.
in_idaddressremovedin_order0in_order1in_reasonin_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
91876239068653385135111144006577417097930xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false{“A”:“0”,“B”:“693363839”,“y”:“0”,“z”:“0”}{“A”:“0”,“B”:“5564577281336368”,“y”:“100000000000000000”,“z”:“100000000000000000”}00x2260fac5e5542a773aa44fbcfedf7c193bc2c5990xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee261181361582023-09-14T18:02:35.000Z0xdb8976951c3ccff1d2d625bd7c4c336d840a798f7eff067035ca458f49b17105
561465905419548464714568102262417548907220xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false{“A”:“0”,“B”:“5265938431914332”,“y”:“3049940584000000000000000000”,“z”:“3049940584000000000000000000”}{“A”:“0”,“B”:“1138147818”,“y”:“0”,“z”:“0”}00x75c97384ca209f915381755c582ec0e2ce88c1ba0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee192181346972023-09-14T13:05:11.000Z0xc08ecce424fb18da5f947d57fca1cca97dff59936d83219f2d6b333db4c0457c
551257434411920310810666864039464502563450xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false{“A”:“0”,“B”:“6123191372350253”,“y”:“70779239735011”,“z”:“70779239735011”}{“A”:“0”,“B”:“154170194”,“y”:“0”,“z”:“0”}00x7721a4cb6190edb11d47f51c20968436eccdafb80xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48777181317672023-09-14T03:12:59.000Z0x2acbd28c7c4dfe06ef248fece9c2bdbbc21b212035b580b8170a40c8984f3beb
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_StrategyUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_TokensTraded_event

Token swap events from Bancor v3’s Carbon automated trading strategy protocol on Ethereum. Captures trade executions with source/target tokens, amounts, fees, and trader addresses for analyzing on-chain liquidity strategy performance.
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_traderSTRINGAddress that initiated or executed the trade transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_sourceTokenSTRINGContract address of the token being sold by the trader in the swap transaction. Hex-encoded, 0x-prefixed 40-character string representing an ERC-20 token or native ETH (0xeeee…eeee).
in_targetTokenSTRINGContract address of the token being received in the trade on Ethereum. Uses 0xeeee…eeee as a special identifier for native ETH.
in_sourceAmountSTRINGAmount of source tokens transferred from the trader in the swap, denominated in the token’s smallest unit (wei for ETH). String-encoded to preserve precision for large integer values common in DeFi transactions.
in_targetAmountSTRINGAmount of target tokens received in the trade. String-encoded integer representing the token quantity in its smallest denomination.
in_tradingFeeAmountSTRINGTrading fee charged for the swap, denominated in the smallest unit of the target token. This is the protocol or liquidity provider fee extracted from the trade, separate from the amounts exchanged.
in_byTargetAmountBOOLIndicates whether the trade was executed by specifying the target (output) amount rather than the source (input) amount. When true, the trader specified the exact amount of target token desired; when false, they specified the source token amount to swap.
addressremovedin_traderlog_indexblock_numberin_sourceTokenin_targetTokenblock_timestampin_sourceAmountin_targetAmounttransaction_hashin_byTargetAmountin_tradingFeeAmount
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0xe27baebd7b14602de3797974db9f5f4f8dcb6679117171958210xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2023-05-05T17:08:59.000Z20182585644103293438321599401690xe9d03642109ced8f6f6e0569bae7b087e29010fc4ba805582345187e09572f1ffalse20700087839999881
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x41eeba3355d7d6ff628b7982f3f9d055c39488cb53171915100x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2023-05-05T02:37:59.000Z496521357229018394718812523988145862052570xf88e3e9a05a9e80f3dde5c5bd7ee71e96d4fa2ede5bae48e76d531465da9d55ffalse2509817263699811
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false0x41eeba3355d7d6ff628b7982f3f9d055c39488cb246175603150xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0x6b175474e89094c44da98b954eedeac495271d0f2023-06-26T01:22:59.000Z9072393088530614000170849577658728236237740xfcbf2ea0ab54dcdd6d5e0fbb6d7cb961708f3b15bf685007d6c689ad54778918false34238392316378404056
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_TokensTraded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_TradingFeePPMUpdated_event

Trading fee configuration changes from Bancor’s Carbon Controller on Ethereum. Tracks fee updates in parts-per-million (PPM) with previous and new values for analyzing fee policy adjustments.
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_prevFeePPMSTRINGPrevious fee rate in parts per million (PPM). String-encoded integer representing the fee as a proportion of 1,000,000 before the update.
in_newFeePPMSTRINGUpdated fee rate in parts per million (PPM). String-encoded integer representing the fee as a proportion of 1,000,000.
addressremovedlog_indexblock_numberin_newFeePPMin_prevFeePPMblock_timestamptransaction_hash
0xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1false24917087375200002023-04-20T11:20:59.000Z0xa8c33dd6939277c3dae2307d5ccf98fa35d2f727cb4f0d95111089615775b77e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonController_TradingFeePPMUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonController_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.bancor_v1_ethereum.CarbonController_Unpaused_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_Initialized_event

Initialization events for Bancor V1’s CarbonVortex contract on Ethereum, capturing when the contract was deployed and initialized. Used for tracking contract deployment history and verifying operational start times.
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_versionINT64Version identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0xba7d1581db6248dc9177466a328bf457703c8f84false1351170874752023-04-20T11:41:11.000Z0xc26ab98d01d3d8d8fcde878e09e69497b3418d74544ec3ee8f600ff6ed320b7e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonVortex_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_RewardsUpdated_event

Events tracking changes to rewards parameters in Bancor v1’s Carbon Vortex contract on Ethereum, recorded in parts per million (PPM). Contains previous and new reward rate configurations for analyzing protocol incentive adjustments over time.
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_prevRewardsPPMSTRINGPrevious rewards rate in parts per million (PPM) before the update event. May contain large numeric values representing the prior configuration of the rewards mechanism.
in_newRewardsPPMSTRINGNew rewards rate in parts per million (PPM) after the update event. Represents the fee or reward percentage where 1,000,000 PPM equals 100%.
addressremovedlog_indexblock_numberblock_timestampin_newRewardsPPMtransaction_hashin_prevRewardsPPM
0xba7d1581db6248dc9177466a328bf457703c8f84false80176349482023-07-06T12:57:11.000Z200000x6982bcd8f9c1cc47c168bb4f2361cd98cabbd9e7f300559e2426ccb95d9a874c429496729600000000000000020000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonVortex_RewardsUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_RoleAdminChanged_event

Role admin change events from Bancor v1’s CarbonVortex contract on Ethereum, tracking modifications to access control admin roles. Used for monitoring governance changes and permission management in the protocol’s admin hierarchy.
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.
addressin_roleremovedlog_indexblock_numberblock_timestampin_newAdminRoletransaction_hashin_previousAdminRole
0xba7d1581db6248dc9177466a328bf457703c8f840x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false132170874752023-04-20T11:41:11.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xc26ab98d01d3d8d8fcde878e09e69497b3418d74544ec3ee8f600ff6ed320b7e0x0000000000000000000000000000000000000000000000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonVortex_RoleAdminChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_RoleGranted_event

Role assignment events from Bancor’s CarbonVortex contract on Ethereum, tracking access control changes with role identifiers and assigned accounts. Used for monitoring administrative permissions and contract governance 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_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
0xba7d1581db6248dc9177466a328bf457703c8f840x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false0x5beba4d3533a963dedb270a95ae5f7752fa0fe221330x5beba4d3533a963dedb270a95ae5f7752fa0fe22170874752023-04-20T11:41:11.000Z0xc26ab98d01d3d8d8fcde878e09e69497b3418d74544ec3ee8f600ff6ed320b7e
0xba7d1581db6248dc9177466a328bf457703c8f840x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false0x5beba4d3533a963dedb270a95ae5f7752fa0fe221520xd053dcd7037af7204cece544ea9f227824d79801204694122024-08-06T12:04:35.000Z0xf076387ede8bfd7fbf0a6e6e0faf79f4b372eaf825bc01a6eeb96c1bee6115f8
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonVortex_RoleGranted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_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.bancor_v1_ethereum.CarbonVortex_RoleRevoked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CarbonVortex_TokensBurned_event

Token burn events from Bancor’s Carbon Vortex contract on Ethereum, recording burn amounts of protocol tokens and associated reward distributions. Tracks caller addresses, multiple token types (including ETH as 0xeeee…eeee), and reward amounts for analyzing Bancor’s deflationary tokenomics.
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_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_tokensARRAY<STRING>Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.
in_rewardAmountsARRAY<STRING>Reward amounts distributed to participants for each token burned, ordered to match the in_tokens array. Values are in base token units (wei for ETH, smallest denomination for ERC20 tokens).
in_burnAmountSTRINGAmount of Bancor Network Tokens (BNT) burned in this transaction, denominated in wei (1e-18 BNT). Values typically range from hundreds to thousands of BNT tokens.
addressremovedin_callerin_tokenslog_indexblock_numberin_burnAmountblock_timestampin_rewardAmountstransaction_hash
0xba7d1581db6248dc9177466a328bf457703c8f84false0x160f5f00288e9e1cc8655b327e081566e580a71d[“0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee”]52180971738238844956829844737642023-09-09T06:52:23.000Z[“4445448885894782”]0x3e98c031c131b237d79b3b3c994abf07d27c49a43a93cafd99adedccdd0c9cc2
0xba7d1581db6248dc9177466a328bf457703c8f84false0x23b530268c4a1f0bb11fbb0aa2f3ddf0d41caf22[“0x2260fac5e5542a773aa44fbcfedf7c193bc2c599”,“0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee”,“0x514910771af9ca656af840dff83e8264ecf986ca”,“0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c”]9641870339553601387180329248663122023-12-03T04:08:59.000Z[“88791”,“5497106613347610”,“562478090977925335”,“40351371011580956351”]0x62162a299be9e72c57820cdea0485285a469ea4df8dcdd70d8ffa178325f2299
0xba7d1581db6248dc9177466a328bf457703c8f84false0x1d148065ff0ba5aa48c538cd798e8c4af5168ce0[“0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee”,“0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c”,“0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c”]3811858697136859607729742808863772023-11-16T20:55:11.000Z[“8648452138845250”,“32252004044922304375”,“59900591854386804521”]0xfb113a36e3ed8fb35eb58258a4671a895f7fdd010006ce69ee23ff2fe21f80b1
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.CarbonVortex_TokensBurned_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Converter_Conversion_event

Token swap events from Bancor V1 converter contracts on Ethereum, capturing trades between token pairs with amounts, fees, and trader addresses. Used for analyzing decentralized exchange (DEX) volume, liquidity provider fee revenue, and trading patterns across Bancor liquidity pools.
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__fromTokenSTRINGContract address of the token being sold/swapped from in this Bancor V1 conversion. Hex-encoded, 0x-prefixed 40-character Ethereum address representing the input token in the trade.
in__toTokenSTRINGContract address of the destination token in the Bancor V1 conversion. Hex-encoded, 0x-prefixed 40-character string representing the ERC-20 token received by the trader.
in__traderSTRINGEthereum address of the user who initiated the token swap on the Bancor V1 converter. Hex-encoded, 0x-prefixed 40-character string representing the trader’s wallet address.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
in__returnSTRINGToken amount received by the trader after the conversion, denominated in the output token’s smallest unit. Values are large integers representing wei-equivalent amounts for the destination token specified in in__toToken.
in__conversionFeeSTRINGFee charged by the Bancor protocol for this conversion, denominated in the smallest unit of the output token. Represented as a string to preserve precision for large integer values common in token transactions.
addressremovedlog_indexin__amountin__returnin__traderin__toTokenblock_numberin__fromTokenblock_timestamptransaction_hashin__conversionFee
0x0a3df697e872ab920f305db00450c0a372e6c970false24351822502504653380475688657137375781471280xfd0000000100069ad1670066004306009b487ad70x0954906da0bf32d5479e25f46056d22f08464cab166762270x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c2023-02-21T10:17:47.000Z0xb414dca350af5872ee91ad8654a2f4cb0e191c6d0da2ec3e649efa497f4f698c138007442359876046
0x0a3df697e872ab920f305db00450c0a372e6c970false168260848548376869396875571933941968063773530xfd0000000100069ad1670066004306009b487ad70x0954906da0bf32d5479e25f46056d22f08464cab166745260x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c2023-02-21T04:32:35.000Z0x746ad0829d76eb985079a01b25e98a1d37cb89d3ee530e2b8b37d8e56ec19ad5114616020434481718
0x555981b82743aa443cb1c3002c85ba9d795d4596false831239949514519676263259769408864518966230x0b3f6d4a5d6835137ccb2c1248f5a7d882c0dbda0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e166797380x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c2023-02-21T22:06:35.000Z0x9690a9296b66f76aead2432dab321201b433580e5a9bf549191a803f8c7dcd2e154190153210213
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Converter_Conversion_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Converter_LiquidityAdded_event

Liquidity deposit events from Bancor v1 converter contracts on Ethereum, recording provider addresses, token amounts added, and resulting pool balances and supply. Used for analyzing liquidity provider activity and pool composition changes over time.
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__providerSTRINGEthereum address of the liquidity provider adding tokens to the Bancor v1 converter pool. Hex-encoded, 0x-prefixed 40-character string identifying the wallet depositing reserve tokens.
in__reserveTokenSTRINGContract address of the reserve token being added to the Bancor liquidity pool. Uses 0xeeee…eeee as a sentinel value to represent native ETH deposits.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
in__newBalanceSTRINGNew balance after the event or transaction. String-encoded integer representing the balance in smallest unit (wei for ETH, base units for tokens).
in__newSupplySTRINGTotal supply of pool tokens after the liquidity addition event. Value is denominated in the smallest unit (wei-equivalent) of the pool token.
addressremovedlog_indexin__amountblock_numberin__providerin__newSupplyin__newBalanceblock_timestampin__reserveTokentransaction_hash
0xe870d00176b2c71afd4c43cea550228e22be4abdfalse1805410317666515627105670510xa15959aaaa96c0b17d06ffbb2dc10ae249e37bf612142940705905530737379209212666898561501261246982020-07-31T11:22:40.000Z0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0x8e41e1899b16c036e5e127a2e63987b37e67ee4a447e72c44276ffd1604e346d
0xe870d00176b2c71afd4c43cea550228e22be4abdfalse178999717242895349971105670510xa15959aaaa96c0b17d06ffbb2dc10ae249e37bf61214294070590553073737920939296540164513651058765402020-07-31T11:22:40.000Z0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0x8e41e1899b16c036e5e127a2e63987b37e67ee4a447e72c44276ffd1604e346d
0xe870d00176b2c71afd4c43cea550228e22be4abdfalse25422013367537442391200105665760x09804954cbf4844601baf6cb8792e189e930dbc21214296731670043727923708938590936449296224268268572020-07-31T09:36:29.000Z0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0x3b5a1d6e48c97d2eff07247cbd363477de00ea66cfc0c06d7d4c938664cbc70a
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Converter_LiquidityAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Converter_LiquidityRemoved_event

Liquidity withdrawal events from Bancor V1 converter pools on Ethereum, capturing provider addresses, token amounts removed, and updated pool balances and supply. Used for tracking liquidity provider exits and analyzing pool depth changes over time.
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__providerSTRINGAddress of the liquidity provider removing tokens from the Bancor V1 converter pool. Hex-encoded Ethereum address that initiated the liquidity withdrawal transaction.
in__reserveTokenSTRINGContract address of the reserve token withdrawn from the Bancor V1 liquidity pool. Hex-encoded, 0x-prefixed 40-character string representing ERC20 tokens like BNT or paired assets.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
in__newBalanceSTRINGNew balance after the event or transaction. String-encoded integer representing the balance in smallest unit (wei for ETH, base units for tokens).
in__newSupplySTRINGTotal supply of pool tokens after this liquidity removal transaction. Value is denominated in the smallest unit (wei-equivalent) of the pool token.
addressremovedlog_indexin__amountblock_numberin__providerin__newSupplyin__newBalanceblock_timestampin__reserveTokentransaction_hash
0x8df51a9714ae6357a5b829cc8d677b43d7e8bd53false16611468567534525035478445182543980x85cbbb1ede2b3e389235ae56ec54bec8159001e563775829120773351364506114865942612588493091006162023-10-01T08:08:47.000Z0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0xb8bd087e145b45cabcabba298604e379db6cd0518dbdbf763d75048ac38bbd38
0x8df51a9714ae6357a5b829cc8d677b43d7e8bd53false163589917315999112218990182543980x85cbbb1ede2b3e389235ae56ec54bec8159001e5637758291207733513645061764670647787071289506992023-10-01T08:08:47.000Z0x514910771af9ca656af840dff83e8264ecf986ca0xb8bd087e145b45cabcabba298604e379db6cd0518dbdbf763d75048ac38bbd38
0xe31643ebd9fd29b668c0553c76308a33decffa6dfalse3811306997227693219229871182577110x85cbbb1ede2b3e389235ae56ec54bec8159001e52415145048909361702353712761608173628189567788022023-10-01T19:15:47.000Z0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c0x424e481febc6ad62ddc89dc7c4e4bda9e5ef1c7e34430251c5627e7d65cebda6
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Converter_LiquidityRemoved_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Factory_NewConverter_event

Converter deployment events from Bancor V1 protocol factory contract on Ethereum. Tracks creation of new liquidity pool converters with type identifier, owner address, and converter contract address for monitoring protocol expansion.
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__typeSTRINGConverter type identifier specifying the Bancor pool version or configuration model. Common values include ‘1’ for legacy converters and ‘3’ for newer pool types.
in__converterSTRINGContract address of the newly deployed Bancor converter created by the factory. This address manages the liquidity pool and token conversion logic for the specific trading pair.
in__ownerSTRINGAddress of the account that owns the position, vault, or allowance. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin__typein__ownerlog_indexblock_numberin__converterblock_timestamptransaction_hash
0x4ade0e57bc2e129f62547af4d620fb40d28ea269false30x7dfb5180878b43c6ff5aa6a2ea55db20bcc8741060126008040x6ab5f3b870bb8ab4750eec0f3779b38b926d3c252021-06-09T14:20:26.000Z0x6a97aefebfca8009862bbff0b526159485887d8f07f64eae7e70f24ecd2370f7
0x4ade0e57bc2e129f62547af4d620fb40d28ea269false30x7dfb5180878b43c6ff5aa6a2ea55db20bcc8741077122250470x5a7bb6adf00a1d6284773887fcadce079c6365672021-04-12T11:40:49.000Z0x6be3c4aa417a18b67517cced5d21083665f6544fb9315cea1c588c58cc43c01d
0x4ade0e57bc2e129f62547af4d620fb40d28ea269false30x7dfb5180878b43c6ff5aa6a2ea55db20bcc87410355156736920xb8990e35ce04fb257bf84f02eed7b5e97b413e342022-10-04T08:50:23.000Z0xd812cfe27ee54aee812abb6698831449df8eb2e1d7f449506937fbc131ddf3e2
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Factory_NewConverter_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Factory2_NewConverter_event

Bancor V1 converter creation events on Ethereum, emitted when new liquidity pool converters are deployed through the Factory2 contract. Used for tracking pool deployments and identifying converter contract addresses with their respective owners.
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__converterSTRINGContract address of the newly deployed Bancor V1 converter instance created by this factory event. Hex-encoded, 0x-prefixed 40-character Ethereum address representing the liquidity pool converter.
in__ownerSTRINGAddress of the account that owns the position, vault, or allowance. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin__ownerlog_indexblock_numberin__converterblock_timestamptransaction_hash
0x9afb9d7ed0f6c054ec76ea61d5cabc384d4dcb25false0x06915fb082d34ff4fe5105e5ff2829dc5e7c3c6d17103733540xcaf6eb14c3a20b157439904a88f00a8be929c8872020-07-01T11:50:52.000Z0xc6232e3e278a33ec5ad3ec26c0f3801bae77a0a75c6b0d8aeabe837e56797cfd
0x9afb9d7ed0f6c054ec76ea61d5cabc384d4dcb25false0x06915fb082d34ff4fe5105e5ff2829dc5e7c3c6d19103265430x7ff01db7ae23b97b15bc06f49c45d6e3d84df46f2020-06-24T05:26:26.000Z0x3eca95c85d4db83613d3d06af0fe2ed6338da6b1bb2e94d59a81cef00d8c2653
0x9afb9d7ed0f6c054ec76ea61d5cabc384d4dcb25false0x06915fb082d34ff4fe5105e5ff2829dc5e7c3c6d9103294400x16ff969cc3a4ae925d9c0a2851e2386d61e759542020-06-24T16:02:23.000Z0x332e80fab53b46352d55d5d5ae5fb42c4560171fd1295fddc19645ae5c9fffd9
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Factory2_NewConverter_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LiquidityProtection_addLiquidity_function

Failed liquidity deposit attempts to Bancor V1’s Liquidity Protection contract on Ethereum. All sample transactions show failed status, useful for analyzing protection mechanism rejections and user interaction errors with pool anchors and reserve tokens.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_poolAnchorSTRINGPool anchor contract address identifying the Bancor liquidity pool receiving the added liquidity. Null when the transaction failed (status=false), otherwise contains a 0x-prefixed hex address.
in_reserveTokenSTRINGToken address being deposited into the Bancor V1 liquidity protection pool. Null when transaction fails, as indicated by the status field in sample data.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_amountout_anon0signatureto_addressblock_numberfrom_addressin_poolAnchortrace_addressblock_timestampin_reserveTokentransaction_hash
9088640false909350xe4a767260xeead394a017b8428e2d5a976a054f303f78f3c0c118645770x7a22e7a4d912231f9c0fb6760c59ab560188360b2021-02-16T00:32:03.000Z0xc6e66608b1e7ba1b3e3af6f4b965505aee9bd97771be497634e5bbd434c2d459
7196440false2585320xe4a767260xeead394a017b8428e2d5a976a054f303f78f3c0c118699160x34cadf09dbf50a39d1a68b87d7763db3961ef4832021-02-16T20:06:07.000Z0x030b5424f9a241195bb6105351bd531f754b25d6b3145ce594f11292a7953098
9371670false5249960xe4a767260xeead394a017b8428e2d5a976a054f303f78f3c0c118656570x035fc3b0ec2487c1c9def561f578ec77a06b1b122021-02-16T04:30:22.000Z0xe913c8836f35251b887961d36659fc2ef3e98fbfb634151285a325a23929b106
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.LiquidityProtection_addLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LiquidityProtection_removeLiquidity_function

Liquidity withdrawal function calls from Bancor v1’s Liquidity Protection contract on Ethereum. Tracks removeLiquidity attempts with protection IDs, withdrawal portions (typically 1000000 representing 100%), and transaction outcomes for analyzing protected liquidity exits.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_portionSTRINGProportional amount of liquidity being removed, expressed as parts per million where 1000000 represents 100% of the position. Null values indicate failed transactions that did not execute the function parameters.
gasin_idvaluestatusgas_usedsignaturein_portionto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
9035850false380820x782ed90c0xeead394a017b8428e2d5a976a054f303f78f3c0c121833070x447ecbd0cb12fe94cbe8ff3a49fbf3acc23fdf412021-04-06T01:59:03.000Z0x7a8b4be503377582896fc56e6fa0f768097bb122bd7f78c4333a81cdf68b926e
10988540false380820x782ed90c0xeead394a017b8428e2d5a976a054f303f78f3c0c121829120x49b5c10a4aa292d13e3251b5f74722496272a5652021-04-06T00:21:16.000Z0xd3749684a1422e80081c9daa02992da06bf751776f7dfb5a1ccf7f32511d0211
8657640false4880660x782ed90c0xeead394a017b8428e2d5a976a054f303f78f3c0c121863070x53deea1808b6d2b8681241e3857b6c6ed1e7e1032021-04-06T12:59:52.000Z0xedb92393305c7df3aaf6b05bdab0e0b506b92b91c563c2544e5307f26ef3667f
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.LiquidityProtection_removeLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LiquidityProtectionV2_addLiquidity_function

Failed liquidity addition attempts to Bancor V1 Liquidity Protection contract on Ethereum. All sample transactions show failed status (status=false) with null input parameters, useful for analyzing transaction failures and gas costs during the May 2021 period.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_poolAnchorSTRINGContract address of the pool anchor (Bancor V1 pool token) to which liquidity is being added. Null in failed transactions, otherwise a hex-encoded Ethereum address.
in_reserveTokenSTRINGContract address of the reserve token being added to the Bancor liquidity pool. Null in all sample rows indicating failed transactions where function parameters were not decoded.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_amountout_anon0signatureto_addressblock_numberfrom_addressin_poolAnchortrace_addressblock_timestampin_reserveTokentransaction_hash
6700450false1197620xe4a767260x853c2d147a1bd7eda8fe0f58fb3c5294db07220e125005860x3323e4c51f4a819fe017c3aba9f8abbe4535d0ab2021-05-25T01:31:33.000Z0x67dadd3804299622bd0e97f62374e4eeb169ff115124e8e3d9b1e52172b841af
7767650false1173450xe4a767260x853c2d147a1bd7eda8fe0f58fb3c5294db07220e125063610x695d1b61f09d07956af3f93d62aa79b1ab8fa29c2021-05-25T23:09:56.000Z0xced564ce79590d730b331dcfbb6b14ea68a7e43973fac34de2739d7d6b20938a
6700450false1197620xe4a767260x853c2d147a1bd7eda8fe0f58fb3c5294db07220e125006290x3323e4c51f4a819fe017c3aba9f8abbe4535d0ab2021-05-25T01:40:25.000Z0x7fcb46c2be872be49842c06a9ca684aaadd8d98906af8ac3a8cfaa0e51e04b7b
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.LiquidityProtectionV2_addLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LiquidityProtectionV2_removeLiquidity_function

Liquidity withdrawal transactions from Bancor v1’s Liquidity Protection V2 contract on Ethereum, capturing position ID, portion removed (basis points), and transaction execution details. Used for analyzing liquidity provider exit patterns and impermanent loss protection claims.
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.
trace_addressSTRINGHierarchical 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.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_portionSTRINGPortion of the liquidity position being removed, expressed in basis points where 1000000 represents 100%. All sample transactions show complete withdrawals (1000000 = 100% of position).
gasin_idvaluestatusgas_usedsignaturein_portionto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
683517524100true5457790x782ed90c10000000x853c2d147a1bd7eda8fe0f58fb3c5294db07220e140788860x06185869b7d687e56e707f7a6fb23f6c752ee08b2022-01-26T03:33:44.000Z0x84e3573f9441907ba5e92137c579219a82953e2247683243b1fb5530f7e025f6
852552349290true4823560x782ed90c10000000x853c2d147a1bd7eda8fe0f58fb3c5294db07220e140793200x12b6966160c37660effb630320f5a3cd1fb808f52022-01-26T05:15:07.000Z0xc9379714c79053f3ba232922a1163c70dd3d82b1f0c1c438118cab66e9461c31
863552295830true4815560x782ed90c10000000x853c2d147a1bd7eda8fe0f58fb3c5294db07220e140793190x12b6966160c37660effb630320f5a3cd1fb808f52022-01-26T05:15:00.000Z0xcf855726a7766701bfa6a58a536ae65ae01a2be6e2930c8686c4360db34aa8b7
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.LiquidityProtectionV2_removeLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NetworkSettings_VortexBurnRewardUpdated_event

Parameter updates for Bancor V1 Vortex burn rewards on Ethereum, capturing changes to reward rates (in parts per million) and maximum amounts. Used for tracking protocol incentive mechanism adjustments over time.
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_prevBurnRewardPPMSTRINGPrevious burn reward rate in parts per million (PPM), where 1,000,000 PPM equals 100%. This value represents the reward percentage before the update event occurred.
in_newBurnRewardPPMSTRINGNew burn reward rate denominated in parts per million (PPM), where 1,000,000 PPM equals 100%. Represents the percentage of burned tokens awarded as rewards after a Vortex burn reward parameter update.
in_prevBurnRewardMaxAmountSTRINGMaximum token amount for vortex burn rewards before this update, denominated in wei (smallest unit). Null values indicate no previous limit was set.
in_newBurnRewardMaxAmountSTRINGMaximum amount of tokens that can be awarded as a burn reward after the update, denominated in the token’s smallest unit (wei). This field captures the new ceiling value when the Vortex burn reward parameters are modified.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newBurnRewardPPMin_prevBurnRewardPPMin_newBurnRewardMaxAmountin_prevBurnRewardMaxAmount
0x83e1814ba31f7ea95d216204bb45fe75ce09b14ffalse3146094822022-04-18T13:36:28.000Z0x4e41a1129816d40577716d2ea30407a1384110b4b3bfce3de0826ad69accf87710000001000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.NetworkSettings_VortexBurnRewardUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NetworkSettings21_NetworkFeeUpdated_event

Network fee parameter change events from Bancor V1 protocol on Ethereum, capturing previous and new fee values in basis points. Used for tracking protocol governance decisions and fee structure evolution over time.
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_prevNetworkFeeSTRINGPrevious network fee value before the update, denominated in basis points (1/100th of 1%). Values typically range from 0 to 1,000,000, representing 0% to 10% fee rates on Bancor protocol swaps.
in_newNetworkFeeSTRINGPrevious network fee value in parts per million (PPM) before the update event. Typically ranges from 0 to 1,000,000 PPM, representing fee percentages up to 100%.
addressremovedlog_indexblock_numberblock_timestampin_newNetworkFeetransaction_hashin_prevNetworkFee
0x59d03727d8f3fc695ca74f2dfdf0fd698424e0a2false324134599712021-10-21T08:38:09.000Z1500000x06e3ee885c4eedff8a1e02ebb336c9209a45bc6dee9239acbcc19c261f3c3f1e100000
0x59d03727d8f3fc695ca74f2dfdf0fd698424e0a2false12121745312021-04-04T17:36:06.000Z500000xae21d3aaedaa82792f59bc1df2ac2fc2e16b07a89af53fc1018f3cdfed75a97e0
0x59d03727d8f3fc695ca74f2dfdf0fd698424e0a2false234125632022021-06-03T18:44:51.000Z1000000x3fcab2a41622368a602ff82d8645e5f048914e38f4b642b70ee73b033f3907f650000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.NetworkSettings21_NetworkFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PoolCollection_NetworkFeePPMUpdated_event

Network fee updates for Bancor V1 liquidity pools on Ethereum, tracking changes in fee rates measured in parts-per-million (PPM). Used for analyzing protocol fee adjustments and revenue model changes over time.
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_prevFeePPMSTRINGPrevious fee rate in parts per million (PPM). String-encoded integer representing the fee as a proportion of 1,000,000 before the update.
in_newFeePPMSTRINGUpdated fee rate in parts per million (PPM). String-encoded integer representing the fee as a proportion of 1,000,000.
addressremovedlog_indexblock_numberin_newFeePPMin_prevFeePPMblock_timestamptransaction_hash
0x5ce51256651aa90eee24259a56529affcf13a3d0false931519778720000002022-07-23T08:12:48.000Z0xf1785eb273354e2cf053a3302983fae6ba3318b33130dadde7f6f798c6ee6f72
0x5ce51256651aa90eee24259a56529affcf13a3d0false198151977959000002000002022-07-23T08:14:07.000Z0x8a0ce5b97556b05eac8e39ac8a3c212a010e908db4996365ea1756b63be89517
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false141152557429000002000002022-08-01T09:09:03.000Z0xdc2212dbe8f639c76a7b78f5349fcec6c5d5a28e79f2ad56088fa9e236f7190e
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.PoolCollection_NetworkFeePPMUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PoolCollection_TokensDeposited_event

Liquidity deposit events from Bancor V1 protocol on Ethereum, capturing when providers add tokens to pools with corresponding pool token amounts minted. Used for tracking liquidity provider contributions, pool token issuance, and historical deposit activity across Bancor pools.
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_contextIdSTRINGUnique identifier linking related events within a transaction or operation. 66-character hex string including 0x prefix.
in_providerSTRINGAddress of the liquidity provider or participant 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_baseTokenAmountSTRINGAmount of base tokens involved in the operation. String-encoded integer representing the token quantity in its smallest denomination.
in_poolTokenAmountSTRINGAmount of pool tokens involved in the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
addressremovedin_tokenlog_indexin_providerblock_numberin_contextIdblock_timestamptransaction_hashin_baseTokenAmountin_poolTokenAmount
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab91790x750650d39d41cbf2afd591c22a204634eaa60db5158204970x392f7493b7cd476491ea3d55f08901803295675a70d1594797786e250834d0152022-10-24T21:02:59.000Z0x3c95dd2e14796f0259cc3c32c37238b0913c192289f21a3006cfc1548eb5e3f761122290540495124719576108063462444326446107
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0x444d6088b0f625f8c20192623b3c43001135e0fa3050xb0b958398abb0b5db4ce4d7598fb868f5a00f372158176980x85eb369f92ab44f32b775b35adc211527efe4c4818a2df95d4c5b1943c2e05102022-10-24T11:34:47.000Z0x257edbe1fc081ac96abe99bd327469f0af205a497669807ed062dc9e741360b2211393000000000000000000195056141951122177729754
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0xb2cabf797bc907b049e4ccb5b84d13be3a8cfc212070xb0b958398abb0b5db4ce4d7598fb868f5a00f372158144650x650b11729fe2a7a450e2217ecbec921265498892e0e888d637e57e9aceeeb77d2022-10-24T00:43:47.000Z0xcf49454c47c3675e531cd330dfd876a6cf5e38a4a1499622edb998a0f56c689b1777500217032925399250734921008846827679768
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.PoolCollection_TokensDeposited_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PoolCollection_TokensWithdrawn_event

Liquidity withdrawal events from Bancor V1 automated market maker (AMM) pools on Ethereum. Records provider withdrawals with pool token burns, base token amounts received, BNT (Bancor Network Token) amounts, and withdrawal fees for analyzing liquidity provider behavior.
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_contextIdSTRINGUnique identifier linking related events within a transaction or operation. 66-character hex string including 0x prefix.
in_providerSTRINGAddress of the liquidity provider or participant 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_baseTokenAmountSTRINGAmount of base tokens involved in the operation. String-encoded integer representing the token quantity in its smallest denomination.
in_poolTokenAmountSTRINGAmount of pool tokens involved in the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
in_externalProtectionBaseTokenAmountSTRINGAmount of base tokens provided by external impermanent loss protection. String-encoded integer representing the token quantity in its smallest denomination.
in_bntAmountSTRINGAmount of BNT (Bancor Network Token) involved in the operation. String-encoded integer representing the token quantity in its smallest denomination.
in_withdrawalFeeAmountSTRINGFee amount charged on withdrawal from the liquidity pool. String-encoded integer representing the fee quantity in its smallest denomination.
addressremovedin_tokenlog_indexin_providerblock_numberin_bntAmountin_contextIdblock_timestamptransaction_hashin_baseTokenAmountin_poolTokenAmountin_withdrawalFeeAmountin_externalProtectionBaseTokenAmount
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee2660x1974ebe4f12c587a101e44795cccb3d52b8786f61651969200xbddecb62059ba6723086c703b664df7a68a196d83ced9bfd57a5589c9301c8762023-01-30T12:38:47.000Z0xacec44ddf0b3e89eb4214ee90085866f2af3c7d0f1f0ed9a8531e1bd9f8ee0be41635256292449076891102997352242922684900
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0x514910771af9ca656af840dff83e8264ecf986ca2780x697999ecfc86f0bfa43235bcf324cc7f186e3d541652050300x1e420779467ef50c56d662124d591f0af56bc59c8da854ed7b34e0be2afe80552023-01-30T15:21:47.000Z0x7cf16ccb1079fd511106f1d623fbdb7f1e5209fd1d3e9943cf9e2e85756f3e0b716412582382567803901103778338270043485192900
0xd982e001491d414c857f2a1aaa4b43ccf9f642b4false0x48fb253446873234f2febbf9bdeaa72d9d387f941330xd7f397a87d0b308ae01c551553e95d36695069101651731400xaee65f6b42c960ec5c1a86db9f356c64f56dc0a67f2754864991ead3b1b8c2922023-01-30T04:40:59.000Z0x9729944ab0f26c0439a19ef9ae433fddba5721e4b8464976b45d7be4d4e68381154477480193155902602541650664335756235568576400
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.PoolCollection_TokensWithdrawn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StakingRewards_RewardsClaimed_event

Staking reward claim events from Bancor v1 protocol on Ethereum, capturing when liquidity providers withdraw their earned rewards. Records include provider address, claimed token amounts (in wei), and transaction details for tracking reward distribution and provider 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_providerSTRINGAddress of the liquidity provider or participant in the 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.
addressremovedin_amountlog_indexin_providerblock_numberblock_timestamptransaction_hash
0xb443dea978b39178cb05ae005074227a4390dfcefalse1108323870857577182502660xd4a1308212333a383d320aaee211aaa590f17660120189612021-03-11T18:45:19.000Z0x27a550c4169584a2009bb72f180dbf653c48380a2a0cdf30b464bd9448ade57f
0xb443dea978b39178cb05ae005074227a4390dfcefalse3310845737706604659022400x54995a400169de148692b5da87b5ed65212b40a0120152852021-03-11T04:58:19.000Z0xe3cfa19f60d6094cd59108d2193fc18071ca09f290bad37f8ed1c7207bbcd70f
0xb443dea978b39178cb05ae005074227a4390dfcefalse29096618400536905671082380x270042a7623a90e6ebe6ae6e3263d61896b46906120187382021-03-11T17:53:42.000Z0x8d387f43873622aa2fe7ee00ebae013e01c0150156ad0bdc16116b8ae73676f6
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.StakingRewards_RewardsClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StakingRewards_RewardsStaked_event

Staking reward events from Bancor v1 protocol on Ethereum, recording when liquidity providers stake pool tokens into rewards programs. Captures provider addresses, pool token addresses, staked amounts, and unique position IDs for analyzing staking activity and reward program participation.
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_providerSTRINGAddress of the liquidity provider or participant in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_poolTokenSTRINGContract address of the liquidity pool token representing shares in the pool. 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_newIdSTRINGUnique identifier assigned to the staking position created when rewards are staked into a Bancor pool. Incrementing numeric value represented as a string, used to track individual staking positions.
addressremovedin_newIdin_amountlog_indexin_providerblock_numberin_poolTokenblock_timestamptransaction_hash
0x318fea7e45a7d3ac5999da7e1055f5982eeb3e67false5178311059328600814974954875200xecdd19b7d188524fa09fc43b9445f10ab11bed80139157810xb1cd6e4153b2a390cf00a6556b0fc1458c4a55332021-12-31T22:35:31.000Z0x2f28a617fe1e136261458cad3068eb2e2ca1a164e215bbad0c392e85dadea0b6
0x318fea7e45a7d3ac5999da7e1055f5982eeb3e67false5177347786814946491102424564140xf887bd34d36c60b76d461b064c1fe247206f275b139116530xb1cd6e4153b2a390cf00a6556b0fc1458c4a55332021-12-31T06:57:33.000Z0x99aef374f108f27333ef9f85812dcd698b77c14ed3e5dbde804ad0ad1b6dbecd
0x318fea7e45a7d3ac5999da7e1055f5982eeb3e67false517809350000000000000000000750xdbcac67084fc86c550740fd6dc55261f964b2146139156100xb1cd6e4153b2a390cf00a6556b0fc1458c4a55332021-12-31T21:56:03.000Z0xb94ec08a0ba5a111767cd2acc56625f3112322aad7acfae67c6615276e29d4ba
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.StakingRewards_RewardsStaked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StakingRewardsClaim_RewardsClaimed_event

Staking reward claim events from Bancor V1 liquidity providers on Ethereum, capturing the reward amount and provider address for each claim transaction. Used for analyzing liquidity provider earnings and reward distribution 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_providerSTRINGAddress of the liquidity provider or participant in the 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.
addressremovedin_amountlog_indexin_providerblock_numberblock_timestamptransaction_hash
0x6248e4118818c9075a142ef8a12e09d49888af58false38982999345794881236940xcccb8df130a5993a48a7e625237bc4d5e5a2bafc151162712022-07-10T17:33:49.000Z0xa71bbe2fbf6204da63bec54fd86aa4d1b3966715cc00b3f8ab7c52db1790c0e0
0x6248e4118818c9075a142ef8a12e09d49888af58false3131773055842239969002300xb6c7d43ff53fab1a66ec5cce0cc915b30b2b898f151142612022-07-10T09:57:35.000Z0x58105cd21469997901979289aae51ea15851157d9589a365c2cec7dc29c6bd81
0x6248e4118818c9075a142ef8a12e09d49888af58false469279474484867351441190x2eda1a1112166deb2c88a24264cb26b3632d5af1151130802022-07-10T05:46:37.000Z0x8bac0740f8fdcfc481fb82eb057b413fdf1453df7803dfcdbf4174b72a7e9fbc
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.StakingRewardsClaim_RewardsClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StakingRewardsClaim_RewardsStaked_event

RewardsStaked events from Bancor v1 staking rewards contract on Ethereum, recording when liquidity providers restake their claimed rewards with provider addresses and restaked amounts in wei. Used for tracking reward compounding behavior and staking position growth.
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_providerSTRINGAddress of the liquidity provider or participant in the 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.
addressremovedin_amountlog_indexin_providerblock_numberblock_timestamptransaction_hash
0x6248e4118818c9075a142ef8a12e09d49888af58false21526477595005940880720x27009520fd9974f2815a611d5943e4d4b0495bef148817522022-06-01T00:18:19.000Z0x8a0cbc3b1b9c8cfd9581f8bdbc78f327aefa36c91f0600dff73136f4e7ec567f
0x6248e4118818c9075a142ef8a12e09d49888af58false6778471837366498453344890xe5516f4d30e5989bf6e3ea62055cf3a704d9da01148858232022-06-01T16:26:45.000Z0xec968c52592a56edfe0834b9682aa821d663510d218127f10ae9269015b427cf
0x6248e4118818c9075a142ef8a12e09d49888af58false468391257421806284146720x6c87a52ad7b8c337845e8e4fa99a797af0c5128f148819362022-06-01T01:02:46.000Z0x64ec52c95b48c83004615418ed61be871a7593129c503d86b287ebfca6a39995
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.StakingRewardsClaim_RewardsStaked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StandardRewards_RewardsClaimed_event

Liquidity mining reward claim events from Bancor V1 protocol on Ethereum, recording provider addresses, pool tokens, reward amounts, and program identifiers. Used for analyzing liquidity provider incentive distribution and reward program participation across different token pools.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_programIdSTRINGIdentifier of the Bancor rewards program from which the provider is claiming rewards. String-encoded numeric value referencing a specific liquidity mining or incentive program on the platform.
in_providerSTRINGAddress of the liquidity provider or participant in the 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.
addressin_poolremovedin_amountlog_indexin_providerblock_numberin_programIdblock_timestamptransaction_hash
0xb0b958398abb0b5db4ce4d7598fb868f5a00f3720xb2cabf797bc907b049e4ccb5b84d13be3a8cfc21false79824664057856208815610x5ecea38f6b7239339ab526085eae0c54cd4df4d915809362102022-10-23T07:36:59.000Z0x524d4baef9c0b9f7812b9e82dc33fd50fdd51b585245a3c8f320196be264bf59
0xb0b958398abb0b5db4ce4d7598fb868f5a00f3720x514910771af9ca656af840dff83e8264ecf986cafalse147419008925786936336210x49d2e0809d7a21de5d12803ce1af8b22df020a3d1523725282022-07-29T12:08:12.000Z0x0d420e8441fa259e53d985eb3b6062e352896ae1f9b4180fcc61edc73ffc1385
0xb0b958398abb0b5db4ce4d7598fb868f5a00f3720x1f573d6fb3f13d689ff844b4ce37794d79a7ff1cfalse38671776779703979116220x49d2e0809d7a21de5d12803ce1af8b22df020a3d1523725252022-07-29T12:08:12.000Z0x0d420e8441fa259e53d985eb3b6062e352896ae1f9b4180fcc61edc73ffc1385
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.StandardRewards_RewardsClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

vBNT_Destruction_event

vBNT (vote-locked BNT) token burn events from Bancor V1 protocol on Ethereum, recording governance token destruction amounts and contract addresses. Used for tracking vBNT supply changes and governance token circulation 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__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
addressremovedlog_indexin__amountblock_numberblock_timestamptransaction_hash
0x48fb253446873234f2febbf9bdeaa72d9d387f94false258996293002004249330395124858562021-05-22T18:56:34.000Z0xa09e92da8f48dabd5db1a576268f0a6806de551d6e9c643727f8032c8eefbcaa
0x48fb253446873234f2febbf9bdeaa72d9d387f94false26045980117740000000000000124855882021-05-22T17:56:08.000Z0xec926f2c0db67ce7b0934ecd466e86da56c45c850f337e2ee3e6a8ba7a95d014
0x48fb253446873234f2febbf9bdeaa72d9d387f94false26118595633194937760887190124858692021-05-22T18:59:04.000Z0xc9b2894a822cf65837fe17f14291fa5846b376c5abde9911360aaf08f600c52b
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.vBNT_Destruction_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_Approval_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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_approvedSTRINGBoolean flag indicating whether approval was granted or revoked for the operation.
in_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_Approval_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_ApprovalForAll_event

ApprovalForAll events from Bancor v1 Voucher contract on Ethereum, recording when token owners grant or revoke operator permissions to manage all their vouchers. Used for tracking delegation of trading authority and third-party approvals for liquidity positions.
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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_operatorSTRINGAddress authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.
in_approvedBOOLBoolean flag indicating whether approval was granted or revoked for the operation.
addressremovedin_ownerlog_indexin_approvedin_operatorblock_numberblock_timestamptransaction_hash
0x3660f04b79751e31128f6378eac70807e38f554efalse0x3d0bb7cb65467aaf491640f110da7822b06aadce208true0x616ac240bccc24d0e77f994019e4a407e8dee4b2185697402023-11-14T11:06:59.000Z0xcd2832935474afc5b45b8d1c91f1649f37326f6f9485afe73d462fb5544dfd1d
0x3660f04b79751e31128f6378eac70807e38f554efalse0x3038b6ddf96e18c9d7f7b4fecaf7ea0d69c27de192true0x1e0049783f008a0085193e00003d00cd54003c71190384342024-01-19T04:10:59.000Z0x1e22cbcf69435450374890674e39c7cc94e586db5643b464551dffc20a00599b
0x3660f04b79751e31128f6378eac70807e38f554efalse0xeb57dd0a036e0bf4bf16a00c2697c3f6b54d10ab253true0x1e0049783f008a0085193e00003d00cd54003c71187790782023-12-13T18:38:11.000Z0xa303df080f27125b9ae0c672510354339c2002468991a77d4f15d98c409c7a5f
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_ApprovalForAll_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_BaseExtensionUpdated_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_newBaseExtensionSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_BaseExtensionUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_BaseURIUpdated_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_newBaseURISTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_BaseURIUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_Initialized_event

Initialization events for Bancor v1 voucher contracts on Ethereum, tracking when new voucher instances are deployed with their contract addresses and version numbers. Used for identifying and cataloging Bancor liquidity pool token contracts.
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_versionINT64Version identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0x3660f04b79751e31128f6378eac70807e38f554efalse2511170871312023-04-20T10:31:23.000Z0xd97eb5e3ea04719f29fa12eed85412e5cbac2622ada0c6684b6f9647265a80a4
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_RoleAdminChanged_event

Role administration change events from Bancor v1 voucher contracts on Ethereum, tracking updates to role-based access control permissions. Records role identifier hashes, previous and new admin roles, and contract addresses for monitoring governance and permission management.
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.
addressin_roleremovedlog_indexblock_numberblock_timestampin_newAdminRoletransaction_hashin_previousAdminRole
0x3660f04b79751e31128f6378eac70807e38f554e0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false248170871312023-04-20T10:31:23.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xd97eb5e3ea04719f29fa12eed85412e5cbac2622ada0c6684b6f9647265a80a40x0000000000000000000000000000000000000000000000000000000000000000
0x3660f04b79751e31128f6378eac70807e38f554e0xaeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b601461false250170871312023-04-20T10:31:23.000Z0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960xd97eb5e3ea04719f29fa12eed85412e5cbac2622ada0c6684b6f9647265a80a40x0000000000000000000000000000000000000000000000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_RoleAdminChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_RoleGranted_event

Role assignment events from Bancor v1 voucher contracts on Ethereum, tracking access control grants and revocations. Used for analyzing administrative permissions and governance changes across Bancor protocol components.
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
0x3660f04b79751e31128f6378eac70807e38f554e0xaeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b601461false0x5beba4d3533a963dedb270a95ae5f7752fa0fe221030xc537e898cd774e2dcba3b14ea6f34c93d5ea45e1170874692023-04-20T11:39:59.000Z0x7ce158a8ddcd4b5ba051ebe4484e5f4abc85dd44540789b1252ea84e818814f7
0x3660f04b79751e31128f6378eac70807e38f554e0x2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096false0x5beba4d3533a963dedb270a95ae5f7752fa0fe222490x5beba4d3533a963dedb270a95ae5f7752fa0fe22170871312023-04-20T10:31:23.000Z0xd97eb5e3ea04719f29fa12eed85412e5cbac2622ada0c6684b6f9647265a80a4
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_RoleGranted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_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.bancor_v1_ethereum.Voucher_RoleRevoked_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_Transfer_event

NFT voucher transfer events from Bancor V1 liquidity positions on Ethereum, tracking mints (from zero address) and burns (to zero address) of tokenized liquidity provider positions. Used for analyzing liquidity provision activity and LP token ownership changes.
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_fromSTRINGAddress originating the 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_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_toaddressin_fromremovedlog_indexin_tokenIdblock_numberblock_timestamptransaction_hash
0x00000000000000000000000000000000000000000x3660f04b79751e31128f6378eac70807e38f554e0xc0f07a9301d18a44f9322b7d6fd7f2c17733336efalse1394763953136893138488487244504044754960408175050602023-06-18T07:03:23.000Z0x3047ac6b75683db4988ebd1d00134d0e98ab1bcfb5054bd378aeb5d2a47f09c2
0xdf1aa31f03ae4f7890278ae28c73f059c25363960x3660f04b79751e31128f6378eac70807e38f554e0x0000000000000000000000000000000000000000false20282008050427946169694673280391056138961587189462172024-01-06T05:51:23.000Z0xbe606e5ac53d4ea293a8e0bfe99d6dd5529e468f8c09f0704818a96fb85f010f
0x00000000000000000000000000000000000000000x3660f04b79751e31128f6378eac70807e38f554e0x41f57a9c25d6f9607b85fac6fe778c265d8575f6false1903743106036130323098097120681749450326148174059192023-06-04T07:58:35.000Z0x7b6f7b2bc431810d85d2699adf0a606177cf03f66257e34f1d5324cddd378c37
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Voucher_UseGlobalURIUpdated_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_newUseGlobalURIBOOL-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bancor_v1_ethereum.Voucher_UseGlobalURIUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100