ETH Price: $3,599.48 (+7.44%)

Transaction Decoder

Block:
8509529 at Sep-08-2019 01:27:12 PM +UTC
Transaction Fee:
0.00178728408047616 ETH $6.43
Gas Used:
38,465 Gas / 46.465204224 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
51.611310353817961413 Eth51.613097637898437573 Eth0.00178728408047616
0xC0f54DeF...5bc50a282
0.389267968637941824 Eth
Nonce: 23
0.387480684557465664 Eth
Nonce: 24
0.00178728408047616
0xdAC17F95...13D831ec7

Execution Trace

TetherToken.transfer( _to=0xF7D7312a8b1033eF262cA1Ba5588B3B106DbF5A4, _value=490950000 )
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.17;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX