ETH Price: $2,996.48 (+7.32%)

Transaction Decoder

Block:
17273415 at May-16-2023 04:22:47 PM +UTC
Transaction Fee:
0.004366760528512473 ETH $13.08
Gas Used:
63,197 Gas / 69.097592109 Gwei

Account State Difference:

  Address   Before After State Difference Code
6.255912608484744979 Eth6.255975805484744979 Eth0.000063197
0x54ee8C0F...Db8Be751c
0.011407955450472479 Eth
Nonce: 28
0.007041194921960006 Eth
Nonce: 29
0.004366760528512473
0xdAC17F95...13D831ec7

Execution Trace

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