Address
0x4e7a0c8aaaab995b06e872dc4a246b16b963e8daCurrent Holdings
$0.00
TXs sent
not counted
First Active
2026-01-18
block 25,558,434
Last Active
220 days ago
block 25,756,100
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchLirasolc 0.8.29+commit.ab55807cruntime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Lira is ERC20 {
uint256 public constant INITIAL_SUPPLY = 1_111_111_111 * 1e18;
constructor() ERC20("LIRA", "LIRA") {
_mint(msg.sender, INITIAL_SUPPLY);
}
}