ETH Price: $2,861.10 (+4.73%)

Transaction Decoder

Block:
22538882 at May-22-2025 02:02:59 PM +UTC
Transaction Fee:
0.000177174 ETH $0.51
Gas Used:
29,529 Gas / 6 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.015415464942729746 Eth
Nonce: 112889
0.015238290942729746 Eth
Nonce: 112890
0.000177174
(Titan Builder)
7.199520717235287566 Eth7.19956416198725651 Eth0.000043444751968944
0x57e114B6...3181e6061

Execution Trace

ENA.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=24281687680220000000000 ) => ( 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: GPL-3.0
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/access/Ownable2Step.sol";
import "./interfaces/IENADefinitions.sol";
/**
* @title ENA
* @notice Governance token for the Ethena protocol
*/
contract ENA is Ownable2Step, ERC20Burnable, ERC20Permit, IENADefinitions {
/// @notice Maximum inflation rate per year (percentage) expressed as an integer
uint8 public constant MAX_INFLATION = 10;
/// @notice The maximum frequency of inflationary mint invocations
uint32 public constant MINT_WAIT_PERIOD = 365 days;
/// @notice The last time the mint function was called
uint40 public lastMintTimestamp;
constructor(address _initialOwner, address _treasury, address _foundation) ERC20("ENA", "ENA") ERC20Permit("ENA") {
// first mint not allowed until 1 year after deployment
lastMintTimestamp = uint40(block.timestamp);
if (_initialOwner == address(0) || _treasury == address(0) || _foundation == address(0)) revert ZeroAddressException();
_transferOwnership(_initialOwner);
// initial supply of 15 billion tokens
_mint(_treasury, 3_750_000_000 * 10 ** 18);
_mint(_foundation, 11_250_000_000 * 10 ** 18);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX