Docs
Search…
Docs
English
WELCOME
CORE CONCEPTS
DTOKENS
Mint
Redeem
Redeem Underlying
Borrow
Repay Borrow
Repay Borrow Behalf
Transfer
Liquidate Borrow
Exchange Rate
Get Cash
Total Borrow
Borrow Balance
Borrow Rate
Total Supply
Underlying Balance
Supply Rate
Total Reserves
Reserve Factor
COMPTROLLER
Fixed Rate Market
FAQ
About Dank
Supplying & Earning
Borrowing & Repaying
Liquidations
Governance
Troubleshooting
DEVELOPERS
GitHub
ABOUT US
Our Team
Medium
Twitter
Discord
Telegram
OTHERS
DANK Public Beta Event (ENDED)
Powered By
GitBook
Borrow Rate
At any point in time one may query the contract to get the current borrow rate per block.
DErc20 / DEther
1
function
borrowRatePerBlock
()
returns
(
uint
)
Copied!
RETURN
: The current borrow rate as an unsigned integer, scaled by 1e18.
Solidity
1
DErc20 dToken
=
dToken
(
0x3FDA
...
);
2
uint borrowRateMantissa
=
dToken
.
borrowRatePerBlock
();
Copied!
Web3 1.0
1
const
dToken
=
DEther
.
at
(
0x3FDB
...
);
2
const
borrowRate
=
(
await
dToken
.
methods
.
borrowRatePerBlock
().
call
())
/
1e18
;
Copied!
Previous
Borrow Balance
Next
Total Supply
Last modified
9mo ago
Copy link
Contents
DErc20 / DEther
Solidity
Web3 1.0