Skip to main content

Tables

EulerSwap_EulerSwapActivated_event

Event log emitted when an EulerSwap trading pair is activated between two assets. Records the contract address and the two asset addresses in the activated pair for swap functionality 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_asset0STRINGContract address of the first asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_asset1STRINGContract address of the second asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_asset0in_asset1log_indexblock_numberblock_timestamptransaction_hash
0x4cb3c543e494d86e06f98431b771d0bb383c68a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9123634865312025-07-31T12:06:36.000Z0x62a54522e062b8ea75dbda4224ba2ffd3f5cdd5e2fe4c481dbd53b07650f9769
0xa78695533d143c3814dcd200161e3be8cfbbe8a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9123663871662025-08-08T21:27:46.000Z0x371a6d193d38e4eb281546f01d34aa0067563b1155ffe75f31e346ee2c460e7a
0x3af115fd79e1e0060b2fa6901a047a52ef6ee8a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9143664011132025-08-08T22:25:50.000Z0x655fd6d03dba99fcf434fc38796e9e07d3a10128ed6f23c1665041b79d541c2d
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EulerSwap_EulerSwapActivated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EulerSwap_Swap_event

EulerSwap token swap events emitted by liquidity pools, recording bidirectional trade amounts, post-swap reserves, sender and recipient addresses. Used for tracking decentralized exchange (DEX) trading activity and liquidity pool state 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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0InSTRINGAmount of token0 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount1InSTRINGAmount of token1 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount0OutSTRINGAmount of token0 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount1OutSTRINGAmount of token1 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_reserve0STRINGReserve amount of the first token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token.
in_reserve1STRINGReserve amount of the second token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toaddressremovedin_senderlog_indexin_reserve0in_reserve1block_numberin_amount0Inin_amount1Inin_amount0Outin_amount1Outblock_timestamptransaction_hash
0x360e68faccca8ca495c1b759fd9eee466db9fb320x65a3f3136043541c89e6cd464778253682fca8a8false0x48daab9f7ed6e3184c26d9ddaccc356d52d6237f945203339922899045943053673562971044451943600104445188762025-08-11T16:39:00.000Z0x17a5b10e5a7a4ed02c54adda06b8b6bf60feec898cc3ec4365405ac59bded1b5
0x360e68faccca8ca495c1b759fd9eee466db9fb320x65a3f3136043541c89e6cd464778253682fca8a8false0x48daab9f7ed6e3184c26d9ddaccc356d52d6237f3941588879792203491131813673562941045390152400104539014462025-08-11T16:38:59.000Z0xb3e89bc5f2d59928d7b73f78fb5717561ed0589788e1b801eb5660121fc0e943
0x360e68faccca8ca495c1b759fd9eee466db9fb320x65a3f3136043541c89e6cd464778253682fca8a8false0x48daab9f7ed6e3184c26d9ddaccc356d52d6237f2659005265088293273162936737844234858185800034858160972025-08-11T18:11:08.000Z0x49dcdededa145d103e92180a9081cca90a1ba81fc85d80c0e67dce3b19a33394
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EulerSwap_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EulerSwapFactory_PoolConfig_event

Pool configuration events from Euler swap factories capturing liquidity pool parameters including vault addresses, reserve balances, pricing ratios, concentration factors, and fee structures at pool initialization or reconfiguration.
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_paramsSTRUCT<vault0 STRING, vault1 STRING, eulerAccount STRING, equilibriumReserve0 STRING, equilibriumReserve1 STRING, priceX STRING, priceY STRING, concentrationX STRING, concentrationY STRING, fee STRING, protocolFee STRING, protocolFeeRecipient STRING>Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
in_initialStateSTRUCT<currReserve0 STRING, currReserve1 STRING>Initial reserve balances of the pool at configuration time. Structure contains currReserve0 and currReserve1 as string-encoded token amounts.
addressin_poolremovedin_paramslog_indexblock_numberblock_timestampin_initialStatetransaction_hash
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20xf2d958a89b09b17e0717b5fd027209213d8a28a8false{“fee”:“10000000000000”,“priceX”:“1000173000000000000”,“priceY”:“1000173000000000000”,“vault0”:“0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899”,“vault1”:“0x37512f45b4ba8808910632323b73783ca938cd51”,“protocolFee”:“0”,“eulerAccount”:“0x541622f9093cfd45390d9354a31614e5bbefcbd0”,“concentrationX”:“999999985730546800”,“concentrationY”:“999999985730546800”,“equilibriumReserve0”:“8692579792”,“equilibriumReserve1”:“8036048296”,“protocolFeeRecipient”:“0x0000000000000000000000000000000000000000”}203666383512025-08-09T14:52:37.000Z{“currReserve0”:“8692579792”,“currReserve1”:“8036048296”}0x26541d6f97b134900934be18951d01401e76446ed54c939ad21f85ef907de4ea
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20x4cb3c543e494d86e06f98431b771d0bb383c68a8false{“fee”:“10000000000000”,“priceX”:“1000000”,“priceY”:“1000001”,“vault0”:“0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899”,“vault1”:“0x37512f45b4ba8808910632323b73783ca938cd51”,“protocolFee”:“0”,“eulerAccount”:“0x75102a2309cd305c7457a72397d0bcc000c4e046”,“concentrationX”:“999950000000000000”,“concentrationY”:“999950000000000000”,“equilibriumReserve0”:“17142447”,“equilibriumReserve1”:“0”,“protocolFeeRecipient”:“0x0000000000000000000000000000000000000000”}203634865312025-07-31T12:06:36.000Z{“currReserve0”:“17142447”,“currReserve1”:“0”}0x62a54522e062b8ea75dbda4224ba2ffd3f5cdd5e2fe4c481dbd53b07650f9769
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20x3af115fd79e1e0060b2fa6901a047a52ef6ee8a8false{“fee”:“80000000000000”,“priceX”:“1000041000000000000”,“priceY”:“1000041000000000000”,“vault0”:“0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899”,“vault1”:“0x37512f45b4ba8808910632323b73783ca938cd51”,“protocolFee”:“0”,“eulerAccount”:“0x541622f9093cfd45390d9354a31614e5bbefcbd0”,“concentrationX”:“999999428898817700”,“concentrationY”:“999999457469620300”,“equilibriumReserve0”:“8705506430”,“equilibriumReserve1”:“8102488028”,“protocolFeeRecipient”:“0x0000000000000000000000000000000000000000”}213664011132025-08-08T22:25:50.000Z{“currReserve0”:“8705506430”,“currReserve1”:“8102488028”}0x655fd6d03dba99fcf434fc38796e9e07d3a10128ed6f23c1665041b79d541c2d
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EulerSwapFactory_PoolConfig_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EulerSwapFactory_PoolDeployed_event

Euler swap pool deployment events emitted when new liquidity pools are created through the factory contract. Contains pool address, paired asset addresses, and associated Euler account identifier for tracking pool creation across the protocol.
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_asset0STRINGContract address of the first asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_asset1STRINGContract address of the second asset in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_eulerAccountSTRINGContract address of the Euler account associated with the pool deployment. 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.
addressin_poolremovedin_asset0in_asset1log_indexblock_numberblock_timestampin_eulerAccounttransaction_hash
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20xf2d958a89b09b17e0717b5fd027209213d8a28a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9193666383512025-08-09T14:52:37.000Z0x541622f9093cfd45390d9354a31614e5bbefcbd00x26541d6f97b134900934be18951d01401e76446ed54c939ad21f85ef907de4ea
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20xa78695533d143c3814dcd200161e3be8cfbbe8a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9193663871662025-08-08T21:27:46.000Z0x541622f9093cfd45390d9354a31614e5bbefcbd00x371a6d193d38e4eb281546f01d34aa0067563b1155ffe75f31e346ee2c460e7a
0x7949be8b154d7b5ce6e75cbfc646aef3a25970e20x3af115fd79e1e0060b2fa6901a047a52ef6ee8a8false0xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9203664011132025-08-08T22:25:50.000Z0x541622f9093cfd45390d9354a31614e5bbefcbd00x655fd6d03dba99fcf434fc38796e9e07d3a10128ed6f23c1665041b79d541c2d
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EulerSwapFactory_PoolDeployed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_Borrow_event

Borrow events emitted by Euler V2 vault contracts recording debt increases. Contains borrower account address and borrowed asset quantity for tracking lending protocol liabilities.
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.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
addressremovedin_assetslog_indexin_accountblock_numberblock_timestamptransaction_hash
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false692040802920x2e0a12ad471c8b76c308823309a8cd00f26b70e53565565192025-07-11T11:26:29.000Z0x31d0b088f5febfb54dd4455ac8446aaa833b91885ae3a4aef95a9117b1fa528f
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false3600552905920x2e0a12ad471c8b76c308823309a8cd00f26b70e53565603652025-07-11T11:42:28.000Z0xfdc9de9db24dee0f9f8c579f6c41ebdc53ce499006ee8dc69bdbecd35d434dd2
0x37512f45b4ba8808910632323b73783ca938cd51false501615978420xd670a99b9ad6b9fe256294f51cfe5f38e51d54ab3564692262025-07-11T05:23:08.000Z0x8ce86c170a7ff30fa7d087b98444dbad775d6ac71807735dadd70cb8625c70c6
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_ConvertFees_event

Fee conversion event emitted when accumulated protocol and governance fees are converted to vault shares. Records the sender address, share amounts allocated to protocol and governance receivers, and their respective recipient addresses for fee distribution tracking in Euler V2 vaults.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_protocolReceiverSTRINGAddress designated to receive protocol fee shares. Hex-encoded, 0x-prefixed, 42-character string.
in_governorReceiverSTRINGAddress designated to receive governance fee shares. Hex-encoded, 0x-prefixed, 42-character string.
in_protocolSharesSTRINGQuantity of vault shares allocated to the protocol fee receiver. Numeric string representing the share amount in smallest denomination.
in_governorSharesSTRINGQuantity of vault shares allocated to the governance fee receiver. Numeric string representing the share amount in smallest denomination.
addressremovedin_senderlog_indexblock_numberblock_timestamptransaction_hashin_governorSharesin_protocolSharesin_governorReceiverin_protocolReceiver
0x78e3e051d32157aacd550fbb78458762d8f7edfffalse0xf58d15f9913829e1b61e92399dc77b082e6825a1373531409402025-07-01T13:40:29.000Z0x10b43226e42fc40d91d58dc1af0069c4e177d0cc52092e07bd1c905c9f7612dd091453548824643760x00000000000000000000000000000000000000000xa1585dc7cd4ef33f7a855fde39771b37838b0bfe
0xa8616e4d9f3f0aa01aff1d7c3b66249f8a5f1a58false0xf58d15f9913829e1b61e92399dc77b082e6825a1413531409402025-07-01T13:40:29.000Z0x10b43226e42fc40d91d58dc1af0069c4e177d0cc52092e07bd1c905c9f7612dd019577564502241810x00000000000000000000000000000000000000000xa1585dc7cd4ef33f7a855fde39771b37838b0bfe
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0xf58d15f9913829e1b61e92399dc77b082e6825a1293531409402025-07-01T13:40:29.000Z0x10b43226e42fc40d91d58dc1af0069c4e177d0cc52092e07bd1c905c9f7612dd02395779130x00000000000000000000000000000000000000000xa1585dc7cd4ef33f7a855fde39771b37838b0bfe
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_ConvertFees_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_Deposit_event

Deposit events emitted by Euler V2 EVault contracts recording asset contributions and corresponding share minting. Contains sender, owner, asset amounts, and share quantities for tracking vault position 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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
addressremovedin_ownerin_assetsin_senderin_shareslog_indexblock_numberblock_timestamptransaction_hash
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x0b5e8814226835666307570f54da57c40559e500180000000x0b5e8814226835666307570f54da57c40559e5001789536293682609212025-08-14T07:21:42.000Z0x9ca33b8b77cb159b6898c1706167d38c9a6c67f87dfeb6e93b6abc51ca16491c
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x0b5e8814226835666307570f54da57c40559e501187684990x0b5e8814226835666307570f54da57c40559e50018659384263682623092025-08-14T07:27:28.000Z0xfe5291d325d3899aa133ffff62384e777678111d72b245a3f58a17b5ba4c21c5
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x1ec950a58307add69266d45cf2f34c838ae7899e303000000x1ec950a58307add69266d45cf2f34c838ae7899e30120578153684773772025-08-14T22:21:55.000Z0x2960824fc41f4c8d2fc9fb87899689957ab32a3cff2d88dda79fbd77daba6a8a
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_Deposit_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_GovSetInterestFee_event

Governance event emitted when the interest fee parameter is updated for an Euler V2 vault (EVault). Contains the new fee value expressed in basis points where 1000 equals 10%.
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_newFeeSTRINGUpdated liquidation protocol fee. Numeric string representing basis points where 1000 equals 10%.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_GovSetInterestFee_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_InterestAccrued_event

Interest accrual events emitted by Euler V2 vault contracts recording accumulated interest for borrower accounts. Contains the vault address, borrower account, accrued asset amount in protocol units, and standard event metadata for tracking interest accumulation 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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
addressremovedin_assetslog_indexin_accountblock_numberblock_timestamptransaction_hash
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false25875411150x102407f67415dcc4068370625ca27f24bb2a03d43633311872025-07-31T01:19:45.000Z0x150f6cfa9bbcd988d78a1ed03f38ea364b425f8f9c1fde1d09c6c8ee7d029848
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false1925131400x1a43aa64893d67b5856c0d232873eb35d0bc12c13635611612025-07-31T17:17:05.000Z0xa781c55137a40185ddbfa1e30256fc9b568cd15c0549ffcebc6e22005693c904
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false69310290x2719e4c5f93224f02d7b0ca9f86894a98f49e21a3634649542025-07-31T10:36:45.000Z0x4864fa76426fa356d5899a39d8ece0a649c8cf1d77ace9587407b77f759effb6
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_InterestAccrued_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_Liquidate_event

Euler Vault (EVault) liquidation events recording positions liquidated for undercollateralization. Captures liquidator address, violator address, collateral vault, repayment amount, and yield balance for protocol solvency tracking.
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_liquidatorSTRINGAddress of the account executing the liquidation operation. Hex-encoded, 0x-prefixed, 42-character string.
in_violatorSTRINGAddress of the account being liquidated due to insufficient collateral. Hex-encoded, 0x-prefixed, 42-character string.
in_collateralSTRINGContract address of the collateral asset or vault. Hex-encoded, 0x-prefixed, 42-character string.
in_repayAssetsSTRINGAmount of assets repaid by the liquidator to cover the violator’s debt. String-encoded numeric value representing the quantity in the smallest unit of the asset.
in_yieldBalanceSTRINGYield balance associated with the violator’s position at the time of liquidation. String-encoded numeric value.
addressremovedlog_indexin_violatorblock_numberin_collateralin_liquidatorin_repayAssetsblock_timestampin_yieldBalancetransaction_hash
0x78e3e051d32157aacd550fbb78458762d8f7edfffalse120x6b4436e939599244c648202dd7855d0af32721b53597073800x0a1ecc5fe8c9be3c809844fcbe615b46a869b8990x431e0a2768de070e860f33653c4634bd69aa4c6a704317946067282025-07-20T14:01:01.000Z2690060x29b151c84e0ee34672b00e29c9725b385d038d97a49b4a2f8300532fec2da818
0x78e3e051d32157aacd550fbb78458762d8f7edfffalse130x9f0777b9d80a117b034dc3632394c4680a2546313596396320x0a1ecc5fe8c9be3c809844fcbe615b46a869b8990x431e0a2768de070e860f33653c4634bd69aa4c6a40767934851288212025-07-20T09:19:16.000Z151599120xa480498295085c9345d33fe4337bee963c5daee2a2134440a2329016d3602fb7
0x78e3e051d32157aacd550fbb78458762d8f7edfffalse150x3fbd14399e0b56e4610918c4aeab04cbd6fc86063662935740x0a1ecc5fe8c9be3c809844fcbe615b46a869b8990x431e0a2768de070e860f33653c4634bd69aa4c6a221157793562142025-08-08T14:58:21.000Z892580x73fa03a6dda54143d908ed3baf03f21543cfc5fc9e0257b4fabab00a719200ca
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_Liquidate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_Repay_event

Debt repayment events from Euler V2 lending vaults recording account addresses and asset amounts returned to reduce borrower liabilities. Used for tracking lending protocol repayment activity and loan balance reconciliation.
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.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
addressremovedin_assetslog_indexin_accountblock_numberblock_timestamptransaction_hash
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false8000000000150xf9867278e13c908c08e2df54966540229fa5ffd93689849902025-08-16T09:34:07.000Z0xf6e0b2dc121e1fd9c0ed29b34caaf66a85db539b445b235a36b314e807e9b662
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false93255000000400x9d3c73222f2a4c0f9ced848d669393340db7d6213690672982025-08-16T15:16:28.000Z0x5162b380674464af06f8e489695d27fcc29cf25e3912319502f38d8d9d83624c
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false20250000050xf9867278e13c908c08e2df54966540229fa5ffd93688966992025-08-16T03:26:34.000Z0x0de1b22e2e8aae4934e8b9d3445f5a240e81887df9d53c44b042d994f5bda07e
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_Repay_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_VaultStatus_event

Vault state snapshot events emitted by Euler V2 (EVault) lending markets recording cash reserves, total borrows, total shares, interest rates, accumulated fees, and interest accumulator at each state change. Used for tracking vault health, interest accrual, and lending market dynamics.
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_totalSharesSTRINGTotal number of shares outstanding in the vault. Numeric string representation of share tokens in the smallest unit.
in_totalBorrowsSTRINGTotal amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.
in_accumulatedFeesSTRINGCumulative fees accrued by the vault or position. Denominated in the smallest unit of the underlying token.
in_cashSTRINGAmount of underlying token assets available in the vault for withdrawals and borrows. Numeric string representation denominated in the smallest unit of the underlying token.
in_interestAccumulatorSTRINGCumulative interest multiplier used to calculate accrued interest on borrows. Numeric string representation with 27 decimal places of precision.
in_interestRateSTRINGAnnual interest rate applied to borrows. Numeric string representation with 18 decimal places of precision.
in_timestampSTRINGUnix timestamp when the event or operation occurred. Numeric string representation of seconds since epoch.
addressin_cashremovedlog_indexblock_numberin_timestampin_totalSharesblock_timestampin_interestRatein_totalBorrowstransaction_hashin_accumulatedFeesin_interestAccumulator
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b8993126251797790false143608898661753315239150328588967502025-07-24T00:00:39.000Z1757618859078799345119527805555100xa055dd6c031c1be20de6171b7a42ddb937e996eaa9ec346ef463a0cf08c9378c6061969351004140017687444488078090949
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b8993126221209529false53608900461753315285150328284984962025-07-24T00:01:25.000Z1757622454320828149119527815218980x1c96ecdbb3cc673a75c66cd81745256de0e2719797e27b81c499b9541c1442186062932771004140098872637581848034561
0x78e3e051d32157aacd550fbb78458762d8f7edff376386377662606316801false7360890084175331529425664846277170894099852025-07-24T00:01:34.000Z80060922084519871121924227788830896503260x24fb78cf53dc92ff17cd8628983de6ec2c889cebdcb67061ba9fdbc8c8d903f7645866404699892251001484834558343558178404939
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_VaultStatus_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVault_Withdraw_event

