Borrow
Qore
function borrow(address qToken, uint amount) external;Solidity
Qore qore = Qore(<qoreAddress>);
qore.borrow(<qTokenAddress>, <underlyingAmount>);Ethers.js
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
await qore.borrow(<qTokenAddress>, <underlyingAmount>);Last updated
Was this helpful?