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

Transaction Decoder

Block:
19663590 at Apr-15-2024 09:28:59 PM +UTC
Transaction Fee:
0.000696673749007502 ETH $2.51
Gas Used:
46,109 Gas / 15.109279078 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
17.860952789554828389 Eth17.860957262127828389 Eth0.000004472573
0xdAC17F95...13D831ec7
0xf34f0420...5DeB10A63
18.177011718439207352 Eth
Nonce: 6582
18.17631504469019985 Eth
Nonce: 6583
0.000696673749007502

Execution Trace

TetherToken.transfer( _to=0x62D7608Bd4FeC6953195daA3f8Ca70090B5Ac29a, _value=1000000000000 )
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