Withdrawal events from Euler V2 EVault contracts capturing asset and share redemptions. Records sender, owner, receiver addresses along with withdrawn asset amounts and corresponding share quantities for tracking vault position 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.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
addressremovedin_ownerin_assetsin_senderin_shareslog_indexin_receiverblock_numberblock_timestamptransaction_hash
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x065963df68ab6f33aa9470f333b83661aa060f20125737090x065963df68ab6f33aa9470f333b83661aa060f2012474071170x065963df68ab6f33aa9470f333b83661aa060f203730709032025-08-28T04:55:33.000Z0xdf2e56aa816e4c0ff40eccae903199c4388c779e4202a1d447e2ce693cd795b8
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x065963df68ab6f33aa9470f333b83661aa060f21556712950x065963df68ab6f33aa9470f333b83661aa060f2155230156310x6ee488a00a2ef1e2764cd7245f8a77c40060a7c73730699242025-08-28T04:51:30.000Z0x95189439d1bdd9cdb5001cebf8c3065333141f0a5b5b9a8e0315488426453ef0
0x0a1ecc5fe8c9be3c809844fcbe615b46a869b899false0x114e6f1be9ac2b39cb77af65ac58fbf83d8bcfb1310000060x114e6f1be9ac2b39cb77af65ac58fbf83d8bcfb13075389130x114e6f1be9ac2b39cb77af65ac58fbf83d8bcfb13731140822025-08-28T07:55:12.000Z0x94d4fd433d4c606b6209331b8010cd4ef05fa16c76371af0b3c59f60f9f8d9a4
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVault_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

EVaultFactory_ProxyCreated_event

ProxyCreated event emitted by Euler V2 vault factories when new vault proxy contracts are deployed. Records the proxy address, implementation contract, upgradeability flag, and initialization data for vault creation tracking.
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_proxySTRINGContract address of the newly created proxy contract. Hex-encoded, 0x-prefixed, 42-character string.
in_upgradeableBOOLBoolean flag indicating whether the proxy contract supports upgradeability to new implementation contracts.
in_implementationSTRINGContract address of the implementation contract. Hex-encoded, 0x-prefixed, 42-character string.
in_trailingDataSTRINGArbitrary data appended to proxy creation events. Hex-encoded byte string without fixed length or structure.
addressremovedin_proxylog_indexblock_numberin_upgradeableblock_timestampin_trailingDatatransaction_hashin_implementation
0x78df1cf5bf06a7f27f2acc580b934238c1b80d50false0x62fd2b1f7c91635ef10f4a7ba93267e45b9362135370803021true2025-08-21T15:40:12.000Z0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34e4e35ab751e9e06a67ec08e321b3353c3a32815700000000000000000000000000000000000003480x95c61be43058b85d07f9a17c50af5c6ee1655e2b75a7457f21183131078283ba0x832ff4011a3164ea76cea06a313ee0b6cd72ba96
0x78df1cf5bf06a7f27f2acc580b934238c1b80d50false0xe3ed544dace41e3515ba3874ee12d7c2abc4bc865370800468true2025-08-21T15:29:36.000Z0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9e4e35ab751e9e06a67ec08e321b3353c3a32815700000000000000000000000000000000000003480x74eb8f66482e02e78e704bdeb02d3012861dd31c6314a77b5983784ceb6f7f3b0x832ff4011a3164ea76cea06a313ee0b6cd72ba96
0x78df1cf5bf06a7f27f2acc580b934238c1b80d50false0x937f6e3dd6d964ff07bbc2c5d86c935a5a62f4779370798847true2025-08-21T15:22:52.000Z0xaf88d065e77c8cc2239327c5edb3a432268e5831e4e35ab751e9e06a67ec08e321b3353c3a32815700000000000000000000000000000000000003480x513d261a3e9ba6389a8246833fbae4d5aa83d5fd1198ea6f017121d65b3596ab0x832ff4011a3164ea76cea06a313ee0b6cd72ba96
Query with partition filter
SELECT *
FROM `tt-contracts.euler_v2_arbitrum.EVaultFactory_ProxyCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100