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
0xf276d10b388e00b8a04b1362f66c6e2aad8a19600x7c307e128efa31f540f2e2d976c995e0b65f51f60x19ceead7105607cd444f5ad10dd51356436095a1false100112960132447362834544950418820617599539407640221274022552025-03-10T08:04:17.000Z0x6d0bbd3f56d50382e29c54265b6bef96e3b0f68027d366f82baea4a9d4617bbd
0x6d718a725bd39357cdb3d6bf6b36e1347d9528770x7c307e128efa31f540f2e2d976c995e0b65f51f60x111111125421ca6dc452d289314280a0f8842a65false100112961028286560769215679533847798088340133193274051562025-03-10T09:40:59.000Z0xaa60f2cce5fecf25c51b3de5be878bf322e1c20e5b4ba8958a18a98e43d7cf2c
0x6d718a725bd39357cdb3d6bf6b36e1347d9528770x7c307e128efa31f540f2e2d976c995e0b65f51f60x111111125421ca6dc452d289314280a0f8842a65false100112977978496337471267451613799618488020489270274225232025-03-10T19:19:53.000Z0xe45933a89177374e9787855ca90caf82fabd0f7cd8d75ffb40d0da2a1fb4e649
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0x067ae75628177fd257c2b1e500993e1a0babcbd10x88b1cd4b430d95b406e382c3cdbae54697a0286efalse10017486840787512591975319431844850185886479922840xba1333333333a1ba1108e8412f11850a5c319ba9511276340832025-03-15T16:51:53.000Z0x0e0e7fbd174519fd79c1bb4ba901c6cbaae402c721075b58db7f6561918ded1110149333228069915877
0x067ae75628177fd257c2b1e500993e1a0babcbd10x88b1cd4b430d95b406e382c3cdbae54697a0286efalse100173720543248057880302376413547196961531013655620xba1333333333a1ba1108e8412f11850a5c319ba9441276187532025-03-15T08:20:53.000Z0xd352f27d15f5718cf6c225150af10a23f6e86cd50fc5417bc2ff57a209023a7158728532526856981644
0x067ae75628177fd257c2b1e500993e1a0babcbd10x88b1cd4b430d95b406e382c3cdbae54697a0286efalse10017471437397849630198377711349199004339205808350xba1333333333a1ba1108e8412f11850a5c319ba9317276320332025-03-15T15:43:33.000Z0x5636152890cf959c3bd409ca8a1e65e69c0d92efacf3358f4c9ca88f09ef157c5080103173790329821
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0x7c307e128efa31f540f2e2d976c995e0b65f51f60xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x450xba9424d650a4f5c80a0da641254d1acce2a3705715302050Aave Base weETH2024-06-03T05:44:07.000ZaBasweETH0x8cb8093f6d18a2105ced30c6e62b86e9298b6da13de556c2e59660d38369dcd0180x04c0599ae5a44757c0af6f9ec3b93da8976c150a0xf9cc4f0d883f1a1eb2c253bdb46c254ca51e1f44
0xdd5745756c2de109183c6b5bb886f9207bef114d0xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x1860xba9424d650a4f5c80a0da641254d1acce2a3705725085323Aave Base ezETH2025-01-15T16:53:13.000ZaBasezETH0xe576428129a21be6abaf461e2c4e899fe2f6b1285ee25c8503789e6056ab024d180x2416092f143378750bb29b79ed961ab195cceea50xf9cc4f0d883f1a1eb2c253bdb46c254ca51e1f44
0xbcffb4b3beadc989bd1458740952af6ec8fbe4310xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x3500xba9424d650a4f5c80a0da641254d1acce2a3705734923705Aave Base tBTC2025-08-31T10:39:17.000ZaBastBTC0x1fce903cfbca3ba33092e57bfab92a8fa10e285a317590aefbade0a65592ed09180x236aa50979d5f3de3bd1eeb40e81137f22ab794b0xf9cc4f0d883f1a1eb2c253bdb46c254ca51e1f44
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7false101964028033717103097875110049161582983940x000000000022d473030f116ddee9f6b43ac78ba349237434410x6e55ae43dfb7a541a3702aa8f91926b6c433ca772024-12-15T15:23:49.000Z0xae19f23f8a1c505ef917d80ad95c94a85525460d0c794df7748633fbb20e7de04916158298394
0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7false1019636278134473732389139451170006436790x000000000022d473030f116ddee9f6b43ac78ba3162237406620x048d79a8f51fce31b6f604303d7f084e3d1f97e12024-12-15T13:51:11.000Z0xfc5d0e10bbe17f8cb470949585e5aa331bedbdd0930279b3c1f1e94f890dd36817000643679
0xd4a0e0b9149bcee3c920d2e00b5de09138fd8bb7false1019640280337171030978751100638827988550x000000000022d473030f116ddee9f6b43ac78ba351237434410x4eb7474a78f1c9c63faa53255dc4edadd9bea1682024-12-15T15:23:49.000Z0xae19f23f8a1c505ef917d80ad95c94a85525460d0c794df7748633fbb20e7de063882798855
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x07258130c0d77e8813eec06428c6f7fc6c73dde1false5550000000000000002480x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec221280993219783230936002900994205580x07258130c0d77e8813eec06428c6f7fc6c73dde12024-04-06T13:13:31.000Z00x3cbb55e44d6f2773cf6ac5f280786555fb5959add11e82122f7e704c257484fc2
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x2bd1965a3b9bb05fc0183b08223e2da9574ce0c6false4000000000000000003770x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec221281152419622114429431051578921290x2bd1965a3b9bb05fc0183b08223e2da9574ce0c62024-04-06T14:06:35.000Z00xbde2b35a9725e2ea7cae8f899492418ff93c030b04e892d68190d0784de148122
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x3350ecddf44531956dfc0c23ca5ffbc02854a278false10000000000000000001130x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec221280724920230406129876050025355840x3350ecddf44531956dfc0c23ca5ffbc02854a2782024-04-06T11:44:05.000Z00x6fc5f65a408d7862b92ae25b2e2d74a378cadf23e3c06dd1874824678dc9f9122
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x04c0599ae5a44757c0af6f9ec3b93da8976c150a87006873640297950x2e549104c516b8657a7d888494dfbabd7c70b4643934350343682015188435690x42623cc892b273c136196261c35e5a372a0079a62024-08-24T05:14:45.000Z00x1c20e9f63448f7b25d123dbc9d5f6ff7db02b4dad65529fcc11576a89e7714250
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x04c0599ae5a44757c0af6f9ec3b93da8976c150a3737305444137650x5f4d15d761528c57a5c30c43c1dab26fc54527313480188640500x5f4d15d761528c57a5c30c43c1dab26fc54527312024-08-24T16:37:27.000Z59360x636cbe7bb5f2714a4736604d647031bef9459e0b75eb76050adec0556cd326662
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false0x04c0599ae5a44757c0af6f9ec3b93da8976c150a20625894110212163650x5f4d15d761528c57a5c30c43c1dab26fc54527313820188383370x5f4d15d761528c57a5c30c43c1dab26fc54527312024-08-24T02:20:21.000Z59360xab1515e9ca098aed57b8e981e01a926e5439bf3554a309771648db2ee6c258412
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x8cb904216e165783a8fa3f621aa478e772b1b1fffalse537233030580x42000000000000000000000000000000000000060x0c714690a405c44745b9a7b51514db7e12bcad2b8123859690453542024-12-05T10:44:23.000Zfalse0x98ea688064b5715cd40a7fcfa9a3135788fc9cb2fda1da00b9f9b729ffc690e60x4200000000000000000000000000000000000006848943337652395
0xa238dd80c259a72e81d7e4664a9801593f98d1c50xb900d7f31a01c76d568a952c6d130fedd7a1f0a6false340233007980x42000000000000000000000000000000000000060x888888887a487f209e31a692b227d8d1ff9070ba50089463068760012024-12-05T09:29:03.000Zfalse0xfafe4538d412d2fdd014d42d347f7bdbfd3056c82348a363b8d3c4eee116a8cb0x833589fcd6edb6e08f4c7c32d4f71b54bda0291320545376
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x6fba394d3a407519de0775ca93e8c7e17d3a0e99false353233104560x42000000000000000000000000000000000000060x888888887a487f209e31a692b227d8d1ff9070ba25307143484977672024-12-05T14:50:59.000Zfalse0x2b92b5c55f7337744ff98622876b0e28023310563b23c06240020093b694e48e0x833589fcd6edb6e08f4c7c32d4f71b54bda0291310461058
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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.
addressremovedlog_indexin_reserveblock_numberblock_timestampin_amountMintedtransaction_hash
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false6410x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22277523802025-03-18T10:35:07.000Z52578967005280x0701c90512af9e0ca1696709d675a49e2b7d498f76fbf88fb73093eb7aa6cf1d
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false6500x833589fcd6edb6e08f4c7c32d4f71b54bda02913277523802025-03-18T10:35:07.000Z191554940x0701c90512af9e0ca1696709d675a49e2b7d498f76fbf88fb73093eb7aa6cf1d
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false6380x4200000000000000000000000000000000000006277523802025-03-18T10:35:07.000Z53906675430846120x0701c90512af9e0ca1696709d675a49e2b7d498f76fbf88fb73093eb7aa6cf1d
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c50xe5b62cd578ec7f95acbc320bdc2132bd2ffdec03false2619641573579033421900xe5b62cd578ec7f95acbc320bdc2132bd2ffdec030x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec2213546857false2024-04-23T14:37:41.000Z0xe95774f0c7a8a3800ee83309591c07f63a3f2ce8b6cb69ca05dcff894011f57f
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x2a83449e880374435fec2cea0da457df10f6757efalse408736046488894183630x2a83449e880374435fec2cea0da457df10f6757e0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec2213525314false2024-04-23T02:39:35.000Z0xb5d6a369cb8308fb0069329c0f0b8ca21c8723caff05d0abe7ffa2ad1f21664b
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x250d512bae80c8bbafb8a0d45b866472109dddc8false3000000000000000001960x250d512bae80c8bbafb8a0d45b866472109dddc80x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec2213544599false2024-04-23T13:22:25.000Z0x022bed9f3da53bec4957f33337149f587454353bf7c496c21d53de64f997a0e0
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false520x04c0599ae5a44757c0af6f9ec3b93da8976c150a162199422024-06-24T11:40:31.000Z41136922835099872813689070x9328df783eab44af9b355433a1efe9c389f8983a6491ea556c54fed36a80851e1000232363400193503668254168108676712671768535783441569386767126717685357834415691002199681277514021424290514
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false520x04c0599ae5a44757c0af6f9ec3b93da8976c150a162388892024-06-24T22:12:05.000Z40337967070858490715651840x651dac4b6d06108be8fa1d9ae802386f382d0b95b3877f74e81ba8153c02c9711000237221625192072680504781108299284147527301088179594382992841475273010881795941002245852056634717771431815
0xa238dd80c259a72e81d7e4664a9801593f98d1c5false530x04c0599ae5a44757c0af6f9ec3b93da8976c150a162216722024-06-24T12:38:11.000Z41157622721374078812865820xe3c03c870d3b4d29930d27832c00de612ae62c441de662e2d4cad99ab526cb0d1000232807639606588766055614108686442408572343214876831386864424085723432148768311002203899999391073372945272
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x3e21e3bfeea7e793799c8883a8259c5c3d61c364false100000000000000000040x4200000000000000000000000000000000000006146641700x3e21e3bfeea7e793799c8883a8259c5c3d61c3642024-05-19T11:21:27.000Z00x735f56f0fdbe1b7c60699acd48e63ecf25dcf8490b2c38a9d4d5555f887a5db3
0xa238dd80c259a72e81d7e4664a9801593f98d1c50xbe13f93fb57569a9a9b41cecfd27eab2c60c03e0false365035905250x833589fcd6edb6e08f4c7c32d4f71b54bda02913146472310xbe13f93fb57569a9a9b41cecfd27eab2c60c03e02024-05-19T01:56:49.000Z00xf0db3da01968afd2ab3f1e715aedf21a33ce528cd056a4f5393a27eeb4b4ac87
0xa238dd80c259a72e81d7e4664a9801593f98d1c50x0ac0508870b28e79c10be28291a179612f117f2bfalse14407491650x833589fcd6edb6e08f4c7c32d4f71b54bda02913146473150x0ac0508870b28e79c10be28291a179612f117f2b2024-05-19T01:59:37.000Z00x03ff8f446862cc150b5a63e85df313e91c8cd92b3b609bf6c443a680aa969196
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0xbbae6c1efa69210ec8c62ec4cbf3b84a9a2f23ac0xa238dd80c259a72e81d7e4664a9801593f98d1c50xbbae6c1efa69210ec8c62ec4cbf3b84a9a2f23acfalse178902940xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca152057842024-06-01T00:15:15.000Z0xefbf71ce7bf4cf7751c8d5e484cb286b1592078b8f955d9854ec9f009dd47046
0x8be473dcfa93132658821e67cbeb684ec8ea2e740xa238dd80c259a72e81d7e4664a9801593f98d1c50x8be473dcfa93132658821e67cbeb684ec8ea2e74false560000000000000000110x4200000000000000000000000000000000000006152264522024-06-01T11:44:11.000Z0xf2b3be92b6801fec5d890158c19c2558a6bda30fc8ba9ddf8e7028cf6c259dab
0xd303cd8d5b011216ab803e05b82ac043b8895b3b0xa238dd80c259a72e81d7e4664a9801593f98d1c50xd303cd8d5b011216ab803e05b82ac043b8895b3bfalse1236340509680480110x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22152111972024-06-01T03:15:41.000Z0x4486f8a5f0192ed0ef31cec119fa9d76d9fd6314c80c0b9e46e7554ab585b990
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
75000x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x833589fcd6edb6e08f4c7c32d4f71b54bda0291387143284242024-05-11T16:49:55.000Z0xe0321d6c16a8104b8744161f1e0fd8e91f9c524f877e1c2fe408ff479224d023105007800
75000x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca86143284242024-05-11T16:49:55.000Z0xe0321d6c16a8104b8744161f1e0fd8e91f9c524f877e1c2fe408ff479224d023105007800
73000x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x236aa50979d5f3de3bd1eeb40e81137f22ab794b363349237052025-08-31T10:39:17.000Z0x1fce903cfbca3ba33092e57bfab92a8fa10e285a317590aefbade0a65592ed09107507800
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.LendingPoolConfigurator_CollateralConfigurationChanged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_FlashloanPremiumToProtocolUpdated_event

Aave V3 LendingPoolConfigurator event emitted when the protocol’s share of flash loan fees is updated, recording both old and new premium values in basis points. Used for tracking protocol fee parameter changes and governance decisions.
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_oldFlashloanPremiumToProtocolSTRINGPrevious flashloan premium allocated to the protocol treasury before the update. String-encoded integer representing basis points (0.01%), where 4 equals 0.04% and 10000 equals 100%.
in_newFlashloanPremiumToProtocolSTRINGUpdated flashloan premium allocated to the protocol treasury. String-encoded integer representing basis points (0.01%), where 4 equals 0.04% and 10000 equals 100%.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newFlashloanPremiumToProtocolin_oldFlashloanPremiumToProtocol
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse1523571342023-08-08T14:06:55.000Z0x65ada47b1e29db97b062d601cc2d3d4ba3b4ce8d35b24efd65fd03dd1ca130f040
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse151323821402025-07-03T14:40:27.000Z0x5a00c0f7b758b0e6aa9cd918d5bd69fa4281a05c2d5d4017324a02df5e8d7881100004
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.LendingPoolConfigurator_FlashloanPremiumToProtocolUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_FlashloanPremiumTotalUpdated_event

Aave V3 protocol configuration event tracking changes to flash loan premium rates. Contains old and new premium values in basis points for protocol fee analysis and governance monitoring.
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_oldFlashloanPremiumTotalSTRINGPrevious total flash loan premium fee rate expressed in basis points.
in_newFlashloanPremiumTotalSTRINGUpdated total flash loan premium fee rate expressed in basis points.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newFlashloanPremiumTotalin_oldFlashloanPremiumTotal
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse1423571342023-08-08T14:06:55.000Z0x65ada47b1e29db97b062d601cc2d3d4ba3b4ce8d35b24efd65fd03dd1ca130f050
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.LendingPoolConfigurator_FlashloanPremiumTotalUpdated_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
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x833589fcd6edb6e08f4c7c32d4f71b54bda02913100001981922392023-12-21T15:50:25.000Z0x08eeb9fe32f72acc3ac8a28fe76066f418ef7a79f64382caea30c3ca735c9696
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf10000728201516602024-09-23T11:57:47.000Z0xded919c77289c4c4e2562db3237e7120b687a138aea343cea449583840943d8f
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x236aa50979d5f3de3bd1eeb40e81137f22ab794b10000364349237052025-08-31T10:39:17.000Z0x1fce903cfbca3ba33092e57bfab92a8fa10e285a317590aefbade0a65592ed09
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x04c0599ae5a44757c0af6f9ec3b93da8976c150a55153020502024-06-03T05:44:07.000Z0x8cb8093f6d18a2105ced30c6e62b86e9298b6da13de556c2e59660d38369dcd045000
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0xc1cba3fcea344f92d9239c08c0568f6f2f0ee45254183356402024-08-12T11:03:47.000Z0x4ef34b51bcaf8adb440d7f119d390f3142dd0e4a38386697c071f58b430bb48c5001500
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca180183540812024-08-12T21:18:29.000Z0xeff28d458bd1ad2472159d169eb7cd7043393caf77722b2019b635fd12e152a530002500
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x04c0599ae5a44757c0af6f9ec3b93da8976c150a0x7c307e128efa31f540f2e2d976c995e0b65f51f648153020502024-06-03T05:44:07.000Z0x8cb8093f6d18a2105ced30c6e62b86e9298b6da13de556c2e59660d38369dcd00xcbeda45432d5325585acad29244f113c237b6cf00x8d2e3f1f4b38aa9f1ced22ac06019c7561b039010xa31accd744ebdbf1b36e4556ea09c8b34cd65bb2
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0x2416092f143378750bb29b79ed961ab195cceea50xdd5745756c2de109183c6b5bb886f9207bef114d189250853232025-01-15T16:53:13.000Z0xe576428129a21be6abaf461e2c4e899fe2f6b1285ee25c8503789e6056ab024d0x00000000000000000000000000000000000000000xbc4f5631f2843488792e4f1660d0a51ba489bdbd0x86ab1c62a8bf868e1b3e1ab87d587aba6fbcbdc5
0x5731a04b1e775f0fdd454bf70f3335886e9a96befalse0xc1cba3fcea344f92d9239c08c0568f6f2f0ee4520x99cbc45ea5bb7ef3a5bc08fb1b7e56bb2442ef0d577446832023-12-11T07:11:53.000Z0x852e9315303690e1a6bd79ab9e68e6c6354b66a8865bf0000c108d3adec619750xfe742fa2a84294e8316f05b17c05090fc68b51050x41a7c3f5904ad176dacbb1d99101f59ef0811dc10x2f51b00ec4912874dfdbd8dc3c8e390c21e77af9
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.LendingPoolConfigurator_ReserveInitialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ShortExecutor_ExecutedAction_event

Governance execution event recording completed actions in Aave V3’s ShortExecutor contract. Contains target address, function signature, execution timestamp, and delegatecall flag for tracking protocol governance operations across 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.
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_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_signatureSTRINGCryptographic signature authorizing the order execution. Hex-encoded byte string used to verify the order was signed by the maker’s private key.
in_dataSTRINGEncoded input data for the contract function call. Hex-encoded byte string representing function parameters and additional call data.
in_executionTimeSTRINGUnix timestamp when the action was executed. Integer value representing seconds since epoch.
in_withDelegatecallBOOLBoolean flag indicating whether the contract call was executed using delegatecall opcode instead of a standard call.
in_resultDataSTRINGReturn data from the executed contract function call. Hex-encoded byte string containing the function’s output parameters.
addressin_dataremovedin_valuein_targetlog_indexblock_numberin_signaturein_resultDatablock_timestampin_executionTimetransaction_hashin_withDelegatecall
0x9390b1735def18560c509e2d0bc090e9d6ba257a0xfalse00x50c3cb80c56563ecb46b88d88d3aa6b3a3efd16d6413967710execute()0x2024-05-03T08:26:07.000Z17147247670x06c3246474aa676883e94e59168279252c9f42ba028e2465d8693b165941d6detrue
0x9390b1735def18560c509e2d0bc090e9d6ba257a0xfalse00xeb0b55ce74a8b4a614dd2163e35eaeb4739f07581911434625execute()0x2024-03-05T17:09:57.000Z17096585970x2369045fd7df4ed4fb04a4cf986d842f75e7fa988a19cf484bac30c97eeea501true
0x9390b1735def18560c509e2d0bc090e9d6ba257a0xfalse00xba9020937281d05b0e0d68a0e25028c192020a6b6717402930execute()0x2024-07-21T20:53:27.000Z17215952070xc6b983448372f6f98a783de1bebcdd6af238476331069beb4b3e1faf8feb9693true
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.ShortExecutor_ExecutedAction_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StataToken_Deposit_event

Deposit events emitted by Aave V3 StataToken contracts recording asset conversions to yield-bearing shares. Contains sender address, asset owner, deposited asset amount, and received share amount for tracking StataToken minting 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_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
0x0830820d1a9aa1554364752d6d8f55c836871b74false0xba1333333333a1ba1108e8412f11850a5c319ba910005861457293358550xba1333333333a1ba1108e8412f11850a5c319ba9998024795496186342242273791432025-03-09T19:13:53.000Z0x15494886edafe9209a45c9e17e5c020ee402f6b36881a7f5fcdeb172203e297f
0x0830820d1a9aa1554364752d6d8f55c836871b74false0xba1333333333a1ba1108e8412f11850a5c319ba9214953782486538840xba1333333333a1ba1108e8412f11850a5c319ba92144035487648180196273673622025-03-09T12:41:11.000Z0x9136fdec1f37f8797645c2269568ce81dc72c5900d9cd2b8d3fef23b4e5419d0
0x0830820d1a9aa1554364752d6d8f55c836871b74false0xba1333333333a1ba1108e8412f11850a5c319ba98389740153074972700xba1333333333a1ba1108e8412f11850a5c319ba983682643766450165877273591402025-03-09T08:07:07.000Z0x06b67fe0590b1c2c80915f242445a6abb3d28af99f0aa660f4f478afaa48c502
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.StataToken_Deposit_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StataToken_Initialized_event

