How Can Minting New Tokens Lead to a Rug Pull?
A mint function lets a creator drain real value from a pool without ever touching the liquidity lock. Here's how minting turns into a rug pull.
Minting is a normal, legitimate function in plenty of token contracts. It's also the mechanism behind one of the less visible forms of rug pull — one that doesn't require touching a liquidity pool at all, just the ability to change how many tokens exist.
What Minting Actually Does
Minting is the process of creating new units of a token after the contract has already been deployed. Whoever controls this function — typically the contract owner, unless that ability has been revoked — can call it at any point to increase the total supply, sending the newly created tokens to any wallet they choose, including their own.
How Minting Becomes a Rug Pull Mechanism
Every token's value is tied, in part, to scarcity. If a contract owner can mint enormous quantities of new tokens at will, they can create tokens essentially for free and sell them into the existing liquidity pool, extracting real value without ever touching the pool's withdrawal function — the same underlying idea covered in more detail here.
Why This Bypasses Liquidity Protections Entirely
A liquidity lock protects the assets already sitting in the pool. It says nothing about how many tokens can be created and sold into that same pool afterward. A creator with an active mint function can mint a supply many times larger than the original and drain most of the pool's real value through ordinary-looking sell transactions.
What This Looks Like in Practice
Existing holders typically don't notice anything unusual in their own wallets — their token balance stays the same. What changes is the total supply and, consequently, each existing holder's share of it. A sequence of large sell transactions from the contract owner's wallet, often shortly after a mint event, followed by a falling price despite no liquidity withdrawal, is the typical signature of this pattern.
How to Check Whether a Contract Can Do This
This comes down to whether the contract's mint function is still callable by an active wallet. If contract ownership has been fully renounced, an owner-restricted mint function generally becomes permanently unusable.
Check a token's contract for an active mint function and its ownership status — this is a separate check from liquidity lock status, and both matter.