Deposit
QubitLocker
function deposit(uint amount, uint unlockTime) external;Solidity
QubitLocker qubitLocker = QubitLocker(<qubitLockerAddress>);
qubitLocker.deposit(<lockAmount>, <unlockTime>);Ethers.js
const qubitLocker = await ethers.getContractAt(<lockerABI>, <lockerAddress>);
await qubitLocker.deposit(<lockAmount>, <unlockTime>);Last updated
Was this helpful?