ETH Price: $1,864.34 (-2.32%)

Transaction Decoder

Block:
11033487 at Oct-11-2020 09:52:32 AM +UTC
Transaction Fee:
0.00318954 ETH $5.95
Gas Used:
53,159 Gas / 60 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Nanopool)
3,699.898931321447496389 Eth3,699.902120861447496389 Eth0.00318954
0x8eB24319...e9CfFe285
0xD551234A...4f22192FF
(Binance 2)
17,310.737778807414827339 Eth
Nonce: 3026375
17,310.734589267414827339 Eth
Nonce: 3026376
0.00318954

Execution Trace

SingularityNetToken.transfer( _to=0x82aADafeB56f9B52906B7Bd7221d19975ba3A9AF, _value=15176200000 ) => ( 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.13;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX