ETH Price: $3,048.83 (+0.75%)

Transaction Decoder

Block:
7362649 at Mar-13-2019 07:49:59 PM +UTC
Transaction Fee:
0.000188757 ETH $0.58
Gas Used:
62,919 Gas / 3 Gwei

Emitted Events:

44 VeritaseumToken.Transfer( from=[Receiver] TokenStore, to=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, value=16000000000000000000 )
45 TokenStore.Withdraw( token=VeritaseumToken, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, amount=16000000000000000000, balance=4507477567298105682 )

Account State Difference:

  Address   Before After State Difference Code
0x1cE7AE55...ee6Ee33D8
(Token.Store)
(DwarfPool)
2,229.182913691688478612 Eth2,229.183102448688478612 Eth0.000188757
0x343a3C7F...F643678d9
0.424095917 Eth
Nonce: 21
0.42390716 Eth
Nonce: 22
0.000188757
0x8f3470A7...b0FF52374

Execution Trace

TokenStore.withdrawToken( _token=0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374, _amount=16000000000000000000 )
  • VeritaseumToken.transfer( _to=0x343a3C7F789335C9EA60932D34bE258F643678d9, _value=16000000000000000000 ) => ( success=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: VeritaseumToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.8;
    contract Ownable {
    address public owner;
    function Ownable() {
    owner = msg.sender;
    }
    modifier onlyOwner() {
    if (msg.sender != owner) {
    throw;
    }
    _;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX