Tables
ATokenFactory_Initialized_event
Initialization events for Aave V3 interest-bearing token (aToken) creation on Aptos, capturing deployed token metadata including name, symbol, decimals, underlying asset address, and treasury configuration. Used to track which lending pool assets have been deployed and their token parameters.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_underlying_asset | STRING | Contract address of the underlying asset for which the aToken is being created on Aptos. Hex-encoded string representing the base token that depositors supply to earn yield in the Aave v3 protocol. |
in_treasury | STRING | Contract address of the Aave protocol treasury. Hex-encoded, 0x-prefixed, 42-character string. |
in_incentives_controller | STRING | Address of the optional incentives controller contract that manages reward distributions for this aToken. Null when no incentives are configured for the aToken at initialization. |
in_a_token_decimals | STRING | Number of decimal places for the newly initialized aToken on Aptos. Typically 6 for stablecoins or 8 for native assets like APT. |
in_a_token_name | STRING | Name of the aToken minted to depositors when they supply the underlying asset to the Aave V3 pool on Aptos. Follows the naming convention “AAVE_A_{SYMBOL}” where SYMBOL represents the underlying asset (e.g., AAVE_A_USDC, AAVE_A_APT). |
in_a_token_symbol | STRING | Symbol identifier for the newly created aToken representing deposited collateral in the AAVE v3 lending pool. Follows the naming pattern “AA_{UNDERLYING_SYMBOL}” where AA denotes AAVE Aptos aToken. |
Sample Data
Sample Data
| data | event_type | event_index | in_treasury | block_height | block_timestamp | in_a_token_name | sequence_number | transaction_hash | in_a_token_symbol | in_a_token_decimals | in_underlying_asset | in_incentives_controller | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“a_token_decimals”:6,“a_token_name”:“AAVE_A_USDt”,“a_token_symbol”:“AA_USDt”,“incentives_controller”:{“vec”:[]},“treasury”:“0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce”,“underlying_asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::a_token_factory::Initialized | 0 | 0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce | 364127540 | 2025-06-15T22:48:12.529Z | AAVE_A_USDt | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AA_USDt | 6 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x0 | 0 | |
| {“a_token_decimals”:6,“a_token_name”:“AAVE_A_sUSDe”,“a_token_symbol”:“AA_sUSDe”,“incentives_controller”:{“vec”:[]},“treasury”:“0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce”,“underlying_asset”:“0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::a_token_factory::Initialized | 15 | 0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce | 364127540 | 2025-06-15T22:48:12.529Z | AAVE_A_sUSDe | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AA_sUSDe | 6 | 0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69 | 0x0 | 0 | |
| {“a_token_decimals”:6,“a_token_name”:“AAVE_A_USDC”,“a_token_symbol”:“AA_USDC”,“incentives_controller”:{“vec”:[]},“treasury”:“0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce”,“underlying_asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::a_token_factory::Initialized | 10 | 0xc7fbd0d99ef582a51d87bad84637bab6148d71fa5741087c89ddd89765d92ce | 364127540 | 2025-06-15T22:48:12.529Z | AAVE_A_USDC | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AA_USDC | 6 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x0 | 0 |
Example Query
Example Query
ATokenFactory_TokenRescued_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_rescuer | STRING | - |
in_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_a_token_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
BorrowLogic_Borrow_event
Borrow event records from Aave V3 lending protocol on Aptos blockchain, capturing loan originations with borrowed amounts, interest rates, user addresses, and reserve identifiers. Used for analyzing lending activity, interest rate dynamics, and borrower behavior across Aave markets.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reserve | STRING | Contract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_on_behalf_of | STRING | Aptos account address for whom the borrowed assets are credited, which may differ from the transaction initiator. Typically matches in_user when borrowing for oneself, represented as a hex-encoded, 0x-prefixed 64-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_interest_rate_mode | STRING | Interest rate mode for the borrow position, where 2 indicates variable rate borrowing. This parameter determines whether the user’s debt accrues interest at a stable or variable rate. |
in_borrow_rate | STRING | Annual percentage rate applied to the borrowed amount at the time of the borrow event, expressed as a high-precision integer (ray units with 27 decimals). Values typically range around 38-39 trillion in raw units, representing APRs of approximately 3-4% when scaled. |
in_referral_code | STRING | Referral code associated with the borrow transaction, used to track borrower acquisition sources. Typically zero when no referral program is used. |
Sample Data
Sample Data
| data | in_user | in_amount | event_type | in_reserve | event_index | block_height | in_borrow_rate | block_timestamp | in_on_behalf_of | sequence_number | in_referral_code | transaction_hash | in_interest_rate_mode | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“1000000000”,“borrow_rate”:“38723064791334319436383897”,“interest_rate_mode”:2,“on_behalf_of”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“referral_code”:0,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“user”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 1000000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Borrow | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 9 | 463688127 | 38723064791334319436383897 | 2025-10-21T10:50:19.038Z | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 0 | 0 | 0x767dcdeadfdc0b785db41d6d552a09e735db728fb3229804ef554f17b2e9751c | 2 | 0x0 | 0 |
| {“amount”:“1000000000”,“borrow_rate”:“38622782039980232837631352”,“interest_rate_mode”:2,“on_behalf_of”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“referral_code”:0,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“user”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 1000000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Borrow | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 9 | 463754338 | 38622782039980232837631352 | 2025-10-21T12:18:18.497Z | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 0 | 0 | 0xaa9fa9f906e6ca827ab1895ee83cb1c0e04cb1bbb119a0c9dfc93afa43216d21 | 2 | 0x0 | 0 |
| {“amount”:“1000000000”,“borrow_rate”:“38775008662222655891971012”,“interest_rate_mode”:2,“on_behalf_of”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“referral_code”:0,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“user”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 1000000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Borrow | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 9 | 463707154 | 38775008662222655891971012 | 2025-10-21T11:15:10.491Z | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 0 | 0 | 0x4b506e2e024bfdc304a9eb4baa6dd5048d7f0cf0b300b007d161ce9b9ff7e4fc | 2 | 0x0 | 0 |
Example Query
Example Query
BorrowLogic_Repay_event
Debt repayment events from Aave V3 lending protocol on Aptos blockchain, capturing borrower addresses, reserve assets, repayment amounts, and whether aTokens were used for repayment. Used for analyzing loan closure patterns and protocol debt reduction activity.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reserve | STRING | Contract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_repayer | STRING | Address of the account that executed the repayment transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_use_a_tokens | STRING | Indicates whether aTokens (Aave interest-bearing tokens) were used to repay the debt instead of the underlying asset. String value ‘true’ or ‘false’, typically ‘false’ in most repayment transactions. |
Sample Data
Sample Data
| data | in_user | in_amount | event_type | in_repayer | in_reserve | event_index | block_height | block_timestamp | in_use_a_tokens | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“20000026564”,“repayer”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“use_a_tokens”:false,“user”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 20000026564 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Repay | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 6 | 433820186 | 2025-09-17T17:43:59.699Z | false | 0 | 0x3bd0cc9e9c38146c9d465df4c2e9d5f0bbf3d201d53e7fa47b590e051ff467b0 | 0x0 | 0 |
| {“amount”:“5000000000”,“repayer”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“use_a_tokens”:false,“user”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 5000000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Repay | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 6 | 433645465 | 2025-09-17T12:22:30.397Z | false | 0 | 0x372bd01070baa9ae8b554e73d71852a3ab014e0440c1cd1141fc621c78c6ffef | 0x0 | 0 |
| {“amount”:“2459”,“repayer”:“0x5f99d6fc73912697c1c6904c285c302df4bc5430a22df8b7c296fc8329bcd2f2”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“use_a_tokens”:false,“user”:“0x5f99d6fc73912697c1c6904c285c302df4bc5430a22df8b7c296fc8329bcd2f2”} | 0x5f99d6fc73912697c1c6904c285c302df4bc5430a22df8b7c296fc8329bcd2f2 | 2459 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::borrow_logic::Repay | 0x5f99d6fc73912697c1c6904c285c302df4bc5430a22df8b7c296fc8329bcd2f2 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 6 | 433608589 | 2025-09-17T11:16:01.632Z | false | 0 | 0x6f49a2323dd210a48cffb1a8ea2977f2e2f197af242d5d5048cc3b79d2e42295 | 0x0 | 0 |
Example Query
Example Query
EmissionManager_EmissionAdminUpdated_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reward | STRING | Contract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_admin | STRING | - |
in_new_admin | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
FlashLoanLogic_FlashLoan_event
Flash loan execution events from Aave V3 protocol on Aptos blockchain, capturing borrowed amount, asset address, initiator address, target recipient, premium fees, and interest rate mode. Used for tracking flash loan activity, arbitrage strategies, and protocol fee generation.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_target | STRING | Address of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string. |
in_initiator | STRING | Address of the account that initiated the flash loan operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_interest_rate_mode | STRING | Interest rate mode for the flash loan, where 0 indicates no interest accrual during the flash loan execution. Typically 0 for flash loans as they’re repaid within the same transaction. |
in_premium | STRING | Fee charged for the flash loan operation. Numeric string representation of the fee amount in smallest denomination of the borrowed asset. |
in_referral_code | STRING | Referral code associated with the flash loan transaction for tracking partnership or affiliate origination. Typically zero in most transactions, indicating no referral attribution. |
Sample Data
Sample Data
| data | in_asset | in_amount | in_target | event_type | in_premium | event_index | block_height | in_initiator | block_timestamp | sequence_number | in_referral_code | transaction_hash | in_interest_rate_mode | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“700000000”,“asset”:“0xa”,“initiator”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”,“interest_rate_mode”:0,“premium”:“0”,“referral_code”:0,“target”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”} | 0xa | 700000000 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::flashloan_logic::FlashLoan | 0 | 23 | 466567420 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 2025-10-24T08:48:45.021Z | 0 | 0 | 0xe27f2376094afc17551fa84163ee26d602af5ecdd8c2f62d184061c64319a831 | 0 | 0x0 | 0 |
| {“amount”:“700000000”,“asset”:“0xa”,“initiator”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”,“interest_rate_mode”:0,“premium”:“0”,“referral_code”:0,“target”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”} | 0xa | 700000000 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::flashloan_logic::FlashLoan | 0 | 23 | 466589529 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 2025-10-24T09:17:11.632Z | 0 | 0 | 0xe1a16000ed196ea98fc441619c87868e649530432f6aa84fc2d79aba54a195de | 0 | 0x0 | 0 |
| {“amount”:“700000000”,“asset”:“0xa”,“initiator”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”,“interest_rate_mode”:0,“premium”:“0”,“referral_code”:0,“target”:“0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e”} | 0xa | 700000000 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::flashloan_logic::FlashLoan | 0 | 23 | 466949409 | 0xca88c56fc5230de2f0541b3094e0aef4bff7d03d008c6ae381c00f503893be6e | 2025-10-24T17:08:22.109Z | 0 | 0 | 0x1bfffad15d0d8a55c11720e94c3102cfee6c07f4e03a0a18f778eb05226b3432 | 0 | 0x0 | 0 |
Example Query
Example Query
LiquidationLogic_LiquidationCall_event
Liquidation events from Aave V3 lending protocol on Aptos blockchain, recording undercollateralized position liquidations with debt repayment and collateral seizure amounts. Used for analyzing liquidation cascades, liquidator profitability, and protocol health during market volatility.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_collateral_asset | STRING | Asset address of the collateral being seized in the liquidation event. Hex-encoded Aptos address, typically representing APT (0xa) or other supported collateral tokens in the Aave V3 protocol. |
in_debt_asset | STRING | Asset address of the debt token being repaid during the liquidation on Aptos. Hex-encoded Aptos address identifying the specific token used for debt coverage in the Aave v3 protocol. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_debt_to_cover | STRING | Amount of debt being repaid by the liquidator in the liquidation transaction, denominated in the smallest unit of the debt asset. Numeric string values range from millions to billions, representing the portion of the borrower’s outstanding debt covered during liquidation. |
in_liquidated_collateral_amount | STRING | Amount of collateral seized from the liquidated user’s position, denominated in the smallest unit of the collateral asset. Values range from millions to tens of billions, representing the liquidation penalty applied to undercollateralized positions. |
in_liquidator | STRING | Address of the account executing the liquidation operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_receive_a_token | STRING | Boolean flag indicating whether the liquidator receives aTokens instead of the underlying collateral asset. Typically false, meaning liquidators receive the underlying asset directly. |
Sample Data
Sample Data
| data | in_user | event_type | event_index | block_height | in_debt_asset | in_liquidator | block_timestamp | sequence_number | in_debt_to_cover | transaction_hash | in_receive_a_token | in_collateral_asset | event_guid_account_address | event_guid_creation_number | in_liquidated_collateral_amount |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“collateral_asset”:“0xa”,“debt_asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“debt_to_cover”:“5042221023”,“liquidated_collateral_amount”:“235821805962”,“liquidator”:“0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0”,“receive_a_token”:false,“user”:“0xb7c69fa9de42b3a301389f019f4d199b9c9c0ec22642223439100c18e8914404”} | 0xb7c69fa9de42b3a301389f019f4d199b9c9c0ec22642223439100c18e8914404 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::liquidation_logic::LiquidationCall | 31 | 499071392 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0 | 2025-11-22T04:24:37.681Z | 0 | 5042221023 | 0xd7532730490da2fde3e8840c16b8affc29e0c1726e43d7d7a758d62b55da1711 | false | 0xa | 0x0 | 0 | 235821805962 |
| {“collateral_asset”:“0xa”,“debt_asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“debt_to_cover”:“29301904”,“liquidated_collateral_amount”:“1389659944”,“liquidator”:“0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0”,“receive_a_token”:false,“user”:“0xf6d143aaf4bced776272055848656d01d61fd9f83816acef2aef438439254de0”} | 0xf6d143aaf4bced776272055848656d01d61fd9f83816acef2aef438439254de0 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::liquidation_logic::LiquidationCall | 31 | 499121287 | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0 | 2025-11-22T05:32:30.743Z | 0 | 29301904 | 0xa608eef803a2b15e2cad886825f19811f8cf625255110a1bd7e74647fba0290b | false | 0xa | 0x0 | 0 | 1389659944 |
| {“collateral_asset”:“0xa”,“debt_asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“debt_to_cover”:“201795219”,“liquidated_collateral_amount”:“6997823219”,“liquidator”:“0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0”,“receive_a_token”:false,“user”:“0x790a13900fd3431dc4d73675abbb2243df0697bb7354af8d3fb010cdca23e6eb”} | 0x790a13900fd3431dc4d73675abbb2243df0697bb7354af8d3fb010cdca23e6eb | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::liquidation_logic::LiquidationCall | 29 | 473595295 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0xadd64267159e77e809e387ed148f890bfd521637ef50e903b74347b51ba552e0 | 2025-10-30T18:22:53.729Z | 0 | 201795219 | 0xb17c1caf24947e8d3b8f766984587107567b37cd88bb7482e476eeff55a77cd4 | false | 0xa | 0x0 | 0 | 6997823219 |
Example Query
Example Query
PoolConfigurator_BorrowCapChanged_event
Borrow capacity configuration change events from Aave V3 lending protocol on Aptos, tracking adjustments to maximum borrowable amounts for different assets. Used for monitoring risk parameter updates and protocol governance decisions.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_borrow_cap | STRING | Previous maximum borrowing limit for the specified asset before this configuration change. Denominated in the asset’s smallest unit, typically reflecting risk management adjustments in the Aave v3 protocol on Aptos. |
in_new_borrow_cap | STRING | New borrow cap limit set for the asset in this configuration change event, denominated in the smallest token unit. This value represents the updated maximum amount that can be borrowed from the Aave V3 pool for the specified asset. |
Sample Data
Sample Data
| data | in_asset | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_new_borrow_cap | in_old_borrow_cap | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“asset”:“0xa”,“new_borrow_cap”:“250000”,“old_borrow_cap”:“113636”} | 0xa | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::BorrowCapChanged | 0 | 421693702 | 2025-09-02T18:29:36.988Z | 0 | 0x81e453110c7ab89273d399089c6cb91c40801c89667623a162584ff18352fdf7 | 250000 | 113636 | 0x0 | 0 |
| {“asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“new_borrow_cap”:“4625000”,“old_borrow_cap”:“920000”} | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::BorrowCapChanged | 0 | 421694633 | 2025-09-02T18:31:19.637Z | 0 | 0x9972fb1df3a7d6c1042696612c0e592f1619cfbe7a0ca2b162d378888a1adb1a | 4625000 | 920000 | 0x0 | 0 |
| {“asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“new_borrow_cap”:“18500000”,“old_borrow_cap”:“13875000”} | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::BorrowCapChanged | 0 | 496257614 | 2025-11-19T15:48:49.800Z | 0 | 0x39ac76ba8dcaf6f256f7b90903a3c019ba5f9221fe3b43d88205ceeb49f0f3e9 | 18500000 | 13875000 | 0x0 | 0 |
Example Query
Example Query
PoolConfigurator_CollateralConfigurationChanged_event
Collateral parameter updates from Aave V3 lending protocol on Aptos, recording changes to loan-to-value (LTV), liquidation threshold, and liquidation bonus settings for each supported asset. Used for tracking risk parameter adjustments and protocol governance decisions.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_ltv | STRING | Loan-to-value ratio for the collateral asset. Numeric string representing basis points where 10000 equals 100%. |
in_liquidation_threshold | STRING | Liquidation threshold percentage in basis points for the collateral asset, representing the utilization ratio at which a position becomes eligible for liquidation. Values are expressed in hundredths of a percent (e.g., 7800 = 78%). |
in_liquidation_bonus | STRING | Percentage bonus awarded to liquidators when liquidating an undercollateralized position, expressed in basis points (e.g., 1000 = 10%). Values typically range from 500 to 1000 basis points depending on asset risk profile. |
Sample Data
Sample Data
| data | in_ltv | in_asset | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_liquidation_bonus | in_liquidation_threshold | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“asset”:“0xa”,“liquidation_bonus”:“1000”,“liquidation_threshold”:“6300”,“ltv”:“5800”} | 5800 | 0xa | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::CollateralConfigurationChanged | 1 | 365332222 | 2025-06-17T16:06:58.821Z | 0 | 0x30f0cb590e4eb06ef92a79dc0ae3a1f2c9aef8a45c602755302ce4255e386779 | 1000 | 6300 | 0x0 | 0 |
| {“asset”:“0xa”,“liquidation_bonus”:“1000”,“liquidation_threshold”:“6300”,“ltv”:“0”} | 0 | 0xa | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::CollateralConfigurationChanged | 1 | 365343927 | 2025-06-17T16:31:37.138Z | 0 | 0x6b6168bcd757a474e7b844b082f58b0cf21bb9711f0721fb7e7321b32a1402ef | 1000 | 6300 | 0x0 | 0 |
| {“asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“liquidation_bonus”:“500”,“liquidation_threshold”:“7800”,“ltv”:“0”} | 0 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::CollateralConfigurationChanged | 1 | 365344000 | 2025-06-17T16:31:46.410Z | 0 | 0x9ce78b623514cae81db4c5d6c033e402dd9484c48c7013254614abcdde39e597 | 500 | 7800 | 0x0 | 0 |
Example Query
Example Query
PoolConfigurator_LiquidationProtocolFeeChanged_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_fee | STRING | - |
in_new_fee | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
PoolConfigurator_ReserveFactorChanged_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_reserve_factor | STRING | - |
in_new_reserve_factor | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
PoolConfigurator_ReserveInterestRateDataChanged_event
Interest rate model parameter updates for lending reserves in Aave V3 on Aptos, capturing changes to base rate, optimal utilization ratio, and variable rate slope configurations. Used for tracking protocol governance decisions and analyzing how interest rate curves evolve across different asset markets.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_optimal_usage_ratio | STRING | Target utilization ratio for the lending pool reserve expressed in basis points. Values like 9000 or 4500 represent 90% or 45% optimal pool utilization. |
in_base_variable_borrow_rate | STRING | Base interest rate component for variable-rate borrowing on this Aave V3 reserve, expressed in basis points. Typically set to 0, allowing the rate to be determined by the slope parameters and pool utilization. |
in_variable_rate_slope1 | STRING | The initial slope of the interest rate curve before reaching optimal utilization, determining how quickly rates rise as utilization increases. Expressed in basis points and typically ranges from 600 to 700 for stablecoins in this Aave V3 deployment. |
in_variable_rate_slope2 | STRING | Variable rate slope parameter (slope2) for the interest rate model when utilization exceeds optimal. Represents the steep rate increase applied above the optimal usage ratio, typically in basis points (e.g., ‘4000’ = 40%, ‘30000’ = 300%). |
Sample Data
Sample Data
| data | in_asset | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_optimal_usage_ratio | in_variable_rate_slope1 | in_variable_rate_slope2 | event_guid_account_address | event_guid_creation_number | in_base_variable_borrow_rate |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“asset”:“0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69”,“base_variable_borrow_rate”:“0”,“optimal_usage_ratio”:“9000”,“variable_rate_slope1”:“600”,“variable_rate_slope2”:“4000”} | 0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::ReserveInterestRateDataChanged | 10 | 364128737 | 2025-06-15T22:50:45.753Z | 0 | 0x817a2aa1bbcb27030bf233519c6adcbf1df7b70406fbf7cd49d39e2b048b5a7f | 9000 | 600 | 4000 | 0x0 | 0 | 0 |
| {“asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“base_variable_borrow_rate”:“0”,“optimal_usage_ratio”:“9000”,“variable_rate_slope1”:“600”,“variable_rate_slope2”:“4000”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::ReserveInterestRateDataChanged | 14 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | 9000 | 600 | 4000 | 0x0 | 0 | 0 |
| {“asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“base_variable_borrow_rate”:“0”,“optimal_usage_ratio”:“9000”,“variable_rate_slope1”:“600”,“variable_rate_slope2”:“4000”} | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::ReserveInterestRateDataChanged | 4 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | 9000 | 600 | 4000 | 0x0 | 0 | 0 |
Example Query
Example Query
PoolConfigurator_SupplyCapChanged_event
Supply cap adjustment events from Aave V3 lending protocol on Aptos, tracking changes to maximum deposit limits for lending pool assets. Used to monitor risk parameter updates and protocol governance decisions affecting collateral capacity.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_supply_cap | STRING | Previous supply cap limit for the asset before the configuration change. Numeric value representing the maximum amount of the asset that could be supplied to the Aave V3 pool on Aptos. |
in_new_supply_cap | STRING | Updated maximum supply cap for the specified asset in the Aave V3 lending pool. String-encoded integer representing the new cap value after the configuration change. |
Sample Data
Sample Data
| data | in_asset | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_new_supply_cap | in_old_supply_cap | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“new_supply_cap”:“10000000”,“old_supply_cap”:“1000000”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::SupplyCapChanged | 0 | 487542995 | 2025-11-11T16:38:56.530Z | 0 | 0x07ecc796ee6a50d29fd055fcf8aea22b6a352f1dc70e4669ef1d49f3a1342cbd | 10000000 | 1000000 | 0x0 | 0 |
| {“asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“new_supply_cap”:“15000000”,“old_supply_cap”:“5000000”} | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::SupplyCapChanged | 0 | 487543293 | 2025-11-11T16:39:20.290Z | 0 | 0x0e223d44e849c38cfdb0c7031604a79e12b46f83ee2b0d7dd9207089584291be | 15000000 | 5000000 | 0x0 | 0 |
| {“asset”:“0xa”,“new_supply_cap”:“500000”,“old_supply_cap”:“227272”} | 0xa | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_configurator::SupplyCapChanged | 0 | 421693317 | 2025-09-02T18:28:55.103Z | 0 | 0x0efa588987ecda53925dfd409657a2c9e2dd678a622afe174c018e0e680127ea | 500000 | 227272 | 0x0 | 0 |
Example Query
Example Query
PoolFeeManager_FeeChanged_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_caller | STRING | Address that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_fee | STRING | - |
in_new_fee | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
PoolFeeManager_FeeCollected_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
Example Query
Example Query
PoolFeeManager_FeeWithdrawn_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_caller | STRING | Address that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string. |
in_recipient | STRING | Address designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
Example Query
Example Query
PoolLogic_ReserveDataUpdated_event
Reserve interest rate and index updates from Aave V3 lending pools on Aptos. Tracks liquidity rates, borrow rates, and accrual indices per reserve for calculating user positions and yields.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reserve | STRING | Contract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_liquidity_rate | STRING | Interest rate earned by liquidity providers on deposited assets in this Aave V3 reserve, expressed in ray units (27 decimals). This variable-rate APY adjusts based on utilization and represents the yield available to lenders. |
in_variable_borrow_rate | STRING | Variable borrow rate for the reserve at the time of the update, expressed as a high-precision integer (ray units with 27 decimals). Represents the annualized interest rate borrowers pay on variable-rate loans. |
in_liquidity_index | STRING | Current liquidity index for the reserve, representing cumulative interest accrued to liquidity providers since inception. Stored as a high-precision integer value (scaled by 10^27) to track compound interest growth over time. |
in_variable_borrow_index | STRING | Current variable borrow index for the reserve, representing accumulated interest on variable-rate borrows since inception. Expressed as a high-precision integer scaled by 10^27 (ray units) in Aave protocol terms. |
Sample Data
Sample Data
| data | event_type | in_reserve | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_liquidity_rate | in_liquidity_index | in_variable_borrow_rate | in_variable_borrow_index | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“liquidity_index”:“1005407962251777104629457429”,“liquidity_rate”:“17687262920982487086538141”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“variable_borrow_index”:“1008424905727732218761002419”,“variable_borrow_rate”:“36196237701955717554105442”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_logic::ReserveDataUpdated | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0 | 467706452 | 2025-10-25T10:26:33.033Z | 0 | 0x392f07934000320406ed6eab1bda18ed7735cc6ba71933c008e884a47589b1be | 17687262920982487086538141 | 1005407962251777104629457429 | 36196237701955717554105442 | 1008424905727732218761002419 | 0x0 | 0 |
| {“liquidity_index”:“1005420082654446828329494706”,“liquidity_rate”:“19053483040722030810902324”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“variable_borrow_index”:“1008449784223412589469450982”,“variable_borrow_rate”:“37568192851500826986709371”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_logic::ReserveDataUpdated | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0 | 467977349 | 2025-10-25T16:24:47.942Z | 0 | 0x7f6da52886aca431079c78ebaf579796ad4410a0476de2de40d7e3e4963fde84 | 19053483040722030810902324 | 1005420082654446828329494706 | 37568192851500826986709371 | 1008449784223412589469450982 | 0x0 | 0 |
| {“liquidity_index”:“1005389222605322855137200539”,“liquidity_rate”:“18078208345704688371203318”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“variable_borrow_index”:“1008386634929445420274503512”,“variable_borrow_rate”:“36594077992569688634135252”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_logic::ReserveDataUpdated | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 3 | 467298337 | 2025-10-25T01:18:13.984Z | 0 | 0x9e925672a51a0ea0bc324742aa8bc4e0231ec008301aeea43fe00c23b2b5ee18 | 18078208345704688371203318 | 1005389222605322855137200539 | 36594077992569688634135252 | 1008386634929445420274503512 | 0x0 | 0 |
Example Query
Example Query
PoolTokenLogic_ReserveInitialized_event
Reserve initialization events from Aave V3 lending protocol on Aptos, recording when new assets are added to the lending pool with their corresponding aToken and variable debt token addresses. Used to track protocol expansion and new market deployments.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_a_token | STRING | Contract address of the aToken minted for deposits of this reserve asset in the Aave V3 pool on Aptos. Hex-encoded, 0x-prefixed 64-character string representing the Aptos account address. |
in_variable_debt_token | STRING | Contract address of the variable debt token created for this Aave V3 reserve on Aptos. Hex-encoded, 0x-prefixed 64-character string representing the debt token tracking borrower obligations at variable interest rates. |
Sample Data
Sample Data
| data | in_asset | event_type | in_a_token | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_variable_debt_token | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“a_token”:“0x181970e005584c71ee220c4ad81d280c2a53e579c5a8b2531a20dc44da9ba83f”,“asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“variable_debt_token”:“0xd0cc463994aeb30d6ebfa05f2ce85c74189e5a4fb4df77d7ed5319fb37f4f686”} | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_token_logic::ReserveInitialized | 0x181970e005584c71ee220c4ad81d280c2a53e579c5a8b2531a20dc44da9ba83f | 3 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | 0xd0cc463994aeb30d6ebfa05f2ce85c74189e5a4fb4df77d7ed5319fb37f4f686 | 0x0 | 0 |
| {“a_token”:“0xe0e685725eeee3e89a1b7fdd51182bb48231c464d2add9ec72123fd611df1e63”,“asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“variable_debt_token”:“0xfa2f2ba1dd3a686d5cd1ee691b936ee2b8749febaaca0291063867c20524355a”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_token_logic::ReserveInitialized | 0xe0e685725eeee3e89a1b7fdd51182bb48231c464d2add9ec72123fd611df1e63 | 13 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | 0xfa2f2ba1dd3a686d5cd1ee691b936ee2b8749febaaca0291063867c20524355a | 0x0 | 0 |
| {“a_token”:“0x6b2af1209c53271c37dc5b70b1156529b5af0436d9eec2b514955d969584f2b9”,“asset”:“0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69”,“variable_debt_token”:“0x9a73d998a40ca7ba5cf6b69822744abe73585dc213bfa916345a4f60b1cfbf53”} | 0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::pool_token_logic::ReserveInitialized | 0x6b2af1209c53271c37dc5b70b1156529b5af0436d9eec2b514955d969584f2b9 | 18 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | 0x9a73d998a40ca7ba5cf6b69822744abe73585dc213bfa916345a4f60b1cfbf53 | 0x0 | 0 |
Example Query
Example Query
RewardsController_Accrued_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_reward | STRING | Contract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_asset_index | STRING | - |
in_user_index | STRING | - |
in_rewards_accrued | STRING | - |
in_rewards_controller_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
RewardsController_AssetConfigUpdated_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_asset | STRING | Contract address of the asset or token. Hex-encoded, 0x-prefixed, 42-character string. |
in_reward | STRING | Contract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string. |
in_old_emission | STRING | - |
in_new_emission | STRING | - |
in_old_distribution_end | STRING | - |
in_new_distribution_end | STRING | - |
in_asset_index | STRING | - |
in_rewards_controller_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
RewardsController_ClaimerSet_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimer | STRING | Address of the account initiating the claim transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_rewards_controller_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
RewardsController_PullRewardsTransferStrategyInstalled_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reward | STRING | Contract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string. |
in_strategy | STRING | Contract address of the strategy or strategy contract being referenced. Hex-encoded, 0x-prefixed, 42-character string. |
in_rewards_controller_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
RewardsDistributor_RewardsClaimed_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_reward | STRING | Contract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string. |
in_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimer | STRING | Address of the account initiating the claim transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_rewards_controller_address | STRING | - |
Sample Data
Sample Data
Example Query
Example Query
SupplyLogic_Supply_event
Supply deposit events from Aave V3 lending protocol on Aptos blockchain, recording user deposits of assets into lending pools with reserve identifiers, amounts, and optional referral codes. Used for analyzing lending activity, liquidity provision patterns, and user deposit behavior across different asset reserves.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reserve | STRING | Contract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_on_behalf_of | STRING | Account address receiving the aToken balance from this supply transaction on Aave V3 Aptos. Hex-encoded address, often matches in_user when supplying for oneself. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_referral_code | STRING | Referral code associated with the supply transaction, used to track protocol referrals or partnerships. Typically zero in most transactions, indicating no referral. |
Sample Data
Sample Data
| data | in_user | in_amount | event_type | in_reserve | event_index | block_height | block_timestamp | in_on_behalf_of | sequence_number | in_referral_code | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“2000000”,“on_behalf_of”:“0xd9608f3fba6072c60510607c2470a953bc47d4a595e12030f44c45c24f01f7b8”,“referral_code”:0,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“user”:“0xd9608f3fba6072c60510607c2470a953bc47d4a595e12030f44c45c24f01f7b8”} | 0xd9608f3fba6072c60510607c2470a953bc47d4a595e12030f44c45c24f01f7b8 | 2000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Supply | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 7 | 456026680 | 2025-10-13T07:58:16.199Z | 0xd9608f3fba6072c60510607c2470a953bc47d4a595e12030f44c45c24f01f7b8 | 0 | 0 | 0x250f967af28cac065274503c399273cefe15d7e75c4af7942c2127a15effd6d7 | 0x0 | 0 |
| {“amount”:“57643325”,“on_behalf_of”:“0x8177d9eabb541475bb68a78bb2cbe566787d41e8a388595ecf4bb23ac866e11c”,“referral_code”:0,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“user”:“0x8177d9eabb541475bb68a78bb2cbe566787d41e8a388595ecf4bb23ac866e11c”} | 0x8177d9eabb541475bb68a78bb2cbe566787d41e8a388595ecf4bb23ac866e11c | 57643325 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Supply | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 7 | 456483269 | 2025-10-13T20:04:30.124Z | 0x8177d9eabb541475bb68a78bb2cbe566787d41e8a388595ecf4bb23ac866e11c | 0 | 0 | 0xeffb60ac5c31bfa8ca8593de6f164df01bf8d41a6f1c5f49bd73bc9fab437765 | 0x0 | 0 |
| {“amount”:“380000000”,“on_behalf_of”:“0x109f03337c4378f26c67dea31b09ee5d5ce639c31d994b7503f80209ca4c8ad3”,“referral_code”:0,“reserve”:“0xa”,“user”:“0x109f03337c4378f26c67dea31b09ee5d5ce639c31d994b7503f80209ca4c8ad3”} | 0x109f03337c4378f26c67dea31b09ee5d5ce639c31d994b7503f80209ca4c8ad3 | 380000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Supply | 0xa | 6 | 456510235 | 2025-10-13T20:45:33.422Z | 0x109f03337c4378f26c67dea31b09ee5d5ce639c31d994b7503f80209ca4c8ad3 | 0 | 0 | 0x930c9a094106c02a3b00d7c46ba19a11da376cfd90817b6aa9d1b12145a1f2b4 | 0x0 | 0 |
Example Query
Example Query
SupplyLogic_Withdraw_event
Withdrawal events from Aave V3 lending protocol on Aptos blockchain, recording when users withdraw supplied assets from liquidity pools. Contains user addresses, withdrawal amounts, reserve identifiers, and recipient addresses for tracking lending activity and liquidity changes.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_reserve | STRING | Contract address of the reserve asset in the lending pool operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_user | STRING | Address of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
| data | in_to | in_user | in_amount | event_type | in_reserve | event_index | block_height | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“10000001”,“reserve”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“to”:“0x523119c513aa96e4143ecd2ab91416d5763e8f70c0d0e6d0b74ae693a651acf6”,“user”:“0x523119c513aa96e4143ecd2ab91416d5763e8f70c0d0e6d0b74ae693a651acf6”} | 0x523119c513aa96e4143ecd2ab91416d5763e8f70c0d0e6d0b74ae693a651acf6 | 0x523119c513aa96e4143ecd2ab91416d5763e8f70c0d0e6d0b74ae693a651acf6 | 10000001 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Withdraw | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 8 | 471127771 | 2025-10-28T15:03:59.374Z | 0 | 0x80293592bb7fe0ba17a019790a488a33939df0682d96a9889f134f56eb8cc4d4 | 0x0 | 0 |
| {“amount”:“3000000”,“reserve”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“to”:“0x5f421227682e14069055eb37e1f304b91d2b061d51a96739a877df75c04ee64f”,“user”:“0x5f421227682e14069055eb37e1f304b91d2b061d51a96739a877df75c04ee64f”} | 0x5f421227682e14069055eb37e1f304b91d2b061d51a96739a877df75c04ee64f | 0x5f421227682e14069055eb37e1f304b91d2b061d51a96739a877df75c04ee64f | 3000000 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Withdraw | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 8 | 470819321 | 2025-10-28T08:32:48.465Z | 0 | 0xa47c3cb6f0c299f404f18e06114f465be0ffc77de8930339283d807427731f46 | 0x0 | 0 |
| {“amount”:“561019301”,“reserve”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”,“to”:“0x75dd04dfae2feaf6e9d775b362f4fbe7ae7ba1a73536b1c253965836144b3602”,“user”:“0x75dd04dfae2feaf6e9d775b362f4fbe7ae7ba1a73536b1c253965836144b3602”} | 0x75dd04dfae2feaf6e9d775b362f4fbe7ae7ba1a73536b1c253965836144b3602 | 0x75dd04dfae2feaf6e9d775b362f4fbe7ae7ba1a73536b1c253965836144b3602 | 561019301 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::supply_logic::Withdraw | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | 7 | 471335612 | 2025-10-28T19:17:46.165Z | 0 | 0xc4ee3f3d885476c03fec898a8d511ee36dc23af17e369bf70c5a23a47a55962c | 0x0 | 0 |
Example Query
Example Query
TokenBase_Burn_event
Token burn events from Aave V3 lending protocol on Aptos blockchain, tracking interest-bearing token redemptions with burn amounts, account addresses, and accrued interest. Used for analyzing lending protocol withdrawals and user position changes.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_target | STRING | Address of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
in_balance_increase | STRING | Balance increase amount accrued to the position as a result of this burn event. Represented as a string-encoded integer, typically in the token’s smallest denomination. |
in_index | STRING | Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27). |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| data | in_from | in_index | in_token | in_value | in_target | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_balance_increase | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“balance_increase”:“40759”,“from”:“0x904ceacef2594e7c2bee5ad05adc6c085e54ac526744a31235c8e53be1d43940”,“index”:“1000083747366260777165006721”,“target”:“0x0”,“token”:“0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac”,“value”:“500000000”} | 0x904ceacef2594e7c2bee5ad05adc6c085e54ac526744a31235c8e53be1d43940 | 1000083747366260777165006721 | 0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac | 500000000 | 0x0 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Burn | 2 | 438576287 | 2025-09-23T15:07:18.532Z | 0 | 0x6a1842f7a1c28e480f7f8b16cce961d502781504f600c6a65fb9ac343fcc6fc3 | 40759 | 0x0 | 0 |
| {“balance_increase”:“1213835”,“from”:“0xabd23e58fb4fb4b927e0ff88db1207404beefb3e8441cdab48361134b6c12a75”,“index”:“1000082872443962675536867397”,“target”:“0x0”,“token”:“0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac”,“value”:“18800000028”} | 0xabd23e58fb4fb4b927e0ff88db1207404beefb3e8441cdab48361134b6c12a75 | 1000082872443962675536867397 | 0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac | 18800000028 | 0x0 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Burn | 2 | 438227489 | 2025-09-23T04:52:11.918Z | 0 | 0x4628c0e17bf5b9142f98078cfcd5da19fa902ce8848f0cc140956d18be3806f1 | 1213835 | 0x0 | 0 |
| {“balance_increase”:“136041”,“from”:“0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6”,“index”:“1004499236534491873982018012”,“target”:“0x0”,“token”:“0xd0cc463994aeb30d6ebfa05f2ce85c74189e5a4fb4df77d7ed5319fb37f4f686”,“value”:“2800831931”} | 0x5eb42332a941641c87778ec072acba28b7078dcf8ab5b99c194226d3e5bfb9f6 | 1004499236534491873982018012 | 0xd0cc463994aeb30d6ebfa05f2ce85c74189e5a4fb4df77d7ed5319fb37f4f686 | 2800831931 | 0x0 | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Burn | 2 | 438627654 | 2025-09-23T16:37:56.587Z | 0 | 0xed477eb94a2054bca3eb9863d8fd40e5967730fcbac134f0bb0a320c421ea1f7 | 136041 | 0x0 | 0 |
Example Query
Example Query
TokenBase_Mint_event
Token minting events from Aave V3 lending protocol on Aptos, recording aToken issuance when users supply collateral. Contains caller address, token identifier, minted amount, and accrued interest for analyzing liquidity provision and yield accumulation.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_caller | STRING | Address that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string. |
in_on_behalf_of | STRING | Aptos account address receiving the minted tokens, represented as a hex-encoded string. May differ from the caller address when minting is executed on behalf of another user. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
in_balance_increase | STRING | Interest accrued or balance growth associated with this mint event, denominated in the smallest token unit. Represents the yield or additional amount earned by the account being minted to, often zero for principal-only mints. |
in_index | STRING | Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27). |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| data | in_index | in_token | in_value | in_caller | event_type | event_index | block_height | block_timestamp | in_on_behalf_of | sequence_number | transaction_hash | in_balance_increase | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“balance_increase”:“0”,“caller”:“0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a”,“index”:“1000000000000000000000000000”,“on_behalf_of”:“0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a”,“token”:“0x6b2af1209c53271c37dc5b70b1156529b5af0436d9eec2b514955d969584f2b9”,“value”:“33350000011”} | 1000000000000000000000000000 | 0x6b2af1209c53271c37dc5b70b1156529b5af0436d9eec2b514955d969584f2b9 | 33350000011 | 0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Mint | 5 | 470134617 | 2025-10-27T17:03:49.593Z | 0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a | 0 | 0xa1cb1f639b959d4b1b3e17b192f5aea86c818362c6ce330d8ef55d54d0b4e835 | 0 | 0x0 | 0 |
| {“balance_increase”:“1681763618”,“caller”:“0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a”,“index”:“1004268609287063717027812071”,“on_behalf_of”:“0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a”,“token”:“0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac”,“value”:“701681763618”} | 1004268609287063717027812071 | 0xa390eaad908362242726571612b11cda5bc5003e713c60e68b9464b058a2cdac | 701681763618 | 0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Mint | 6 | 470132132 | 2025-10-27T17:00:39.473Z | 0xa16f93607d900202e9b31eb3484b7fe43797778b445187c485a74053aaf23b3a | 0 | 0xb8ad815bf964c9b42e1ad9b4e58efcbbb97b962f8b81b376667609cb230613a4 | 1681763618 | 0x0 | 0 |
| {“balance_increase”:“0”,“caller”:“0x2cd7970477ff81eadf36d823361ab47b03b4a48d61ea329e825402a98507bc2e”,“index”:“1001525000681671988592441653”,“on_behalf_of”:“0x2cd7970477ff81eadf36d823361ab47b03b4a48d61ea329e825402a98507bc2e”,“token”:“0xb68e2ba5211193d45cbeacb6c8a4408a270cb183722bdc4de8d666f405dbe586”,“value”:“10000000000”} | 1001525000681671988592441653 | 0xb68e2ba5211193d45cbeacb6c8a4408a270cb183722bdc4de8d666f405dbe586 | 10000000000 | 0x2cd7970477ff81eadf36d823361ab47b03b4a48d61ea329e825402a98507bc2e | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::token_base::Mint | 6 | 470351661 | 2025-10-27T21:53:08.061Z | 0x2cd7970477ff81eadf36d823361ab47b03b4a48d61ea329e825402a98507bc2e | 0 | 0xf717ad9fab8fe80b734d17cb0de43392ac342d73af5c89b770e4524919521a15 | 0 | 0x0 | 0 |
Example Query
Example Query
VariableDebtTokenFactory_Initialized_event
Variable debt token creation events from Aave V3 lending protocol on Aptos. Records initialization of debt tokens for borrowable assets (USDC, USDt, APT, sUSDe) with token metadata including decimals, symbols, and underlying asset addresses for tracking protocol market deployments.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_underlying_asset | STRING | Contract address of the underlying asset on Aptos for which the variable debt token was initialized. Hex-encoded address, typically 0x-prefixed, representing assets like USDC, USDt, or APT native token (0xa). |
in_incentives_controller | STRING | Address of the incentives controller contract managing reward distributions for this variable debt token. Null when no incentive program is active for the debt position. |
in_debt_token_decimals | STRING | Number of decimal places for the variable debt token being initialized in the Aave V3 protocol. Typically matches the underlying asset’s decimals (6 for stablecoins, 8 for APT). |
in_debt_token_name | STRING | Name of the variable debt token created by Aave V3 on Aptos for tracking borrowed amounts. Follows the naming pattern “AAVE_V_{UNDERLYING_SYMBOL}” where the underlying symbol represents the borrowed asset. |
in_debt_token_symbol | STRING | Symbol of the variable debt token created by AAVE V3 on Aptos (e.g., “AV_USDC”, “AV_APT”). Prefixed with “AV_” to denote AAVE variable debt tokens representing borrowed positions. |
Sample Data
Sample Data
| data | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_debt_token_name | in_underlying_asset | in_debt_token_symbol | in_debt_token_decimals | in_incentives_controller | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“debt_token_decimals”:6,“debt_token_name”:“AAVE_V_sUSDe”,“debt_token_symbol”:“AV_sUSDe”,“incentives_controller”:{“vec”:[]},“underlying_asset”:“0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::variable_debt_token_factory::Initialized | 16 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AAVE_V_sUSDe | 0xb30a694a344edee467d9f82330bbe7c3b89f440a1ecd2da1f3bca266560fce69 | AV_sUSDe | 6 | 0x0 | 0 | |
| {“debt_token_decimals”:6,“debt_token_name”:“AAVE_V_USDt”,“debt_token_symbol”:“AV_USDt”,“incentives_controller”:{“vec”:[]},“underlying_asset”:“0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::variable_debt_token_factory::Initialized | 1 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AAVE_V_USDt | 0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b | AV_USDt | 6 | 0x0 | 0 | |
| {“debt_token_decimals”:6,“debt_token_name”:“AAVE_V_USDC”,“debt_token_symbol”:“AV_USDC”,“incentives_controller”:{“vec”:[]},“underlying_asset”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 0x39ddcd9e1a39fa14f25e3f9ec8a86074d05cc0881cbf667df8a6ee70942016fb::variable_debt_token_factory::Initialized | 11 | 364127540 | 2025-06-15T22:48:12.529Z | 0 | 0x7c853d71c5016650e69bb1f9bdbc5c57fcfd5111cd36b41940777d9b0d6518f8 | AAVE_V_USDC | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | AV_USDC | 6 | 0x0 | 0 |
Example Query
Example Query