ETH Price: $3,774.00 (-2.00%)

Transaction Decoder

Block:
21273155 at Nov-26-2024 04:35:59 PM +UTC
Transaction Fee:
0.000714767684765014 ETH $2.70
Gas Used:
46,097 Gas / 15.505731062 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
31.150899638644159815 Eth31.150945735644159815 Eth0.000046097
0x65D77193...551e6f85b
0.00119948044917318 Eth
Nonce: 9
0.000484712764408166 Eth
Nonce: 10
0.000714767684765014
0xdAC17F95...13D831ec7

Execution Trace

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