Address
0x06e786d01d91fc649d391fa80a9340e4aa4529cdCurrent Holdings
$0.00
TXs sent
not counted
First Active
2026-06-03
block 26,695,921
Last Active
101 days ago
block 26,744,205
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchTestlplive05solc 0.8.20+commit.a1b79de6runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Testlplive05 is ERC20, Ownable {
constructor() ERC20("Testlplive05", "Testlplive05") Ownable(msg.sender) {
// Mints 10,000,000 tokens to the deployer's wallet
_mint(msg.sender, 10_000_000 * 10 ** decimals());
}
}