Transaction Hash:
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:
135 |
AerumToken.Transfer( from=[Sender] 0xd26205a544ec45d8611df4d3f22b1b3ec43b3802, to=0xDcECD007E56F64572b300Dc18f0E10DAa3FD3084, value=3414000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 5,338.379700660273989003 Eth | 5,338.379857908273989003 Eth | 0.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 )
transfer[ERC20Basic (ln:149)]
1234567891011121314151617181920212223242526pragma 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/522if (_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;