Pending Qubit (or Accrued Qubit)
Qore
// Get accrued QBT by holder in all markets
function accruedQubit(address account) external view returns (uint);
// Get accrued QBT by holder in specific market
function accruedQubit(address market, address account) external view returns (uint);Solidity
Qore qore = Qore(<qoreAddress>);
uint accruedQubit = qore.accruedQubit(<account>);Ethers.js
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
const accruedQubit = await qore.accruedQubit(<account>);Last updated
Was this helpful?