Aave V3 Static A Token (StataToken) initialization events emitted when a new StataToken contract is deployed and initialized with its version parameter. Captures the deployment of yield-bearing wrapped aToken contracts that accrue interest through rebasing mechanisms.
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_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0xc768c589647798a6ee01a91fde98ef2ed046dbd6false1341253037962025-01-20T18:15:39.000Z0x60176d0a43937dbfdd12c891a288ea022b51a658c9e9e89fa1a73ee607733e39
0xfa2a03b6f4a65fb1af64f7d935fdbf78693df9affalse1401253037962025-01-20T18:15:39.000Z0x60176d0a43937dbfdd12c891a288ea022b51a658c9e9e89fa1a73ee607733e39
0xf8f10f39116716e89498c1c5e94137ada11b2bc7false1641253037962025-01-20T18:15:39.000Z0x60176d0a43937dbfdd12c891a288ea022b51a658c9e9e89fa1a73ee607733e39
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.StataToken_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StataToken_Withdraw_event

Aave V3 static aToken (StataToken) withdrawal events recording conversions from yield-bearing shares back to underlying assets. Contains sender, owner, receiver addresses, asset amounts withdrawn, and corresponding share quantities burned in the protocol’s vault accounting system.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_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
0x0830820d1a9aa1554364752d6d8f55c836871b74false0x4f1c0915352a55f70e1644f3917e3fa6a9dcd03769765944302100280x4f1c0915352a55f70e1644f3917e3fa6a9dcd03769565987982647854880x20e068d76f9e90b90604500b84c7e19dcb923e7e326974202025-07-10T21:49:47.000Z0x8552defe99c10efa3661d4ef23bf3ba5a7178ac37b4cdac01c143e8c85d93891
0x0830820d1a9aa1554364752d6d8f55c836871b74false0x4f1c0915352a55f70e1644f3917e3fa6a9dcd03737352867771540170x4f1c0915352a55f70e1644f3917e3fa6a9dcd03737245810984553912260x20e068d76f9e90b90604500b84c7e19dcb923e7e326971142025-07-10T21:39:35.000Z0x10f30f81c857d3ce03babcd3b4119607821a019c322c16764408e9ac5a3ec4b8
0x0830820d1a9aa1554364752d6d8f55c836871b74false0x4f1c0915352a55f70e1644f3917e3fa6a9dcd03721967990071533360x4f1c0915352a55f70e1644f3917e3fa6a9dcd03721905031460952033140x20e068d76f9e90b90604500b84c7e19dcb923e7e326915712025-07-10T18:34:49.000Z0x533d65533206f62c9fd9e2c8608dc7f2b2ae36cc87d45a89469a76057977041f
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.StataToken_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StataTokenFactory_StataTokenCreated_event

