ETH Price: $2,028.76 (-1.72%)

Transaction Decoder

Block:
20421800 at Jul-30-2024 08:37:35 PM +UTC
Transaction Fee:
0.000263328952943245 ETH $0.53
Gas Used:
21,055 Gas / 12.506718259 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
64.423906950471141661 Eth64.423947835893560601 Eth0.00004088542241894
0x6F529Fa4...4Ab6CD970 0 Eth1 Eth1
0xDF56ea4b...596Fd953E
1.46704788908946047 Eth
Nonce: 2
0.466784560136517225 Eth
Nonce: 3
1.000263328952943245

Execution Trace

ETH 1 ZANON.CALL( )
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
// SPDX-License-Identifier: MIT
/**
A complete privacy trading and liquidity
leasing solutions for crypto users.
Website: https://www.0xanon.org
Telegram: https://t.me/zeroxanon_erc
Twitter: https://twitter.com/zeroxanon_erc
*/
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(
address recipient,
uint256 amount
) external returns (bool);
function allowance(
address owner,
address spender
) external view returns (uint256);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX