Skip to main content
PulseScanner.io

Address

0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-03-18
block 26,053,833
Last Active
87 days ago
block 26,850,086
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchMechaniumsolc 0.8.7+commit.e28d00a7runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

/**
 * @title Mechanium - Official $MECHA ERC20 for MechaChain play to earn project
 * @notice 100 000 000 $MECHA are preminted on deployment to the admin wallet
 * @author EthernalHorizons - <https://ethernalhorizons.com/>
 * @custom:project-website  https://mechachain.io/
 * @custom:security-contact contracts@ethernalhorizons.com
 */
contract Mechanium is ERC20 {

    /**
     * @dev Contract constructor
     * @param adminWallet address of the MechaChain admin wallet
     */
    constructor(address adminWallet) ERC20("Mechanium", "$MECHA") {
        _mint(adminWallet, 100000000 * 10**decimals());
    }
}