Event log emitted when Aave V3’s StataTokenFactory contract creates a new static aToken (stata token) wrapper for an underlying asset. Links the newly deployed stata token address with its corresponding underlying asset address for tracking tokenized yield-bearing positions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_stataTokenSTRINGContract address of the newly created static aToken wrapper. Hex-encoded, 0x-prefixed, 42-character string.
in_underlyingSTRINGContract address of the underlying asset. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexblock_numberin_stataTokenin_underlyingblock_timestamptransaction_hash
0x78d33bf0014ab169725f2ea5a62b200f2977faeefalse349283618360x729f75aff28c726e32403e80cef2afb518cfbfa70x60a3e35cc302bfa44cb288bc5a4f316fdb1adb422025-04-01T13:10:19.000Z0x35d483591f606a62a3f90f78c7820b4a2779573cac24097d52b286c6a8c7b3d4
0x78d33bf0014ab169725f2ea5a62b200f2977faeefalse155253037960x5e8b674127b321dc344c078e58bbacc3f30089620x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec222025-01-20T18:15:39.000Z0x60176d0a43937dbfdd12c891a288ea022b51a658c9e9e89fa1a73ee607733e39
0x78d33bf0014ab169725f2ea5a62b200f2977faeefalse149253037960x0830820d1a9aa1554364752d6d8f55c836871b740xc1cba3fcea344f92d9239c08c0568f6f2f0ee4522025-01-20T18:15:39.000Z0x60176d0a43937dbfdd12c891a288ea022b51a658c9e9e89fa1a73ee607733e39
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.StataTokenFactory_StataTokenCreated_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_base.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_base.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
0x03d01595769333174036832e18fa2f17c74f81610xc8a41de2503252da4d1fc7398ebb9c2d18c8eff9false1003135669854825167362984095453981590x0000000000000000000000000000000000000000385284799442025-04-04T06:47:15.000Z0x9b82a283813a228e4ec0d1ae752b4344a596b701e45014b71e35bed6c0015ef61579019
0x03d01595769333174036832e18fa2f17c74f81610xcd5adcb3a1f63180f8d4f75d8f12de8883f7c641false1003142377004183934610266617417855510x0000000000000000000000000000000000000000159284819162025-04-04T07:52:59.000Z0x8507067d62ccf59bbab87f066c94a794cca24ae8ebe6c601ddad0c1904f09758493011
0x03d01595769333174036832e18fa2f17c74f81610xc7054e1bec2e34c2a8a85fe5f7da06fe7c28a0f8false1003143714461234217702672808148896570x0000000000000000000000000000000000000000251284823102025-04-04T08:06:07.000Z0xaa00c8bf6a0545ed2670dbd73cce9bd75c55407768ed7e41d82b4e20ee264b703737346
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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
0x41a7c3f5904ad176dacbb1d99101f59ef0811dc1false1002849027525103654384394991611000000000000000x908ff1ef30b61d468d3bb41427fa9abb31cd6a8511106349700x908ff1ef30b61d468d3bb41427fa9abb31cd6a852024-02-16T04:54:47.000Z0xfb64fdccba80bb7a11d80c088bf5604746252bd967e3f7dc7824837b8f4286170
0x41a7c3f5904ad176dacbb1d99101f59ef0811dc1false1002849377310073453442584789617673384344487720x764897268325efc9bfab5368a54ab1b45151230f25106388390x764897268325efc9bfab5368a54ab1b45151230f2024-02-16T07:03:45.000Z0x818189982f9b5f2e9b6b3ac6e21daf8134d9097d9426a26240da7a40410d94050
0x41a7c3f5904ad176dacbb1d99101f59ef0811dc1false10028494998250261114837931465423882194962049300x251662b500c63e5fb485fe6aada0b63bca29f3ef62106401900x251662b500c63e5fb485fe6aada0b63bca29f3ef2024-02-16T07:48:47.000Z0xedffb4f1f6de637792cdaf7d03950f0e6f250c1b8c5fe7f84edda59be6bfda620
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.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.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_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
10000000false1752110x80500d200xa0d9c1e9e48ca30c8d8c3b5d69ff5dc1f6dffc24311301900x1fdf59b52db7771400c252ac61729fb3d83f57602025-06-04T15:08:47.000Z0xd4fdfa408707cffc448639e8609557eb0ddba1c37a3a712808ab6266cede27e6
10000000false1923100x80500d200xa0d9c1e9e48ca30c8d8c3b5d69ff5dc1f6dffc24311326240x736aade618aed72b6dbeb50cfe975c2969571fff2025-06-04T16:29:55.000Z0xe37d72b03ef36454bd15385af5e0c4742044e9b952cc9a7fe31b95dc2d2ba3fc
2874850false1923220x80500d200xa0d9c1e9e48ca30c8d8c3b5d69ff5dc1f6dffc24311340160x83c1b07c8bd8992f60d14259fd214598e0209b692025-06-04T17:16:19.000Z0xa3e0d5d77e83684a90b78d7d95f026ce620b3d57cea0adc3573344dbd810cb34
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_base.WrappedTokenGatewayV3_withdrawETH_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100