Default Settlement Verifier

Version v1.1

A stateless, deterministic verifier for agent-to-agent settlement.

Designed for x402-compatible workflows β€’ ERC-8004 aligned β€’ MCP-compatible

Status: 🟒 Live & Persistent
Try Verification Endpoint View Documentation

What Problem This Solves

Agent settlement breaks down when verification itself is ambiguous or implicitly trusted.

Given the same input, this verifier will always return the same result.

How It Works

The verifier does not custody funds, maintain state, or make settlement decisions.

Integrations

SettlementWitness integrates across the autonomous agent stack to verify delivery before settlement.

Execution systems produce outputs. Identity systems attest actors. Payment systems move funds.

SettlementWitness closes the trust gap β€” issuing deterministic receipts that confirm whether delivery occurred before funds release.

No custody. No enforcement. Attestations only.

Execution β†’ Identity β†’ Payment β†’ Wallet β†’ Settlement β†’ Verification

SettlementWitness sits between execution and fund release, ensuring payments move only after verified delivery.

V1 Integrations

Shipped scope: compatibility positioning (text tiles). Logos can be added after permissions are confirmed.

Agent Execution Layer

OpenClaw

Autonomous agents execute tasks, deployments, and commerce workflows via OpenClaw.

How it integrates: SettlementWitness verifies task outputs before downstream actions β€” producing verifiable delivery receipts for agent work.

  • Code deployment verification
  • Task completion attestation
  • Agent-to-agent service validation
Agent Identity Standard

ERC-8004

On-chain identity framework enabling portable agent reputations and trust records.

How it integrates: Identity proves who acted. SettlementWitness proves what was delivered.

  • Reputation updates gated on verified work
  • Identity-linked delivery receipts
  • Cross-ecosystem trust portability
Machine Payment Infrastructure

x402 Payment Rails

HTTP-native payment rail enabling agents to transact via USDC and programmable payment flows.

How it integrates: Payments release only after PASS receipts β€” enabling delivery-gated machine commerce.

  • Pay-per-task agent services
  • API monetization with delivery verification
  • Autonomous service marketplaces
Agent Wallet Infrastructure

Coinbase Agent Wallets

Wallet infrastructure purpose-built for autonomous agents to hold funds and transact independently.

How it integrates: Wallet-controlled funds release after SettlementWitness verification.

  • Escrowless agent commerce
  • Autonomous service payments
  • Wallet-triggered settlement execution

Note: Positioned as compatible / designed for (conceptual, architecturally aligned).

Enterprise Payment Infrastructure

Stripe Machine Payments

API-native payment flows enabling developers to charge agents directly for services and compute usage.

How it integrates: SettlementWitness receipts gate payment settlement via machine payment flows.

  • Verified API billing
  • Delivery-gated compute payments
  • Enterprise agent service monetization

Expanding Ecosystem Support

Coming soon (preview only):

Compliance note: SettlementWitness provides verification attestations only. It does not custody funds, enforce settlements, or coordinate payments.

Verification Endpoint (Canonical)

This endpoint is live, deterministic, and safe to call directly from autonomous agents.

POST https://defaultverifier.com/verify
    
curl -X POST https://defaultverifier.com/verify \
-H "Content-Type: application/json" \
-d '{
  "task_id": "example-001",
  "spec": { "expected": "foo" },
  "output": { "result": "foo" }
}'
    
{
  "verdict": "PASS",
  "confidence": 1.0,
  "signature": "0x...",
  "fee_due": "0.001",
  "fee_enforced": false
}
    
Fee-aware, currently zero-enforced

Fee metadata is included for forward compatibility with agent-native payment flows. No payment is currently enforced.

MCP Access

SettlementWitness is available via MCP for agent-native workflows.

Standards & Compatibility

Trust & Neutrality

This verifier is intentionally simple, stateless, and neutral.

Can be used as a verification gate to prevent fraudulent or malicious agent settlements.

No hidden logic. No discretionary overrides. No privileged actors.