Transaction Hash:
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:
4 |
HCHToken.Transfer( from=[Sender] 0x51d8f08693b57cd2ce55c3157869516c141d8bb8, to=0xdD01338EFe29eE47EA0Ad22D82230fbB2D140C8D, value=20000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x51D8F086...C141D8bB8 |
0.993378976 Eth
Nonce: 6
|
0.993167008 Eth
Nonce: 7
| 0.000211968 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 4,575.198323350990950797 Eth | 4,575.198535318990950797 Eth | 0.000211968 | |
0x6cabf1b5...84d8681d8 |
Execution Trace
HCHToken.transfer( _to=0xdD01338EFe29eE47EA0Ad22D82230fbB2D140C8D, _value=20000000000000000000000 )
transfer[HCHToken (ln:71)]
_transfer[HCHToken (ln:72)]
Transfer[HCHToken (ln:58)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.16;interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }contract HCHToken {// Public variables of the tokenstring public name;string public symbol;uint8 public decimals = 18;// 18 decimals is the strongly suggested default, avoid changing ituint256 public totalSupply;// Administratoraddress public owner;// This creates an array with all balancesmapping (address => uint256) public balanceOf;mapping (address => mapping (address => uint256)) public allowance;// This generates a public event on the blockchain that will notify clientsevent Transfer(address indexed from, address indexed to, uint256 value);// This notifies clients about the amount burntevent Burn(address indexed from, uint256 value);/*** Constrctor function