/delegate & /validate v4 Spec - Receipts & External Proofs
Scope: This page describes Bardiel’s v4 layer on top of Cortensor’s /delegate and /validate (and future factcheck) endpoints.
The router’s public endpoints stay at v3; Bardiel v4 adds receipts and externally checkable decision objects on top.
Bardiel v3 already consumes Cortensor v3 endpoints with explicit redundancy and consensus. Bardiel v4 answers the next question:
How can ACP, ERC-8004 markets, and other agents prove later what happened, without re-running everything?
The answer is receipts: compact, signed summaries of Bardiel’s decisions that point back to the underlying Cortensor runs.
1. Goal
v4 adds a receipt layer on top of v3 consensus:
Every
/delegateor/validatecall can produce a receipt.The receipt:
captures what was asked, what Bardiel decided, and how consensus was formed,
references Cortensor sessions and tasks used for the decision,
can be stored, shared, or verified later.
Think of v4 as:
Agent-ready receipts: stable, externally referenceable summaries of Bardiel’s verdicts, backed by v3 consensus metadata and Cortensor traces.
The core router behavior (v3 redundancy + consensus) does not change; v4 is a Bardiel-side contract layered on top.
2. v3 vs v4 – Mental Model (Bardiel Perspective)
v3 (today – consensus, but inline)
With v3:
Bardiel calls router
/api/v3/delegateor/api/v3/validatewith:v2-style payloads (
objective/input/execution/policyorclaim/policy/context),a
consensusblock (replicas 1/3/5, session pool, aggregation, disagreement policy).
The router returns:
a final answer or verdict,
a
consensusblock (replicas, agreement, verdicts, confidence).
Bardiel v3 turns that into:
status(VALID,INVALID,RETRY,NEEDS_SPEC, etc.),confidence,evidence(summarized trust signals),
but the full story is inline and ephemeral: it lives in logs and traces, not in a portable, stable object.
v4 (this spec – receipts on top of consensus)
With v4:
Bardiel still calls router v3 under the hood.
For any delegation, validation, or arbitration call, the caller can ask Bardiel to issue a receipt.
Bardiel:
runs the v3 flow,
derives a verdict,
builds a Receipt Object:
stable fields,
hashes of inputs and outputs,
policy and consensus snapshots,
references to Cortensor sessions and tasks,
a Bardiel-side identifier and optional signature.
ACP, Virtual agents, and ERC-8004 markets can:
store
receipt_id,later fetch or verify the receipt,
use the receipt as the record of decision without re-running the workload.
v3 answers “what did we decide and how strong was consensus right now?” v4 adds: “give me something I can point to later as evidence of that decision.”
3. Request Shape – Asking Bardiel for a Receipt
v4 extends Bardiel’s Agent Surfaces envelope (mode/task/policy/context/metadata) with a receipt block.
3.1 Bardiel v4 Request (Conceptual)
Example shape for any Bardiel call (delegation, validation, arbitration):
Fields
receipt.mode"none"– do not create a receipt (default for low-stakes flows)."inline"– create a receipt and return it embedded in the response."detached"– create a receipt, return onlyreceipt_idand minimal metadata.
receipt.includetoggles for what the receipt should contain:
consensus_snapshot– snapshot of router v3 consensus.policy_snapshot– snapshot of Bardiel policy tier and key knobs.input_hash/output_hash– hashes of inputs/outputs rather than full content.router_trace_refs– session IDs, task IDs, and router trace IDs.
receipt.ttlrequested retention window, for example
"7d","30d","90d".Actual retention is subject to Bardiel/Virtual policy (environment-dependent).
receipt.visibility"private"– visible only to the calling integration."shared"– intended to be shared with specific counterparties (for example, ACP buyer and seller)."public"– possible future mode for transparency dashboards or proof registries.
Bardiel treats receipt as a hint and may clamp TTL or visibility based on environment (testnet vs mainnet) and governance rules.
4. Response Shape – Bardiel Receipt Object
When receipt.mode is not "none", Bardiel return values include a Receipt Object.
4.1 Bardiel v4 Response (Conceptual)
Key Sections
receipt.receipt_idStable identifier for this Bardiel decision. ACP, Virtual agents, and ERC-8004 markets can store this as the decision handle.task_metaMinimal description of what was judged:type(for examplesummary,json_tool_call,trade_decision),input_hashandoutput_hash(rather than raw content).
decisionBardiel’s final verdict and timestamp:statusmirrors the top-levelstatus,confidencemirrors or refines the top-levelconfidence,reasonsprovide coarse-grained explanation.
policy_snapshotSnapshot of Bardiel-side policy:tier(fast,safe,oracle,adaptive),mapped consensus ask:
replicas,strategy.
consensus_snapshotDerived from router v3’sconsensusblock:replicas,agreement,verdicts,strategy,confidence.
cortensor_refsIDs for operator-level audits:sessions,tasks,router_trace_ids.
signingOptional cryptographic signature:issuer(for example,"bardiel"),signature_scheme,signature,optional
chain_anchorif receipts are later anchored on-chain.
ttlandvisibilityEffective retention and visibility after Bardiel applies its own limits.
5. Bardiel Receipt Lifecycle
v4 defines a simple lifecycle for receipts.
5.1 Steps
Decision Bardiel receives a v4 call, uses router v3 (
/delegateor/validatewithconsensus) to run the job, and arrives at astatus(VALID,INVALID, etc.) andconfidence.Receipt Construction If
receipt.modeis"inline"or"detached":build the Receipt Object (task meta, decision, policy snapshot, consensus snapshot, references),
sign it (optionally),
assign
receipt_id.
Return to Caller Response includes:
result and decision (as in Bardiel v3),
plus
receipt(inline) or at least{ "receipt_id": ... }(detached).
Lookup / Verification Bardiel exposes new v4-style endpoints (conceptual):
GET /api/v4/receipt/{receipt_id}– fetch receipt by ID (subject to visibility and TTL),POST /api/v4/verify_receipt– optional endpoint for schema and signature checks.
External systems (ACP, ERC-8004 registries, other agents) can:
re-fetch receipts,
compare
input_hashandoutput_hashto their own stored data,use
cortensor_refsandtrace_idfor joint debugging with infra operators.
Retention, access control, and verification rules are environment- and governance-dependent.
6. ACP & ERC-8004 Usage Patterns
6.1 ACP – Market-Level Receipts
For ACP, Bardiel receipts become the record of decision for jobs and disputes.
Job settlement
ACP stores
receipt_idwith each job.Buyers and sellers can view:
Bardiel’s verdict (
VALID,INVALID,RETRY,NEEDS_SPEC),policy and consensus snapshot (tier, replicas, agreement, confidence).
Disputes
Dispute tickets include one or more
receipt_ids.Escalations may trigger fresh Bardiel runs that generate new receipts.
ACP dashboards can show a decision timeline built from receipts:
when Bardiel was called,
how strong consensus was at each step,
final arbitration verdict.
6.2 ERC-8004 – On-Chain Friendly Evidence
For ERC-8004 agents and registries, receipts provide a bridge between off-chain validation and on-chain logic.
Registries and markets can:
store
receipt_idor a hash of the Receipt Object on-chain,refer to these receipts when resolving disputes or verifying agent behavior.
Bardiel can be configured as a validator/oracle where:
a claim is considered accepted only if:
statusisVALID,and the receipt meets policy and consensus requirements (for example,
tier = "oracle"andreplicas = 5).
Future work may align the Receipt Object with:
EIP-8183 and other validation artifact standards,
ERC-8004-specific off-chain evidence formats that agents and contracts can parse.
7. Backward Compatibility
Bardiel v4 is additive relative to v3:
Calls that omit the
receiptblock behave exactly like v3:no receipts are created,
responses remain
status/result/confidence/evidence/trace_id/bardiel_version.
Receipts are optional:
strongly recommended for higher-stakes ACP and ERC-8004 jobs,
not needed for low-risk or high-volume background tasks.
Within a given Bardiel major version:
The presence of
receiptis non-breaking.Clients that do not know about receipts can safely ignore the field.
receipt_idis stable for at least its configured TTL; behavior after TTL expiry is explicitly documented per environment.
8. Roadmap – From Consensus to Receipts and Beyond
Router v3 + Bardiel v3
Explicit redundancy and consensus at the endpoint layer.
Bardiel uses consensus metadata internally to decide when to trust, retry, or escalate.
Bardiel v4 (this spec)
Adds Receipts:
portable, referenceable summaries of Bardiel decisions,
pointers back to Cortensor sessions and tasks,
optional signatures and on-chain anchors.
Built for:
ACP markets needing auditable trust decisions,
ERC-8004 ecosystems needing compact, structured evidence.
Future (Bardiel v5+)
richer proof formats aligned with emerging EIPs and Virtual standards,
composable receipts (for entire trajectories or agent runs),
explicit receipt verification and publishing as first-class APIs,
optional public transparency layers (aggregated, anonymized receipt views).
For now, v4’s job is simple but important:
Turn Bardiel’s v3 consensus decisions into portable receipts that ACP, ERC-8004 markets, and other agents can store, inspect, and reference — without re-running the entire workload every time.
Last updated