Event Resolver X402 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Event Resolver X402 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Resolve real-world events for prediction market settlement. Aggregates data from multiple sources to determine if an event occurred, with confidence scores and source attribution.
| Endpoint | Method | Price | Description |
|---|---|---|---|
/api/resolve | POST | $0.005 | Full event resolution with confidence score and sources |
/api/verify | POST | $0.003 | Quick-verify a factual claim (true/false/unverifiable) |
/api/price-check | POST | $0.002 | Check if crypto price crossed a threshold |
curl -X POST https://event-resolver-production.up.railway.app/api/resolve \
-H "Content-Type: application/json" \
-d '{"question": "Did BTC reach $100K?", "type": "binary"}'Response:
{
"question": "Did BTC reach $100K?",
"resolved": true,
"outcome": "Yes",
"confidence": 95,
"sources": [
{
"name": "CoinGecko",
"url": "https://www.coingecko.com/en/coins/bitcoin",
"agrees": true
}
],
"timestamp": "2026-04-13T12:00:00.000Z",
"type": "binary"
}curl -X POST https://event-resolver-production.up.railway.app/api/verify \
-H "Content-Type: application/json" \
-d '{"claim": "Bitcoin is above $90,000"}'Response:
{
"claim": "Bitcoin is above $90,000",
"verdict": "true",
"confidence": 95,
"evidence": [
"bitcoin current price: $102,450 (via CoinGecko)",
"Threshold $90,000 above: crossed"
]
}curl -X POST https://event-resolver-production.up.railway.app/api/price-check \
-H "Content-Type: application/json" \
-d '{"asset": "bitcoin", "threshold": 100000, "direction": "above"}'Response:
{
"asset": "bitcoin",
"currentPrice": 102450.23,
"threshold": 100000,
"direction": "above",
"crossed": true,
"crossedAt": "2026-04-13T12:00:00.000Z",
"timestamp": "2026-04-13T12:00:00.000Z"
}Add to your Claude Desktop or Cursor config:
{
"mcpServers": {
"event-resolver": {
"url": "https://event-resolver-production.up.railway.app/sse"
}
}
}All endpoints use x402 protocol -- pay-per-call with USDC on Base L2. No API keys, no subscriptions. Your agent pays automatically.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.