ETH Price: $3,138.23 (+5.11%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0xbf217985...678a4100e
0xD26A4D3C...d11d0d516
0.2813754342175887 Eth
Nonce: 188
0.2812915174175887 Eth
Nonce: 189
0.0000839168
(Ethermine)
829.122361828161543718 Eth829.122445744961543718 Eth0.0000839168

Execution Trace

AElfToken.transfer( _to=0x56f3C72C27FB738477025B62d9D575E8255A485C, _value=7738000000000000000 ) => ( True )
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.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 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX