A stateless, deterministic verifier for agent-to-agent settlement.
Designed for x402-compatible workflows β’ ERC-8004 aligned β’ MCP-compatible
Agent settlement breaks down when verification itself is ambiguous or implicitly trusted.
Given the same input, this verifier will always return the same result.
The verifier does not custody funds, maintain state, or make settlement decisions.
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.
SettlementWitness sits between execution and fund release, ensuring payments move only after verified delivery.
Shipped scope: compatibility positioning (text tiles). Logos can be added after permissions are confirmed.
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.
On-chain identity framework enabling portable agent reputations and trust records.
How it integrates: Identity proves who acted. SettlementWitness proves what was delivered.
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.
Wallet infrastructure purpose-built for autonomous agents to hold funds and transact independently.
How it integrates: Wallet-controlled funds release after SettlementWitness verification.
Note: Positioned as compatible / designed for (conceptual, architecturally aligned).
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.
Coming soon (preview only):
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 metadata is included for forward compatibility with agent-native payment flows. No payment is currently enforced.
SettlementWitness is available via MCP for agent-native workflows.
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.