Documentation Index
Fetch the complete documentation index at: https://docs.webacy.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Hidden Mint identifies suspicious and malicious token minting activities where additional token supply can be altered in harmful ways.The Risk
Minting is the process of creating new tokens and adding them to circulating supply. When supply increases without corresponding demand, token price drops. When mint functions lack proper safeguards:- Malicious actors can create unlimited tokens
- Token value can be crashed instantly
- Investors lose their holdings
Detection Categories
Hidden Internal Mint
Functions that exploit transaction gas fees to mint additional tokens beyond what was requested, directing excess tokens to unauthorized addresses. Risk Level: CriticalControlled Mint
Administrator-accessible functions permitting infinite token minting, enabling controlled liquidity manipulation and exit strategies. Risk Level: HighSupply Update (Upd Supply)
Functions manipulatingtotalSupply outside normal minting/burning operations.
Risk Level: High
totalSupply should only increase on minting and decrease on burning. Direct manipulation is a red flag.Pre-Mint
Informational flag for tokens pre-minting amounts during deployment. Risk Level: InformationalRed Flags
| Pattern | Risk |
|---|---|
| Mint functions with hidden internal calls | Critical |
| Owner-controlled unlimited minting | High |
Direct totalSupply manipulation | High |
| No mint cap or rate limiting | Medium |
| Pausable minting with restricted admin | Medium |
