ETH Price: $2,628.48 (+4.20%)

Transaction Decoder

Block:
8915148 at Nov-11-2019 03:21:53 PM +UTC
Transaction Fee:
0.000075088 ETH $0.20
Gas Used:
37,544 Gas / 2 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0xa249F0E9...388e39e81
0xD26205A5...ec43B3802
0.003360213042555599 Eth
Nonce: 109
0.003285125042555599 Eth
Nonce: 110
0.000075088
(Ethermine)
719.476807631730956725 Eth719.476882719730956725 Eth0.000075088

Execution Trace

AerumToken.transfer( _to=0xDcECD007E56F64572b300Dc18f0E10DAa3FD3084, _value=2286071131313131313131 ) => ( 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