setLockups

function setLockups( bytes _lockups );

Lockup 등둝 Parameters

TypeValueDescription

bytes

_lockups

Lockup 정보듀

β€» ABI Encode ν˜•νƒœ

Example

     // Lockup 정보 μž…λ ₯ (μ•„λž˜ 순으둜 κΈ°μž…)

    address account;        // Lockup 계정 μ£Όμ†Œ
    uint256 amount;         // Lockup 토큰 개수
    uint256 endTime;       // Lokcup μ’…λ£Œ μ‹œκ°„

    let lockupInfo = [
        [accounts[1].address, ethers.utils.parseEther("0.1"), Math.floor(Date.parse('9/1/2022, 15:38:00')/1000)],
        [accounts[1].address, ethers.utils.parseEther("0.1"), Math.floor(Date.parse('9/2/2022, 15:38:00')/1000)],
        [accounts[1].address, ethers.utils.parseEther("0.1"), Math.floor(Date.parse('9/3/2022, 15:38:00')/1000)],
    ]

    // Encode ν˜•νƒœλ‘œ μΉ˜ν™˜
    const abiCoder = ethers.utils.defaultAbiCoder;
    const encodeLockupInfo= abiCoder.encode(["tuple(address, uint256, uint256)[]"], [mintInfo]); 

    // exec
    await lockupContract.setLockups(encodeLockupInfo);

Last updated