Skip to main content

Tables

StablePoolFactory_FactoryDisabled_event

Factory disable events from BEX (Berachain Exchange) V1 stableswap pool factory contract. Tracks when the factory contract is disabled, useful for monitoring protocol governance actions and pool creation 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.
addressremovedlog_indexblock_numberblock_timestamptransaction_hash
0xdfa30bda0375d4763711ab0cc8d91b20bfcc87e1false45126754292025-11-05T17:59:34.000Z0xb72914fa54a641a6f996aaaea137752a19348b78fe6ba47c25c5196d6972598a
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.StablePoolFactory_FactoryDisabled_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StablePoolFactory_PoolCreated_event

Pool creation events emitted by StablePoolFactory contracts on decentralized exchange (DEX) platforms. Records the deployment of new stable swap pools with their contract addresses and constituent token pairs for tracking liquidity pool initialization.
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.
addressin_poolremovedlog_indexblock_numberblock_timestamptransaction_hash
0xdfa30bda0375d4763711ab0cc8d91b20bfcc87e10x13ee7b7fc58cc8ed1205edb8d56e1b9351a3b57afalse5716021842025-02-25T20:24:06.000Z0x5508c75fd47cb8adb2e51a57a42ff06e747bf808b7a3ebd1ece0acf0f3e48359
0xdfa30bda0375d4763711ab0cc8d91b20bfcc87e10x0c7fba80e7e54c2245f3105a06c5d4eb01217439false12615794392025-02-25T07:37:52.000Z0xdaa7c802ac28b0c60d44d389344658eb355e07ca32981daf856dcd91182932b2
0xdfa30bda0375d4763711ab0cc8d91b20bfcc87e10x2d85e82b6bebcd0e19e79b2500600062bbe27e76false716023122025-02-25T20:28:20.000Z0x58f12434fea2224599a73818b602da089baec73833576ca1cbb77ab8f97c458e
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.StablePoolFactory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_AuthorizerChanged_event

Balancer Vault authorizer change events emitted when the protocol’s permission controller contract address is updated. Records the new authorizer contract address responsible for managing access control to vault functions.
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_newAuthorizerSTRINGAddress of the new authorizer contract set for the Balancer vault. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_AuthorizerChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_ExternalBalanceTransfer_event

External token transfer events emitted by Balancer V2 and BEX vault contracts, capturing sender address, recipient address, token address, and transfer amount. Used for tracking token movements between vault external balances and user accounts.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_ExternalBalanceTransfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_FlashLoan_event

Flash loan events emitted by decentralized exchange (DEX) vault contracts, recording uncollateralized borrows of tokens with borrowed amount, fee charged, and recipient address. Used for arbitrage tracking and flash loan analytics across Balancer V2, Beethoven X, BEX, and SyncSwap protocols.
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_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_feeAmountSTRINGFee amount charged for the flash loan or transaction. Numeric string representation of fee quantity in smallest denomination.
addressremovedin_tokenin_amountlog_indexblock_numberin_feeAmountin_recipientblock_timestamptransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x6969696969696969696969696969696969696969200000000000000000954538122000000000000000000xaf3a0f3a6ffdee34255e0e53d8121571fc1311dc2025-05-24T19:11:44.000Z0x44cd5eea40500c005b01256616a9624a200fac055d3aa727e4842682569e1e32
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce1506105930924618752142567122315061059309246187520x59df0bf995d4b739d2cda01cf0b0ac8c6226d7be2025-05-29T18:24:29.000Z0x365dfcbee88e1a9ed02e985d698e65a28e1796d7074242b5b6a6beff78e8214d
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce6672310137007613662253568265566723101370076136620x59df0bf995d4b739d2cda01cf0b0ac8c6226d7be2025-05-30T00:41:18.000Z0x0072d082c985651e001c01051e215250e683cf8f02da806a6c0a50e2c0ca8e29
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_FlashLoan_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_InternalBalanceChanged_event

Balancer Vault internal balance modification events recording user token deposit and withdrawal changes. Tracks user address, token address, and signed delta values for internal accounting within the Vault contract.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_deltaSTRINGChange in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction.
addressin_userremovedin_deltain_tokenlog_indexblock_numberblock_timestamptransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80b0x2a7f8db344a8af91399548353512a305b754a390false9153204845568060x13ee7b7fc58cc8ed1205edb8d56e1b9351a3b57a2923079992025-03-14T01:39:38.000Z0xbd592cc68012b8e2851f0c0ed7c04fd554733baa5145346197ab3f0d6164b8aa
0x4be03f781c497a489e3cb0287833452ca9b9e80b0x2a7f8db344a8af91399548353512a305b754a390false-9153204845568060x13ee7b7fc58cc8ed1205edb8d56e1b9351a3b57a3223079992025-03-14T01:39:38.000Z0xbd592cc68012b8e2851f0c0ed7c04fd554733baa5145346197ab3f0d6164b8aa
0x4be03f781c497a489e3cb0287833452ca9b9e80b0x2a7f8db344a8af91399548353512a305b754a390false-7277331470891130x13ee7b7fc58cc8ed1205edb8d56e1b9351a3b57a923135502025-03-14T04:38:53.000Z0x90b85a3a51a62138e02e77454a06548f1c17c6a5f7d8b5659ead6603feced984
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_InternalBalanceChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_PausedStateChanged_event

Event logs recording pause state transitions for Balancer V2 vault contracts. Tracks when vault operations are paused or unpaused through the boolean in_paused field.
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_pausedBOOLBoolean flag indicating whether the paused state is active. True indicates the contract or program is paused, false indicates it is active.
addressremovedin_pausedlog_indexblock_numberblock_timestamptransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalsetrue53126252942025-11-03T08:40:26.000Z0xe900b7354733ef506e23e4922b8774807e28052ff52e31b2023d2051c6176744
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalsefalse84129807042025-11-12T19:35:25.000Z0x1acc9e3756cd76f561996da5d9e1a2f8f06894f6662fd73de4183d2c5aa01e8b
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalsetrue56129809212025-11-12T19:42:39.000Z0xcccea4dace169d4fe61a13bbed2239e3e555344ce1092978afd2926d075fbc56
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_PausedStateChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_PoolBalanceChanged_event

Balancer V2 Vault event emitted when liquidity provider positions change in a pool, recording token balance deltas and protocol fees. Contains pool identifier, liquidity provider address, token addresses, and per-token balance changes for tracking deposits, withdrawals, and pool composition updates.
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_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_liquidityProviderSTRINGAddress of the liquidity provider adding or removing funds from the pool. 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_deltasARRAY<STRING>Array of token balance changes for each token in the pool. String-encoded signed integers representing the change in token amounts, with positive values indicating deposits and negative values indicating withdrawals.
in_protocolFeeAmountsARRAY<STRING>Array of protocol fee amounts collected for each token in the pool. String-encoded unsigned integers corresponding positionally to tokens in the pool, representing fees taken by the protocol on the transaction.
addressremovedin_deltasin_poolIdin_tokenslog_indexblock_numberblock_timestamptransaction_hashin_liquidityProviderin_protocolFeeAmounts
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse[“-114084212586869293”,“-69019409303733821”]0x1207c619086a52edef4a4b7af881b5ddd367a919000200000000000000000006[“0x6969696969696969696969696969696969696969”,“0xac03caba51e17c86c921e1f6cbfbdc91f8bb2e6b”]10011458982025-02-14T23:35:40.000Z0x19b2ea79bd7f5f5f19c5f8b9a13a68a73b3049daed9520a7a8c34ef74c68b9c50x0fb8273b25fdd7bddab4000157578d3960670f43[“0”,“0”]
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse[“143809540841640120204”,“844612266131348980429”]0x2c4a603a2aa5596287a06886862dc29d56dbc354000200000000000000000002[“0x6969696969696969696969696969696969696969”,“0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce”]411434252025-02-14T22:14:49.000Z0x92ce03026657843d9083a94dcc7e9823834597994f0e6ffd0ae4cdd414e7027d0xfb9744178e47572919c64c684ae3c5d0957cbfd2[“0”,“0”]
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse[“84515481481641381496”,“498759234059326524204”]0x2c4a603a2aa5596287a06886862dc29d56dbc354000200000000000000000002[“0x6969696969696969696969696969696969696969”,“0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce”]411464942025-02-14T23:54:58.000Z0x67e5136ceb03b3b5221b409d8d04e7daf84e6385c6065a03a635e9a7e7cb84770x0a97582b44911e075d77452727bef59de9d9aba4[“0”,“0”]
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_PoolBalanceChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_PoolBalanceManaged_event

Balancer V2 Vault event emitted when an asset manager adjusts the allocation of a pool’s token balance between liquid cash reserves and managed external positions. Records changes in cash and managed amounts for pool rebalancing operations.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_assetManagerSTRINGContract address of the asset manager responsible for managing pool token balances. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_cashDeltaSTRINGChange in token balance available to the pool’s vault for immediate operations. String-encoded signed integer representing token units.
in_managedDeltaSTRINGChange in token balance managed by the asset manager outside the vault’s immediate liquidity pool. String-encoded signed integer representing token units.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_PoolBalanceManaged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_PoolRegistered_event

Event logs recording new liquidity pool registrations in Balancer vault contracts. Contains pool address, unique pool identifier, factory address, token configurations with rate providers, hook configurations for custom pool logic, liquidity management settings, role assignments for governance, and initial swap fee parameters.
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_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_poolAddressSTRINGContract address of the liquidity pool. Hex-encoded, 0x-prefixed, 42-character string.
in_specializationINT64Pool specialization type indicator in Balancer V2 Vault architecture. Integer value encoding the pool’s internal asset management strategy (0=General, 1=Minimal Swap Info, 2=Two Token).
addressremovedin_poolIdlog_indexblock_numberin_poolAddressblock_timestamptransaction_hashin_specialization
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xb81b7376f8f4ecd09dca4434b661fc8eb04222b500020000000000000000016c8952077780xb81b7376f8f4ecd09dca4434b661fc8eb04222b52025-05-19T05:23:33.000Z0x8f696edea522d35a1fe9582520fee924b174c38a687bef42781a38d8effcb7022
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xf296d962a264dd08002328b2322a99320a9755cf00020000000000000000016d5352192900xf296d962a264dd08002328b2322a99320a9755cf2025-05-19T11:35:35.000Z0xaba4b7c18f2aa60fb638bc2e379479f487b5788475c7f084fd8c9190a79563b62
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x5b902d94673a92df08f0ddde5340d16bec29fd3000020000000000000000016e1152298000x5b902d94673a92df08f0ddde5340d16bec29fd302025-05-19T17:15:46.000Z0x25526dc148b74306acae07efd20c128d7aa65fc6193a2ea57c97f90a084b531a2
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_PoolRegistered_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_RelayerApprovalChanged_event

Relayer approval state change events emitted by Balancer V2 Vault contracts when users authorize or revoke permission for relayer addresses to execute operations on their behalf. Used for tracking relayer delegation patterns and vault security permissions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_relayerSTRINGAddress of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_approvedBOOLBoolean flag indicating whether approval was granted or revoked for the operation.
addressremovedin_senderlog_indexin_relayerin_approvedblock_numberblock_timestamptransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xa80d9559a864f9ae8ddbcb7766fbeee1e3e8b57c00x0000000000000000000000000000000000000000true16059032025-02-25T22:28:16.000Z0xe27e0f6d15c2a7fbbefe70a9b95efca9074806d867f0c4665669dcc120f29a71
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0xce8d4e158981c4bb9b830fd729e415b5f7b666af360x55dcce8165c88aad4403a15a9ce3a8e244657dd2true15921762025-02-25T14:49:15.000Z0xed8646f93088ca7ab64cb6721e998991ae8c44ad5534c6a0b66484339388243e
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x0204e78d2043b9615b98339eec9b14d10bbff541900x55dcce8165c88aad4403a15a9ce3a8e244657dd2true15792572025-02-25T07:31:31.000Z0xdf41d07c72fc0563f8aac960cd29bb0a20d4e1420ca3eb43a19f5c2b266de692
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_RelayerApprovalChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_Swap_event

Swap events emitted by decentralized exchange vault contracts containing input/output token addresses, amounts, pool identifiers, and swap fee data. Tracks token exchanges executed through vault-based automated market maker protocols.
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_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_tokenInSTRINGContract address of the token being swapped in or deposited. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenOutSTRINGContract address of the token being received from the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_amountInSTRINGAmount of input tokens being swapped or deposited in the transaction. Numeric string representing the token quantity in its smallest denomination.
in_amountOutSTRINGAmount of output tokens received from the swap. Numeric string representing the token quantity in its smallest denomination.
addressremovedin_poolIdlog_indexin_tokenInin_amountInin_tokenOutblock_numberin_amountOutblock_timestamptransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x38fdd999fe8783037db1bbfe465759e312f2d8090002000000000000000000041200x0555e30da8f98308edb960aa94c0db47230d2b9c5230000x69696969696969696969696969696969696969691317492798519234820175696852025-02-19T00:00:38.000Z0xf468c723a20abdc4c995f4020c5dc32f53de74bf9a3f05254df3fe349398b3fa
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x38fdd999fe8783037db1bbfe465759e312f2d809000200000000000000000004290x0555e30da8f98308edb960aa94c0db47230d2b9c4000000x69696969696969696969696969696969696969691317495610697918125368069442025-02-19T00:00:45.000Z0x5107ef17f30ef390ea21369a420c24c635711abc28b40d3835e78749b85984fe
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x38fdd999fe8783037db1bbfe465759e312f2d8090002000000000000000000041140x0555e30da8f98308edb960aa94c0db47230d2b9c1030950x69696969696969696969696969696969696969691317496157395250877827449222025-02-19T00:00:47.000Z0x6dac15f21899cfacfdd4df7a5ee3ca2290dd41139fcbf3da49b624b27b26ed95
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_TokensDeregistered_event

