Skip to main content

Tables

AToken_BalanceTransfer_event

Interest-bearing aToken balance transfer events from Aave V3 lending protocol. Records movements between accounts with normalized interest index for calculating accrued yields on deposited collateral.
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_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_indexSTRINGLiquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
in_toaddressin_fromremovedin_indexin_valuelog_indexblock_numberblock_timestamptransaction_hash
0xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c0xb7b93bcf82519bb757fd18b23a389245dbd8ca640x651c636fc2adbb79fb2c8fbb1cf3a6f76ff1fdd9false100079033707628390649637309519995931830858210317476382962024-10-29T02:34:17.000Z0x224c5068f5c92ea190616936e44bd7c6e3ec89cd262bd96ca72790691b1f3ac2
0xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c0xb7b93bcf82519bb757fd18b23a389245dbd8ca640x9fe1381bbf84af2bd3d1c1ee48eed57e475f3f30false100080771926651617139732878729975787978520745014477028902024-10-29T22:23:31.000Z0x7c2ac6de2e310ad247d656885de27b5199228644967508821f9993392e52dd40
0xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c0xb7b93bcf82519bb757fd18b23a389245dbd8ca640x0008c89cf3e964103bb2ce837731be1ebe847d03false10008085762742697351667635357589999808063634120477058412024-10-29T23:22:36.000Z0x9f0db6877f2d224f13782fb77356bb75ec5ebf73f80b06892ebc85b5ea82112c
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.AToken_BalanceTransfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AToken_Burn_event

Burn events for Aave interest-bearing tokens (aTokens) emitted when users withdraw or repay underlying assets. Records the amount burned, the user’s address, the interest accrual index at burn time, and optional balance increase from accrued interest in V3 implementations.
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_targetSTRINGAddress of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_indexSTRINGLiquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
addressin_fromremovedin_indexin_valuein_targetlog_indexblock_numberblock_timestamptransaction_hashin_balanceIncrease
0xb7b93bcf82519bb757fd18b23a389245dbd8ca640xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5cfalse1001760906684392067742830920213176300000000000xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c11524452942024-12-29T16:12:15.000Z0x9bcb614587bca9fba31671fedbfc0a5ebc0481524e66faf6e82cb79815a625a10
0xb7b93bcf82519bb757fd18b23a389245dbd8ca640xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5cfalse10017495792718514532158314155100000000000000000xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c11524025262024-12-29T02:01:55.000Z0xfab6e838ba1d6ef8c24d59c9af4ddfc5689b322fb9b2198d7c0432020e363fd80
0xb7b93bcf82519bb757fd18b23a389245dbd8ca640xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5cfalse1001767450864242349062353908440444586928781400xd5f6c8d402e0a0222f7fa132f9e80fdcc074df5c12524669372024-12-29T23:33:43.000Z0x6249e5b84e60a3fbf371934713bd677a60097f8af05d57ac27b32c0e4a2ff7f20
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.AToken_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AToken_Initialized_event

Aave V3 AToken initialization events emitted when new interest-bearing token markets are deployed. Contains AToken metadata (name, symbol, decimals), configuration references (pool, treasury, incentives controller), and the underlying asset address being wrapped.
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_underlyingAssetSTRINGContract address of the underlying asset represented by the AToken. 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_treasurySTRINGContract address of the Aave protocol treasury. Hex-encoded, 0x-prefixed, 42-character string.
in_incentivesControllerSTRINGContract address of the incentives controller managing reward distribution for the token. Hex-encoded, 0x-prefixed, 42-character string.
in_aTokenDecimalsINT64Number of decimal places for the AToken. Integer value representing the divisibility of the token amount.
in_aTokenNameSTRINGHuman-readable name of the AToken being initialized in the Aave protocol. String value identifying the token, typically following the pattern “Aave [Chain] [Asset]” or “[Protocol] [Asset]”.
in_aTokenSymbolSTRINGTrading symbol for the AToken being initialized in the Aave protocol. String value representing the ticker symbol, following patterns like “aArb[Asset]”, “aEth[Asset]”, “aBnb[Asset]”, or protocol-specific variants.
in_paramsSTRINGAdditional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
addressin_poolremovedin_paramslog_indexin_treasuryblock_numberin_aTokenNameblock_timestampin_aTokenSymboltransaction_hashin_aTokenDecimalsin_underlyingAssetin_incentivesController
0xe818a67ee5c0531afaa31aa6e20bcac36227a6410x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x60xd69cbda644c6be817aafb5fd9174f50c33803b6b54060721Aave ZkSync weETH2025-01-19T15:49:08.000ZaZksweETH0x861c5e80b9f073ce62bca6c095493240ad7de47c1c39c15bbe02172c60da9667180xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a0x37c972c9ddfc2138ebe33ec19dba063ab9f8966e
0xf3c9d58b76ac6ee6811520021e9a9318c49e4cfa0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x130xd69cbda644c6be817aafb5fd9174f50c33803b6b54060721Aave ZkSync sUSDe2025-01-19T15:49:08.000ZaZkssUSDe0x861c5e80b9f073ce62bca6c095493240ad7de47c1c39c15bbe02172c60da9667180xad17da2f6ac76746ef261e835c50b2651ce36da80x37c972c9ddfc2138ebe33ec19dba063ab9f8966e
0xc48574bc5358c967d9447e7df70230fdb469e4e70x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x380xd69cbda644c6be817aafb5fd9174f50c33803b6b44671759Aave ZkSync USDT2024-09-20T14:07:05.000ZaZksUSDT0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c460x493257fd37edb34451f62edf8d2a0c418852ba4c0x37c972c9ddfc2138ebe33ec19dba063ab9f8966e
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.AToken_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AToken_Mint_event

Aave Protocol interest-bearing token (aToken) mint events emitted when users deposit underlying assets into lending pools. Records deposit transactions including depositor address, recipient address, minted token amount, liquidity index, and accrued interest balance increases for lending position 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_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfOfSTRINGAddress of the account receiving the benefit of the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_indexSTRINGLiquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
addressremovedin_indexin_valuein_callerlog_indexblock_numberin_onBehalfOfblock_timestamptransaction_hashin_balanceIncrease
0xb7b93bcf82519bb757fd18b23a389245dbd8ca64false10062272464061175106217653476742817854036860xae2b00d676130bdf22582781bbba8f4f21e8b0ff4616898090x52542ffc9120723ac5bd1e7b6b2da9b066621ae32025-06-14T03:16:08.000Z0x5f2d2949e8ab66a8c9df6adbca4e61a7872e2f3d5ff5a3a0850da8864151499e674281785403686
0xb7b93bcf82519bb757fd18b23a389245dbd8ca64false1006242444449927445303336497163060076918180xae2b00d676130bdf22582781bbba8f4f21e8b0ff4617065650xdb9f34e8d6ad8f1d632c33029979e9ecc05ab4b82025-06-14T14:01:55.000Z0x2d34e2ac05fb2a58134d7cb1b64d5fb577f92874255c90efda814c95eab6d67f16306007691818
0xb7b93bcf82519bb757fd18b23a389245dbd8ca64false1006241294061747084973627239325550385050280xae2b00d676130bdf22582781bbba8f4f21e8b0ff4617052150x91d78a84329a7e1d668919645a0b1165c18545a32025-06-14T13:13:02.000Z0x6b635e0c7bc079551aaf36f7d836bd94b237a24e9c567ba8bcca94411798080632555038505028
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.AToken_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_Borrow_event

Borrow events emitted by Aave lending pool contracts capturing loan originations with borrower address, reserve asset, loan amount, interest rate, and rate mode (stable or variable). Used for tracking DeFi lending activity and calculating protocol borrowing metrics.
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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfOfSTRINGAddress of the account receiving the benefit of 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.
in_interestRateModeINT64Interest rate mode for the lending operation. Integer value where 0 indicates no interest rate mode, 1 indicates stable rate, and 2 indicates variable rate.
in_borrowRateSTRINGAnnual interest rate applied to the borrowed amount in the lending pool. Numeric string representation expressed in ray units (27 decimal places).
in_referralCodeSTRINGReferral code identifier associated with the operation. Numeric string representation of the code used to track referral-based incentives.
addressin_userremovedin_amountlog_indexin_reserveblock_numberin_borrowRatein_onBehalfOfblock_timestampin_referralCodetransaction_hashin_interestRateMode
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x7bfee91193d9df2ac0bfe90191d40f23c773c060false15000000060x1d17cbcf0d6d143135ae902365d2e5e2a16538d447166910504484916102247659264467030x7bfee91193d9df2ac0bfe90191d40f23c773c0602024-10-22T21:11:20.000Z00x86df35bb550f1f61449ed6aaf28b38160fb816871821a699faffed2e85534ae62
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0xc64903b4e9a43b1f9ee94b7b7949189cfc40cdcffalse26000000060x1d17cbcf0d6d143135ae902365d2e5e2a16538d447144008520512858697412847592163580xc64903b4e9a43b1f9ee94b7b7949189cfc40cdcf2024-10-22T14:17:05.000Z00x45bf3e86b941a3a0313f551275149b3860772c778bb0073c93ea8f2d209e206e2
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x98231a159ee1e33d0088777ad968a8681a04d854false8000000060x1d17cbcf0d6d143135ae902365d2e5e2a16538d447166122504160775598820811115945860x98231a159ee1e33d0088777ad968a8681a04d8542024-10-22T20:56:18.000Z00x353cd6e5305c6b2c9498218e8d1fcc9b4db2ed96dfe9d2d359ddf33e75807f702
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_FlashLoan_event

Flash loan events from Aave and Aave-forked lending protocols containing borrowed asset, amount, initiator, recipient, and premium fee charged. Used for tracking uncollateralized borrowing activity and arbitrage transactions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_targetSTRINGAddress of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string.
in_initiatorSTRINGAddress of the account that initiated the flash loan operation. Hex-encoded, 0x-prefixed, 42-character string.
in_assetSTRINGContract address of the asset or token. 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_interestRateModeINT64Interest rate mode for the lending operation. Integer value where 0 indicates no interest rate mode, 1 indicates stable rate, and 2 indicates variable rate.
in_premiumSTRINGFee charged for the flash loan operation. Numeric string representation of the fee amount in smallest denomination of the borrowed asset.
in_referralCodeSTRINGReferral code identifier associated with the operation. Numeric string representation of the code used to track referral-based incentives.
addressremovedin_assetin_amountin_targetlog_indexin_premiumblock_numberin_initiatorblock_timestampin_referralCodetransaction_hashin_interestRateMode
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4210937500x3335457cd3a45d691b5d7b065e4dae61217417833110547619531350x3335457cd3a45d691b5d7b065e4dae61217417832025-06-20T17:39:03.000Z00x05c1892e0dce7f0bbfb3516c221e0db7a386650cf7ce77c28d2eea6de4c772ea0
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x493257fd37edb34451f62edf8d2a0c418852ba4c35684120x3335457cd3a45d691b5d7b065e4dae6121741783421784619531440x3335457cd3a45d691b5d7b065e4dae61217417832025-06-20T17:39:16.000Z00x3097b002e0ef5823cbff084da05c48ccb84014fc02334e65ebd1ea730a85076f0
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse0x5aea5775959fbc2557cc8789bc1bf90a239d9a91227015691168778520x5ae15eabb65d8be11d368beb6ae843fa1b7d7ee53511350784558439619307370x5ae15eabb65d8be11d368beb6ae843fa1b7d7ee52025-06-20T04:36:55.000Z00x7250147c612d7d8b972931b02e9b07450934468426ccfebf9bec2da33f461ecd0
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_FlashLoan_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_LiquidationCall_event

Liquidation events from Aave-compatible lending protocols when undercollateralized positions are closed. Records liquidator, borrower, debt repaid, collateral seized, and asset addresses for tracking protocol risk and liquidation bot 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_collateralAssetSTRINGContract address of the asset being seized as collateral during a liquidation. Hex-encoded, 0x-prefixed, 42-character string.
in_debtAssetSTRINGContract address of the debt asset being repaid during liquidation. Hex-encoded, 0x-prefixed, 42-character string.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_debtToCoverSTRINGAmount of debt being repaid during the liquidation operation. String-encoded integer representing the quantity in the debt asset’s smallest unit.
in_liquidatedCollateralAmountSTRINGAmount of collateral seized from the liquidated position. String-encoded integer representing the quantity in the collateral asset’s smallest unit.
in_liquidatorSTRINGAddress of the account executing the liquidation operation. Hex-encoded, 0x-prefixed, 42-character string.
in_receiveATokenBOOLBoolean flag indicating whether the liquidator receives aTokens instead of the underlying collateral asset during liquidation.
addressin_userremovedlog_indexblock_numberin_debtAssetin_liquidatorin_debtToCoverblock_timestampin_receiveATokentransaction_hashin_collateralAssetin_liquidatedCollateralAmount
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x9a126eddd23df8daef0867d06d52146420c93208false17509775310x5a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e0xeeda0088c3b603eb04e1113a8df1d6629cbd4820695222919114822806042024-12-10T19:39:47.000Zfalse0x832774617cfcb6543b0dbeb98b3a57a6a9753c74486baf8132fa4bbf1b89e27c0x5aea5775959fbc2557cc8789bc1bf90a239d9a914277409846032015
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x4862c6ded275b30780f1c03053b13f100a3e4073false17566340050x493257fd37edb34451f62edf8d2a0c418852ba4c0xfafe38b1449ce574ca0b494a5bb79d982f787545517599292025-02-26T12:05:53.000Zfalse0xc3a67d47a88cb95dcd5e1b08c0051e34aa546847ccffcb123ecb2ad2ab2448390x5aea5775959fbc2557cc8789bc1bf90a239d9a9122193484245279037
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x8d59b9fc743cb2d80b47ad8bc0571432b45c68d2false22566481780x493257fd37edb34451f62edf8d2a0c418852ba4c0xfafe38b1449ce574ca0b494a5bb79d982f787545186074202025-02-26T17:53:03.000Zfalse0xd49364d9e95ca2b50ffee0498e4fbbfb17006298c44b2b59ecdd0eae316aa5c60x5aea5775959fbc2557cc8789bc1bf90a239d9a918279461660249235
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_LiquidationCall_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_MintedToTreasury_event

