Address
0xabb0957992ac8656bace4e4968524be9b0cc8a5fCurrent Holdings
$0.00
TXs sent
not counted
First Active
2025-03-28
block 23,065,302
Last Active
537 days ago
block 23,065,863
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchSUNMinimealsolc 0.8.20+commit.a1b79de6runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract SUNMinimeal is ERC20, ERC20Permit, ERC20Burnable {
constructor() ERC20("SUN Minimeal SOIL", "SOIL") ERC20Permit("SUN Minimeal SOIL") {
_mint(msg.sender, 5_000_000_000 * 10 ** decimals());
}
}