Balancer V2 Vault event recording the removal of tokens from a liquidity pool’s registered token list. Emitted when pool composition changes through token deregistration, containing the pool identifier and array of deregistered token addresses.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_tokensARRAY<STRING>Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_TokensDeregistered_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Vault_TokensRegistered_event

Event logs recording token registration within Balancer V2 vault pools. Contains pool identifier, array of registered token addresses, and corresponding asset manager addresses for tracking pool composition initialization.
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_poolIdSTRINGUnique identifier for the liquidity pool or staking pool. 66-character hex string including 0x prefix.
in_tokensARRAY<STRING>Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.
in_assetManagersARRAY<STRING>Array of asset manager contract addresses for each token in the pool. Hex-encoded, 0x-prefixed, 42-character strings corresponding to each token in in_tokens array.
addressremovedin_poolIdin_tokenslog_indexblock_numberblock_timestampin_assetManagerstransaction_hash
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x57110a237644f27f01c4d7e315a328e1da63306000000000000000000000016f[“0x549943e04f40284185054145c6e4e9568c1d3241”,“0x57110a237644f27f01c4d7e315a328e1da633060”,“0x688e72142674041f8f6af4c808a4045ca1d6ac82”]23052614672025-05-20T10:28:24.000Z[“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”]0xcb63edad2e6719035ac8c016348efff79d0bb5846e376a46b84c0a0ce5f4f37b
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x0e35d1ffb2eed2708d278e939e3c244a9a91e84c0000000000000000000000f7[“0x0e35d1ffb2eed2708d278e939e3c244a9a91e84c”,“0x549943e04f40284185054145c6e4e9568c1d3241”,“0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce”]12426905242025-03-22T16:54:53.000Z[“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”]0x002b1a42938b49ba132af3e07ffbb15b8809c3ccb8ce76af8fd947441880d4b5
0x4be03f781c497a489e3cb0287833452ca9b9e80bfalse0x2a9ea10b60ab02e9b8960a08b4996e6bf5ea5eab000000000000000000000162[“0x2a9ea10b60ab02e9b8960a08b4996e6bf5ea5eab”,“0xedb5180661f56077292c92ab40b1ac57a279a396”,“0xfcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce”]14547860272025-05-09T15:23:23.000Z[“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000”]0xca13b17bb5d36ee0aec0914a665ffcbd70ecade5dc633ca307c157c78e45fbff
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.Vault_TokensRegistered_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

WeightedPoolFactory_FactoryDisabled_event

Factory disable/enable events from BEX v1 weighted pool factory contract on Berachain. Tracks administrative actions controlling whether the factory can create new 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.
addressremovedlog_indexblock_numberblock_timestamptransaction_hash
0xa966fa8f2d5b087fffa499c0c1240589371af409false44136250252025-11-27T17:32:46.000Z0x0a641cdeb81f6f96123e27a070734eab36c11e26c5626893198d310de68d6120
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.WeightedPoolFactory_FactoryDisabled_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

WeightedPoolFactory_PoolCreated_event

Weighted pool creation events emitted by Balancer V2 factory contracts. Records the deployment of new weighted pools with factory address and newly created pool address.
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.
addressin_poolremovedlog_indexblock_numberblock_timestamptransaction_hash
0xa966fa8f2d5b087fffa499c0c1240589371af4090x2c4a603a2aa5596287a06886862dc29d56dbc354false64718572025-01-30T21:44:03.000Z0x43c9b6945ddcecfea8f60bed660aaa60aeabda9fe4a21e429ee7524c288da84a
0xa966fa8f2d5b087fffa499c0c1240589371af4090x38fdd999fe8783037db1bbfe465759e312f2d809false64720912025-01-30T21:51:20.000Z0x3840930058b527471369a394aa21c573fd52ff220bb8dd063c16a6f6d14bc104
0xa966fa8f2d5b087fffa499c0c1240589371af4090xdd70a5ef7d8cfe5c5134b5f9874b09fb5ce812b4false64720042025-01-30T21:48:39.000Z0xa24d422fc1b128559a6f1bf1e48b02a79c38e815feedeaf5723b3d3bf9ce0caf
Query with partition filter
SELECT *
FROM `tt-contracts.bex_v1_berachain.WeightedPoolFactory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100