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

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.
