Mistyped wallet labels, surprise rebrands, and duplicate "Airdrop" entries are far more common than most newcomers realize. Whether you are a token issuer cleaning up a launch or a hunter trying to declutter your wallet, knowing how to change an airdrop name can save you from sending funds to the wrong contract or missing a claim entirely.
Why Airdrop Names Get Changed in the First Place
An airdrop name is essentially the human-readable label that follows a token from mint to wallet. That single string can be edited, replaced, or left to rot, and recognizing the cause behind the change is half the battle toward fixing it correctly.
The most common trigger is a post-launch rebrand. Many projects ship under a working title, attract a community, and then discover a naming conflict, a trademark issue, or simply a sharper marketing angle. Changing the displayed name and sometimes the ticker keeps the brand consistent without forcing users to migrate to a brand-new contract.
Other drivers include embarrassing typos from launch day, mergers between sister projects that need a unified umbrella name, and regulatory pressure that nudges founders toward less aggressive wording. In some cases, the name you see is purely a wallet-side artifact, a stale locally cached entry from an older token list, which is why two users staring at the same token can see two different labels.
Changing the Name as a Token Issuer
If you deployed the token, brace yourself for a harsh reality: on most major blockchains, the on-chain name is immutable by default. ERC-20, BEP-20, and SPL tokens store the name and symbol fields inside the smart contract, and Solidity does not ship with a built-in rename button.
When the Contract Includes Setter Functions
Developers who planned ahead will have deployed a token template. Many standard kits, such as OpenZeppelin's extensible ERC-20, include optional setName and setSymbol hooks. Anyone holding the owner key can flip them on the spot, and the change propagates everywhere that reads from the chain directly.
When the Contract Is Locked
If your token does not expose those hooks, you have three realistic paths forward:
- Migrate users to a new contract with the corrected name and run a swap portal that lets holders trade old for new at a 1:1 ratio.
- Update the metadata off-chain by submitting the corrected record to token-listing aggregators. Their refreshed file propagates to most wallets within a few days.
- Renounce ownership and tombstone the old contract with a clear notice so confused hunters stop interacting with it.
Updating the Name in Your Wallet Display
If you are an everyday user staring at three rows all labelled "Airdrop," the rename happens entirely on your end of the connection. Wallets cache metadata from token lists, and any mismatch between the contract and the cached file shows up directly in your holdings tab.
The quick workflow for the most common wallets looks like this:
- MetaMask: Scroll to the token in your asset list, click the three dots, and add a custom token. You can manually overwrite the displayed name and symbol without touching the on-chain contract at all.
- Trust Wallet: Toggle the "Add Custom Token" switch, paste in the contract address, and edit the visible name field to whatever you want.
- Phantom on Solana: Refresh the token list in settings, or submit a metadata pull from the in-app browser if the row is stuck on an outdated label.
If the wrong label persists after manual edits, clear your wallet's local cache or switch RPC nodes. Stale metadata is the number one reason renamed tokens keep showing their old name long after the team updated the project site.
Editing Your Project's Name on Airdrop Aggregator Sites
Aggregator sites are the public phonebook of the airdrop world, and most of them let you submit edits directly. A correct listing here is exactly what future claimers will see before they sign anything.
The Verification Workflow
Follow this sequence across each major aggregator:
- Locate the existing listing on the site. If none exists, claim a fresh slot through the "Submit Project" portal.
- Open the "Suggest Edit" or "Claim Listing" form and provide proof of ownership, usually a signed message from the deployer wallet, social media verification, or a short walkthrough video covering the relevant contract.
- Wait for human review, which typically takes anywhere from 24 hours to two weeks depending on the platform's backlog.
Keep in mind that aggregators almost never retroactively change a name that has already been used on a live claim page. Once a snapshot is taken, the name is locked for that round to prevent social-engineering attacks on existing holders.
Key Takeaways
Renaming an airdrop is rarely a single click. It is a layered fix that touches the contract, your wallet, and the public listings at the same time.
- On-chain name changes are limited unless the contract includes a setter function, so plan ahead at deployment.
- Wallet labels are fully editable, so do not panic when two apps show two different names for the same token.
- Aggregator edits require proof and a review window, so submit early and keep documentation ready.
- Always re-verify the contract address after a rename to avoid phishing clones riding the announcement wave.
Zyra