Transaction Hash:
Block:
6073632 at Aug-02-2018 07:11:07 AM +UTC
Transaction Fee:
0.0000839168 ETH
$0.26
Gas Used:
52,448 Gas / 1.6 Gwei
Emitted Events:
107 |
AElfToken.Transfer( from=[Sender] 0xd26a4d3ce34eef62a5eacc1f07b6e4ed11d0d516, to=0x56f3C72C27FB738477025B62d9D575E8255A485C, value=7738000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xbf217985...678a4100e | |||||
0xD26A4D3C...d11d0d516 |
0.2813754342175887 Eth
Nonce: 188
|
0.2812915174175887 Eth
Nonce: 189
| 0.0000839168 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 829.122361828161543718 Eth | 829.122445744961543718 Eth | 0.0000839168 |
Execution Trace
AElfToken.transfer( _to=0x56f3C72C27FB738477025B62d9D575E8255A485C, _value=7738000000000000000 ) => ( True )
transfer[AElfToken (ln:175)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal pure returns (uint256) {if (a == 0) {return 0;}uint256 c = a * b;assert(c / a == b);return c;}function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {assert(b <= a);