KIC20

KIC20 Token Standard

KIC is fully compatible with Ethereum ERC20 Standard.

// ----------------------------------------------------------------------------
// CRC Token Standard #20 Interface
// ----------------------------------------------------------------------------
contract KRC20Interface {
    function totalSupply() public constant returns (uint256);
    function balanceOf(address tokenOwner) public constant returns (uint256 balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint256 remaining);
    function transfer(address to, uint256 tokens) public returns (bool success);
    function approve(address spender, uint256 tokens) public returns (bool success);
    function transferFrom(address from, address to, uint256 tokens) public returns (bool success);

    // Optional
    function name() public view returns (string);
    function symbol() public view returns (string);
    function decimals() public view returns (uint8);

    event Transfer(address indexed from, address indexed to, uint256 tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint256 tokens);
}

KIC20 Operation

KIC20 ABI

Connect KIC public nodes

Javascript

  • Mainnet

  • Testnet

Python3

  • Mainnet

  • Testnet

KRC20 Inquiry

Javascript

Python3

KRC20 Transaction

Javascript

Python3

Last updated