ETH Price: $2,692.76 (+7.97%)
Gas: 1.55 Gwei

Transaction Decoder

Block:
17181205 at May-03-2023 03:54:23 PM +UTC
Transaction Fee:
0.003852508978494216 ETH $10.37
Gas Used:
48,897 Gas / 78.788248328 Gwei

Emitted Events:

129 TetherToken.Approval( owner=[Sender] 0x03a3a1700400c4f6b4d143b2e4ec8bbdf8dae38c, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x03a3a170...dF8DAe38C
0.053325461361994096 Eth
Nonce: 3
0.04947295238349988 Eth
Nonce: 4
0.003852508978494216
(Rocket Pool Smoothing Pool)
279.496976682652666197 Eth279.497001131152666197 Eth0.0000244485
0xdAC17F95...13D831ec7

Execution Trace

TetherToken.approve( _spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
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