ETH Price: $3,629.73 (-2.81%)

Transaction Decoder

Block:
5234695 at Mar-11-2018 06:42:24 AM +UTC
Transaction Fee:
0.000211968 ETH $0.77
Gas Used:
52,992 Gas / 4 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x51D8F086...C141D8bB8
0.993378976 Eth
Nonce: 6
0.993167008 Eth
Nonce: 7
0.000211968
(Spark Pool)
4,575.198323350990950797 Eth4,575.198535318990950797 Eth0.000211968
0x6cabf1b5...84d8681d8

Execution Trace

HCHToken.transfer( _to=0xdD01338EFe29eE47EA0Ad22D82230fbB2D140C8D, _value=20000000000000000000000 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity ^0.4.16;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract HCHToken {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
// 18 decimals is the strongly suggested default, avoid changing it
uint256 public totalSupply;
// Administrator
address public owner;
// This creates an array with all balances
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint256 value);
// This notifies clients about the amount burnt
event Burn(address indexed from, uint256 value);
/**
* Constrctor function
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX