LogoLogo
  • DFK Developer Docs
  • Contracts
    • Exchanges
      • The Trader
      • The Bazaar
    • Sales & Rentals
      • Hero Auction
      • Hero Rental
      • Equipment Auction
      • Pet Auction
      • Land Auction
    • Summoning
      • Hero Summoning
        • Dark Summoning
      • Pet Hatching
    • Meditation Circle
    • Quests
      • Quest Core
      • Historical Contracts
        • Quest Core
        • Profession Quests
        • Training Quests
    • Void Hunts
    • Patrols
    • PVP Combat
    • Influence System
    • Gardens
      • Master Gardener
    • Jeweler 2.0
      • Power-Ups
      • Jeweler 1.0
    • Profiles
    • DFK Duel
      • Previous Seasons
      • Raffle Master
    • Events
      • Gen0 Reroll
      • Gene Reroll
      • Perilous Journey
    • Bridging
      • Hero Bridge (Synapse)
      • Hero Bridge (LayerZero)
      • Equipment Bridge (Synapse)
      • Equipment Bridge (LayerZero)
      • Item Bridge V2
        • Item Bridge V1 (Deprecated)
      • Gaia's Tear Bridge
    • Miscellaneous
      • Airdrops
      • Charity
      • Flag Storage
      • Gen0 Airdrop (Harmony)
      • Gen0 Sale (Harmony)
      • Graveyard
      • Locked Token Claim
      • Locked Token Raffle
      • Token Disburse
  • NFTs
    • Heroes
      • HeroV4 (Metis)
    • Equipment
      • Weapons
      • Armor
      • Accessories
      • Shared Equipment Mappings
      • CacheCore
      • Equipment Shop
      • Visage Shop
    • Pets
      • Pet Exchange
    • Lands
  • Tokens
    • Ecosystem Token
    • Power Tokens
    • Governance Tokens
    • Currencies
      • DFK Gold
      • Gaia's Tears
    • Inventory Items
    • Gold Crops
    • Combat Items
    • Miscellaneous Tokens
      • Collectible Items
      • Raffle Tickets
  • Crafting
    • Alchemist
    • Nutritionist
    • Stone Carver
    • Vendor (Item Gold Trader)
  • Collections
    • Runes
    • Pet Eggs
    • Pet Treats
    • Potions & Consumables
      • Item Consumer
      • Potion Migrator
    • Enhancement Stones
    • Attunement Crystals
      • Atonement Crystals
    • Pages of the Eternal Story
  • API
    • Community GraphQL API
      • Getting Started
      • Auctions
      • Bazaar
      • Heroes
      • Pets
      • Profiles
    • Hero Metadata & Image API
    • Pet Metadata & Image API
    • Token Supply API
  • Community Builders
    • Kingdom Building Program
    • Developer Resources
    • Community Projects
  • DFK CHain
    • Getting Started
    • Nodes & Validators
    • Bridged Tokens
    • Ecosystem Partners
      • Covalent API
      • SupraOracles Price Feeds
      • SupraOracles VRF
    • Miscellaneous Contracts
Powered by GitBook
On this page
  • Contracts
  • Addresses
  • Interfaces
  • ABIs
  1. Contracts
  2. Miscellaneous

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

Name
Mainnet
Testnet

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

PreviousGraveyardNextLocked Token Raffle

Last updated 2 years ago

10KB
LockedTokenClaim.json