LendingPool
Verified contract
Active on
Base with 386,505 txns
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($2.55)
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
BAMBOO | ERC-20 | 221 | $0.011536 |
$2.55 | |
| ERC-20 | 24K | -- | -- | |
| ERC-20 | 4.2K | -- | -- | |
OHNO | ERC-20 | 4.109917K | -- | -- | |
| ERC-20 | 2.4K | -- | -- | |
| ERC-20 | 2.4K | -- | -- | |
HMSTR | ERC-20 | 5.082855 | -- | -- | |
CUBBY | ERC-20 | 1 | -- | -- | |
LZPZ | ERC-20 | 1 | -- | -- |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 22848169 | a minute ago | | | 0 | 0.0000046787879 | |
| 22848165 | a minute ago | | | 0 | 0.0000051439768 | |
| 22848086 | 4 minutes ago | | | 0 | 0.0000045931813 | |
| 22848062 | 4 minutes ago | | | 0 | 0.0000046522418 | |
| 22847963 | 8 minutes ago | | | 0 | 0.0000043074504 | |
| 22847859 | 11 minutes ago | | | 0 | 0.0000036948039 | |
| 22847811 | 13 minutes ago | | | 0.00000113 | 0.0000043558754 | |
| 22847781 | 14 minutes ago | | | 0.000366 | 0.0000040103346 | |
| 22847778 | 14 minutes ago | | | 0 | 0.0000041623296 | |
| 22847747 | 15 minutes ago | | | 0.00000202 | 0.0000049733749 |
ABI
ABI objects
Getter at block 22848191
WETH9() view returns (address)
0x4200000000000000000000000000000000000006
addressRegistry() view returns (address)
0x85603119c938750dfb5904f8a501b64f3f3a01d2
nextDebtPositionId() view returns (uint256)
183
nextReserveId() view returns (uint256)
80
owner() view returns (address)
0x89f0885da2553232aeef201692f8c97e24715c83
paused() view returns (bool)
false
Read-only
borrowingRateOfReserve(uint256 reserveId) view returns (uint256)
borrowingWhiteList(address) view returns (bool)
credits(uint256, address) view returns (uint256)
debtPositions(uint256) view returns (uint256 reserveId, address owner, uint256 borrowed, uint256 borrowedIndex)
exchangeRateOfReserve(uint256 reserveId) view returns (uint256)
getCurrentDebt(uint256 debtId) view returns (uint256 currentDebt, uint256 latestBorrowingIndex)
getETokenAddress(uint256 reserveId) view returns (address)
getPositionStatus(uint256[] reserveIdArr, address user) view returns (struct ILendingPoolPositionStatus[] statusArr)
getReserveIdOfDebt(uint256 debtId) view returns (uint256)
getReserveStatus(uint256[] reserveIdArr) view returns (struct ILendingPoolReserveStatus[] statusArr)
getStakingAddress(uint256 reserveId) view returns (address)
getUnderlyingTokenAddress(uint256 reserveId) view returns (address)
reserves(uint256) view returns (uint256 borrowingIndex, uint256 currentBorrowingRate, uint256 totalBorrows, address underlyingTokenAddress, address eTokenAddress, address stakingAddress, uint256 reserveCapacity, struct DataTypesInterestRateConfig borrowingRateConfig, uint256 id, uint128 lastUpdateTimestamp, uint16 reserveFeeRate, struct DataTypesFlags flags)
totalBorrowsOfReserve(uint256 reserveId) view returns (uint256 totalBorrows)
totalLiquidityOfReserve(uint256 reserveId) view returns (uint256 totalLiquidity)
utilizationRateOfReserve(uint256 reserveId) view returns (uint256)
State-modifying
Events activateReserve(uint256 reserveId)
borrow(address onBehalfOf, uint256 debtId, uint256 amount)
deActivateReserve(uint256 reserveId)
deposit(uint256 reserveId, uint256 amount, address onBehalfOf, uint16 referralCode) payable returns (uint256 eTokenAmount)
depositAndStake(uint256 reserveId, uint256 amount, address onBehalfOf, uint16 referralCode) payable returns (uint256 eTokenAmount)
disableBorrowing(uint256 reserveId)
disableVaultToBorrow(uint256 vaultId)
emergencyPauseAll()
enableBorrowing(uint256 reserveId)
enableVaultToBorrow(uint256 vaultId)
freezeReserve(uint256 reserveId)
initReserve(address asset)
newDebtPosition(uint256 reserveId) returns (uint256 debtId)
redeem(uint256 reserveId, uint256 eTokenAmount, address to, bool receiveNativeETH) returns (uint256)
renounceOwnership()
repay(address onBehalfOf, uint256 debtId, uint256 amount) returns (uint256)
setBorrowingRateConfig(uint256 reserveId, uint16 utilizationA, uint16 borrowingRateA, uint16 utilizationB, uint16 borrowingRateB, uint16 maxBorrowingRate)
setCreditsOfVault(uint256 vaultId, uint256 reserveId, uint256 credit)
setReserveCapacity(uint256 reserveId, uint256 cap)
setReserveFeeRate(uint256 reserveId, uint16 _rate)
transferOwnership(address newOwner)
unFreezeReserve(uint256 reserveId)
unPauseAll()
unStakeAndWithdraw(uint256 reserveId, uint256 eTokenAmount, address to, bool receiveNativeETH) returns (uint256)
Borrow(uint256 indexed reserveId, address indexed contractAddress, address indexed onBehalfOf, uint256 amount)
Deposited(uint256 indexed reserveId, address user, address indexed onBehalfOf, uint256 reserveAmount, uint256 eTokenAmount, uint16 indexed referral)
DisableVaultToBorrow(uint256 indexed vaultId, address indexed vaultAddress)
EnableVaultToBorrow(uint256 indexed vaultId, address indexed vaultAddress)
InitReserve(address indexed reserve, address indexed eTokenAddress, address stakingAddress, uint256 id)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused()
Redeemed(uint256 indexed reserveId, address indexed user, address indexed to, uint256 eTokenAmount, uint256 underlyingTokenAmount)
Repay(uint256 indexed reserveId, address indexed onBehalfOf, address indexed contractAddress, uint256 amount)
ReserveActivated(uint256 indexed reserveId)
ReserveBorrowDisabled(uint256 indexed reserveId)
ReserveBorrowEnabled(uint256 indexed reserveId)
ReserveDeActivated(uint256 indexed reserveId)
ReserveFrozen(uint256 indexed reserveId)
ReserveUnFreeze(uint256 indexed reserveId)
SetCreditsOfVault(uint256 indexed vaultId, address indexed vaultAddress, uint256 indexed reserveId, uint256 credit)
SetInterestRateConfig(uint256 indexed reserveId, uint16 utilizationA, uint16 borrowingRateA, uint16 utilizationB, uint16 borrowingRateB, uint16 maxBorrowingRate)
SetReserveCapacity(uint256 indexed reserveId, uint256 cap)
SetReserveFeeRate(uint256 indexed reserveId, uint256 feeRate)
UnPaused()
constructor(address _addressRegistry, address _WETH9)
receive()
This contract contains no error objects.