con un clic
security-check
Assess token and address security via the GoPlus Security API.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Assess token and address security via the GoPlus Security API.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Trustless ERC-8183 job evaluation — run Client's verification program inside a zkVM with ZK proof.
Binance official spot trading skill — place orders, manage accounts, and access real-time market data via Binance Spot API. Sourced from github.com/binance/binance-skills-hub.
Create, fund, and settle on-chain agent jobs via ERC-8183 Agentic Commerce Protocol.
Binance Web3 official skill — query any wallet address for token holdings, balances, and portfolio data across BSC, Base, and Solana. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — crypto market rankings including trending tokens, smart money inflow, social hype, meme ranks, and top trader PnL leaderboards. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — real-time meme token launchpad tracking and AI-powered trending topic discovery on Solana and BSC. Sourced from github.com/binance/binance-skills-hub.
Basado en la clasificación ocupacional SOC
| name | security-check |
| description | Assess token and address security via the GoPlus Security API. |
| metadata | {"cryptoclaw":{"emoji":"🛡️","always":true}} |
The check_address_security tool provides instant address risk assessment. All transfers are also auto-checked before execution.
Assess token contracts, wallet addresses, and approvals for security risks using the free GoPlus API.
https://api.gopluslabs.io/api/v1
No API key required. Free tier is sufficient for normal usage.
GET /token_security/{chain_id}?contract_addresses={address}
Chain IDs: 1 (Ethereum), 56 (BSC), 137 (Polygon), 42161 (Arbitrum), 10 (Optimism), 8453 (Base)
Key response fields:
is_honeypot — token cannot be sold (CRITICAL)buy_tax / sell_tax — percentage tax on trades (HIGH if > 10%)is_mintable — owner can mint unlimited tokenshidden_owner — ownership is concealedcan_take_back_ownership — owner can reclaim after renouncingselfdestruct — contract can self-destructis_proxy — upgradeable proxy contractis_open_source — source code is verifiedholder_count — number of holderslp_holder_count — number of LP holdersis_anti_whale — anti-whale mechanism presentowner_percent — percentage held by ownercreator_percent — percentage held by creatorGET /address_security/{address}?chain_id={chain_id}
Checks if an address is associated with: phishing, stealing, malicious contracts, or blacklists.
GET /approval_security/{chain_id}?contract_addresses={address}
Checks token approval risks: whether the approved contract is malicious or has known exploits.
GET /nft_security/{chain_id}?contract_addresses={address}
Checks NFT contract for: privileged operations, restricted transfer, self-destruct, and trading risks.
GET /phishing_site?url={url}
Checks if a URL is a known phishing site. Use this before directing users to any DeFi frontend.
Evaluate the response fields and classify risk:
CRITICAL (do not proceed):
is_honeypot: 1selfdestruct: 1hidden_owner: 1 AND is_mintable: 1HIGH (strong warning):
buy_tax > 10% or sell_tax > 10%can_take_back_ownership: 1is_open_source: 0 (unverified source)owner_percent > 50%MEDIUM (note to user):
is_proxy: 1 (upgradeable)is_mintable: 1 (alone)holder_count < 100LOW (informational):
is_anti_whale: 1🛡️ Security Report: {token_name} ({symbol})
Chain: {chain_name} | Contract: {address}
Risk Level: {CRITICAL|HIGH|MEDIUM|LOW}
✅ Passed:
- Open source: Yes
- Not a honeypot
- No self-destruct
⚠️ Warnings:
- Sell tax: 5%
- Mintable: Yes
- Holder count: 87
❌ Critical:
- (none)
Recommendation: {proceed with caution / avoid / safe to interact}
Other skills should invoke security checks:
User: "Is this token safe? 0x..."
→ Call /token_security/56?contract_addresses=0x..., generate risk report
User: "Check this address for me: 0x..."
→ Call /address_security/0x...?chain_id=56, report any flags
User: "Are my token approvals safe?"
→ Call /approval_security/56?contract_addresses=0x... for each approved contract
User: "Is this DeFi site legit? https://..."
→ Call /phishing_site?url=https://..., report result