Token Creation

(CRC Token Standards – Chain ID 2255)

This guide explains how to create, deploy, and verify tokens on the ClubMOS Blockchain using CRC token standards. ClubMOS is EVM-compatible, allowing developers to use familiar Ethereum tools with faster execution and low fees.


Supported CRC Token Standards

ClubMOS supports the following CRC (ClubMOS Request Command) standards:

  • CRC-20 – Fungible tokens (payments, DeFi, utilities)

  • CRC-721 – Non-fungible tokens (NFTs)

  • CRC-1155 – Multi-token standard

  • CRC-1400 / CRC-1401 – Enterprise & security tokens


Network Requirements

Before deployment, ensure your wallet and tools are connected to the CRC Network.

CRC Network Details

Parameter
Value

Network Name

ClubMOS CRC Network

Chain ID

2255

Native Currency

MOS

Virtual Machine

CVM (EVM-Compatible)


Step 1: Install & Open MetaMask

  1. Install MetaMask from https://metamask.ioarrow-up-right

  2. Create or import a wallet

  3. Secure your secret recovery phrase

MetaMask will be used to sign and deploy transactions on ClubMOS.


Step 2: Add ClubMOS CRC Network to MetaMask

  1. Open MetaMask

  2. Click Network Selector → Add Network → Add Manually

  3. Enter the CRC network details:

    • Network Name: ClubMOS

    • Chain ID: 2255

    • Currency Symbol: MOS

  4. Save and switch to the network


Step 3: Open Remix IDE

Visit: 👉 https://remix.ethereum.org/arrow-up-right

Remix is a browser-based IDE for writing, compiling, and deploying Solidity smart contracts.


Step 4: Create a New Solidity File

  1. In the File Explorer, click “+”

  2. Name the file:

    • Example: MyCRCToken.sol


Step 5: Add Token Smart Contract Code

Paste your Solidity code into the file.

Common Token Types

  • CRC-20 token contract

  • CRC-721 NFT contract

  • CRC-1155 multi-token contract

Any EVM-compatible Solidity contract can be deployed on ClubMOS.

⚠️ Ensure your contract follows CRC standards and Solidity best practices.


Step 6: Compile the Contract

  1. Open Solidity Compiler tab

  2. Select compiler version (e.g., 0.8.20)

  3. Click Compile MyCRCToken.sol

  4. Fix any errors before proceeding


Step 7: Deploy the Contract

  1. Open Deploy & Run Transactions tab

  2. Under Environment, select:

    • Injected Provider – MetaMask (recommended)

  3. Confirm MetaMask is connected to Chain ID 2255

  4. Select your contract from the dropdown

  5. Click Deploy


Step 7.1: Wallet Confirmation

  • MetaMask will open a transaction approval

  • Review gas fee (low and predictable)

  • Click Confirm


Step 7.2: Deployment Complete

Once confirmed:

  • The contract is deployed on ClubMOS

  • Remix displays the deployed contract instance


Step 8: Copy Contract Address

  • Locate the contract under Deployed Contracts

  • Copy the contract address

This address identifies your token on the blockchain.


Step 9: Verify Token on MOS Scan

  1. Paste the contract address into the search bar

  2. View:

    • Token details

    • Transactions

    • Holders

    • Contract source verification

Verification ensures transparency and trust.


After Deployment

You can now:

  • Add token to MetaMask

  • Provide liquidity on SwapMOS

  • Use token in dApps

  • Mint NFTs (CRC-721 / CRC-1155)

  • Integrate with wallets and marketplaces


Best Practices

  • Test contracts before production

  • Verify all contracts on MOS Scan

  • Use audited templates

  • Never expose private keys

  • Confirm Chain ID before deployment


Summary

Creating tokens on ClubMOS Blockchain is simple, fast, and developer-friendly. With CRC standards and Chain ID 2255, ClubMOS enables scalable token creation for DeFi, NFTs, gaming, and enterprise use cases.

Last updated