Transaction Hash:
Block:
8607509 at Sep-23-2019 08:16:32 PM +UTC
Transaction Fee:
0.000636869999977832 ETH
$2.84
Gas Used:
52,973 Gas / 12.022539784 Gwei
Emitted Events:
65 |
NPXSToken.Transfer( from=[Sender] 0xd26a4d3ce34eef62a5eacc1f07b6e4ed11d0d516, to=0x0458DC4dA7DF698655ad2CEf65DF386A88E97c9B, value=12094000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 5,455.185653503663797994 Eth | 5,455.186290373663775826 Eth | 0.000636869999977832 | |
0xA15C7Ebe...AC49Ae5B3 | |||||
0xD26A4D3C...d11d0d516 |
30.855841072934544591 Eth
Nonce: 804
|
30.855204202934566759 Eth
Nonce: 805
| 0.000636869999977832 |
Execution Trace
NPXSToken.transfer( _to=0x0458DC4dA7DF698655ad2CEf65DF386A88E97c9B, _value=12094000000000000000000 ) => ( True )
transfer[NPXSToken (ln:606)]
transfer[NPXSToken (ln:608)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.11;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint256 a, uint256 b) internal constant returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);return a - b;}