From alchemy-skills
Checks ERC-20 token safety before swaps, detecting honeypots, high buy/sell taxes, low liquidity, and rug pulls via free curl API or paid MoonPay x402 endpoints.
npx claudepluginhub moonpay/skills --plugin alchemy-skillsThis skill uses the workspace's default tool permissions.
Before swapping or buying any ERC-20 token, verify it's not a honeypot, high-tax scam, or rug pull.
Audits token contracts on BSC, Base, Solana, and Ethereum for honeypots, scams, rug pulls, malicious functions, and trading risks before swaps.
Performs security scans for tokens (honeypots), EVM/Solana transactions pre-execution, DApps/URLs (phishing), signatures (EIP-712/personal_sign), and ERC20/Permit2 approvals.
Queries Maiat API for trust score and verdict on Base agents or tokens before swaps, transfers, or interactions. Analyzes behavior, completion rates, and on-chain history.
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