Locked Token Claim

The Locked Token Claim contract is used for airdropped Locked Tokens. These include:

DFK Chain

  • Locked CRYSTAL

Klaytn

  • Locked JADE

Contracts

Addresses

NameMainnetTestnet

DFK Chain

0x6ec0194675354142fFEBA7B3195B57BC083f9719

0x301769Af06DFf900aec3C97808de78da52b17751

Klaytn

0x4FedD4E88B75186bD3ca72f688c4B4621732191C

0x20FC4ECF7811d5E3Db6E990E5975aB2cf7202B95

Interfaces

interface ILockedTokenClaim {

    event Claimed(address recipient, uint256 amount);
    event Dropped(address recipient, uint256 amount);
    event Withdrawal(address recipient, uint256 amount);
    
    function claimAirdrop(uint256 _dropId);
    function tokenClaimedAmount(address) view returns (uint256);
    function tokenPendingAmount(address) view returns (uint256);
    function tokenTotalClaimedAmount() view returns (uint256);
    function tokenTotalPendingAmount() view returns (uint256);
    function viewAirdrops() view returns (tuple(uint256 amount, uint256 time, string note)[]);
    function viewUserAirdrops(address player) view returns (tuple(uint256 amount, uint256 time, string note)[]);

}

ABIs

Last updated