ETH Price: $2,780.33 (+6.80%)

Transaction Decoder

Block:
4470740 at Nov-01-2017 02:27:48 PM +UTC
Transaction Fee:
0.000581187147786 ETH $1.62
Gas Used:
21,000 Gas / 27.675578466 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x00bA66bb...43938c23D
0.008428192 Eth
Nonce: 1
0.007847004852214 Eth
Nonce: 2
0.000581187147786
(F2Pool Old)
8,706.356808661201117336 Eth8,706.357389848348903336 Eth0.000581187147786

Execution Trace

ETH 0.005 CopPayToken.CALL( )
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.15;
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/**
* @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 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 constant returns (uint256) {
assert(b <= a);
return a - b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX