ETH Price: $2,487.39 (-1.03%)

Transaction Decoder

Block:
22544150 at May-23-2025 07:42:59 AM +UTC
Transaction Fee:
0.000059058 ETH $0.15
Gas Used:
29,529 Gas / 2 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.013408162 Eth
Nonce: 113468
0.013349104 Eth
Nonce: 113469
0.000059058
0x57e114B6...3181e6061
(beaverbuild)
18.306091547306738874 Eth18.306105594153028137 Eth0.000014046846289263

Execution Trace

ENA.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=22485712029500000000000 ) => ( 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