It depends on the blockchain. Some networks allow metadata updates, while others do not.Token name mutability is determined by the underlying chain’s token standard and whether metadata is upgradeable.
EVM-Compatible Chains (Not Editable)
If your token was deployed on an EVM-compatible chain, the token name cannot be changed after deployment.
This includes:
-
Ethereum
-
BNB Smart Chain (BSC)
-
Arbitrum
-
Base
-
Polygon
-
Most Layer 2 networks
On EVM chains, token name and symbol are typically set in the smart contract constructor. Once deployed, those parameters are immutable unless you deploy a new contract.
🔹 Solana (Editable)
If your token was created on Solana, you can update the token name.
Solana tokens use metadata accounts that can be updated (if you still control the update authority).
You can follow this guide:Solana Tokens Update Metadata Guide | 🇺🇸_English | PandaTool一键发币
🔹 TRON (Not Editable)
If your token was deployed on TRON, the token name cannot be modified after creation.
🔹 Sui (Editable)
If your token was created on Sui, the name can be updated.
Sui tokens support metadata updates, provided you retain the necessary control permissions.
Guide:https://help.pandatool.org/sui/control
🔹 TON (Editable)
If your token was deployed on TON, the name can also be modified.
Refer to the section about editing token parameters in this guide:TON Token Creator Tutorial | 🇺🇸_English | PandaTool一键发币
⚠️ Important Notes
-
If you’ve renounced ownership or update authority, metadata changes may no longer be possible — even on chains that support it.
-
Always verify whether you still control the contract owner or metadata authority before attempting changes.
-
On immutable chains (like EVM), the only solution is deploying a new token contract.