ETH Price: $2,654.63 (-4.61%)

Transaction Decoder

Block:
16014750 at Nov-21-2022 12:16:59 AM +UTC
Transaction Fee:
0.00060503341838202 ETH $1.61
Gas Used:
48,897 Gas / 12.37363066 Gwei

Emitted Events:

107 TetherToken.Approval( owner=[Sender] 0xb681e94cadf59bb445dd30439912e3e8e6c8ea32, spender=0x8731d54E...C07e01e98, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
130.261783193994733508 Eth130.261856539494733508 Eth0.0000733455
0xb681e94c...8e6C8eA32
0.468204306278524939 Eth
Nonce: 179
0.467599272860142919 Eth
Nonce: 180
0.00060503341838202
0xdAC17F95...13D831ec7

Execution Trace

TetherToken.approve( _spender=0x8731d54E9D02c286767d56ac03e8037C07e01e98, _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