Transaction Hash:
Block:
22539132 at May-22-2025 02:53:11 PM +UTC
Transaction Fee:
0.000177174 ETH
$0.45
Gas Used:
29,529 Gas / 6 Gwei
Emitted Events:
224 |
ENA.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=10569593857070000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.008772235968675723 Eth
Nonce: 112914
|
0.008595061968675723 Eth
Nonce: 112915
| 0.000177174 | |
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 24.116183583103346318 Eth | 24.116195268138036374 Eth | 0.000011685034690056 | |
0x57e114B6...3181e6061 |
Execution Trace
ENA.transfer( to=0x28C6c06298d514Db089934071355E5743bf21d60, amount=10569593857070000000000 ) => ( 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);