ETH Price: $2,524.71 (-7.91%)
Gas: 1.57 Gwei

Transaction Decoder

Block:
8179396 at Jul-19-2019 06:01:45 AM +UTC
Transaction Fee:
0.000157248 ETH $0.40
Gas Used:
52,416 Gas / 3 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
5,338.379700660273989003 Eth5,338.379857908273989003 Eth0.000157248
0xa249F0E9...388e39e81
0xD26205A5...ec43B3802
0.025554724042555599 Eth
Nonce: 91
0.025397476042555599 Eth
Nonce: 92
0.000157248

Execution Trace

AerumToken.transfer( _to=0xDcECD007E56F64572b300Dc18f0E10DAa3FD3084, _value=3414000000000000000000 ) => ( 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.24;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
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) {
// assert(_b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = _a / _b;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX