Skip to main content
PulseScanner.io

Address

0xed5b034614595a3f2adbb4c2bb53b3fefaaff4b7
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-03-22
block 26,090,124
Last Active
180 days ago
block 26,090,124
Funded By
not identified

Net worth historyi

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

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

contract TestToken is ERC20 {
    constructor(uint256 initialSupply) ERC20("TestToken", "TST") {
        _mint(msg.sender, initialSupply * 10 ** decimals());
    }
}