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
0x3e652e97ff339b73421f824f5b03d75b62f1fb510x23e4e76d01b2002be436ce8d6044b0aa2f68b68a0xeab8c6ffcb27bcaab1167d41f920311f4c9c98a6false100010981294683293829425021025263206600024318416597802025-08-18T02:51:40.000Z0x1faf4328ab20397b1fced2fbe5c5188f870328538390964754ff5615ad21317a
0x263ecee424cc549719c5da28f1ff5784dea103fe0x23e4e76d01b2002be436ce8d6044b0aa2f68b68a0x9008d19f58aabd9ed0d60971565aa8510560ab41false100010982151036137881717141053157479456026237416685262025-08-18T15:27:25.000Z0x0d81b8f52ec496a5621c8e4aea91f7b986f83fff663f1610bacef0e9a6f92414
0x57dd8a9d1517f3cd1431284aedc3aa41db3a62ea0x3fdcec11b4f15c79d483aedc56f37d302837cf4d0x9008d19f58aabd9ed0d60971565aa8510560ab41false1000231135063661878972836855199796620259695543648416686052025-08-18T15:34:15.000Z0x9f4f9ca525da504fa996e3d4f14f27e01577380c44043d97e787587e14da8b6f
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x23e4e76d01b2002be436ce8d6044b0aa2f68b68a0x5a4f0a744b70cbe2454be0586826e10a77650dcdfalse100004849238083187103055463561173826578624502920x6cae28b3d09d8f8fc74ccd496ac986fc84c0c24e98369215442024-11-08T17:07:30.000Z0x3490c01c93f70a50e4488d3b76e3e92b5a2e4201d47458d5f23fafca75435fca296346922458633
0x23e4e76d01b2002be436ce8d6044b0aa2f68b68a0x8e11a6d55bf0455fe9f4f0c4bc79a8b8d0083967false1000048494605173030726939161215859168588300x8e11a6d55bf0455fe9f4f0c4bc79a8b8d008396732369224472024-11-08T18:26:10.000Z0x10869a50310534115d8741bc5ba995b97ba4e13aae0deaa35204a6f9bb1035700
0x23e4e76d01b2002be436ce8d6044b0aa2f68b68a0xb87ca5329061e9c5f946a5ce3ab455298eeb8343false100004849490675897157809419510000000000000000xb87ca5329061e9c5f946a5ce3ab455298eeb834354369225682024-11-08T18:36:50.000Z0x5301ee4561b603540917e96f6864d7da1d8f490a9fa4308755a79f8bbdb383c20
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xc6b7aca6de8a6044e0e32d0c841a89244a10d2840xb50201558b00496a145fe76f7424749556e326d8false0x250x3e652e97ff339b73421f824f5b03d75b62f1fb5140901012Aave Gnosis USDC2025-07-03T14:48:10.000ZaGnoUSDC0x8165dc121d369dc2ceacd5aa2fec3fe1c58d67428b068f570cffbc21dbac12bd60xddafbb505ad214d7b80b1f830fccc89b60fb7a830xad4f91d26254b6b0c6346b390dda2991fde2f20d
0xc0333cb85b59a788d8c7cae5e1fd6e229a3e5a650xb50201558b00496a145fe76f7424749556e326d8false0x490x3e652e97ff339b73421f824f5b03d75b62f1fb5140901012Aave Gnosis USDCe2025-07-03T14:48:10.000ZaGnoUSDCe0x8165dc121d369dc2ceacd5aa2fec3fe1c58d67428b068f570cffbc21dbac12bd60x2a22f9c3b484c3629090feed35f17ff8f88f76f00xad4f91d26254b6b0c6346b390dda2991fde2f20d
0xa1fa064a85266e2ca82dee5c5ccec84df445760e0xb50201558b00496a145fe76f7424749556e326d8false0x190x3e652e97ff339b73421f824f5b03d75b62f1fb5140901012Aave Gnosis GNO2025-07-03T14:48:10.000ZaGnoGNO0x8165dc121d369dc2ceacd5aa2fec3fe1c58d67428b068f570cffbc21dbac12bd180x9c58bacc331c9aa871afd802db6379a98e80cedb0xad4f91d26254b6b0c6346b390dda2991fde2f20d
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xedbc7449a9b594ca4e053d9737ec5dc4cbccbfb2false104178689505399371784845498120000000000000000000000x000010036c0190e009a000d0fc3541100a07380a80406112640x6a000f20005980200259b80c51020030400010682025-06-16T08:35:05.000Z0x8fcd305ab204ee9c481022aa0b99b7893a2f6cb8341f7c11eca502d99bcc11dd0
0xedbc7449a9b594ca4e053d9737ec5dc4cbccbfb2false1041818930262606129877179275501668016423425870x008c40fcb094c67e0c9f424ac65220069d6c4854105406166000x008c40fcb094c67e0c9f424ac65220069d6c48542025-06-16T16:10:15.000Z0xf9f415e95707ca70c08e63e237db0db7444cf508591f3b6cabd7491382c5025650166801642342587
0xa818f1b57c201e092c4a2017a91815034326efd1false10119540013960486419262467091055748263703407190x0477b12dcf072d7a18f270f27f9cd196f7bf0edb22406198080x0477b12dcf072d7a18f270f27f9cd196f7bf0edb2025-06-16T20:45:50.000Z0xc727d469d6b2cc65082c956fd167e735e0163c0528fa4c16222d8a4293b2b9963647343994239
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d80x7346d88acd237083adca857bc8307c5b1765d636false2854664179490x2a22f9c3b484c3629090feed35f17ff8f88f76f038318356819094174710624765203055040x7346d88acd237083adca857bc8307c5b1765d6362025-01-31T06:59:35.000Z00x3414571712945c871e2602829184b3feaeb5215e2baf14ce9249355a1388d4282
0xb50201558b00496a145fe76f7424749556e326d80xd76a7748292479c2c5ccd88f200954b7df7429c5false2000000000110x2a22f9c3b484c3629090feed35f17ff8f88f76f038325947819418112607122720465887760xd76a7748292479c2c5ccd88f200954b7df7429c52025-01-31T17:49:10.000Z00x4ec598ed52e495bdeae460ef8e374716de11125430c631bfacd3dfb0ffe5e1542
0xb50201558b00496a145fe76f7424749556e326d80x73a7984c3379aeedf004bc21bf2d614a2584b48ffalse100000000000000000930x6a023ccd1ff6f2045c3309768ead9e68f978f6e138324694191837609646564285240975430x73a7984c3379aeedf004bc21bf2d614a2584b48f2025-01-31T16:01:55.000Z00x5dbfaafa85efa5368e945ca1de6d96c461743a02f59ebcd842f5b3b6fae434bf2
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d8false0xaf204776c7245bf4147c2612bf6e5972ee48370122332148400280757000000x63dfa7c09dc2ff4030d6b8dc2ce6262bf898c8a41151116607420014037850395776890xebd594bebf68a71bdcf37e5323c779abffc234572025-04-15T20:14:50.000Z00x86149b2ad04520518d1d38dfc1b3cb154b01ddaf6d33d732c7c5382d227a10500
0xb50201558b00496a145fe76f7424749556e326d8false0xe91d153e0b41518a2ce8dd3d7944fa863463a97d15007539336445648000000x63dfa7c09dc2ff4030d6b8dc2ce6262bf898c8a480750376966822282400395771680x0a8fd42b5e7806567c9a05746dbb9c6ba6a790122025-04-15T19:30:20.000Z00x7ca7af2bbe7ea9d3fa4478af85b790a37dd96054eabdb185b5ee0193215caed20
0xb50201558b00496a145fe76f7424749556e326d8false0x6a023ccd1ff6f2045c3309768ead9e68f978f6e116000349189644774000x63dfa7c09dc2ff4030d6b8dc2ce6262bf898c8a487800017459482239395701600xebd594bebf68a71bdcf37e5323c779abffc234572025-04-15T09:36:25.000Z00xbc8a61a1c7c211a421987aae68f536b73718e8d92bad2489bcf5a623d773f3140
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d80x946805df79af35d777400a5188d44de073851d9ffalse17401393310xcb444e90d8198415266c6a2724b7900fb12fc56e0xa0085d1f87b3407ce9ee562c392784ce0363c64810117364049958968258632025-05-19T09:40:20.000Zfalse0x2d9fc34a0dcdff652875b49d9ac9d838f7873ef5a1d48fa1a6f722c19499d2d70xaf204776c7245bf4147c2612bf6e5972ee4837011007234424437135664266
0xb50201558b00496a145fe76f7424749556e326d80xc720083294fc29e7a25abc513821cd59c5ad60fdfalse74418393150x6c76971f98945ae98dd7d4dfca8711ebea946ea60x693ff6878898ce96d996dc78db9c6829a996ac18307333277379982025-08-28T19:54:25.000Zfalse0xc23247d3d7e4e79ed0d2fd1df6df40145afbe18eebb1637d2feb601985949aea0xe91d153e0b41518a2ce8dd3d7944fa863463a97d172933894742692400
0xb50201558b00496a145fe76f7424749556e326d80xdc7587a982b254ceda4a9cb49e494419f1a48d84false23418392770x6c76971f98945ae98dd7d4dfca8711ebea946ea60x693ff6878898ce96d996dc78db9c6829a996ac18339717584632152025-08-28T19:51:15.000Zfalse0xc8169a8162fc6b4fe774cfe0c57a63ae8e1170a59a3e332492c0143ed454b1220xe91d153e0b41518a2ce8dd3d7944fa863463a97d191156276742470563
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d8false250x2a22f9c3b484c3629090feed35f17ff8f88f76f0375341782024-12-15T06:06:55.000Z117509790xcef2628c1941a45ae735cf8f4ea6bfb7c77892d294de3c518f7184854056983d
0xb50201558b00496a145fe76f7424749556e326d8false70x6c76971f98945ae98dd7d4dfca8711ebea946ea6375341782024-12-15T06:06:55.000Z28217968050xcef2628c1941a45ae735cf8f4ea6bfb7c77892d294de3c518f7184854056983d
0xb50201558b00496a145fe76f7424749556e326d8false40x6a023ccd1ff6f2045c3309768ead9e68f978f6e1375341782024-12-15T06:06:55.000Z57958905181116030xcef2628c1941a45ae735cf8f4ea6bfb7c77892d294de3c518f7184854056983d
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d80x0ffad609d35c4bef104ee245a9c4c891d463aa2afalse1000049846628777643540x0ffad609d35c4bef104ee245a9c4c891d463aa2a0x6a023ccd1ff6f2045c3309768ead9e68f978f6e132094714false2024-01-23T22:24:10.000Z0xd49e3ea1cbf31b8a670de721ba1767c148dd7fcc0c598571bd91d446e0bfc9be
0xb50201558b00496a145fe76f7424749556e326d80x6fce63859a859a0f30ed09b12f5010d790618ca4false2364037991625149921150x6fce63859a859a0f30ed09b12f5010d790618ca40x6a023ccd1ff6f2045c3309768ead9e68f978f6e132089793false2024-01-23T15:07:40.000Z0xc9fb742dbac2d8689491e71a77f7528a1bd0cbdd1f7f8a2d8c64409e925c0e04
0xb50201558b00496a145fe76f7424749556e326d80x6fce63859a859a0f30ed09b12f5010d790618ca4false2500000000000000000090x6fce63859a859a0f30ed09b12f5010d790618ca40x6a023ccd1ff6f2045c3309768ead9e68f978f6e132086560false2024-01-23T10:23:10.000Z0x7c6454a05cb4ce36064e08ddbd28d2a0a777a367c15167b09bd50d6be6db57a4
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d8false00xaf204776c7245bf4147c2612bf6e5972ee483701378837632025-01-05T07:02:45.000Z00x835532853a23becaca5c2c26a50b8d6cd29987e572fa018ea12993130c3ccb341000012236375861810745798101001000000000000000000000000000
0xb50201558b00496a145fe76f7424749556e326d8false00x6c76971f98945ae98dd7d4dfca8711ebea946ea6378837732025-01-05T07:03:35.000Z904095196657790751170xfd07a769ec55d879e2fc88227f69a11df6d238abdbca545fdebd334a195cc023100005254651104843440811005301216712700557106583808731001518179945732771456292464
0xb50201558b00496a145fe76f7424749556e326d8false00x6a023ccd1ff6f2045c3309768ead9e68f978f6e1378887502025-01-05T14:18:10.000Z131531508988555319493437890xe49a6a686fef83c9b451b84adcb6653528c0f3fd7e473c0f69a8367a110838ab10082085215034216318239670230215459707428958664924669141019654832838893197740541218
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0xb50201558b00496a145fe76f7424749556e326d80xf8333277c637691be45031a4365d9442def4bb74false121550614455368955210x6a023ccd1ff6f2045c3309768ead9e68f978f6e1358747670xf8333277c637691be45031a4365d9442def4bb742024-09-07T06:52:45.000Z00x687d8707287fab1059966b300ada976bee18840cb2aeff679ce0949dae442d0f
0xb50201558b00496a145fe76f7424749556e326d80x2cfe3d5b6c62d905f2dc961dee9550a88f23963afalse1000000000000000000180x6a023ccd1ff6f2045c3309768ead9e68f978f6e1358704970x2cfe3d5b6c62d905f2dc961dee9550a88f23963a2024-09-07T00:49:20.000Z00x1f8f9f4bddba8cddd73c704c89f23b38884f3e48f6d1127d49850b5bec8a09e4
0xb50201558b00496a145fe76f7424749556e326d80xdecfce6476a66bf8cb1a9f3005ce5496363a99defalse341502199082991345160x6a023ccd1ff6f2045c3309768ead9e68f978f6e1358798150xdecfce6476a66bf8cb1a9f3005ce5496363a99de2024-09-07T14:03:00.000Z00x4dfaedefc85f7875adc8a0d6c0d2131438d05bdae16e25a5d90b9953ae26947f
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x9484fcaa4c39d68798e3c1b7f4a3d9dc2adc69cd0xb50201558b00496a145fe76f7424749556e326d80x51350d88c1bd32cc6a79368c9fb70373fb71f375false13776650x2a22f9c3b484c3629090feed35f17ff8f88f76f0385718132025-02-15T08:03:50.000Z0x408a23a087a430a4d6dd62faa7a7bb40f08378fe287e10d2f779b63db1e26d91
0x9484fcaa4c39d68798e3c1b7f4a3d9dc2adc69cd0xb50201558b00496a145fe76f7424749556e326d80x51350d88c1bd32cc6a79368c9fb70373fb71f375false202382400x2a22f9c3b484c3629090feed35f17ff8f88f76f0385716952025-02-15T07:53:05.000Z0x278b8fe66f48f4a132e1791f9d907790fe2cb91561b4a988bafea17780bb1d51
0x9484fcaa4c39d68798e3c1b7f4a3d9dc2adc69cd0xb50201558b00496a145fe76f7424749556e326d80x51350d88c1bd32cc6a79368c9fb70373fb71f375false1906340x2a22f9c3b484c3629090feed35f17ff8f88f76f0385803772025-02-15T20:18:55.000Z0x56efd0f2c7a365881ab5a236d700919351720403c840b4bc5205f2c431e89163
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.LendingPool_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LendingPoolConfigurator_BridgeProtocolFeeUpdated_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_oldBridgeProtocolFeeSTRING-
in_newBridgeProtocolFeeSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.LendingPoolConfigurator_BridgeProtocolFeeUpdated_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
77000x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xaf204776c7245bf4147c2612bf6e5972ee483701117308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f105008000
77000x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xe91d153e0b41518a2ce8dd3d7944fa863463a97d113308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f105008000
77000x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xddafbb505ad214d7b80b1f830fccc89b60fb7a83109308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f105008000
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false25302930572023-10-04T13:19:25.000Z0x22cae352fccb5ab3d48d8260c2655910845638763eecebce6b58e4e274f58e9340
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false1409010122025-07-03T14:48:10.000Z0x8165dc121d369dc2ceacd5aa2fec3fe1c58d67428b068f570cffbc21dbac12bd100004
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false24302930572023-10-04T13:19:25.000Z0x22cae352fccb5ab3d48d8260c2655910845638763eecebce6b58e4e274f58e9350
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0x6a023ccd1ff6f2045c3309768ead9e68f978f6e11000099308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0x9c58bacc331c9aa871afd802db6379a98e80cedb10000107308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0x6c76971f98945ae98dd7d4dfca8711ebea946ea610000103308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xfc421ad3c883bf9e7c4f42de845c4e4405799e7313414549242025-08-05T17:18:10.000Z0xa83f67826954a6aac0ffc1d9b09885bade5c15d61cc49c06c73d9b404214216310000
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xe91d153e0b41518a2ce8dd3d7944fa863463a97d85308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f10000
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xaf204776c7245bf4147c2612bf6e5972ee48370196308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f10000
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xfc421ad3c883bf9e7c4f42de845c4e4405799e730x3fdcec11b4f15c79d483aedc56f37d302837cf4d6414549242025-08-05T17:18:10.000Z0xa83f67826954a6aac0ffc1d9b09885bade5c15d61cc49c06c73d9b40421421630x00000000000000000000000000000000000000000x2766eefe0311bf7421cc30155b03d210bce30df80x4ce496f0a390745102540faf041ef92ffd588b44
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0x2a22f9c3b484c3629090feed35f17ff8f88f76f00xc0333cb85b59a788d8c7cae5e1fd6e229a3e5a656353293032024-08-05T12:29:00.000Z0xab2f76503ae7540da067be3485f17ec63a6c94648e7d2f887b0f1ed4d02dece70x135a7ba96fbe20949cf2d8e46c7f5ca3bb1ee2220x37b9ad6b5dc8ad977ad716e92f49e9d200e584310x98619395148c348e9a09c7d34290b1e9e7715a3e
0x7304979ec9e4eaa0273b6a037a31c4e9e5a75d16false0xe91d153e0b41518a2ce8dd3d7944fa863463a97d0xd0dd6cef72143e22cced4867eb0d5f232871553335308340292023-11-07T09:08:10.000Z0xd8b3d8a9ee914d10bc4923cb698419c2cdae7b4551c8b8d39efb7ed86827fd6f0xac8b1ce0548c69318920c3e0b21db296d5770d570x281963d7471ecdc3a2bd4503e24e89691cfe420d0x345f7fcd88207fe060ad03c2656a23a3ab596479
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.LendingPoolConfigurator_ReserveInitialized_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
0x57f664882f762fa37903fc864e2b633d384b411afalse0xba1333333333a1ba1108e8412f11850a5c319ba96949998864417368520xba1333333333a1ba1108e8412f11850a5c319ba968973499112091145111375492462024-12-16T03:43:20.000Z0x1171565a651457d0fea629c3101c9bb80fdc3dc09787f1de8c379f7631f768de
0x773cda0cade2a3d86e6d4e30699d40bb95174ff2false0xba1333333333a1ba1108e8412f11850a5c319ba929999999999999855400xba1333333333a1ba1108e8412f11850a5c319ba9299984843495726224523375599632024-12-16T19:05:35.000Z0x70ed6b2c2fa0b67e0692e4ad9f62e1db2dcbd058a5f1bebbcfa6eb858c12c705
0x773cda0cade2a3d86e6d4e30699d40bb95174ff2false0xba1333333333a1ba1108e8412f11850a5c319ba935406296782341485330xba1333333333a1ba1108e8412f11850a5c319ba9354045079967338003140375599212024-12-16T19:02:00.000Z0x708db9d25eaeccab7db8fa2c178e38c7e5f918b6738d8df0a042b7f646cb3de7
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x417bc5b940475203a18c2f320a5ba470d6c5e463false301390006792025-03-12T18:39:20.000Z0xcb33d2d0f8de8368667cd3ddd9cf71e89573a7537a2b76b5062f3caaa188e563
0x58d9acac48a4077e4909181c48decd00e5ba5de4false871414714382025-08-06T17:26:45.000Z0xfad09520731d5d7c069c7f4f1ba81dde943f6df257fd7bc4f099b445096b8fed
0x57f664882f762fa37903fc864e2b633d384b411afalse261372383882024-11-27T15:50:45.000Z0xae9250d2447017f0e29048cce6cd8a5c95f37816f7cba6d9684160a638b3ebab
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x7c16f0185a26db0ae7a9377f23bc18ea7ce5d644false0x2b7ccf33316f30970b77d20f3dcb45c367b5ba396055755476984412160x2b7ccf33316f30970b77d20f3dcb45c367b5ba3960354376615363159980x2b7ccf33316f30970b77d20f3dcb45c367b5ba39426137392025-10-14T03:29:35.000Z0xa45d88932f8f71b84cd12c742535eba424a07e365c84ef678a2f78da343af09d
0x51350d88c1bd32cc6a79368c9fb70373fb71f375false0x2b7ccf33316f30970b77d20f3dcb45c367b5ba391073368850x2b7ccf33316f30970b77d20f3dcb45c367b5ba39103932167100x2b7ccf33316f30970b77d20f3dcb45c367b5ba39426249242025-10-14T19:20:30.000Z0x826540564935fa5e88ccc9561d66985ee2324cb6e7302da3cdde044834822849
0x7c16f0185a26db0ae7a9377f23bc18ea7ce5d644false0x2b7ccf33316f30970b77d20f3dcb45c367b5ba3911455525523026708480x2b7ccf33316f30970b77d20f3dcb45c367b5ba391141709204174227271100x2b7ccf33316f30970b77d20f3dcb45c367b5ba39426134852025-10-14T03:07:55.000Z0x319f1f21182297ef9e75661d91c5ed10e6673c001a70fecaf1626eb26a3c98d5
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x33992721c565da3248bd3af80524e054f5f05b42false33390006790x417bc5b940475203a18c2f320a5ba470d6c5e4630xcb444e90d8198415266c6a2724b7900fb12fc56e2025-03-12T18:39:20.000Z0xcb33d2d0f8de8368667cd3ddd9cf71e89573a7537a2b76b5062f3caaa188e563
0x33992721c565da3248bd3af80524e054f5f05b42false90414714380x58d9acac48a4077e4909181c48decd00e5ba5de40xfc421ad3c883bf9e7c4f42de845c4e4405799e732025-08-06T17:26:45.000Z0xfad09520731d5d7c069c7f4f1ba81dde943f6df257fd7bc4f099b445096b8fed
0x33992721c565da3248bd3af80524e054f5f05b42false17372383880x51350d88c1bd32cc6a79368c9fb70373fb71f3750x2a22f9c3b484c3629090feed35f17ff8f88f76f02024-11-27T15:50:45.000Z0xae9250d2447017f0e29048cce6cd8a5c95f37816f7cba6d9684160a638b3ebab
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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_gnosis.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_gnosis.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
0x281963d7471ecdc3a2bd4503e24e89691cfe420d0xf10581d6ba3d531bc3ce9b24af359089fe7616f1false1126491030102118915025727353140593633814953844570x00000000000000000000000000000000000000005405126992025-06-10T13:24:10.000Z0xada09aa8a1bae1b2b0692e9c300d7d178b275ebb88a7d289558eb07cc58fc9633882877373764112
0x281963d7471ecdc3a2bd4503e24e89691cfe420d0x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d4581false1126531976995998697207872100359982634123933969232570x00000000000000000000000000000000000000001405182552025-06-10T21:16:00.000Z0x9d96f00773927e29f5a56ccae542c32012b9408ea7ec5d80f9bda564edc463b11736587606603076743
0x281963d7471ecdc3a2bd4503e24e89691cfe420d0x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d4581false11264824594469124870421603281199998222970257607259430x00000000000000000000000000000000000000001405115472025-06-10T11:45:35.000Z0x6a2259e040310f7318987794d61816e997be90d0ed99c10f4db13b3488a2471b177702974239274057
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
0x281963d7471ecdc3a2bd4503e24e89691cfe420dfalse11294844935837894583164347781233142232132818494330x721b9abab6511b46b9ee83a1aba23bdacb00414931408965200xc102c17a3b97661b0592239ce9046cbed652ddab2025-07-03T08:25:00.000Z0xc5a0cdc5fde30b9df73a425ceffcc49d23da38fd8ad14de096d329a5c39105d73314223213281849433
0x281963d7471ecdc3a2bd4503e24e89691cfe420dfalse1129519311825334868792967962570007233694400364112590x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d45811409002020x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d45812025-07-03T13:38:50.000Z0x88cc87347ae67b4804c97fd77cf4c4be53d4f437670ca1a98dc3de45e77e9712723369440036411259
0x281963d7471ecdc3a2bd4503e24e89691cfe420dfalse1129512665384215215769958771300001813078797763917350x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d45811408995080x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d45812025-07-03T12:39:40.000Z0x3dd89ee5b843f63102acf8519f336eba00e17de67afdeea1c7fffb05644178d1181307879776391735
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.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
4214310x15e696e03cf87f23a2b864948eab5595797aca6a0true2342160xb50201558b00496a145fe76f7424749556e326d81157920892373161954235709850086879078532699846656405640394575840079131296399350x80500d200x721b9abab6511b46b9ee83a1aba23bdacb004149427896250x15e696e03cf87f23a2b864948eab5595797aca6a2025-10-24T13:15:20.000Z0xd913b3859916d50edb9762deaacddcbd9828ee559f089fe92db941258b536b6c
3620440xe6386827c99639ccbc253f70609fbb2b999b58950true2315610xb50201558b00496a145fe76f7424749556e326d81157920892373161954235709850086879078532699846656405640394575840079131296399350x80500d200x721b9abab6511b46b9ee83a1aba23bdacb004149427898910xe6386827c99639ccbc253f70609fbb2b999b58952025-10-24T13:38:00.000Z0x5aeb99b69742b4b83306abf73a739a0e01d41b94197d0051197225e3f2a5fc3e
3692230false1923860x80500d200x721b9abab6511b46b9ee83a1aba23bdacb004149405027680xbf4ebea7279de8517f60bd5fdbe9aebe03de90ed2025-06-09T23:14:55.000Z0xdc7c1d0b4301c73ff82f10ec314af1621d64b827c237e9f8103bec074ad6bc70
Query with partition filter
SELECT *
FROM `tt-contracts.aave_v3_gnosis.WrappedTokenGatewayV3_withdrawETH_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100