Liquidation Incentive
Qore
function liquidationIncentive() external view returns (uint);Solidity
Qore qore = Qore(<qoreAddress>);
uint incentive = qore.liquidationIncentive();Ethers.js
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
const incentive = await qore.liquidationIncentive();Last updated
Was this helpful?