ETH Price: $3,685.43 (-4.13%)

Transaction Decoder

Block:
8342702 at Aug-13-2019 02:32:29 PM +UTC
Transaction Fee:
0.00007740438 ETH $0.29
Gas Used:
76,638 Gas / 1.01 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x8Ee74f87...EAB16d570
0.00270187779 Eth
Nonce: 45
0.00262447341 Eth
Nonce: 46
0.00007740438
(BeePool)
140.442955771139311482 Eth140.443033175519311482 Eth0.00007740438
0xB83C1fd4...67eDeDda7
0xfe417d8e...e2C1C51c8

Execution Trace

KGTcomplementaryAirdrop.CALL( )
  • KingToken.balanceOf( tokenOwner=0xB83C1fd4b74d3e4E85CF0331443e5a167eDeDda7 ) => ( balance=386000000000 )
  • KingToken.transfer( to=0x8Ee74f878EA909e7B4B592bec993Fd6EAB16d570, tokens=1000000000 ) => ( success=True )
    File 1 of 2: KGTcomplementaryAirdrop
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.23;
    interface ERC20 {
    function transfer(address _to, uint256 _value) public returns (bool success);
    function balanceOf(address _owner) public constant returns (uint256 balance);
    }
    contract KGTcomplementaryAirdrop{
    uint amount = 1000000000;
    uint public active = 1;
    uint public price = 0;
    mapping(address => uint) public used;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: KingToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.23;
    contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);
    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
    }
    contract KingToken is ERC20Interface{
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX