ChainPortalChainPortal Docs
Features
Features

Token Creation

Complete guide to creating fungible tokens on any blockchain. Configure mint, burn, pause, tax, anti-bot, and more.

Overview

ChainPortal lets you create fungible tokens across all 6 supported ecosystems. Each token is deployed using gas-efficient factory contracts with configurable features.

Token Standards by Chain

EcosystemStandardFactory Pattern
EVMEVMERC20EIP-1167 minimal proxy
SolanaSolanaSPL TokenPDA with factory state
CosmosCosmosCW20CosmWasm instantiate
AptosAptosFungible AssetMove module
SUISUICoinMove OTW pattern
NEARNEARNEP-141Factory sub-account

Configurable Features

Basic Features

FeatureDescriptionDefault
NameDisplay name for your tokenRequired
SymbolShort ticker (e.g., USDT, ETH)Required
DecimalsNumber of decimal places (18 standard for EVM)18
Initial SupplyTokens minted at creationRequired
Max SupplyMaximum tokens that can ever existOptional

Advanced Features

FeatureDescriptionEcosystems
MintableOwner can create additional tokensAll
BurnableHolders can destroy their tokensAll
PausableOwner can pause all transfersEVM, Solana, Cosmos, Aptos, NEAR
WhitelistRestrict transfers to approved addressesEVM, Solana, Cosmos, Aptos, NEAR
Anti-BotPrevent bot sniping at launchEVM only
Tax/FeeAutomatic percentage on every transferEVM only
FreezeFreeze individual accountsEVM, Solana

Creating a Token

1

Select Ecosystem & Network

Choose your blockchain ecosystem from the sidebar, then select the specific network from the chain selector.

2

Navigate to Token Creation

Go to Tokens > Create Token (or the ecosystem-specific creation page).

3

Enter Token Details

Fill in name, symbol, decimals, and initial supply. Toggle any advanced features you need.

4

Review Gas Estimate

Check the estimated gas cost before deploying. Factory pattern keeps costs low.

5

Deploy

Click 'Create Token' and confirm the transaction in your wallet.

Managing Your Token

After deployment, use the management panel to:

  • Mint -- Create additional tokens (if mintable)
  • Burn -- Destroy tokens from your balance
  • Pause/Unpause -- Emergency halt all transfers
  • Whitelist -- Add/remove addresses from the whitelist
  • Transfer Ownership -- Transfer contract ownership to another address

Gas Cost Comparison

NetworkEstimated CostSpeed
Ethereum Mainnet$5-5012s
Polygon$0.01-0.102s
Arbitrum$0.10-1.000.3s
Base$0.01-0.102s
Solana$0.001-0.010.4s
SUI$0.001-0.010.5s
NEAR$0.01-0.051s

Factory Pattern: All tokens are deployed using the minimal proxy pattern — a tiny contract that delegates to a shared implementation. This cuts gas costs by up to 90% versus deploying full bytecode every time.

On this page

Edit on GitHub