GGlossary · 1 min read

What is a mint function?

A mint function is contract code that creates new token supply after launch. Who can call it, how dilution works, and how to check for one yourself.

300 words · about 1 minute·Article updated 20 August 2026
Definition

A mint function is code in a token contract that creates new supply after deployment. Whoever holds the permission can call it and increase the total. Whether a contract has one, and which address is allowed to call it, is readable in the contract itself rather than taken on trust.

The consequence is dilution. Say you hold 1,000 tokens out of a 1,000,000 total: 0.1% of supply. Mint another 1,000,000 and you still hold 1,000 tokens, now 0.05%, without signing anything. That new supply also has to be absorbed by liquidity that did not grow with it.

Three states are common: no mint function at all, a capped mint, and an open mint whose permission still sits with an address. Ownership can also be renounced, setting the owner to an address nobody controls, which makes the function uncallable. Read the current owner, not the launch announcement.

Where you'll see it on Locksley

Every token page prints current total supply next to holder concentration and the deployer wallet label, and a change in that total is what a mint looks like from outside. New tokens lists the pending tokens created in the last 24 hours.

Choosing supply and permissions before you deploy is covered in how to launch a token on Robinhood Chain. How mint permission turns into an exit is in rug pulls, explained honestly.

Frequently asked questions

Is a mint function the same as a rug pull?

No. A mint function is a capability written into a contract; a rug pull is an event. Mint permission can be capped, held behind a timelock, or assigned to a staking-rewards contract, and each of those states is written in the code. What you can verify is who holds the permission, whether a cap exists, and whether ownership has been renounced.

FiguresEvery number on this page is frozen at the date printed beside it and refreshed when the page is rebuilt — not live. The sentences reason about the figures, so a value that changed underneath them would make the prose wrong. Live values live on Explore and the pages it links out to. Methodology →
CorrectionsFound something wrong? Send the page and what you computed instead through the contact page. Every correction is logged publicly.
ReusePublished under CC BY 4.0. Quote it, translate it, fork it — cite the page and the date.
Who wrote thisWritten and maintained by the Locksley editorial team. Locksley is built by TrustSwap, which also owns Team Finance — the tool linked above.