Aave V3 protocol event recording interest-bearing token mints to the treasury reserve. Contains reserve address, amount minted, and transaction identifiers for tracking protocol fee accumulation.
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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountMintedSTRINGAmount of interest-bearing tokens minted to the protocol treasury. String representation of an unsigned integer value.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_MintedToTreasury_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_Repay_event

Loan repayment events from Aave-based lending protocols containing borrower address, repayer address, reserve asset, and repayment amount. Used for tracking debt reduction and loan lifecycle analysis across DeFi lending markets.
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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_repayerSTRINGAddress of the account that executed the repayment 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_useATokensBOOLBoolean flag indicating whether aTokens (interest-bearing deposit tokens) were used to repay the debt instead of the underlying reserve asset.
addressin_userremovedin_amountlog_indexin_repayerin_reserveblock_numberin_useATokensblock_timestamptransaction_hash
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x1df2535cf0956abec21c4738534885d3849d6578false255000124560x1df2535cf0956abec21c4738534885d3849d65780x1d17cbcf0d6d143135ae902365d2e5e2a16538d445868266false2024-10-05T07:21:38.000Z0xf712806ac727805af5458af5300fed73a90e169ae126b83b361650596175cf42
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x4809453c254609f86393728336014f69dfc745ddfalse5000000000100x4809453c254609f86393728336014f69dfc745dd0x1d17cbcf0d6d143135ae902365d2e5e2a16538d445848562false2024-10-05T01:08:02.000Z0x8a74251b3d36431058b38a5bb0ad4f67ff087cee6e3445eba1e2b46d305565d0
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0xe28e42ee6da993aa51bb2de2a6bba88656e60a0afalse23400320xe28e42ee6da993aa51bb2de2a6bba88656e60a0a0x1d17cbcf0d6d143135ae902365d2e5e2a16538d445870421false2024-10-05T08:00:47.000Z0x13af8d2b8617e1ad59eba21b4bc80ce814f0beeefa5a4fe368d036273ea51ede
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_Repay_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_ReserveDataUpdated_event

