Extend Lock Period
QubitLocker
function extendLock(uint nextExpiry) external;Solidity
QubitLocker qubitLocker = QubitLocker(<qubitLockerAddress>);
qubitLocker.extendLock(<expiryTime>);Ethers.js
const qubitLocker = await ethers.getContractAt(<lockerABI>, <lockerAddress>);
await qubitLocker.expiryOf(<expiryTime>);Last updated
Was this helpful?