InitializableAdminUpgradeabilityProxy
Verified contract
Proxy
Active on
Ethereum with 288,810 txns
Unified storage
Map
Table
Raw
Constants and immutables
2
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 49 additional slots
0x3dfd…76d3
0x082b…4ba6
0xeac9…c66f
0x2dc9…440d
Balances ($360.36)
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
KNC | ERC-20 | 215.000014 | $0.665221 |
$143.02 | |
aWBTC | ERC-20 | 0.001503 | $92,509.00 |
$139.01 | |
DAI | ERC-20 | 51.987194 | $0.999051 |
$51.94 | |
BAT | ERC-20 | 60.696271 | $0.28542 |
$17.32 | |
GRT | ERC-20 | 17.545454 | $0.24681 |
$4.33 | |
SNX | ERC-20 | 1 | $2.26 |
$2.26 | |
USDT | ERC-20 | 1 | $0.998486 |
$1 | |
JRT | ERC-20 | 178.066322 | $0.004357 |
$0.78 | |
MATIC | ERC-20 | 1 | $0.545665 |
$0.55 | |
USDC | ERC-20 | 0.1 | $0.998586 |
$0.1 |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 20826505 | 2 months ago | | | 0.00029016303 | 0.0036426383 | |
| 20660418 | 3 months ago | | | 0 | 0.00019940591 | |
| 20639800 | 3 months ago | | | 0 | 0.00025244134 | |
| 20547287 | 3 months ago | | | 0 | 0.00017471823 | |
| 20531508 | 3 months ago | | | 0 | 0.00053778223 | |
| 20463826 | 4 months ago | | | 0 | 0.0025400704 | |
| 20463805 | 4 months ago | | | 0 | 0.0032572067 | |
| 20453630 | 4 months ago | | | 0.011721639 | 0.000047773088 | |
| 20453364 | 4 months ago | | | 0.000616 | 0.000051216000 | |
| 20453292 | 4 months ago | | | 0.00001 | 0.000051204000 |
ABI
ABI objects
Getter at block 21270369 getReserves() view returns (address[])
LENDINGPOOL_REVISION() view returns (uint256)
8
UINT_MAX_VALUE() view returns (uint256)
115792089237316195423570985008687907853269984665640564039457584007913129639935
addressesProvider() view returns (address)
0x24a42fd28c976a61df5d00d0599c34c4f90748c8
core() view returns (address)
0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3
dataProvider() view returns (address)
0x082b0ca59f2122c94e5f57db0085907fa9584ba6
parametersProvider() view returns (address)
0xeac99f8fb1996aeb153e8cf0842908973a48c66f
Read-only
getReserveConfigurationData(address _reserve) view returns (uint256 ltv, uint256 liquidationThreshold, uint256 liquidationBonus, address interestRateStrategyAddress, bool usageAsCollateralEnabled, bool borrowingEnabled, bool stableBorrowRateEnabled, bool isActive)
getReserveData(address _reserve) view returns (uint256 totalLiquidity, uint256 availableLiquidity, uint256 totalBorrowsStable, uint256 totalBorrowsVariable, uint256 liquidityRate, uint256 variableBorrowRate, uint256 stableBorrowRate, uint256 averageStableBorrowRate, uint256 utilizationRate, uint256 liquidityIndex, uint256 variableBorrowIndex, address aTokenAddress, uint40 lastUpdateTimestamp)
getUserAccountData(address _user) view returns (uint256 totalLiquidityETH, uint256 totalCollateralETH, uint256 totalBorrowsETH, uint256 totalFeesETH, uint256 availableBorrowsETH, uint256 currentLiquidationThreshold, uint256 ltv, uint256 healthFactor)
getUserReserveData(address _reserve, address _user) view returns (uint256 currentATokenBalance, uint256 currentBorrowBalance, uint256 principalBorrowBalance, uint256 borrowRateMode, uint256 borrowRate, uint256 liquidityRate, uint256 originationFee, uint256 variableBorrowIndex, uint256 lastUpdateTimestamp, bool usageAsCollateralEnabled)
State-modifying
Events admin() returns (address)
changeAdmin(address newAdmin)
implementation() returns (address)
initialize(address _logic, address _admin, bytes _data) payable
initialize(address _logic, bytes _data) payable
upgradeTo(address newImplementation)
upgradeToAndCall(address newImplementation, bytes data) payable
borrow(address _reserve, uint256 _amount, uint256 _interestRateMode, uint16 _referralCode)
deposit(address _reserve, uint256 _amount, uint16 _referralCode) payable
flashLoan(address _receiver, address _reserve, uint256 _amount, bytes _params)
initialize(address _addressesProvider)
liquidationCall(address _collateral, address _reserve, address _user, uint256 _purchaseAmount, bool _receiveAToken) payable
rebalanceStableBorrowRate(address _reserve, address _user)
redeemUnderlying(address _reserve, address _user, uint256 _amount, uint256 _aTokenBalanceAfterRedeem)
repay(address _reserve, uint256 _amount, address _onBehalfOf) payable
rescueTokens(address token, address to, uint256 amount)
setUserUseReserveAsCollateral(address _reserve, bool _useAsCollateral)
swapBorrowRateMode(address _reserve)
AdminChanged(address previousAdmin, address newAdmin)
Upgraded(address indexed implementation)
Borrow(address indexed _reserve, address indexed _user, uint256 _amount, uint256 _borrowRateMode, uint256 _borrowRate, uint256 _originationFee, uint256 _borrowBalanceIncrease, uint16 indexed _referral, uint256 _timestamp)
Deposit(address indexed _reserve, address indexed _user, uint256 _amount, uint16 indexed _referral, uint256 _timestamp)
FlashLoan(address indexed _target, address indexed _reserve, uint256 _amount, uint256 _totalFee, uint256 _protocolFee, uint256 _timestamp)
LiquidationCall(address indexed _collateral, address indexed _reserve, address indexed _user, uint256 _purchaseAmount, uint256 _liquidatedCollateralAmount, uint256 _accruedBorrowInterest, address _liquidator, bool _receiveAToken, uint256 _timestamp)
OriginationFeeLiquidated(address indexed _collateral, address indexed _reserve, address indexed _user, uint256 _feeLiquidated, uint256 _liquidatedCollateralForFee, uint256 _timestamp)
RebalanceStableBorrowRate(address indexed _reserve, address indexed _user, uint256 _newStableRate, uint256 _borrowBalanceIncrease, uint256 _timestamp)
RedeemUnderlying(address indexed _reserve, address indexed _user, uint256 _amount, uint256 _timestamp)
Repay(address indexed _reserve, address indexed _user, address indexed _repayer, uint256 _amountMinusFees, uint256 _fees, uint256 _borrowBalanceIncrease, uint256 _timestamp)
ReserveUsedAsCollateralDisabled(address indexed _reserve, address indexed _user)
ReserveUsedAsCollateralEnabled(address indexed _reserve, address indexed _user)
Swap(address indexed _reserve, address indexed _user, uint256 _newRateMode, uint256 _newRate, uint256 _borrowBalanceIncrease, uint256 _timestamp)
TokensRescued(address indexed tokenRescued, address indexed receiver, uint256 amountRescued)
This contract contains no constructor objects.
fallback()
This contract contains no error objects.