ETH Price: $3,578.85 (-3.47%)

Transaction Decoder

Block:
7886604 at Jun-03-2019 01:06:38 PM +UTC
Transaction Fee:
0.00033583 ETH $1.20
Gas Used:
33,583 Gas / 10 Gwei

Emitted Events:

84 ZilliqaToken.Transfer( from=[Receiver] TokenStore, to=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, value=10000000000000 )
85 TokenStore.Withdraw( token=ZilliqaToken, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, amount=10000000000000, balance=0 )

Account State Difference:

  Address   Before After State Difference Code
0x05f4a42e...cEF1FAD27
0x1cE7AE55...ee6Ee33D8
(Token.Store)
0x343a3C7F...F643678d9
0.086540868583029672 Eth
Nonce: 192
0.086205038583029672 Eth
Nonce: 193
0.00033583
30.947970696142318071 Eth30.948306526142318071 Eth0.00033583

Execution Trace

TokenStore.withdrawToken( _token=0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27, _amount=10000000000000 )
  • ZilliqaToken.transfer( _to=0x343a3C7F789335C9EA60932D34bE258F643678d9, _value=10000000000000 ) => ( True )
    File 1 of 2: TokenStore
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.11;
    // ERC20 token protocol, see more details at
    // https://theethereum.wiki/w/index.php/ERC20_Token_Standard
    // And also https://github.com/ethereum/eips/issues/20
    contract Token {
    function totalSupply() constant returns (uint256 supply);
    function balanceOf(address _owner) constant returns (uint256 balance);
    function transfer(address _to, uint256 _value) returns (bool success);
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
    function approve(address _spender, uint256 _value) returns (bool success);
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ZilliqaToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.18;
    /**
    * @title ERC20Basic
    * @dev Simpler version of ERC20 interface
    * @dev see https://github.com/ethereum/EIPs/issues/179
    */
    contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    }
    /**
    * @title ERC20 interface
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX