Transaction Hash:
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:
64 |
ENA.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=22485712029500000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.013408162 Eth
Nonce: 113468
|
0.013349104 Eth
Nonce: 113469
| 0.000059058 | |
0x57e114B6...3181e6061 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.306091547306738874 Eth | 18.306105594153028137 Eth | 0.000014046846289263 |
Execution Trace
ENA.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=22485712029500000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0pragma 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 integeruint8 public constant MAX_INFLATION = 10;/// @notice The maximum frequency of inflationary mint invocationsuint32 public constant MINT_WAIT_PERIOD = 365 days;/// @notice The last time the mint function was calleduint40 public lastMintTimestamp;constructor(address _initialOwner, address _treasury, address _foundation) ERC20("ENA", "ENA") ERC20Permit("ENA") {// first mint not allowed until 1 year after deploymentlastMintTimestamp = 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);