Help us improve
Share bugs, ideas, or general feedback.
From alchemy-skills
Checks ERC-20 tokens for honeypots, high taxes, and rug pulls before swapping. Returns verdict (trusted/proceed/caution/avoid) and risk flags via free or $0.01 paid API.
npx claudepluginhub moonpay/skills --plugin moonpay-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/alchemy-skills:maiat-token-safetyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before swapping or buying any ERC-20 token, verify it's not a honeypot, high-tax scam, or rug pull.
Scans Ethereum and Solana tokens, transactions, DApps, and signatures for security risks: honeypot detection, phishing checks, pre-execution safety, approval management.
Audits meme coins and tokens for rug pull vectors: honeypot, hidden mint, fee manipulation, LP lock bypass, Solana SPL/Token-2022 risks, and DEX liquidity exploits.
Analyzes token implementations/integrations for ERC20/ERC721 conformity, 20+ weird patterns, owner privileges, scarcity via Slither and on-chain queries.
Share bugs, ideas, or general feedback.
Before swapping or buying any ERC-20 token, verify it's not a honeypot, high-tax scam, or rug pull.
npm install -g @moonpay/climp wallet createcurl "https://app.maiat.io/api/v1/token/<contract_address>"
Using MoonPay CLI:
mp x402 request \
--method GET \
--url "https://app.maiat.io/api/x402/token-check?address=<contract_address>" \
--wallet <wallet-name> \
--chain base
{
"address": "0x...",
"verdict": "proceed",
"trustScore": 85,
"riskFlags": [],
"riskSummary": "Token appears safe based on analysis."
}
| Verdict | Meaning | Action |
|---|---|---|
trusted | Verified safe token (e.g. USDC, WETH) | Safe to swap |
proceed | No major red flags detected | Safe to swap |
caution | Some risk signals present | Proceed with small amounts |
avoid | High risk — honeypot or scam likely | Do not swap |
Common riskFlags values:
| Flag | Meaning |
|---|---|
HONEYPOT_DETECTED | Cannot sell after buying — do not buy |
HIGH_BUY_TAX | Buy tax > 25% |
HIGH_SELL_TAX | Sell tax > 25% |
NEAR_ZERO_LIQUIDITY | Liquidity too low to trade safely |
UNVERIFIED | Contract simulation failed |
For suspicious tokens, run Wadjet ML analysis:
mp x402 request \
--method POST \
--url "https://app.maiat.io/api/x402/token-forensics" \
--body '{"projectName": "<token_name>"}' \
--wallet <wallet-name> \
--chain base