Skip to content

Commit

Permalink
Added aave_v3_base.L2Pool_evt_ReserveDataUpdated source
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeghen committed Jan 2, 2025
1 parent c3e5bdb commit 14e8e60
Showing 1 changed file with 52 additions and 29 deletions.
81 changes: 52 additions & 29 deletions sources/aave/base/aave_base_sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,57 @@ sources:
description: "Decoded contracts for aave v3 on Base"

tables:
- name: Pool_evt_ReserveDataUpdated
- name: L2Pool_evt_ReserveDataUpdated
description: "Provides the liquidity index, stable and variable borrow rates for aave v3 reserves."
columns:
- &contract_address
name: contract_address
description: "Aave token contract address"
- &evt_block_number
name: evt_block_number
description: "Event block number"
- &evt_block_time
name: evt_block_time
description: "Timestamp for block event time in UTC"
- &evt_index
name: evt_index
description: "Event index"
- &evt_tx_hash
name: evt_tx_hash
description: "Transaction hash of the event"
- name: liquidityIndex
description: "Liquidity index value of the reserve"
- name: liquidityRate
description: "Liquidity rate value of the reserve"
- &reserve
name: reserve
description: "Aave reserve contract address"
- name: stableBorrowRate
description: "Stable borrow rate value of the reserve"
- name: variableBorrowIndex
description: "Variable borrow index value of the reserve"
- name: variableBorrowRate
description: "Variable borrow rate value of the reserve"
- name: contract_address
description: "Aave token contract address"
type: varbinary

- name: evt_tx_hash
description: "Transaction hash of the event"
type: varbinary

- name: evt_tx_from
description: "Address that initiated the transaction"
type: varbinary

- name: evt_tx_to
description: "Address that received the transaction"
type: varbinary

- name: evt_index
description: "Event index"
type: bigint

- name: evt_block_time
description: "Timestamp for block event time in UTC"
type: timestamp

- name: evt_block_number
description: "Event block number"
type: bigint

- name: reserve
description: "Aave reserve contract address"
type: varbinary

- name: liquidityRate
description: "Liquidity rate value of the reserve"
type: uint256

- name: stableBorrowRate
description: "Stable borrow rate value of the reserve"
type: uint256

- name: variableBorrowRate
description: "Variable borrow rate value of the reserve"
type: uint256

- name: liquidityIndex
description: "Liquidity index value of the reserve"
type: uint256

- name: variableBorrowIndex
description: "Variable borrow index value of the reserve"
type: uint256

0 comments on commit 14e8e60

Please sign in to comment.