withdraw

function withdraw( uint256 _lockupIndex )external returns(uint256 withdrawBalance)

Lokcup 된 토큰 수령 Parameters

TypeValueDescription

uint256

_lockupIndex

LockupIndex κ°’

Return Values

TypeValueDescription

uint256

withdrawBalance

찾은 토큰 개수

Example

    // exec    
    await lockupContract.withdraw(1);

    // Result
    BigNumber { value: "100000000000000000" }

Last updated