Aave V2/V3 protocol events emitted when lending pool reserve parameters are updated, including liquidity and borrow indices, interest rates for stable and variable borrowing. Used for tracking interest accrual and reserve state changes across lending markets.
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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_liquidityRateSTRINGCurrent liquidity interest rate for the reserve in ray units (27 decimal precision). Stored as a numeric string representing the annual percentage yield earned by liquidity providers.
in_stableBorrowRateSTRINGCurrent stable borrow interest rate for the reserve in ray units (27 decimal precision). Stored as a numeric string representing the annual percentage rate charged to borrowers who choose a stable rate loan.
in_variableBorrowRateSTRINGCurrent variable borrow interest rate for the reserve in ray units (27 decimal precision). Stored as a numeric string representing the annual percentage rate charged to borrowers who choose a variable rate loan.
in_liquidityIndexSTRINGCumulative liquidity index for the reserve in ray units (27 decimal precision). Represents the accumulated interest growth factor since the reserve’s inception, stored as a numeric string.
in_variableBorrowIndexSTRINGCumulative variable borrow index for the reserve in ray units (27 decimal precision). Represents the accumulated interest growth factor for variable rate borrowers since the reserve’s inception, stored as a numeric string.
addressremovedlog_indexin_reserveblock_numberblock_timestampin_liquidityRatetransaction_hashin_liquidityIndexin_stableBorrowRatein_variableBorrowRatein_variableBorrowIndex
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse20x1d17cbcf0d6d143135ae902365d2e5e2a16538d4631164362025-07-20T08:35:12.000Z408662796038314559973721500xa899379f3a7c80e10d5fbf238d2cc7dc188538ca3eb99912834b6e657504eee110388871824372306336737349600526770474782130051582449931056487821449793522920990885
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse40x1d17cbcf0d6d143135ae902365d2e5e2a16538d4631391512025-07-20T19:55:38.000Z396474104550612412874339150x857a2fa9efc9a5c7a8bb422512d9347cb1743c3e469de6fa74160cdde86ffb9b10389413065991122333061367020518855335935771786516705271056559317938073561322005976
0x78e30497a3c7527d953c6b1e3541b021a98ac43cfalse40x1d17cbcf0d6d143135ae902365d2e5e2a16538d4631187762025-07-20T09:43:37.000Z408159792103105871940725580x2e3d18743cdf40447df1f55287e24d2fa8f7998aca97be570a248a795fc6f5ef10388927094722065002230373370526446186384892645401699281056495066139196155075023595
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_ReserveDataUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_Supply_event

Aave V3 Supply events emitted when users deposit assets into lending pools. Records depositor address, reserve token, deposit amount, beneficiary, and optional referral code for tracking liquidity provision across DeFi lending 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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfOfSTRINGAddress of the account receiving the benefit of 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.
in_referralCodeSTRINGReferral code identifier associated with the operation. Numeric string representation of the code used to track referral-based incentives.
addressin_userremovedin_amountlog_indexin_reserveblock_numberin_onBehalfOfblock_timestampin_referralCodetransaction_hash
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x656ca92a30b6cf6344e726fb0fc6b7641a3f8213false499992700060x1d17cbcf0d6d143135ae902365d2e5e2a16538d4601098950x656ca92a30b6cf6344e726fb0fc6b7641a3f82132025-05-08T17:20:27.000Z00x185d236aa2bf30afe29689ead36c5bfc334d9da342287703f9d3520b6604eb1a
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0x8ed0d975bb0b4e723ed9b02107348a66480ca9f1false17710364970x1d17cbcf0d6d143135ae902365d2e5e2a16538d4601089050x8ed0d975bb0b4e723ed9b02107348a66480ca9f12025-05-08T16:50:28.000Z00x8b07be1dece579d2bf31e2f546cbdfa902aed8d0ab0b6808b5874e2c4ade094a
0x78e30497a3c7527d953c6b1e3541b021a98ac43c0xf2b1db1a280f042506fceaebbf8a3753b91d44ebfalse652099251370x1d17cbcf0d6d143135ae902365d2e5e2a16538d4601052590xf2b1db1a280f042506fceaebbf8a3753b91d44eb2025-05-08T15:17:32.000Z00x999e7af6932ba71a14a895441797e1e7466b6f97f6c2a088ac414438039cd0d3
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_Supply_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPool_Withdraw_event

Aave LendingPool withdrawal events recording asset removals from lending positions. Contains user address, reserve token address, withdrawal amount, and recipient address for tracking collateral and liquidity movements across Aave V2 and V3 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_reserveSTRINGContract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string.
in_userSTRINGAddress of the user account associated with the transaction or protocol 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_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressin_userremovedin_amountlog_indexin_reserveblock_numberblock_timestamptransaction_hash
0xe1c70e0e9233b730228e17ae68a2d5281db4740e0x78e30497a3c7527d953c6b1e3541b021a98ac43c0xe1c70e0e9233b730228e17ae68a2d5281db4740efalse5052117259760x1d17cbcf0d6d143135ae902365d2e5e2a16538d4576968142025-03-15T08:54:59.000Z0x928a56d13343057750e8a6ab77b34ab8f2130907a886a9d3ab60cdfb34231db6
0xe1c70e0e9233b730228e17ae68a2d5281db4740e0x78e30497a3c7527d953c6b1e3541b021a98ac43c0xe1c70e0e9233b730228e17ae68a2d5281db4740efalse200000060x1d17cbcf0d6d143135ae902365d2e5e2a16538d4576956782025-03-15T08:25:46.000Z0xb0d66e00f4ed90d7beadd275feebb0d3168ef88d570dc6d500b047c2d44ae242
0x984ab9407abf0a07d56adcfd5b1369426a13c6710x78e30497a3c7527d953c6b1e3541b021a98ac43c0x984ab9407abf0a07d56adcfd5b1369426a13c671false3000000000060x1d17cbcf0d6d143135ae902365d2e5e2a16538d4577029212025-03-15T11:37:19.000Z0xc9c2b5b29852ba440101fcd31ce020a8a0c9b1fa38a3aad3b579125206c6b546
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPool_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_CollateralConfigurationChanged_event

Collateral parameter update events from lending protocol configurator contracts, recording changes to loan-to-value (LTV), liquidation threshold, and liquidation bonus for specific assets. Used for tracking risk parameter adjustments in lending markets.
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_assetSTRINGContract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string.
in_ltvSTRINGLoan-to-value ratio for the collateral asset. Numeric string representing basis points where 10000 equals 100%.
in_liquidationThresholdSTRINGLiquidation threshold at which a position becomes eligible for liquidation. Numeric string representing basis points where 10000 equals 100%.
in_liquidationBonusSTRINGLiquidation bonus awarded to liquidators for purchasing collateral during liquidation. Numeric string representing basis points where 10000 equals 100%.
in_ltvaddressremovedin_assetlog_indexblock_numberblock_timestamptransaction_hashin_liquidationBonusin_liquidationThreshold
75000x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4118446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c4105007800
75000x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x493257fd37edb34451f62edf8d2a0c418852ba4c122446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c4105007800
75000x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x5aea5775959fbc2557cc8789bc1bf90a239d9a91126446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c4106007800
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPoolConfigurator_CollateralConfigurationChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_LiquidationProtocolFeeChanged_event

Aave V3 LendingPoolConfigurator event capturing changes to liquidation protocol fee parameters. Records the asset address, previous fee value, and new fee value for each configuration update.
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_assetSTRINGContract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string.
in_oldFeeSTRINGPrevious liquidation protocol fee before the change. Numeric string representing basis points where 1000 equals 10%.
in_newFeeSTRINGUpdated liquidation protocol fee. Numeric string representing basis points where 1000 equals 10%.
addressremovedin_assetin_newFeein_oldFeelog_indexblock_numberblock_timestamptransaction_hash
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0xd4169e045bcf9a86cc00101225d9ed61d2f51af21000020615878412025-06-11T18:34:33.000Z0x61459b3bbcec1864105fe2d73e898eb751d3fb0942cc0e47629e547fc7654389
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x5aea5775959fbc2557cc8789bc1bf90a239d9a9110000127446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c4
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x1d17cbcf0d6d143135ae902365d2e5e2a16538d410000119446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c4
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPoolConfigurator_LiquidationProtocolFeeChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_ReserveFactorChanged_event

Events emitted when the reserve factor parameter is modified for a lending pool asset, capturing the asset address, old factor, and new factor values. Used to track protocol fee adjustments in Aave-based lending 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_assetSTRINGContract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string.
in_oldReserveFactorSTRINGPrevious reserve factor value for the asset in the lending pool before the change. Numeric string representing basis points where 10000 equals 100%.
in_newReserveFactorSTRINGUpdated reserve factor value for the asset in the lending pool. Numeric string representing basis points where 10000 equals 100%.
addressremovedin_assetlog_indexblock_numberblock_timestamptransaction_hashin_newReserveFactorin_oldReserveFactor
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0xd4169e045bcf9a86cc00101225d9ed61d2f51af216615878412025-06-11T18:34:33.000Z0x61459b3bbcec1864105fe2d73e898eb751d3fb0942cc0e47629e547fc765438910000
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x1d17cbcf0d6d143135ae902365d2e5e2a16538d487446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c410000
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0x493257fd37edb34451f62edf8d2a0c418852ba4c94446717592024-09-20T14:07:05.000Z0x0d0f32647507f482fa77c09da54153ecf14560572a5491590f97c5ee465715c410000
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPoolConfigurator_ReserveFactorChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_ReserveInitialized_event

Aave protocol events emitted when new lending reserves are initialized in the LendingPoolConfigurator contract, recording the deployed aToken, stable debt token, variable debt token, and interest rate strategy addresses for each asset.
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_assetSTRINGContract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string.
in_aTokenSTRINGContract address of the aToken associated with the reserve. Hex-encoded, 0x-prefixed, 42-character string.
in_stableDebtTokenSTRINGContract address of the stable debt token for the reserve. Hex-encoded, 0x-prefixed, 42-character string.
in_variableDebtTokenSTRINGContract address of the variable debt token for the reserve. Hex-encoded, 0x-prefixed, 42-character string.
in_interestRateStrategyAddressSTRINGContract address of the interest rate strategy contract for the reserve. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_assetin_aTokenlog_indexblock_numberblock_timestamptransaction_hashin_stableDebtTokenin_variableDebtTokenin_interestRateStrategyAddress
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0xad17da2f6ac76746ef261e835c50b2651ce36da80xf3c9d58b76ac6ee6811520021e9a9318c49e4cfa17540607212025-01-19T15:49:08.000Z0x861c5e80b9f073ce62bca6c095493240ad7de47c1c39c15bbe02172c60da96670x00000000000000000000000000000000000000000xdebb4ddaaab1676775214552a7a05d6a13f905da0x57815ab06d846d7decd326ee541cd06144fed237
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0xc1fa6e2e8667d9be0ca938a54c7e0285e9df924a0xe818a67ee5c0531afaa31aa6e20bcac36227a64110540607212025-01-19T15:49:08.000Z0x861c5e80b9f073ce62bca6c095493240ad7de47c1c39c15bbe02172c60da96670x00000000000000000000000000000000000000000xf31e1599b4480d07fa96a7248c4f05ca84da7fa80x57815ab06d846d7decd326ee541cd06144fed237
0x0207d31b4377c74bec37356aad83e3dcc979f40efalse0xd4169e045bcf9a86cc00101225d9ed61d2f51af20x5722921bb6c37eaeb78b993765aa5d79cc50052f9615878412025-06-11T18:34:33.000Z0x61459b3bbcec1864105fe2d73e898eb751d3fb0942cc0e47629e547fc76543890x00000000000000000000000000000000000000000x97dec07366be72884331be21704fd93bf35286f90x57815ab06d846d7decd326ee541cd06144fed237
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.LendingPoolConfigurator_ReserveInitialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SToken_Burn_event

Stable rate debt token burn events from Aave-based lending protocols, emitted when borrowers repay stable-rate debt positions. Records the burn amount, user balance changes, average stable rate, and updated total supply for tracking debt repayments and interest accrual.
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_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_currentBalanceSTRINGUser’s current stable debt balance after accrued interest. Numeric string representation of token quantity in smallest denomination.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_avgStableRateSTRINGAverage stable borrow rate across all borrowers for the reserve. Numeric string representation in ray units (27 decimals).
in_newTotalSupplySTRINGUpdated total supply of stable debt tokens after the operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.SToken_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SToken_Mint_event

Stable debt token minting events from Aave protocol lending pools. Captures stable-rate borrowing activity including borrowed amount, interest rate calculations, borrower address, and updated pool totals.
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_onBehalfOfSTRINGAddress of the account receiving the benefit of 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.
in_currentBalanceSTRINGUser’s current stable debt balance after accrued interest. Numeric string representation of token quantity in smallest denomination.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_newRateSTRINGUpdated stable borrow rate for the user after the mint operation. Numeric string representation in ray units (27 decimals).
in_avgStableRateSTRINGAverage stable borrow rate across all borrowers for the reserve. Numeric string representation in ray units (27 decimals).
in_newTotalSupplySTRINGUpdated total supply of stable debt tokens after the operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.SToken_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

VToken_Burn_event

Variable debt token burn events emitted when borrowers repay debt in Aave-based lending protocols. Contains user address, repayment amount, updated interest index, and accrued interest since last interaction for tracking debt 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_fromSTRINGAddress originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_targetSTRINGAddress of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_indexSTRINGLiquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
addressin_fromremovedin_indexin_valuein_targetlog_indexblock_numberblock_timestamptransaction_hashin_balanceIncrease
0x6450fd7f877b5bb726f7bc6bf0e6ffabd48d72ad0xcba9f2a01fce2797b79184ddf5df13888ad90443false10012454419880570742965294491857097951228494625420x00000000000000000000000000000000000000003541988342025-01-21T08:14:48.000Z0xe1a02b3f18ff9e7ab9352c9a747eac95a14a00e9509cfe1ec90a3d9541e631379259385758376924487
0x6450fd7f877b5bb726f7bc6bf0e6ffabd48d72ad0x41fd941bb20990b5bec8cb424f19397254707981false1001246480710121747164295012149981330257015928042920x00000000000000000000000000000000000000003542014172025-01-21T08:59:25.000Z0x8904a56c80917b0e560f61b50acabac640eff7d9646eff5813675cae57472e541866974298407195708
0x0049250d15a8550c5a14baa5af5b662a93a525b90xe610c6de59e10fe84d017b3141f8c0f23a325d30false10289889006149552547227328891656663180x00000000000000000000000000000000000000003541739232025-01-21T00:47:10.000Z0x334848b1b3c8638ff205d89d2e2dba8ac7dcd8162a66fd77e36f392d3fbe37ba10833682
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.VToken_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

VToken_Mint_event

Variable rate debt token mint events from lending protocols. Records debt token issuance with borrower address, borrowed amount, interest rate index, and accrued interest at the time of minting.
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_onBehalfOfSTRINGAddress of the account receiving the benefit of the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_balanceIncreaseSTRINGAccrued interest amount since the last update for the user’s balance. Numeric string representation of token quantity in smallest denomination.
in_indexSTRINGLiquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
addressremovedin_indexin_valuein_callerlog_indexblock_numberin_onBehalfOfblock_timestamptransaction_hashin_balanceIncrease
0x0049250d15a8550c5a14baa5af5b662a93a525b9false10429152730806544322665417201504879110xa8cbe4b838b951bc4ca4838e38d4ae83833f54fd3593926020xa8cbe4b838b951bc4ca4838e38d4ae83833f54fd2025-04-20T11:09:22.000Z0x3fc7ed9ea1973b1514132b21100e24dbdfee7c34471b1f7565d913abb4f6df59487911
0x0049250d15a8550c5a14baa5af5b662a93a525b9false1042983650831265062010708849300000210x7a789b0024e92b25c041ee236fe91796c84459343594064620x7a789b0024e92b25c041ee236fe91796c84459342025-04-20T20:58:06.000Z0x56544696ab72d2aa28af0ff0e1502f7fe587f68b4a7b757675e03fa56bdcefc421
0x8992db58077fe8c7b80c1b3a738eae8a7bddba34false10520925952052066571481140684500000000x4629b2d672ee6791aab629912114825de021a1073594037150x4629b2d672ee6791aab629912114825de021a1072025-04-20T19:09:39.000Z0xa26a28e2686030337f0eeac50dfa0d3795e84a9f639c52471410f516414b954e0
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.VToken_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

WrappedTokenGatewayV3_withdrawETH_function

Aave V3 WrappedTokenGatewayV3 withdrawETH function call records containing withdrawal amounts, pool addresses, and recipient addresses. Used for tracking ETH unwrapping and withdrawal transactions from Aave lending pools across multiple chains.
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.
valueNUMERICAmount 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_anon0STRINGContract address of the lending 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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
gasin_tovaluestatusgas_usedin_anon0in_amountsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
6028470x06770a6301e77b4bfab8cf4954bf40ffed29e2e50true2177130x78e30497a3c7527d953c6b1e3541b021a98ac43c3000000000000000000x80500d200xae2b00d676130bdf22582781bbba8f4f21e8b0ff652916670x06770a6301e77b4bfab8cf4954bf40ffed29e2e520,02025-10-16T16:22:48.000Z0x03ad01bfc0121399856b1d39f5ce993c71a492bae980c2312736ab3fd037475b
7087500x1412a1eb9841f87c9bd2e81e5fe147622def0aef0true2265850x78e30497a3c7527d953c6b1e3541b021a98ac43c704713722223880000x80500d200xae2b00d676130bdf22582781bbba8f4f21e8b0ff652969740x1412a1eb9841f87c9bd2e81e5fe147622def0aef20,02025-10-16T22:23:44.000Z0x0b4914e75b8692d83f325f1e5df0014d89f2b1e2becff698471863e5ffc46afc
7151130x0f4daa365a72c5b134d6e263f21b64de87f2392a0true2232900x78e30497a3c7527d953c6b1e3541b021a98ac43c1157920892373161954235709850086879078532699846656405640394575840079131296399350x80500d200xae2b00d676130bdf22582781bbba8f4f21e8b0ff652932860x0f4daa365a72c5b134d6e263f21b64de87f2392a20,02025-10-16T18:11:00.000Z0x3913734d135c679cff744830b3ff3a1204783a77969592e3e959fa772ded1aaa
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_zksyncera.WrappedTokenGatewayV3_withdrawETH_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100