Claim Qubit
Qore
// Claim all the QBT accrued by holder in all markets
function claimQubit() external;
// Claim all the QBT accrued by holder in specific market
function claimQubit(address market) external;Solidity
Qore qore = Qore(<qoreAddress>);
qore.claimQubit();Ethers.js
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
await qore.claimQubit();Last updated
Was this helpful?