ETH Price: $3,693.74 (-1.70%)

Transaction Decoder

Block:
19663623 at Apr-15-2024 09:35:35 PM +UTC
Transaction Fee:
0.000620448698142594 ETH $2.29
Gas Used:
46,121 Gas / 13.452628914 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
17.92523870250710026 Eth17.925239187446723728 Eth0.000000484939623468
0xdAC17F95...13D831ec7
0xf34f0420...5DeB10A63
18.174283814814740491 Eth
Nonce: 6586
18.173663366116597897 Eth
Nonce: 6587
0.000620448698142594

Execution Trace

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