ETH Price: $2,554.74 (+1.82%)

Transaction Decoder

Block:
7075843 at Jan-16-2019 12:11:24 PM +UTC
Transaction Fee:
0.0001940913 ETH $0.50
Gas Used:
36,621 Gas / 5.3 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0d152B9E...716C50742
(firepool)
154.33650737028920394 Eth154.33670146158920394 Eth0.0001940913
0x54F058f9...B3b48A442
0.057577365082953 Eth
Nonce: 43
0.057383273782953 Eth
Nonce: 44
0.0001940913

Execution Trace

SimpleChildToken.transfer( _to=0x7B2428A55379eDA456655226Ecb989375240DfB5, _value=24 ) => ( 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.21;
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX