All four fields are written directly into your smart contract at deployment time. They cannot be edited, updated, or corrected after the transaction is confirmed. Double-check everything before you click Deploy.
Fields
string
required
The full display name of your token. This is the name that appears in wallets, block explorers like BscScan, and most tracking interfaces.Requirements
- Can include letters, numbers, and spaces
- Keep it under 50 characters for the best display compatibility across wallets and explorers
- Must not be blank
My TokenRocket FinanceGolden Panda Coin
string
required
The short ticker identifier for your token. This is the abbreviated label shown in trading interfaces, DEX listings, and wallet balances — similar to how
BTC represents Bitcoin or BNB represents Binance Coin.Requirements- Typically 3–6 uppercase letters (e.g.
MTK,GPANDA) - Numbers are technically allowed but uncommon
- Must not be blank
MTKRFIGPANDA
integer
required
The total number of tokens created at the moment your contract is deployed. All tokens in this supply are sent directly to your wallet immediately after deployment.Requirements
- Must be a whole number (no decimals in this field)
- Must be greater than zero
- There is no maximum enforced by the form, but choose a realistic number for your project
1000000— one million tokens1000000000— one billion tokens21000000— twenty-one million tokens (common for projects that want to mirror Bitcoin’s supply model)
integer
required
The number of decimal places your token supports. This determines the smallest unit of your token that can be transferred or traded.Requirements
- Must be a whole number between
0and18 - Defaults to
18, which is the BEP-20 standard
18 decimals, one token is represented internally as 1,000,000,000,000,000,000 (10¹⁸) base units. This means your token can be divided into very small fractions, just like BNB itself. With 0 decimals, tokens can only be transferred as whole units.Best practice: Leave this at
18 unless you have a specific reason to change it. Most DEXs, wallets, and tools expect 18 decimals for BEP-20 tokens. Changing this value can cause display issues in wallets and compatibility problems with some trading platforms.