CErc20Delegate
Verified contract
Implementation
Active on
Ethereum with 0 txns
Storage
Map
Table
Raw
Constants and immutables
9
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($0.00)
No balances found for "CErc20Delegate"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|
No transactions found for "CErc20Delegate"
ABI
ABI objects
Getter at block 21094266 borrowRatePerBlock() view returns (uint256) getCash() view returns (uint256) supplyRatePerBlock() view returns (uint256)
NO_ERROR() view returns (uint256)
0
accrualBlockNumber() view returns (uint256)
0
admin() view returns (address)
0x0000000000000000000000000000000000000000
borrowIndex() view returns (uint256)
0
comptroller() view returns (address)
0x0000000000000000000000000000000000000000
decimals() view returns (uint8)
0
exchangeRateStored() view returns (uint256)
0
implementation() view returns (address)
0x0000000000000000000000000000000000000000
interestRateModel() view returns (address)
0x0000000000000000000000000000000000000000
isCToken() view returns (bool)
true
name() view returns (string)
pendingAdmin() view returns (address)
0x0000000000000000000000000000000000000000
protocolSeizeShareMantissa() view returns (uint256)
28000000000000000
reserveFactorMantissa() view returns (uint256)
0
symbol() view returns (string)
totalBorrows() view returns (uint256)
0
totalReserves() view returns (uint256)
0
totalSupply() view returns (uint256)
0
underlying() view returns (address)
0x0000000000000000000000000000000000000000
Read-only
allowance(address owner, address spender) view returns (uint256)
balanceOf(address owner) view returns (uint256)
borrowBalanceStored(address account) view returns (uint256)
getAccountSnapshot(address account) view returns (uint256, uint256, uint256, uint256)
State-modifying
Events _acceptAdmin() returns (uint256)
_addReserves(uint256 addAmount) returns (uint256)
_becomeImplementation(bytes data)
_delegateCompLikeTo(address compLikeDelegatee)
_reduceReserves(uint256 reduceAmount) returns (uint256)
_resignImplementation()
_setComptroller(address newComptroller) returns (uint256)
_setInterestRateModel(address newInterestRateModel) returns (uint256)
_setPendingAdmin(address newPendingAdmin) returns (uint256)
_setReserveFactor(uint256 newReserveFactorMantissa) returns (uint256)
accrueInterest() returns (uint256)
approve(address spender, uint256 amount) returns (bool)
balanceOfUnderlying(address owner) returns (uint256)
borrow(uint256 borrowAmount) returns (uint256)
borrowBalanceCurrent(address account) returns (uint256)
exchangeRateCurrent() returns (uint256)
initialize(address comptroller_, address interestRateModel_, uint256 initialExchangeRateMantissa_, string name_, string symbol_, uint8 decimals_)
initialize(address underlying_, address comptroller_, address interestRateModel_, uint256 initialExchangeRateMantissa_, string name_, string symbol_, uint8 decimals_)
liquidateBorrow(address borrower, uint256 repayAmount, address cTokenCollateral) returns (uint256)
mint(uint256 mintAmount) returns (uint256)
redeem(uint256 redeemTokens) returns (uint256)
redeemUnderlying(uint256 redeemAmount) returns (uint256)
repayBorrow(uint256 repayAmount) returns (uint256)
repayBorrowBehalf(address borrower, uint256 repayAmount) returns (uint256)
seize(address liquidator, address borrower, uint256 seizeTokens) returns (uint256)
sweepToken(address token)
totalBorrowsCurrent() returns (uint256)
transfer(address dst, uint256 amount) returns (bool)
transferFrom(address src, address dst, uint256 amount) returns (bool)
AccrueInterest(uint256 cashPrior, uint256 interestAccumulated, uint256 borrowIndex, uint256 totalBorrows)
Approval(address indexed owner, address indexed spender, uint256 amount)
Borrow(address borrower, uint256 borrowAmount, uint256 accountBorrows, uint256 totalBorrows)
LiquidateBorrow(address liquidator, address borrower, uint256 repayAmount, address cTokenCollateral, uint256 seizeTokens)
Mint(address minter, uint256 mintAmount, uint256 mintTokens)
NewAdmin(address oldAdmin, address newAdmin)
NewComptroller(address oldComptroller, address newComptroller)
NewMarketInterestRateModel(address oldInterestRateModel, address newInterestRateModel)
NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin)
NewReserveFactor(uint256 oldReserveFactorMantissa, uint256 newReserveFactorMantissa)
Redeem(address redeemer, uint256 redeemAmount, uint256 redeemTokens)
RepayBorrow(address payer, address borrower, uint256 repayAmount, uint256 accountBorrows, uint256 totalBorrows)
ReservesAdded(address benefactor, uint256 addAmount, uint256 newTotalReserves)
ReservesReduced(address admin, uint256 reduceAmount, uint256 newTotalReserves)
Transfer(address indexed from, address indexed to, uint256 amount)
constructor()
This contract contains no fallback and receive objects.
AcceptAdminPendingAdminCheck()
AddReservesFactorFreshCheck(uint256 actualAddAmount)
BorrowCashNotAvailable()
BorrowComptrollerRejection(uint256 errorCode)
BorrowFreshnessCheck()
LiquidateAccrueBorrowInterestFailed(uint256 errorCode)
LiquidateAccrueCollateralInterestFailed(uint256 errorCode)
LiquidateCloseAmountIsUintMax()
LiquidateCloseAmountIsZero()
LiquidateCollateralFreshnessCheck()
LiquidateComptrollerRejection(uint256 errorCode)
LiquidateFreshnessCheck()
LiquidateLiquidatorIsBorrower()
LiquidateRepayBorrowFreshFailed(uint256 errorCode)
LiquidateSeizeComptrollerRejection(uint256 errorCode)
LiquidateSeizeLiquidatorIsBorrower()
MintComptrollerRejection(uint256 errorCode)
MintFreshnessCheck()
RedeemComptrollerRejection(uint256 errorCode)
RedeemFreshnessCheck()
RedeemTransferOutNotPossible()
ReduceReservesAdminCheck()
ReduceReservesCashNotAvailable()
ReduceReservesCashValidation()
ReduceReservesFreshCheck()
RepayBorrowComptrollerRejection(uint256 errorCode)
RepayBorrowFreshnessCheck()
SetComptrollerOwnerCheck()
SetInterestRateModelFreshCheck()
SetInterestRateModelOwnerCheck()
SetPendingAdminOwnerCheck()
SetReserveFactorAdminCheck()
SetReserveFactorBoundsCheck()
SetReserveFactorFreshCheck()
TransferComptrollerRejection(uint256 errorCode)
TransferNotAllowed()
TransferNotEnough()
TransferTooMuch()