ETH Price: $3,433.30 (+2.86%)

Transaction Decoder

Block:
22699818 at Jun-14-2025 02:30:11 AM +UTC
Transaction Fee:
0.000068986 ETH $0.24
Gas Used:
34,493 Gas / 2 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.013749944 Eth
Nonce: 123752
0.013680958 Eth
Nonce: 123753
0.000068986
(Titan Builder)
10.636373793496977269 Eth10.636427670363862617 Eth0.000053876866885348
0xFe0c3006...F9F9Cc0eB

Execution Trace

EtherFiGovernanceToken.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, value=20810510500000000000000 ) => ( True )
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
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";
contract EtherFiGovernanceToken is ERC20, ERC20Burnable, ERC20Permit, ERC20Votes {
constructor()
ERC20("ether.fi governance token", "ETHFI")
ERC20Permit("ether.fi governance token")
{
_mint(0x7A6A41F353B3002751d94118aA7f4935dA39bB53, 1000000000 * 10 ** decimals());
}
// The following functions are overrides required by Solidity.
function _update(address from, address to, uint256 value)
internal
override(ERC20, ERC20Votes)
{
super._update(from, to, value);
}
function nonces(address owner)
public
view
override(ERC20Permit, Nonces)
returns (uint256)
{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX