Getting Started

Deploy contracts easily & quickly

  • ๐Ÿ”น Increase the value of your wallet in the network
  • ๐Ÿ”น Become a developer without programming
  • ๐Ÿ”น Gain opportunities to receive airdrops
Arrow

Your Smart Contract Code

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

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

contract FixedToken is ERC20 {
    constructor(
        string memory name,
        string memory symbol,
        uint256 totalSupply
    ) payable ERC20(name, symbol) {
        _mint(msg.sender, totalSupply);
    }
}

Deploy Your Smart Contract

Create your own ERC-20 token on the Monad Testnet.

Monad Logo
MONAD NETWORK