Skip to main content
PulseScanner.io

Address

0x959ebbfbd6872f528feec97c667573cdcee01f13
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-06-01
block 26,679,342
Last Active
107 days ago
block 26,680,230
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
partial matchTestlplive01solc 0.8.20+commit.a1b79de6runtime partial · creation not verified
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Testlplive01 is ERC20, Ownable {

    constructor() ERC20("Testlplive02", "Testlplive02") Ownable(msg.sender) {
        // Mints 10,000,000 tokens to the deployer's wallet
        _mint(msg.sender, 10_000_000 * 10 ** decimals());
    }
}