一键导入
maiat-token-safety
Check if an ERC-20 token is safe before swapping. Detects honeypots, high-tax tokens, and rug pulls. Use before any token swap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check if an ERC-20 token is safe before swapping. Detects honeypots, high-tax tokens, and rug pulls. Use before any token swap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up the MoonPay CLI, authenticate, and manage local wallets. Use when commands fail, for login, or to create/import wallets.
Multi-chain yield optimization via yield.xyz (StakeKit). Discover 2,988+ yield opportunities across 75+ blockchains, build deposit/withdrawal transactions with shell scripts, and sign them with a MoonPay wallet. Use when the user wants to earn yield, find the best lending or staking rate, enter/exit a position, or check portfolio balances.
What tokens are whales dollar-cost averaging into? Jupiter DCA strategies by smart money and target token fundamentals.
Manually refresh wallet balances shown in a compatible CLI status line. Use when the user says "refresh balances", "update status bar", or after receiving funds from outside the CLI.
Show MoonPay wallet balances in a compatible CLI status line using a local cache and refresh script. Use when the user asks to "show balances in the status bar", "add wallet to the CLI status line", or wants a persistent balance display while working.
Use when accessing Alchemy APIs for RPC calls, token balances, NFT metadata, asset transfers, transaction simulation, or Alchemy-specific features. Also use when the user mentions "SIWE", "SIWS", "x402", "MPP", "mppx", or "agentic gateway" — this skill covers wallet-based auth flows for Alchemy's x402 and MPP protocols on EVM (Ethereum, Base, Polygon) and SVM (Solana).
| name | maiat-token-safety |
| description | Check if an ERC-20 token is safe before swapping. Detects honeypots, high-tax tokens, and rug pulls. Use before any token swap. |
| tags | ["security","defi","tokens"] |
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