Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Blockchain security scanner for AI agents (testnet). Pay with Base Sepolia USDC via x402 protocol.
Blockchain security scanner for AI agents (testnet). Pay with Base Sepolia USDC via x402 protocol.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Blockchain security API for AI agents. Testnet version - pay with Base Sepolia USDC. โ ๏ธ This is the hackathon/testnet deployment. For production, use aegis-security.
FileURLSKILL.md (this file)https://hackathon.aegis402.xyz/skill.mdpackage.json (metadata)https://hackathon.aegis402.xyz/skill.json Base URL: https://hackathon.aegis402.xyz/v1
npm install @x402/fetch @x402/evm import { x402Client, wrapFetchWithPayment } from '@x402/fetch'; import { ExactEvmScheme } from '@x402/evm/exact/client'; const client = new x402Client() .register('eip155:*', new ExactEvmScheme(yourEvmWallet)); const fetch402 = wrapFetchWithPayment(fetch, client); // Payments on Base Sepolia (testnet USDC) const res = await fetch402('https://hackathon.aegis402.xyz/v1/check-token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?chain_id=1'); const data = await res.json(); Requirements: Testnet USDC on Base Sepolia (chain ID 84532) Get testnet USDC: Base Sepolia Faucet
EndpointPriceUse CasePOST /simulate-tx$0.05Transaction simulation, DeFi safetyGET /check-token/:address$0.01Token honeypot detectionGET /check-address/:address$0.005Address reputation check
Scan any token for honeypots, scams, and risks. curl "https://hackathon.aegis402.xyz/v1/check-token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?chain_id=1" Response: { "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "isHoneypot": false, "trustScore": 95, "risks": [], "_meta": { "requestId": "uuid", "duration": 320 } }
Verify if address is flagged for phishing or poisoning. curl "https://hackathon.aegis402.xyz/v1/check-address/0x742d35Cc6634C0532925a3b844Bc454e4438f44e" Response: { "address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e", "isPoisoned": false, "reputation": "NEUTRAL", "tags": ["wallet", "established"], "_meta": { "requestId": "uuid", "duration": 180 } }
Predict balance changes and detect threats before signing. curl -X POST "https://hackathon.aegis402.xyz/v1/simulate-tx" \ -H "Content-Type: application/json" \ -d '{ "from": "0xYourWallet...", "to": "0xContract...", "value": "1000000000000000000", "data": "0x...", "chain_id": 8453 }' Response: { "isSafe": true, "riskLevel": "LOW", "simulation": { "balanceChanges": [ { "asset": "USDC", "amount": "-100.00", "address": "0x..." } ] }, "warnings": [], "_meta": { "requestId": "uuid", "duration": 450 } }
Agent calls any paid endpoint Receives 402 Payment Required with Base Sepolia payment instructions Pays testnet USDC on Base Sepolia (chain ID: 84532) Retries request with payment proof header Gets security scan result Network: Base Sepolia (eip155:84532) Currency: Testnet USDC
const tokenCheck = await fetch402(`https://hackathon.aegis402.xyz/v1/check-token/${tokenAddress}?chain_id=8453`); const { isHoneypot, trustScore } = await tokenCheck.json(); if (isHoneypot || trustScore < 50) { console.log('โ ๏ธ Risky token detected!'); }
const simulation = await fetch402('https://hackathon.aegis402.xyz/v1/simulate-tx', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ from, to, value, data, chain_id: 8453 }) }); const { isSafe, riskLevel, warnings } = await simulation.json(); if (!isSafe || riskLevel === 'CRITICAL') { console.log('๐จ Dangerous transaction!', warnings); }
LevelMeaningSAFENo issues detectedLOWMinor concerns, generally safeMEDIUMSome risks, proceed with cautionHIGHSignificant risks detectedCRITICALDo not proceed
ChainIDcheck-tokencheck-addresssimulate-txEthereum1โ โ โ Base8453โ โ โ Polygon137โ โ โ Arbitrum42161โ โ โ Optimism10โ โ โ BSC56โ โ โ
curl https://hackathon.aegis402.xyz/health
Hackathon API: https://hackathon.aegis402.xyz Production API: https://aegis402.xyz GitHub: https://github.com/SwiftAdviser/aegis-402-shield-protocol x402 Protocol: https://docs.x402.org ๐ก๏ธ Built for the Agentic Economy. Powered by x402 Protocol.
Identity, auth, scanning, governance, audit, and operational guardrails.
Largest current source with strong distribution and engagement signals.