Developers
Search…
Developers
Introduction
QTokens
Transfer
Total Supply
Underlying Balance
Exchange Rate
Get Cash
Total Borrow
Borrow Balance
Borrow Rate
Supply Rate
Total Reserve
Reserve Factor
Key Events
Qore
Market List
Enter Markets
Exit Markets
Get Markets In
Supply
Redeem with QToken
Redeem with Underlying
Borrow
Repay Borrow
Repay Borrow Behalf
Liquidate Borrow
Get Account Liquidity
Market Information
Close Factor
Liquidation Incentive
Qubit Distribution Speeds
Pending Qubit (or Accrued Qubit)
Claim Qubit
Key Events
Qubit Locker
qScore
Total qScore
Deposit
Locked Balance
Locked Period
Extend Lock Period
Unlocked Balance
Withdraw
Powered By
GitBook
Supply Rate
At any point in time one may query the contract to get the current supply rate per second. The supply rate is derived from the borrow rate, reserve factor and the amount of total borrows.
QToken
1
function
supplyRatePerSec
()
external view
returns
(
uint
);
Copied!
RETURN: The current supply rate as an unsigned integer, scaled by 1e18.
Solidity
1
QToken qToken
=
QToken
(
<
qTokenAddress
>
);
2
uint supplyRate
=
qToken
.
supplyRatePerSec
();
Copied!
Ethers.js
1
const
qToken
=
await
ethers
.
getContractAt
(
<
qTokenABI
>
,
<
qTokenAddress
>
);
2
const
supplyRate
=
await
qToken
.
supplyRatePerSec
();
Copied!
QTokens - Previous
Borrow Rate
Next - QTokens
Total Reserve
Last modified
8mo ago
Copy link
Contents
QToken
Solidity
Ethers.js