Skip to main content

dig_rpc_protocol/
types.rs

1//! Request/response wire types for every DIG-node RPC method.
2//!
3//! Each type is `serde`-derived and models a method's params or result
4//! field-for-field with the canonical implementation (the digstore `dig-node`
5//! crate). Fields that appear only in one profile or only on the first window of
6//! a paged stream are `Option` and doc-flagged.
7//!
8//! Hex-encoded identifiers (`store_id`, `root`, `retrieval_key`, `peer_id`) are
9//! carried as `String` on the wire — lower-case 64-hex — because the interface
10//! crate does no crypto and imposes no byte-array dependency. Callers validate
11//! length/charset at their boundary.
12//!
13//! # Two content profiles, one chunk type
14//!
15//! [`ContentChunk`] models both the node profile (`dig.getContent` on the local
16//! dig-node) and the network profile (`rpc.dig.net`). The network-profile-only
17//! fields — [`total_length`](ContentChunk::total_length),
18//! [`length`](ContentChunk::length), [`program_hash`](ContentChunk::program_hash),
19//! [`offset`](ContentChunk::offset) — are `Option` so one type serves both
20//! surfaces with no silent split.
21
22use serde::{Deserialize, Serialize};
23
24/// A lower-case 64-hex identifier on the wire (e.g. a `store_id`, `root`,
25/// `retrieval_key`, or `peer_id`). A type alias for documentation; validation is
26/// the boundary's job.
27pub type HexId = String;
28
29// ===========================================================================
30// Shared value objects
31// ===========================================================================
32
33/// A peer's dialable network endpoint.
34///
35/// IPv6-first per the ecosystem networking rule: an address list orders
36/// global-unicast IPv6 ahead of IPv4 fallback, and a wildcard bind
37/// (`[::]`/`0.0.0.0`) is never advertised.
38#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
39#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
40pub struct PeerAddress {
41    /// The host — an IPv6 or IPv4 literal (never a wildcard).
42    pub host: String,
43    /// The TCP port.
44    pub port: u16,
45    /// How the address was discovered: `direct`, `reflexive`, `mapped`, or
46    /// `relay`.
47    pub kind: String,
48}
49
50/// A content provider: a holder's stable `peer_id` plus its candidate addresses.
51///
52/// The address list is byte-compatible with [`dig.getPeers`](crate::method::Method::GetPeers)
53/// and the DHT provider shape.
54#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
55#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
56pub struct Provider {
57    /// The holder's stable `peer_id` = `SHA-256(TLS SPKI DER)`, 64-hex.
58    pub peer_id: HexId,
59    /// The holder's candidate addresses (IPv6-first).
60    pub addresses: Vec<PeerAddress>,
61}
62
63/// The content item a redirect points at: `store_id` [+ `root` [+
64/// `retrieval_key`]], each lower-case 64-hex — the exact item to re-request.
65#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
66#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
67pub struct ContentRef {
68    /// The store launcher id (always present).
69    pub store_id: HexId,
70    /// The generation root (present for capsule/resource granularity).
71    #[serde(skip_serializing_if = "Option::is_none", default)]
72    pub root: Option<HexId>,
73    /// The resource retrieval key (present for resource granularity).
74    #[serde(skip_serializing_if = "Option::is_none", default)]
75    pub retrieval_key: Option<HexId>,
76}
77
78/// The `error.data.redirect` payload of a
79/// [`ContentRedirect`](crate::error::ErrorCode::ContentRedirect) (`-32008`).
80///
81/// The node does not hold the content but located peers that do; the caller
82/// re-requests against one of `providers`, echoing `redirect_depth` in its
83/// params so the hop budget stays bounded (stop at `max_redirects`).
84#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
85#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
86pub struct RedirectInfo {
87    /// The content the caller should re-request.
88    pub content: ContentRef,
89    /// The holders (peer_id + candidate addresses) to re-request against.
90    pub providers: Vec<Provider>,
91    /// The hop count the caller must echo on its re-request.
92    pub redirect_depth: u64,
93    /// The redirect budget — stop redirecting when `redirect_depth` reaches this.
94    pub max_redirects: u64,
95}
96
97// ===========================================================================
98// dig.getContent  (PUBLIC-READ, also peer-reachable)
99// ===========================================================================
100
101/// Params for [`dig.getContent`](crate::method::Method::GetContent) — a verified
102/// resource-window read.
103#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
104#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
105pub struct GetContentParams {
106    /// The CHIP-0035 singleton launcher id (64-hex).
107    pub store_id: HexId,
108    /// `SHA-256(urn)` — the only URN-derived value sent to a node (64-hex).
109    pub retrieval_key: HexId,
110    /// The generation root (64-hex). Empty / `"latest"` / absent ⇒ resolve the
111    /// chain tip.
112    #[serde(skip_serializing_if = "Option::is_none", default)]
113    pub root: Option<HexId>,
114    /// The window start offset (default 0).
115    #[serde(skip_serializing_if = "Option::is_none", default)]
116    pub offset: Option<u64>,
117    /// Retrieval mode: `"speed"` (default) or `"privacy"` (onion — target).
118    #[serde(skip_serializing_if = "Option::is_none", default)]
119    pub mode: Option<String>,
120    /// The redirect budget already consumed (echoed from a `-32008` redirect).
121    #[serde(skip_serializing_if = "Option::is_none", default)]
122    pub redirect_depth: Option<u64>,
123}
124
125/// One window of a resource's ciphertext — the chunk wire object.
126///
127/// Serves BOTH the node profile (`dig.getContent` on the local dig-node) and the
128/// network profile (`rpc.dig.net`). Node-profile responses omit the
129/// network-profile-only fields; the doc on each field says which profile
130/// populates it.
131#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
132#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
133pub struct ContentChunk {
134    /// This window's bytes, base64. Both profiles.
135    pub ciphertext: String,
136    /// The resolved generation root (64-hex). Both profiles.
137    pub root: HexId,
138    /// Whether this window ends the resource. Both profiles.
139    pub complete: bool,
140    /// The next offset; present iff not complete. Both profiles.
141    #[serde(skip_serializing_if = "Option::is_none", default)]
142    pub next_offset: Option<u64>,
143    /// Whole-resource merkle proof, base64. First window only (`offset == 0`).
144    /// Both profiles.
145    #[serde(skip_serializing_if = "Option::is_none", default)]
146    pub inclusion_proof: Option<String>,
147    /// Per-chunk ciphertext lengths of the full resource. First window only;
148    /// empty ⇒ single chunk. Both profiles.
149    #[serde(skip_serializing_if = "Option::is_none", default)]
150    pub chunk_lens: Option<Vec<u64>>,
151    /// Where the window was served from: `"local"` (this device's cache) or
152    /// `"remote"` (freshly fetched). **Node profile only** — additive tag the
153    /// in-process node sets; absent on the network profile.
154    #[serde(skip_serializing_if = "Option::is_none", default)]
155    pub source: Option<String>,
156    /// The full resource ciphertext length (pre-windowing). **Network profile
157    /// only.**
158    #[serde(skip_serializing_if = "Option::is_none", default)]
159    pub total_length: Option<u64>,
160    /// This window's byte length. **Network profile only** (the node profile's
161    /// length is implicit in `ciphertext`).
162    #[serde(skip_serializing_if = "Option::is_none", default)]
163    pub length: Option<u64>,
164    /// The window start offset (echoed). **Network profile only.**
165    #[serde(skip_serializing_if = "Option::is_none", default)]
166    pub offset: Option<u64>,
167    /// `SHA-256(.dig bytes)` — the on-chain program identity (64-hex).
168    /// **Network profile only.**
169    #[serde(skip_serializing_if = "Option::is_none", default)]
170    pub program_hash: Option<HexId>,
171}
172
173// ===========================================================================
174// dig.getAnchoredRoot  (PUBLIC-READ, also peer-reachable)
175// ===========================================================================
176
177/// Params for [`dig.getAnchoredRoot`](crate::method::Method::GetAnchoredRoot).
178#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
179#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
180pub struct GetAnchoredRootParams {
181    /// The store launcher id (64-hex).
182    pub store_id: HexId,
183}
184
185/// Result for [`dig.getAnchoredRoot`](crate::method::Method::GetAnchoredRoot) —
186/// the store's current chain-anchored tip root.
187#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
188#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
189pub struct AnchoredRoot {
190    /// The store launcher id (echoed, 64-hex).
191    pub store_id: HexId,
192    /// The chain-anchored tip root (64-hex).
193    pub root: HexId,
194}
195
196// ===========================================================================
197// dig.getCollection / dig.listCollectionItems  (PUBLIC-READ, also peer)
198// ===========================================================================
199
200/// Params for [`dig.getCollection`](crate::method::Method::GetCollection).
201#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
202#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
203pub struct GetCollectionParams {
204    /// The NFT launcher ids to resolve. Capped at 10,000 (over-cap ⇒ `-32602`).
205    pub launcher_ids: Vec<HexId>,
206    /// The optional collection creator DID (64-hex).
207    #[serde(skip_serializing_if = "Option::is_none", default)]
208    pub did: Option<HexId>,
209}
210
211/// Result for [`dig.getCollection`](crate::method::Method::GetCollection) —
212/// collection-level facts computed from DIG's own coinset data.
213#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
214#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
215pub struct Collection {
216    /// The resolved creator DID (64-hex), if any.
217    #[serde(skip_serializing_if = "Option::is_none", default)]
218    pub did: Option<HexId>,
219    /// The DID declared by the caller / metadata (64-hex), if any.
220    #[serde(skip_serializing_if = "Option::is_none", default)]
221    pub declared_did: Option<HexId>,
222    /// The number of launcher ids requested.
223    pub item_count: u64,
224    /// How many resolved to live NFTs.
225    pub resolved_count: u64,
226    /// The uniform royalty in basis points, if resolvable.
227    #[serde(skip_serializing_if = "Option::is_none", default)]
228    pub royalty_basis_points: Option<u64>,
229}
230
231/// Params for
232/// [`dig.listCollectionItems`](crate::method::Method::ListCollectionItems).
233#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
234#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
235pub struct ListCollectionItemsParams {
236    /// The NFT launcher ids. Capped at 10,000 (over-cap ⇒ `-32602`).
237    pub launcher_ids: Vec<HexId>,
238    /// Page start (default 0).
239    #[serde(skip_serializing_if = "Option::is_none", default)]
240    pub offset: Option<u64>,
241    /// Page size (default 50, capped at 200).
242    #[serde(skip_serializing_if = "Option::is_none", default)]
243    pub limit: Option<u64>,
244}
245
246/// CHIP-0007 NFT metadata for one collection item.
247#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, Default)]
248#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
249pub struct NftMetadata {
250    /// Edition ordinal, if any.
251    #[serde(skip_serializing_if = "Option::is_none", default)]
252    pub edition_number: Option<u64>,
253    /// Edition total, if any.
254    #[serde(skip_serializing_if = "Option::is_none", default)]
255    pub edition_total: Option<u64>,
256    /// Data URIs.
257    #[serde(default)]
258    pub data_uris: Vec<String>,
259    /// `SHA-256` of the data (64-hex), if any.
260    #[serde(skip_serializing_if = "Option::is_none", default)]
261    pub data_hash: Option<HexId>,
262    /// Metadata URIs.
263    #[serde(default)]
264    pub metadata_uris: Vec<String>,
265    /// `SHA-256` of the metadata document (64-hex), if any.
266    #[serde(skip_serializing_if = "Option::is_none", default)]
267    pub metadata_hash: Option<HexId>,
268    /// License URIs.
269    #[serde(default)]
270    pub license_uris: Vec<String>,
271    /// `SHA-256` of the license (64-hex), if any.
272    #[serde(skip_serializing_if = "Option::is_none", default)]
273    pub license_hash: Option<HexId>,
274}
275
276/// One resolved collection item — its current on-chain owner, royalty, and
277/// CHIP-0007 metadata.
278#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
279#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
280pub struct CollectionItem {
281    /// The NFT launcher id (64-hex).
282    pub launcher_id: HexId,
283    /// The current coin id (64-hex).
284    pub coin_id: HexId,
285    /// The current owner DID (64-hex), if any.
286    #[serde(skip_serializing_if = "Option::is_none", default)]
287    pub owner_did: Option<HexId>,
288    /// The royalty puzzle hash (64-hex).
289    pub royalty_puzzle_hash: HexId,
290    /// The royalty in basis points.
291    pub royalty_basis_points: u64,
292    /// The current owner puzzle hash (64-hex).
293    pub owner_puzzle_hash: HexId,
294    /// The CHIP-0007 metadata, if resolvable.
295    #[serde(skip_serializing_if = "Option::is_none", default)]
296    pub metadata: Option<NftMetadata>,
297}
298
299/// Result for
300/// [`dig.listCollectionItems`](crate::method::Method::ListCollectionItems) — a
301/// page of resolved items.
302#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
303#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
304pub struct CollectionItemsPage {
305    /// This page's items.
306    pub items: Vec<CollectionItem>,
307    /// The page start (echoed).
308    pub offset: u64,
309    /// The page size (echoed).
310    pub limit: u64,
311    /// The total item count across the whole (capped) launcher set.
312    pub total: u64,
313    /// The next page's offset, or `null` when exhausted.
314    #[serde(skip_serializing_if = "Option::is_none", default)]
315    pub next_offset: Option<u64>,
316}
317
318// ===========================================================================
319// dig.getNetworkInfo  (PEER)
320// ===========================================================================
321
322/// The node's relay reservation posture.
323#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
324#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
325pub struct RelayStatus {
326    /// The relay endpoint URL (e.g. `wss://relay.dig.net:443`).
327    pub url: String,
328    /// Whether a relay reservation is currently held.
329    pub reserved: bool,
330}
331
332/// Result for [`dig.getNetworkInfo`](crate::method::Method::GetNetworkInfo) —
333/// this node's own peer-network posture.
334#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
335#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
336pub struct NetworkInfo {
337    /// This node's stable `peer_id` = `SHA-256(TLS SPKI DER)` (64-hex), or
338    /// `null` when no identity is configured.
339    #[serde(skip_serializing_if = "Option::is_none", default)]
340    pub peer_id: Option<HexId>,
341    /// The DIG network id (e.g. `DIG_MAINNET`).
342    pub network_id: String,
343    /// The first advertised (dialable) candidate address, `host:port`.
344    pub listen_addr: String,
345    /// The STUN-discovered reflexive address, if known.
346    #[serde(skip_serializing_if = "Option::is_none", default)]
347    pub reflexive_addr: Option<String>,
348    /// All advertised candidate addresses (IPv6-first).
349    pub candidate_addresses: Vec<String>,
350    /// Reachability posture: `"direct"` or `"relayed"`.
351    pub reachability: String,
352    /// The relay reservation posture.
353    pub relay: RelayStatus,
354}
355
356// ===========================================================================
357// dig.getPeers  (PEER)
358// ===========================================================================
359
360/// Result for [`dig.getPeers`](crate::method::Method::GetPeers) — the peers this
361/// node currently knows (peer exchange over RPC).
362#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
363#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
364pub struct PeersList {
365    /// The known peers (peer_id + candidate addresses).
366    pub peers: Vec<Provider>,
367}
368
369// ===========================================================================
370// dig.announce  (PEER)
371// ===========================================================================
372
373/// Params for [`dig.announce`](crate::method::Method::Announce).
374#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
375#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
376pub struct AnnounceParams {
377    /// The announcing peer's `peer_id` (64-hex).
378    pub peer_id: HexId,
379    /// The announcing peer's candidate addresses.
380    pub addresses: Vec<PeerAddress>,
381}
382
383/// Result for [`dig.announce`](crate::method::Method::Announce).
384#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
385#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
386pub struct AnnounceAck {
387    /// Whether the announcement was accepted.
388    pub accepted: bool,
389    /// How many peers this node now knows.
390    pub known_peers: u64,
391}
392
393// ===========================================================================
394// dig.getAvailability  (PEER)
395// ===========================================================================
396
397/// One availability query item. Granularity is inferred from which fields are
398/// present: `store_id` only ⇒ which roots are held; `+root` ⇒ a capsule; `+root
399/// +retrieval_key` ⇒ a resource.
400#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
401#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
402pub struct AvailabilityQuery {
403    /// The store launcher id (64-hex, required).
404    pub store_id: HexId,
405    /// The generation root (64-hex), for capsule/resource granularity.
406    #[serde(skip_serializing_if = "Option::is_none", default)]
407    pub root: Option<HexId>,
408    /// The resource retrieval key (64-hex), for resource granularity.
409    #[serde(skip_serializing_if = "Option::is_none", default)]
410    pub retrieval_key: Option<HexId>,
411}
412
413/// Params for [`dig.getAvailability`](crate::method::Method::GetAvailability).
414///
415/// # Construction
416///
417/// Like [`FetchRangeParams`], this type is `#[non_exhaustive]`: build it with
418/// [`new`](Self::new) plus the `with_*` setters rather than a struct literal, so a
419/// future additive field is a PATCH for every consumer instead of a semver cascade.
420#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
421#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
422#[non_exhaustive]
423pub struct GetAvailabilityParams {
424    /// The items to check. Capped at 512 per batch (past-cap items are dropped).
425    pub items: Vec<AvailabilityQuery>,
426    /// The hop budget already consumed by this ask. Absent means zero — read it
427    /// through [`hops_consumed`](Self::hops_consumed), never directly.
428    ///
429    /// # What it means for an availability ask
430    ///
431    /// An availability answer is not only *this* node's holdings: on a miss it may
432    /// name the holders it located, in
433    /// [`AvailabilityAnswer::providers`](AvailabilityAnswer::providers) — the same
434    /// enrichment a [`RedirectInfo`] carries. A responder that cannot answer from
435    /// what it holds MAY ask its own peers, so one caller's question can walk
436    /// several hops, and each hop is a node spending someone else's bandwidth.
437    /// This field is what bounds that walk.
438    ///
439    /// It is the SAME budget, counted the SAME way, as
440    /// [`RedirectInfo::redirect_depth`] and as the `redirect_depth` that
441    /// [`GetContentParams`] and [`FetchRangeParams`] already echo: the number of
442    /// hops ALREADY CONSUMED when this ask arrives, counting UP from zero — never a
443    /// remaining allowance counting down. A responder that asks onward sends
444    /// `hops_consumed() + 1` (saturating at the type maximum), and MUST NOT ask
445    /// onward when that would reach the budget it advertises as
446    /// [`RedirectInfo::max_redirects`].
447    ///
448    /// Absent reads as a fresh, unhopped ask, so a client written before this field
449    /// existed is served unchanged.
450    #[serde(skip_serializing_if = "Option::is_none", default)]
451    pub redirect_depth: Option<u64>,
452    /// The wall-clock TIME this ask may still spend, in milliseconds. Absent means
453    /// unbudgeted — read it through [`budget_ms`](Self::budget_ms), never directly.
454    ///
455    /// # Why this is its OWN field and not the hop budget
456    ///
457    /// [`redirect_depth`](Self::redirect_depth) counts hops UP from zero toward a
458    /// ceiling; this counts milliseconds DOWN toward zero. The two move in opposite
459    /// directions along different axes, so one integer cannot carry both, and folding
460    /// them together would make "one more hop" and "more time" the same request.
461    ///
462    /// # The contract a relaying responder MUST honour
463    ///
464    /// A responder that asks its own peers onward MUST pass a value it has decremented
465    /// by the time it has itself already spent, and it MUST NOT grant a child less time
466    /// than the work it asks that child to do. Concretely: a parent that asks `n`
467    /// children SEQUENTIALLY must divide the remaining budget between them, and a
468    /// parent with less time left than one round trip needs MUST answer
469    /// [`ContentMissInconclusive`](crate::error::ErrorCode::ContentMissInconclusive)
470    /// rather than ask onward and then time out.
471    ///
472    /// This exists because the alternative is measurable: a FIXED per-ask bound with
473    /// sequential asks and a fan-out greater than one guarantees the second hop times
474    /// out, and a responder that reads that timeout as a miss reports a CONFIDENT
475    /// not-found for content it never looked for.
476    ///
477    /// Absent reads as unbudgeted, so a client written before this field existed is
478    /// served exactly as it was.
479    #[serde(skip_serializing_if = "Option::is_none", default)]
480    pub budget_ms: Option<u64>,
481    /// An opaque identity for this ask, for cross-path dedup. Absent means the caller
482    /// opted out of dedup — read it through [`ask_id`](Self::ask_id).
483    ///
484    /// # What it is for
485    ///
486    /// A recursive ask walks a graph, not a tree. Two disjoint paths can arrive at the
487    /// same responder, and without a shared identity that responder cannot tell a
488    /// re-walk from a fresh question — so a diamond in the peer graph does not
489    /// terminate. A responder that has already seen an `ask_id` MUST answer from what
490    /// it already knows instead of asking onward again.
491    ///
492    /// # What it is NOT
493    ///
494    /// It is **not** the JSON-RPC `id`. That field correlates one request with one
495    /// response on one connection; it is chosen per-connection, is commonly a small
496    /// constant, and says nothing about whether two arrivals are the same ask. An
497    /// implementation that reused the JSON-RPC `id` for dedup would either collide
498    /// every unrelated ask together or dedup nothing at all.
499    ///
500    /// # Requirements
501    ///
502    /// 32 lowercase hex characters: **16 unpredictable random bytes**, freshly drawn
503    /// by the ORIGINATOR and copied verbatim by every relaying hop. It MUST be
504    /// unpredictable, because a value an attacker can guess lets that attacker
505    /// pre-poison a responder dedup memo and suppress an ask that has not happened
506    /// yet. A responder MUST NOT derive anything from its value beyond EQUALITY — it
507    /// carries no structure, no origin, no timestamp and no ordering.
508    #[serde(skip_serializing_if = "Option::is_none", default)]
509    pub ask_id: Option<String>,
510}
511
512impl GetAvailabilityParams {
513    /// An availability batch for `items`, asked at hop zero.
514    pub fn new(items: Vec<AvailabilityQuery>) -> Self {
515        GetAvailabilityParams {
516            items,
517            redirect_depth: None,
518            budget_ms: None,
519            ask_id: None,
520        }
521    }
522
523    /// Echo the hop budget already consumed — from a `-32008` redirect, or from the
524    /// ask this one is being made on behalf of. See
525    /// [`redirect_depth`](Self::redirect_depth).
526    pub fn with_redirect_depth(mut self, redirect_depth: u64) -> Self {
527        self.redirect_depth = Some(redirect_depth);
528        self
529    }
530
531    /// The hops already consumed by this ask.
532    ///
533    /// The single home for the "absent means zero" rule. A responder that reached for
534    /// `redirect_depth.is_some()` instead would read every pre-0.8 client's ask as
535    /// budget-free and forward it without bound — the amplification the budget exists
536    /// to stop.
537    pub fn hops_consumed(&self) -> u64 {
538        self.redirect_depth.unwrap_or(0)
539    }
540
541    /// Set the remaining time budget for this ask. See [`budget_ms`](Self::budget_ms).
542    pub fn with_budget_ms(mut self, budget_ms: u64) -> Self {
543        self.budget_ms = Some(budget_ms);
544        self
545    }
546
547    /// The time this ask may still spend, or `None` when the caller sent no budget.
548    ///
549    /// Deliberately NOT collapsed to a number, unlike
550    /// [`hops_consumed`](Self::hops_consumed): there is no safe scalar default. Zero
551    /// would refuse every older caller ask outright, and any positive default would
552    /// silently impose one node idea of patience on another node question. A responder
553    /// that receives `None` applies its OWN policy and passes on what it granted.
554    pub fn budget_ms(&self) -> Option<u64> {
555        self.budget_ms
556    }
557
558    /// Set the cross-path dedup identity. See [`ask_id`](Self::ask_id).
559    pub fn with_ask_id(mut self, ask_id: impl Into<String>) -> Self {
560        self.ask_id = Some(ask_id.into());
561        self
562    }
563
564    /// The dedup identity, or `None` when the caller opted out of dedup.
565    pub fn ask_id(&self) -> Option<&str> {
566        self.ask_id.as_deref()
567    }
568}
569
570/// One availability answer. Only the fields relevant to the query's granularity
571/// are populated.
572#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, Default)]
573#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
574pub struct AvailabilityAnswer {
575    /// Whether this node holds the queried item.
576    pub available: bool,
577    /// The roots held (store-granularity queries only).
578    #[serde(skip_serializing_if = "Option::is_none", default)]
579    pub roots: Option<Vec<HexId>>,
580    /// The full resource ciphertext length (resource-granularity only).
581    #[serde(skip_serializing_if = "Option::is_none", default)]
582    pub total_length: Option<u64>,
583    /// The chunk count (resource-granularity only).
584    #[serde(skip_serializing_if = "Option::is_none", default)]
585    pub chunk_count: Option<u64>,
586    /// Whether the whole item is held (root/resource-granularity only).
587    #[serde(skip_serializing_if = "Option::is_none", default)]
588    pub complete: Option<bool>,
589    /// Providers that hold the item — present on a miss when holders were
590    /// located (enriched answer).
591    #[serde(skip_serializing_if = "Option::is_none", default)]
592    pub providers: Option<Vec<Provider>>,
593    /// Whether this responder actually ESTABLISHED that nobody holds the item.
594    ///
595    /// Only meaningful beside `available: false`; on a hit the item is held and there
596    /// is nothing to establish.
597    ///
598    /// # Absent is a THIRD state, not `false`
599    ///
600    /// - `Some(true)` — the responder looked, reached everything it meant to reach,
601    ///   and asserts absence. A client MAY stop searching.
602    /// - `Some(false)` — the responder looked and could NOT establish absence: a hop
603    ///   timed out, was unreachable, or refused uninformatively. A client MUST keep
604    ///   looking. This is the in-band form of
605    ///   [`ContentMissInconclusive`](crate::error::ErrorCode::ContentMissInconclusive),
606    ///   for a batch where only SOME items were inconclusive and the call itself
607    ///   therefore succeeded.
608    /// - `None` — the responder predates this field and makes NO claim either way.
609    ///   It is NOT `Some(false)`: `Some(false)` is a responder telling you its search
610    ///   was incomplete, while `None` is a responder that cannot describe its search at
611    ///   all. Conflating them lets an older server every miss be read as a positive
612    ///   report of incompleteness; conflating it the other way (`unwrap_or(true)`)
613    ///   turns an unknown into an assertion of absence. Read it through
614    ///   [`absence_established_or_unknown`](AvailabilityAnswer::absence_established_or_unknown),
615    ///   which keeps the three states distinct.
616    #[serde(skip_serializing_if = "Option::is_none", default)]
617    pub absence_established: Option<bool>,
618}
619
620impl AvailabilityAnswer {
621    /// Whether absence was established, as a THREE-state answer: `Some(true)`
622    /// asserted, `Some(false)` explicitly not established, `None` unknown because the
623    /// responder predates the field.
624    ///
625    /// A pass-through, and that is the point — it is the named home for the rule that
626    /// there is no safe collapse to `bool`. A client that wants to stop searching MUST
627    /// require `Some(true)`.
628    pub fn absence_established_or_unknown(&self) -> Option<bool> {
629        self.absence_established
630    }
631}
632
633/// Result for [`dig.getAvailability`](crate::method::Method::GetAvailability) —
634/// one answer per query item, in order.
635#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
636#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
637pub struct AvailabilityBatch {
638    /// The per-item answers (index-aligned to the query items served).
639    pub items: Vec<AvailabilityAnswer>,
640}
641
642// ===========================================================================
643// dig.listInventory  (PEER)
644// ===========================================================================
645
646/// Params for [`dig.listInventory`](crate::method::Method::ListInventory).
647#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
648#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
649pub struct ListInventoryParams {
650    /// The store to list roots for (64-hex). Absent ⇒ list all stores served.
651    #[serde(skip_serializing_if = "Option::is_none", default)]
652    pub store_id: Option<HexId>,
653    /// The maximum number of entries to return.
654    #[serde(skip_serializing_if = "Option::is_none", default)]
655    pub limit: Option<u64>,
656}
657
658/// Result for [`dig.listInventory`](crate::method::Method::ListInventory).
659///
660/// With a `store_id` the node returns the roots it holds for that store; without
661/// one it returns the stores it serves. `#[serde(untagged)]` keeps the wire flat
662/// (`{"roots": …}` or `{"stores": …}`).
663#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
664#[serde(untagged)]
665#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
666pub enum Inventory {
667    /// The roots held for a specific store.
668    ForStore {
669        /// The store launcher id (echoed, 64-hex).
670        store_id: HexId,
671        /// The roots this node holds for the store.
672        roots: Vec<HexId>,
673    },
674    /// The stores this node serves (no `store_id` given).
675    AllStores {
676        /// The store launcher ids served.
677        stores: Vec<HexId>,
678    },
679}
680
681// ===========================================================================
682// dig.fetchRange  (PEER)
683// ===========================================================================
684
685/// Params for [`dig.fetchRange`](crate::method::Method::FetchRange) — a single
686/// range frame of a resource this node holds.
687///
688/// # Construction
689///
690/// Like [`RangeFrame`], this type is `#[non_exhaustive]`: build it with
691/// [`resource`](Self::resource) plus the `with_*` setters rather than a struct
692/// literal, so a future additive field is a PATCH for every consumer instead of a
693/// semver cascade.
694///
695/// # Cross-repo contract
696///
697/// [`skip_layout`](Self::skip_layout) is byte-identical to
698/// `dig_nat::mux::RangeRequest::skip_layout`, pinned in
699/// `tests/nat_wire_mirror.rs`. The two enclosing types deliberately differ in every
700/// other respect — dig-nat's `RangeRequest` is a length-prefixed stream preamble,
701/// this is a JSON-RPC params object with a `redirect_depth` dig-nat has no notion
702/// of — so the byte-identical contract here is the FIELD, not the object.
703#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
704#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
705#[non_exhaustive]
706pub struct FetchRangeParams {
707    /// The store launcher id (64-hex, required).
708    pub store_id: HexId,
709    /// The generation root (64-hex, required for a resource fetch).
710    pub root: HexId,
711    /// `SHA-256(urn)` (64-hex, required for a resource fetch).
712    pub retrieval_key: HexId,
713    /// The range start (default 0).
714    #[serde(skip_serializing_if = "Option::is_none", default)]
715    pub offset: Option<u64>,
716    /// The range length in bytes (> 0; clamped to the window cap).
717    pub length: u64,
718    /// Whole-capsule mode (default false). Capsule range fetch is not yet
719    /// served; a `true` here yields `-32004`.
720    #[serde(skip_serializing_if = "Option::is_none", default)]
721    pub capsule: Option<bool>,
722    /// The redirect budget already consumed (echoed from a `-32008` redirect).
723    #[serde(skip_serializing_if = "Option::is_none", default)]
724    pub redirect_depth: Option<u64>,
725    /// Suppress the resource-scaling layout metadata (`chunk_lens` +
726    /// `inclusion_proof`) on this stream's frames, because the client already holds
727    /// the commitment for this `root`.
728    ///
729    /// A client that has already read the layout once — a resumed download, a second
730    /// range of the same resource, a parallel fetch from another holder — does not
731    /// need it again, and re-sending it costs a whole paged prologue PER STREAM: a
732    /// 1,048,576-chunk layout is roughly 7.3 MB, which a 64-way parallel plan would
733    /// otherwise pay 64 times over. Suppressing it is the difference between a
734    /// bounded and an unbounded cost on the read path.
735    ///
736    /// Absent or `false` preserves the pre-0.6.0 behaviour, so an older holder that
737    /// ignores this field is never broken by it — it simply sends metadata the client
738    /// discards. Read the rule through
739    /// [`suppresses_layout`](Self::suppresses_layout) rather than re-deriving it.
740    ///
741    /// The fixed-size identity fields ([`root`](RangeFrame::root),
742    /// [`total_length`](RangeFrame::total_length),
743    /// [`chunk_count`](RangeFrame::chunk_count),
744    /// [`chunk_index`](RangeFrame::chunk_index)) are NOT suppressed: they are what
745    /// detects a wrong-generation holder on arrival, and a client that stopped
746    /// receiving them would lose that check on exactly the streams it fetches most.
747    #[serde(default, skip_serializing_if = "Option::is_none")]
748    pub skip_layout: Option<bool>,
749}
750
751impl FetchRangeParams {
752    /// A range request for one content resource: `length` bytes of
753    /// `retrieval_key`'s ciphertext at the generation `root`.
754    pub fn resource(
755        store_id: impl Into<HexId>,
756        root: impl Into<HexId>,
757        retrieval_key: impl Into<HexId>,
758        length: u64,
759    ) -> Self {
760        FetchRangeParams {
761            store_id: store_id.into(),
762            root: root.into(),
763            retrieval_key: retrieval_key.into(),
764            offset: None,
765            length,
766            capsule: None,
767            redirect_depth: None,
768            skip_layout: None,
769        }
770    }
771
772    /// Start the range at `offset` rather than at 0.
773    pub fn with_offset(mut self, offset: u64) -> Self {
774        self.offset = Some(offset);
775        self
776    }
777
778    /// Request whole-capsule mode. Capsule range fetch is not yet served — a `true`
779    /// here yields
780    /// [`ResourceUnavailable`](crate::error::ErrorCode::ResourceUnavailable).
781    pub fn with_capsule(mut self, capsule: bool) -> Self {
782        self.capsule = Some(capsule);
783        self
784    }
785
786    /// Echo the redirect budget already consumed, from a `-32008` redirect.
787    pub fn with_redirect_depth(mut self, redirect_depth: u64) -> Self {
788        self.redirect_depth = Some(redirect_depth);
789        self
790    }
791
792    /// Ask the holder to omit the resource-scaling layout metadata, because this
793    /// client already holds the commitment for this `root`. See
794    /// [`skip_layout`](Self::skip_layout).
795    pub fn with_skip_layout(mut self, skip_layout: bool) -> Self {
796        self.skip_layout = Some(skip_layout);
797        self
798    }
799
800    /// Whether this request suppresses the resource-scaling layout metadata.
801    ///
802    /// The single home for the "absent or `false` means SEND the layout" rule. A
803    /// serve path that reached for `skip_layout.is_some()` instead would suppress the
804    /// layout for a client that had explicitly asked for it — unrecoverable for that
805    /// client, since the layout is a decrypt input it cannot obtain any other way on
806    /// that stream.
807    pub fn suppresses_layout(&self) -> bool {
808        self.skip_layout.unwrap_or(false)
809    }
810}
811
812/// One range frame of a resource: a byte window, plus the per-resource
813/// verification metadata that makes the window independently checkable.
814///
815/// The metadata splits in two by whether it scales with the resource, and the
816/// split decides which frames carry it:
817///
818/// - **The identity set — [`root`](Self::root),
819///   [`total_length`](Self::total_length), [`chunk_count`](Self::chunk_count),
820///   plus [`chunk_index`](Self::chunk_index) when the window begins on a chunk
821///   boundary — rides EVERY frame.** It is fixed-size, so carrying it everywhere
822///   costs a bounded number of bytes, and it is what lets a client fetching in
823///   parallel from many holders reject a wrong-generation or wrong-layout source
824///   the moment a frame arrives, rather than after paying for the whole resource
825///   in bandwidth.
826/// - **The resource-scaling set — [`chunk_lens`](Self::chunk_lens) and
827///   [`inclusion_proof`](Self::inclusion_proof) — rides the first frame, or a
828///   paged prologue, once per range stream.** Repeating it per frame would cost
829///   proportionally to the resource against a frame budget with no slack; a layout
830///   too large to state on one frame is paged instead, each page stamped with the
831///   [`chunk_lens_offset`](Self::chunk_lens_offset) it begins at.
832///
833/// The window is exactly the span the caller requested — never widened.
834///
835/// # Construction
836///
837/// This type is [`#[non_exhaustive]`](https://doc.rust-lang.org/reference/attributes/type_system.html):
838/// build it with [`data`](Self::data) and the `with_*` setters rather than a struct
839/// literal. That is deliberate — the wire form grows as the protocol does, and
840/// routing construction through named setters means a future additive field is a
841/// PATCH release for every consumer instead of another semver cascade. It also
842/// makes the two frame shapes different call chains rather than one call with a
843/// pile of `None`s, so a continuation frame cannot accidentally claim a layout it
844/// is not stating.
845///
846/// # Cross-repo contract
847///
848/// The wire form is **byte-identical** to `dig_nat::mux::RangeFrame`, the
849/// streaming implementation of this frame (`SYSTEM.md` → "Canonical DIG-node RPC
850/// interface"). Field names, encodings, and the population rule above are pinned
851/// against dig-nat's actual output in `tests/nat_wire_mirror.rs`; a change to any
852/// of them lands in both crates in the same unit of work or not at all.
853#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
854#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
855#[non_exhaustive]
856pub struct RangeFrame {
857    /// The window start offset (echoed).
858    pub offset: u64,
859    /// This window's byte length.
860    pub length: u64,
861    /// This window's ciphertext, base64.
862    pub bytes: String,
863    /// Whether this frame ends the resource.
864    pub complete: bool,
865    /// The full resource ciphertext length. Part of the fixed-size **identity
866    /// set**, so it rides EVERY frame.
867    #[serde(skip_serializing_if = "Option::is_none", default)]
868    pub total_length: Option<u64>,
869    /// Per-chunk ciphertext lengths of the full resource, in order — the layout a
870    /// reader needs before it can decrypt (per-chunk AEAD needs the WHOLE array,
871    /// and a reader rejects an array whose sum differs from
872    /// [`total_length`](Self::total_length)).
873    ///
874    /// Resource-scaling, so it rides the first frame or a **paged prologue**, once
875    /// per range stream — never repeated on continuation frames. When paged, this
876    /// is one page of the array and
877    /// [`chunk_lens_offset`](Self::chunk_lens_offset) states the entry it begins
878    /// at.
879    #[serde(skip_serializing_if = "Option::is_none", default)]
880    pub chunk_lens: Option<Vec<u64>>,
881    /// This frame's first chunk index — the pre-existing alias of
882    /// [`first_chunk_index`](Self::first_chunk_index), carrying the same value, and
883    /// the name dig-nat emits.
884    ///
885    /// Part of the **identity set**: it rides every frame whose window begins on a
886    /// chunk boundary, and is OMITTED (rather than guessed) on a mid-chunk window.
887    /// Being fixed-size, it is settable on its own — see
888    /// [`with_chunk_index`](Self::with_chunk_index) — precisely so a continuation
889    /// frame can state it without dragging along the once-per-stream
890    /// [`inclusion_proof`](Self::inclusion_proof).
891    #[serde(skip_serializing_if = "Option::is_none", default)]
892    pub chunk_index: Option<u64>,
893    /// Whole-resource merkle proof against [`root`](Self::root), base64, relayed
894    /// verbatim.
895    ///
896    /// Resource-scaling, so it rides the first frame or the paged prologue, once
897    /// per range stream. A holder MUST NOT repeat it per frame: it is bounded at
898    /// 4,096 base64 bytes, which against the frame budget leaves no slack for the
899    /// payload the frame exists to carry.
900    #[serde(skip_serializing_if = "Option::is_none", default)]
901    pub inclusion_proof: Option<String>,
902    /// The chain-anchored root (64-hex) this frame's resource verified against.
903    /// Part of the fixed-size **identity set**, so it rides EVERY frame.
904    ///
905    /// NOT A TRUST ANCHOR BY ITSELF. The client resolves the resource's root from
906    /// the URN (chain-anchored) and PINS it before fetching; a peer-declared value
907    /// never replaces that pinned root. What this field provides is a
908    /// generation-CONSISTENCY check: a frame declaring a root other than the pinned
909    /// one is REJECTED and attributed to the offending peer (NC-9 fail-closed). So
910    /// a declared root can only ever cause rejection — it can never move the pinned
911    /// root, and never makes an unverified frame acceptable.
912    #[serde(skip_serializing_if = "Option::is_none", default)]
913    pub root: Option<HexId>,
914    /// **RESERVED — not currently derivable; a server MUST NOT emit it.**
915    ///
916    /// Per-chunk merkle inclusion proofs for the chunks a frame covers. No such
917    /// proof exists in the current store format: the generation root's merkle
918    /// leaves are per-RESOURCE (a leaf is the SHA-256 of a resource's WHOLE
919    /// ciphertext), so a single chunk has no leaf to prove. A client MUST NOT
920    /// require this field, and per-range verification instead uses the
921    /// whole-resource [`inclusion_proof`](Self::inclusion_proof) together with the
922    /// per-frame [`root`](Self::root)/[`chunk_lens`](Self::chunk_lens) metadata.
923    ///
924    /// Making it derivable requires a per-resource chunk-level commitment in the
925    /// store format first (tracked as `dig_ecosystem#1601`). The field is kept in
926    /// the wire type, unused, so populating it later is additive (§5.1); each entry
927    /// would be an opaque base64 proof blob, since this pure level-00 wire type
928    /// MUST NOT depend on the merkle primitive.
929    #[serde(skip_serializing_if = "Option::is_none", default)]
930    pub range_proof: Option<Vec<String>>,
931    /// The chunk index of the first chunk in this frame (0-based, into the
932    /// resource's chunk sequence described by [`chunk_lens`](Self::chunk_lens)).
933    ///
934    /// Present only when the frame's window begins EXACTLY on a chunk boundary; a
935    /// mid-chunk window omits it rather than assert an index the caller's own
936    /// alignment check would contradict. The served window is exactly the requested
937    /// span — a server MUST NOT widen a range to a chunk boundary — so a frame is
938    /// chunk-aligned only when the caller asked for an aligned span.
939    #[serde(skip_serializing_if = "Option::is_none", default)]
940    pub first_chunk_index: Option<u64>,
941    /// The resource's TOTAL chunk count — how many entries the fully reassembled
942    /// [`chunk_lens`](Self::chunk_lens) array has.
943    ///
944    /// Fixed-size, so it belongs to the **identity set** and rides EVERY frame.
945    /// Together with [`root`](Self::root) and
946    /// [`total_length`](Self::total_length) it is what lets a reader detect a
947    /// wrong-generation or wrong-layout holder on the first frame it receives. It is
948    /// also how a reader sizes the array it is paging in, and therefore how it knows
949    /// a **paged prologue** is complete: the prologue ends when the reader holds
950    /// `chunk_count` entries, which no single page can tell it.
951    #[serde(default, skip_serializing_if = "Option::is_none")]
952    pub chunk_count: Option<u64>,
953    /// The index into the resource's [`chunk_lens`](Self::chunk_lens) array at which
954    /// THIS frame's page begins — how a **paged prologue** is located and
955    /// reassembled.
956    ///
957    /// A resource whose layout exceeds the per-frame entry cap cannot state it on
958    /// one frame, so the sender pages it: successive frames each carry up to that
959    /// many entries, stamped with the offset they start at. A reader places each page
960    /// at its offset and holds the whole array once it has
961    /// [`chunk_count`](Self::chunk_count) entries.
962    ///
963    /// Absent means "this frame's `chunk_lens`, if any, begins at entry 0" — the
964    /// single-frame layout, which is the shape every pre-0.6.0 producer emits. So an
965    /// older frame decodes with exactly its original meaning (§5.1).
966    #[serde(default, skip_serializing_if = "Option::is_none")]
967    pub chunk_lens_offset: Option<u64>,
968}
969
970impl RangeFrame {
971    /// A **data frame**: `length` bytes of base64 ciphertext at `offset`, carrying
972    /// no metadata — the bare shape every continuation frame starts from.
973    ///
974    /// `length` is stated rather than derived because [`bytes`](Self::bytes) is
975    /// already base64 on this type, and recovering the raw window length from it
976    /// would need a base64 codec this pure level-00 wire crate deliberately does not
977    /// depend on. A serve path passes the length it served.
978    pub fn data(offset: u64, length: u64, bytes: impl Into<String>) -> Self {
979        RangeFrame {
980            offset,
981            length,
982            bytes: bytes.into(),
983            complete: false,
984            total_length: None,
985            chunk_lens: None,
986            chunk_index: None,
987            inclusion_proof: None,
988            root: None,
989            range_proof: None,
990            first_chunk_index: None,
991            chunk_count: None,
992            chunk_lens_offset: None,
993        }
994    }
995
996    /// Mark this as the final frame of the range.
997    pub fn with_complete(mut self, complete: bool) -> Self {
998        self.complete = complete;
999        self
1000    }
1001
1002    /// The fixed-size **identity set** every frame of a range carries: the
1003    /// generation `root` (64-hex) the range is served from, the resource's
1004    /// ciphertext `total_length`, and its `chunk_count`.
1005    ///
1006    /// These three are what let a reader reject a wrong-generation or wrong-layout
1007    /// holder the moment a frame arrives — which the resource-scaling metadata never
1008    /// could, since it arrives once. Call this on every frame.
1009    pub fn with_identity(
1010        mut self,
1011        root: impl Into<HexId>,
1012        total_length: u64,
1013        chunk_count: u64,
1014    ) -> Self {
1015        self.root = Some(root.into());
1016        self.total_length = Some(total_length);
1017        self.chunk_count = Some(chunk_count);
1018        self
1019    }
1020
1021    /// State [`chunk_index`](Self::chunk_index) — the chunk this frame's window
1022    /// begins on — for a chunk-aligned window.
1023    ///
1024    /// Separate from [`with_inclusion_proof`](Self::with_inclusion_proof) on purpose:
1025    /// the index is fixed-size identity metadata that rides every aligned frame,
1026    /// while the proof is once-per-stream, so binding them together would force a
1027    /// producer to either repeat a proof it MUST NOT repeat or bypass this API. Omit
1028    /// the call entirely for a mid-chunk window.
1029    pub fn with_chunk_index(mut self, chunk_index: u64) -> Self {
1030        self.chunk_index = Some(chunk_index);
1031        self
1032    }
1033
1034    /// Additionally state [`first_chunk_index`](Self::first_chunk_index), this
1035    /// crate's v0.4.0 alias of [`chunk_index`](Self::chunk_index).
1036    ///
1037    /// Both names carry the same value. dig-nat emits only `chunk_index`, so
1038    /// [`with_chunk_index`](Self::with_chunk_index) alone is the interoperable
1039    /// choice; a producer serving readers that expect the newer name states both.
1040    pub fn with_first_chunk_index(mut self, first_chunk_index: u64) -> Self {
1041        self.first_chunk_index = Some(first_chunk_index);
1042        self
1043    }
1044
1045    /// One page of the resource's `chunk_lens` array, beginning at entry
1046    /// `chunk_lens_offset`.
1047    ///
1048    /// Call it once with offset `0` for a layout that fits a single frame, or once
1049    /// per page of a **paged prologue**. A page is only ever useful as part of a
1050    /// complete set: `chunk_lens` is a decrypt input, and a reader needs all
1051    /// [`chunk_count`](Self::chunk_count) entries before it can decrypt anything.
1052    pub fn with_chunk_lens_page(mut self, chunk_lens_offset: u64, chunk_lens: Vec<u64>) -> Self {
1053        self.chunk_lens_offset = Some(chunk_lens_offset);
1054        self.chunk_lens = Some(chunk_lens);
1055        self
1056    }
1057
1058    /// The whole-resource merkle inclusion proof against
1059    /// [`root`](Self::root) (base64, relayed verbatim).
1060    ///
1061    /// Resource-scaling: state it on the first frame or the prologue, once per range
1062    /// stream, never per frame.
1063    pub fn with_inclusion_proof(mut self, inclusion_proof: impl Into<String>) -> Self {
1064        self.inclusion_proof = Some(inclusion_proof.into());
1065        self
1066    }
1067
1068    /// State the **RESERVED** [`range_proof`](Self::range_proof) field.
1069    ///
1070    /// A server MUST NOT emit it — no per-chunk proof is derivable from the current
1071    /// store format (see the field's own documentation). The setter exists so the
1072    /// shape stays constructible for the conformance vectors that pin it, and so no
1073    /// field of this `#[non_exhaustive]` type is unreachable; it is not a serve-path
1074    /// call.
1075    pub fn with_range_proof(mut self, range_proof: Vec<String>) -> Self {
1076        self.range_proof = Some(range_proof);
1077        self
1078    }
1079}
1080
1081// ===========================================================================
1082// dig.getModuleInfo / dig.fetchModuleRange  (PEER — whole-module pull, #1576)
1083// ===========================================================================
1084
1085/// Params for [`dig.getModuleInfo`](crate::method::Method::GetModuleInfo) — the
1086/// handshake a peer reads before range-pulling a whole `.dig` module for
1087/// `(store, root)`.
1088#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1089#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1090pub struct GetModuleInfoParams {
1091    /// The store launcher id (64-hex, required).
1092    pub store_id: HexId,
1093    /// The generation root whose `.dig` module is being pulled (64-hex, required).
1094    pub root: HexId,
1095}
1096
1097/// Result for [`dig.getModuleInfo`](crate::method::Method::GetModuleInfo) — the
1098/// transfer descriptor of a whole `.dig` module.
1099///
1100/// The whole-module blob is content-addressed + immutable (the `.dig` container
1101/// is byte-identical by construction). [`module_hash`](Self::module_hash) is the
1102/// content id of the assembled blob; a puller verifies each pulled range against
1103/// [`chunk_hashes`](Self::chunk_hashes) (per-peer attribution on a multi-source
1104/// pull) and the fully-assembled blob against `module_hash`, THEN verifies the
1105/// assembled module against its chain-anchored root before admitting + resharing
1106/// (NC-9 verified-content-not-safe-content).
1107#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1108#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1109pub struct ModuleInfo {
1110    /// The total byte length of the whole `.dig` module blob.
1111    pub total_size: u64,
1112    /// The content id of the fully-assembled module blob (64-hex `SHA-256` of the
1113    /// module bytes). The puller checks the assembled blob against this.
1114    pub module_hash: HexId,
1115    /// Per-chunk content hashes (64-hex each) in ascending chunk order, covering
1116    /// the blob in [`total_size`](Self::total_size)-spanning fixed-size chunks
1117    /// (the trailing chunk may be short). A puller checks each pulled
1118    /// [`RangeFrame`] against the covering entries for per-source attribution on a
1119    /// multi-source pull (a tampered range fails closed before assembly).
1120    pub chunk_hashes: Vec<HexId>,
1121    /// Per-chunk byte lengths (in the same order as [`chunk_hashes`](Self::chunk_hashes)).
1122    /// MUST have the same length as `chunk_hashes` and MUST sum to `total_size`.
1123    /// A puller uses these to map a fetched byte range to the covering chunk hash(es).
1124    pub chunk_lens: Vec<u64>,
1125}
1126
1127/// Params for [`dig.fetchModuleRange`](crate::method::Method::FetchModuleRange) —
1128/// a single range frame of the whole `.dig` module blob for `(store, root)`.
1129///
1130/// The response reuses [`RangeFrame`]: [`bytes`](RangeFrame::bytes) carries the
1131/// window of the module blob (base64), [`total_length`](RangeFrame::total_length)
1132/// echoes the whole-module size on the first frame, and
1133/// [`complete`](RangeFrame::complete) ends the stream.
1134#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1135#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1136pub struct FetchModuleRangeParams {
1137    /// The store launcher id (64-hex, required).
1138    pub store_id: HexId,
1139    /// The generation root whose `.dig` module is being pulled (64-hex, required).
1140    pub root: HexId,
1141    /// The range start into the module blob (default 0).
1142    #[serde(skip_serializing_if = "Option::is_none", default)]
1143    pub offset: Option<u64>,
1144    /// The range length in bytes (> 0; clamped to the window cap).
1145    pub length: u64,
1146}
1147
1148// ===========================================================================
1149// dig.stage  (CONTROL — loopback / in-process only)
1150// ===========================================================================
1151
1152/// Params for [`dig.stage`](crate::method::Method::Stage) — compile a local
1153/// folder into a capsule `.dig` module in-process.
1154#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
1155#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1156pub struct StageParams {
1157    /// The absolute path to the folder to compile.
1158    pub dir: String,
1159    /// The target store launcher id (64-hex). Absent ⇒ an ephemeral,
1160    /// content-derived id (a preview).
1161    #[serde(skip_serializing_if = "Option::is_none", default)]
1162    pub store_id: Option<HexId>,
1163    /// The store salt (64-hex). Present ⇒ a private store.
1164    #[serde(skip_serializing_if = "Option::is_none", default)]
1165    pub salt: Option<HexId>,
1166    /// Optional DIGHub-style manifest metadata to embed.
1167    #[serde(skip_serializing_if = "Option::is_none", default)]
1168    pub metadata: Option<serde_json::Value>,
1169}
1170
1171/// Result for [`dig.stage`](crate::method::Method::Stage) — the compiled capsule.
1172#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
1173#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1174pub struct StageResult {
1175    /// The canonical capsule identity, `storeId:rootHash`.
1176    pub capsule: String,
1177    /// The store launcher id (64-hex).
1178    pub store_id: HexId,
1179    /// The compiled generation root (64-hex).
1180    pub root: HexId,
1181    /// The filesystem path to the compiled `.dig` module.
1182    pub module_path: String,
1183    /// The module size in bytes.
1184    pub size: u64,
1185    /// The `chia://storeId:rootHash/` content address.
1186    #[serde(skip_serializing_if = "Option::is_none", default)]
1187    pub content_address: Option<String>,
1188    /// The relative paths compiled into the capsule.
1189    #[serde(default)]
1190    pub files: Vec<String>,
1191    /// Whether this is an ephemeral preview (not advancing a real store).
1192    #[serde(skip_serializing_if = "Option::is_none", default)]
1193    pub ephemeral: Option<bool>,
1194}
1195
1196// ===========================================================================
1197// cache.*  (CONTROL — loopback / in-process only)
1198// ===========================================================================
1199
1200/// Result for [`cache.getConfig`](crate::method::Method::CacheGetConfig).
1201///
1202/// The canonical field name for the cache path is `cache_dir` everywhere (the
1203/// shell's historical `dir` is unified onto this name).
1204#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1205#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1206pub struct CacheConfig {
1207    /// The on-disk cache size cap in bytes (floored at 64 MiB).
1208    pub cap_bytes: u64,
1209    /// The bytes currently used.
1210    pub used_bytes: u64,
1211    /// The effective resolved cache directory.
1212    pub cache_dir: String,
1213    /// Whether that directory is the canonical shared location (vs a
1214    /// process-private fallback).
1215    pub shared: bool,
1216}
1217
1218/// Params for [`cache.setCapBytes`](crate::method::Method::CacheSetCapBytes).
1219#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1220#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1221pub struct SetCapBytesParams {
1222    /// The requested cap in bytes (floored at 64 MiB by the node).
1223    pub cap_bytes: u64,
1224}
1225
1226/// Result for [`cache.setCapBytes`](crate::method::Method::CacheSetCapBytes).
1227#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1228#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1229pub struct SetCapBytesResult {
1230    /// The effective cap after flooring.
1231    pub cap_bytes: u64,
1232}
1233
1234/// One durable cached-module entry.
1235#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1236#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1237pub struct CachedCapsule {
1238    /// The canonical capsule identity, `storeId:rootHash`.
1239    pub capsule: String,
1240    /// The store launcher id (64-hex).
1241    pub store_id: HexId,
1242    /// The generation root (64-hex).
1243    pub root: HexId,
1244    /// The module size in bytes.
1245    pub size_bytes: u64,
1246    /// When the module was last used (unix ms).
1247    pub last_used_unix_ms: u64,
1248}
1249
1250/// Result for [`cache.listCached`](crate::method::Method::CacheListCached).
1251#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
1252#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1253pub struct CachedList {
1254    /// The cached capsules.
1255    pub cached: Vec<CachedCapsule>,
1256}
1257
1258/// Params for a capsule-keyed cache op
1259/// ([`cache.removeCached`](crate::method::Method::CacheRemoveCached),
1260/// [`cache.fetchAndCache`](crate::method::Method::CacheFetchAndCache)).
1261#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1262#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1263pub struct CapsuleKey {
1264    /// The store launcher id (64-hex).
1265    pub store_id: HexId,
1266    /// The generation root (64-hex).
1267    pub root: HexId,
1268}
1269
1270/// Result for [`cache.removeCached`](crate::method::Method::CacheRemoveCached).
1271#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1272#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1273pub struct RemoveCachedResult {
1274    /// Whether an entry was removed.
1275    pub removed: bool,
1276}
1277
1278/// Result for [`cache.fetchAndCache`](crate::method::Method::CacheFetchAndCache).
1279///
1280/// A failed fetch is reported in-band (`status = "failed"` + `message`) so the
1281/// caller can show it without treating it as a transport error.
1282#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1283#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1284pub struct FetchAndCacheResult {
1285    /// `"cached"`, `"already_cached"`, or `"failed"`.
1286    pub status: String,
1287    /// The fetched module size in bytes (on success).
1288    #[serde(skip_serializing_if = "Option::is_none", default)]
1289    pub size_bytes: Option<u64>,
1290    /// The served generation root (64-hex, on success).
1291    #[serde(skip_serializing_if = "Option::is_none", default)]
1292    pub served_root: Option<HexId>,
1293    /// The failure message (on `status = "failed"`).
1294    #[serde(skip_serializing_if = "Option::is_none", default)]
1295    pub message: Option<String>,
1296}
1297
1298// ===========================================================================
1299// control.peerStatus  (CONTROL — loopback / in-process only)
1300// ===========================================================================
1301
1302/// Result for [`control.peerStatus`](crate::method::Method::ControlPeerStatus) —
1303/// a snapshot of the node's L7 peer network. Always safe to call; reports
1304/// `running: false` on the FFI path.
1305#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
1306#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1307pub struct PeerStatusSnapshot {
1308    /// Whether a peer network is currently active.
1309    pub running: bool,
1310    /// This node's `peer_id` (64-hex), if a peer network is running.
1311    #[serde(skip_serializing_if = "Option::is_none", default)]
1312    pub peer_id: Option<HexId>,
1313    /// The DIG network id.
1314    pub network_id: String,
1315    /// The relay reservation posture.
1316    pub relay: RelayStatus,
1317    /// The number of currently connected peers.
1318    pub connected_peers: u64,
1319    /// The last peer-network error, if any.
1320    #[serde(skip_serializing_if = "Option::is_none", default)]
1321    pub last_error: Option<String>,
1322}
1323
1324// ===========================================================================
1325// cache.stats  (CONTROL — loopback / in-process only)
1326// ===========================================================================
1327
1328/// The decoded-content cache hit/miss counters carried in
1329/// [`CacheStats`](CacheStats::content_cache).
1330#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
1331#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1332pub struct ContentCacheCounters {
1333    /// Session decoded-content cache hits.
1334    pub hits: u64,
1335    /// Session decoded-content cache misses.
1336    pub misses: u64,
1337}
1338
1339/// Result for [`cache.stats`](crate::method::Method::CacheStats) — cache
1340/// telemetry beside [`cache.getConfig`](crate::method::Method::CacheGetConfig):
1341/// the reserved cap + live usage, the cached-capsule count + total on-disk
1342/// bytes, and the session eviction + content-cache counters.
1343#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
1344#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1345pub struct CacheStats {
1346    /// The on-disk cache size cap in bytes.
1347    pub cap_bytes: u64,
1348    /// The bytes currently used on disk.
1349    pub used_bytes: u64,
1350    /// The number of durable cached capsules.
1351    pub entry_count: u64,
1352    /// The total on-disk bytes across the cached capsules.
1353    pub total_bytes: u64,
1354    /// Capsules evicted this session.
1355    pub evicted_count: u64,
1356    /// Bytes evicted this session.
1357    pub evicted_bytes: u64,
1358    /// The decoded-content cache hit/miss counters.
1359    pub content_cache: ContentCacheCounters,
1360}
1361
1362// ===========================================================================
1363// control.subscribe / control.unsubscribe / control.listSubscriptions
1364// (CONTROL — loopback / in-process only)
1365// ===========================================================================
1366
1367/// Params for [`control.subscribe`](crate::method::Method::ControlSubscribe) and
1368/// [`control.unsubscribe`](crate::method::Method::ControlUnsubscribe).
1369#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1370#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1371pub struct SubscribeParams {
1372    /// The store launcher id to (un)subscribe (64-hex).
1373    pub store_id: HexId,
1374}
1375
1376/// Result for [`control.subscribe`](crate::method::Method::ControlSubscribe).
1377#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1378#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1379pub struct SubscribeResult {
1380    /// Always `true` — the store is subscribed after this call.
1381    pub subscribed: bool,
1382    /// Whether this call ADDED the subscription (`false` ⇒ already subscribed).
1383    pub added: bool,
1384    /// The canonical persisted store id (trimmed + lower-cased, 64-hex).
1385    pub store_id: HexId,
1386}
1387
1388/// Result for [`control.unsubscribe`](crate::method::Method::ControlUnsubscribe).
1389#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1390#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1391pub struct UnsubscribeResult {
1392    /// Always `false` — the store is not subscribed after this call.
1393    pub subscribed: bool,
1394    /// Whether this call REMOVED a subscription (`false` ⇒ was not subscribed).
1395    pub removed: bool,
1396    /// The canonical persisted store id (trimmed + lower-cased, 64-hex).
1397    pub store_id: HexId,
1398}
1399
1400/// Result for
1401/// [`control.listSubscriptions`](crate::method::Method::ControlListSubscriptions).
1402#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
1403#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1404pub struct SubscriptionsList {
1405    /// The persisted subscribed store ids (64-hex each).
1406    pub subscriptions: Vec<HexId>,
1407    /// The subscription count (`subscriptions.len()`).
1408    pub count: u64,
1409}
1410
1411// ===========================================================================
1412// control.peers.connect / control.peers.disconnect
1413// (CONTROL — loopback / in-process only)
1414// ===========================================================================
1415
1416/// Params for [`control.peers.connect`](crate::method::Method::ControlPeersConnect)
1417/// and [`control.peers.disconnect`](crate::method::Method::ControlPeersDisconnect).
1418#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1419#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1420pub struct PeerConnectParams {
1421    /// The peer to dial/drop — a dialable address, or a known peer's `peer_id`
1422    /// (64-hex) to resolve an already-connected peer.
1423    pub peer: String,
1424}
1425
1426/// Result for
1427/// [`control.peers.connect`](crate::method::Method::ControlPeersConnect).
1428#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1429#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1430pub struct PeerConnectResult {
1431    /// Always `true` on success — the peer is a counted, connected pool member.
1432    pub connected: bool,
1433    /// The connected peer's stable `peer_id` (64-hex).
1434    pub peer_id: HexId,
1435}
1436
1437/// Result for
1438/// [`control.peers.disconnect`](crate::method::Method::ControlPeersDisconnect).
1439///
1440/// Idempotent: disconnecting a peer that is not connected succeeds as a no-op.
1441#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1442#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1443pub struct PeerDisconnectResult {
1444    /// Always `true` — the peer is not in the pool after this call.
1445    pub disconnected: bool,
1446    /// The dropped peer's `peer_id` (trimmed + lower-cased, 64-hex).
1447    pub peer_id: HexId,
1448}
1449
1450// ===========================================================================
1451// dig.listRewardDistributors / dig.getRewardProverStatus / dig.getRewardDistributor
1452// (CONTROL — loopback / in-process only; dig-rewards-coin SPEC.md §2.3 / §2.6)
1453// ===========================================================================
1454
1455/// The always-on reward prover loop's state — SPEC §2.3, the closed set.
1456///
1457/// `#[non_exhaustive]`-equivalent by convention rather than attribute (the SPEC
1458/// pins this to an exact nine-member set; a variant needs a SPEC amendment, not
1459/// a semver-additive appendix). Deserialization is fail-closed: no
1460/// `#[serde(other)]` catch-all and no `Default` impl, so an unknown wire string
1461/// (a newer node, a typo) is a hard parse error rather than a silently-coerced
1462/// state.
1463#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
1464#[serde(rename_all = "camelCase")]
1465#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1466pub enum ProverState {
1467    /// No distributor assigned; the loop is parked.
1468    Idle,
1469    /// A cycle is in progress.
1470    Running,
1471    /// The local capsule/store copy this cycle needs is missing.
1472    LocalCopyMissing,
1473    /// The chain source (full node / peer) is unreachable this cycle.
1474    ChainSourceUnavailable,
1475    /// The distributor is unfunded — no reserve to pay a cycle out of.
1476    Unfunded,
1477    /// The fee budget for entry-set writes is exhausted for this cycle.
1478    FeeBudgetExhausted,
1479    /// The entry set is at capacity; no further entries can be added.
1480    EntrySetFull,
1481    /// Paused by an operator action.
1482    Paused,
1483    /// Stopped; the loop will not run again without an explicit restart.
1484    Stopped,
1485}
1486
1487/// The reward prover loop's running counters — SPEC §2.3.
1488#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Serialize, Deserialize)]
1489#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1490pub struct ProverCounters {
1491    /// Distinct mirrors observed across all cycles.
1492    pub mirrors_seen: u64,
1493    /// Ranged capsule challenges issued.
1494    pub challenges_issued: u64,
1495    /// Challenges that passed verification.
1496    pub challenges_passed: u64,
1497    /// Challenges that failed verification.
1498    pub challenges_failed: u64,
1499    /// Entry-set entries added.
1500    pub entries_added: u64,
1501    /// Entry-set entries removed.
1502    pub entries_removed: u64,
1503    /// The current entry-set size.
1504    pub entry_count: u64,
1505    /// The distributor's reserve, in base units.
1506    pub reserve_base_units: u64,
1507    /// Total paid out over the loop's lifetime, in base units.
1508    pub total_paid_out_base_units: u64,
1509}
1510
1511/// One distributor's prover-loop status — SPEC §2.3 / §2.4.
1512///
1513/// # No health boolean, no pre-computed staleness
1514///
1515/// This type carries no `healthy`/`ok`/`up`/`running`/`stale` field and no
1516/// `seconds_since_last_run`. SPEC §2.4: a wedged loop cannot report its own
1517/// wedging — a boolean the writer sets on every successful cycle reads `true`
1518/// forever after exactly the failure it exists to reveal, because the write
1519/// that would flip it never runs. The reader derives staleness itself from
1520/// [`last_cycle_completed_at`](Self::last_cycle_completed_at) /
1521/// [`next_cycle_due_at`](Self::next_cycle_due_at) against
1522/// [`observed_at`](Self::observed_at) and its own clock. Contrast
1523/// [`GetRewardDistributorResult::entry_set_stale`], which IS a boolean — it is
1524/// permitted there because it is computed from the singleton's on-chain spend
1525/// history by the responder at read time, not self-reported by the writer this
1526/// type describes.
1527#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1528#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1529pub struct RewardProverStatus {
1530    /// The distributor singleton's launcher id (64-hex).
1531    pub launcher_id: HexId,
1532    /// The backing store's launcher id (64-hex).
1533    pub store_id: HexId,
1534    /// The store's current generation root (64-hex).
1535    pub root: HexId,
1536    /// The loop's current state.
1537    pub prover_state: ProverState,
1538    /// Unix seconds the loop entered `prover_state`.
1539    pub prover_state_since: u64,
1540    /// Unix seconds the current/most recent cycle started, if any has run.
1541    pub last_cycle_started_at: Option<u64>,
1542    /// Unix seconds the most recent cycle completed, if any has completed.
1543    pub last_cycle_completed_at: Option<u64>,
1544    /// Unix seconds the next cycle is scheduled, if the loop is scheduling one.
1545    pub next_cycle_due_at: Option<u64>,
1546    /// Unix seconds of the most recent entry-set write, if any.
1547    pub last_entry_write_at: Option<u64>,
1548    /// Consecutive cycle failures (resets to 0 on a completed cycle).
1549    pub consecutive_cycle_failures: u32,
1550    /// Entry writes queued but not yet committed.
1551    pub pending_entry_writes: u32,
1552    /// Unix seconds this status was assembled (the reader's staleness anchor).
1553    pub observed_at: u64,
1554    /// The loop's running counters.
1555    pub counters: ProverCounters,
1556}
1557
1558/// Params for
1559/// [`dig.getRewardProverStatus`](crate::method::Method::GetRewardProverStatus).
1560#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1561#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1562pub struct GetRewardProverStatusParams {
1563    /// Restrict to one distributor's launcher id (64-hex). Absent ⇒ every
1564    /// distributor this node runs a prover loop for.
1565    #[serde(skip_serializing_if = "Option::is_none", default)]
1566    pub launcher_id: Option<HexId>,
1567}
1568
1569/// Result for
1570/// [`dig.getRewardProverStatus`](crate::method::Method::GetRewardProverStatus).
1571#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1572#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1573pub struct GetRewardProverStatusResult {
1574    /// One entry per prover loop this node runs, in no particular order.
1575    pub statuses: Vec<RewardProverStatus>,
1576}
1577
1578/// A minimal distributor reference — SPEC §2.6.
1579#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1580#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1581pub struct RewardDistributorRef {
1582    /// The distributor singleton's launcher id (64-hex).
1583    pub launcher_id: HexId,
1584    /// The backing store's launcher id (64-hex).
1585    pub store_id: HexId,
1586    /// The store's current generation root (64-hex).
1587    pub root: HexId,
1588}
1589
1590/// Result for
1591/// [`dig.listRewardDistributors`](crate::method::Method::ListRewardDistributors)
1592/// — SPEC §2.6: "the distributors this node funds, and the distributors this
1593/// node has a claim to as a mirror".
1594#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
1595#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1596pub struct ListRewardDistributorsResult {
1597    /// Distributors this node funds (the reserve is this node's).
1598    pub funded: Vec<RewardDistributorRef>,
1599    /// Distributors this node has a claim to as a mirror, but does not fund.
1600    pub claimable: Vec<RewardDistributorRef>,
1601}
1602
1603/// Params for
1604/// [`dig.getRewardDistributor`](crate::method::Method::GetRewardDistributor).
1605#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1606#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1607pub struct GetRewardDistributorParams {
1608    /// The distributor singleton's launcher id (64-hex, required).
1609    pub launcher_id: HexId,
1610}
1611
1612/// Result for
1613/// [`dig.getRewardDistributor`](crate::method::Method::GetRewardDistributor) —
1614/// SPEC §2.6, third method: chain-derived distributor state only, never the
1615/// local prover loop's own state (see [`RewardProverStatus`] for that).
1616///
1617/// # `entry_set_stale` lives HERE, never on `RewardProverStatus`
1618///
1619/// This is the one boolean in the reward-distributor surface, and it belongs
1620/// here specifically: per SPEC §12.4 it is computed by the responder from the
1621/// distributor singleton's on-chain spend history at read time, not
1622/// self-reported by a possibly-wedged writer. Copying it onto
1623/// [`RewardProverStatus`] would reintroduce exactly the self-reported-health
1624/// failure that type's doc comment forbids — see that type for the full
1625/// argument.
1626#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1627#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1628pub struct GetRewardDistributorResult {
1629    /// The distributor singleton's launcher id (64-hex).
1630    pub launcher_id: HexId,
1631    /// The backing store's launcher id (64-hex).
1632    pub store_id: HexId,
1633    /// The store's current generation root (64-hex).
1634    pub root: HexId,
1635    /// The payout epoch length, in seconds.
1636    pub epoch_seconds: u64,
1637    /// Unix seconds the first epoch started.
1638    pub first_epoch_start: u64,
1639    /// The reserve threshold, in base units, that triggers a payout.
1640    pub payout_threshold: u64,
1641    /// The distributor's fee, in basis points.
1642    pub fee_bps: u16,
1643    /// The share of a clawed-back commitment the committer recovers, in basis
1644    /// points — SPEC §7.5. `withdrawal_share_bps = 9000` means a clawback
1645    /// returns 90% of the committed value; the remaining 10% is forfeited to
1646    /// the reserve as a deterrent against the funder (SPEC §7.5 clause 1: it
1647    /// is priced correctly and is **not** compensation to induced mirrors).
1648    /// Curried at launch and immutable, same as [`Self::fee_bps`] beside it.
1649    pub withdrawal_share_bps: u16,
1650    /// The current reserve, in base units.
1651    pub reserve_base_units: u64,
1652    /// The current entry-set size.
1653    pub entry_count: u64,
1654    /// The current epoch index (`0`-based from `first_epoch_start`).
1655    pub current_distributor_epoch: u64,
1656    /// Unix seconds of the most recent entry-set write on chain, if any.
1657    /// `None` together with a non-zero `reserve_base_units` **implies
1658    /// stale**: an entry set that has never been written is maximally
1659    /// stale, not unknown, and a consumer MUST NOT render it as blank or
1660    /// "unknown" (SPEC §2.4 cl. 1 — silence is not an acceptable
1661    /// representation of "not distributing").
1662    pub last_entry_write_at: Option<u64>,
1663    /// `true` when the entry set has not changed in
1664    /// `STALE_ENTRY_SET_SECONDS = 172_800` (48 h) **while the reserve is
1665    /// non-zero** — SPEC §12.4. A drained distributor with a frozen entry set
1666    /// is not stale, it is [`Unfunded`](crate::types::ProverState::Unfunded);
1667    /// the non-zero-reserve conjunct exists to keep the two states distinct.
1668    /// The responder computes this at read time from the singleton's own
1669    /// on-chain spend history — it is not self-reported, so a wedged prover
1670    /// cannot fake it. See the type doc for why this boolean is safe here and
1671    /// forbidden on [`RewardProverStatus`].
1672    pub entry_set_stale: bool,
1673    /// Unix seconds this result was assembled.
1674    pub observed_at: u64,
1675}
1676
1677/// Params for
1678/// [`dig.listRewardDistributorCommitments`](crate::method::Method::ListRewardDistributorCommitments).
1679#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1680#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1681pub struct ListRewardDistributorCommitmentsParams {
1682    /// The distributor singleton's launcher id (64-hex, required).
1683    pub launcher_id: HexId,
1684}
1685
1686/// One clawback commitment slot for a distributor epoch — SPEC §7.4 clause 5.
1687///
1688/// # `recoverable_base_units` is NOT `rewards_base_units`
1689///
1690/// Committed is not recoverable: SPEC §7.4 clause 4 / §7.5 return only
1691/// `withdrawal_share_bps / 10000` of the committed value on clawback (the
1692/// remainder is forfeited to the reserve — see
1693/// [`GetRewardDistributorResult::withdrawal_share_bps`]). Reporting only
1694/// `rewards_base_units` and letting a caller label it "recoverable" would
1695/// overstate every clawback by the forfeit fraction — exactly the
1696/// one-balance-figure money-honesty failure SPEC §7.4 clause 5 forbids,
1697/// relocated from a single total into a single per-slot figure. So the
1698/// **responder** must compute `recoverable_base_units` itself, with integer
1699/// arithmetic in the order `rewards_base_units * withdrawal_share_bps /
1700/// 10_000` — multiply then divide, no floats, truncated (never rounded up:
1701/// rounding up would promise money the chain will not return). This type
1702/// does not enforce that computation — see below.
1703///
1704/// Only the holder of the key for `clawback_puzzle_hash` may claw this slot
1705/// back — not an operator role, not the manager singleton, and not the
1706/// launcher (SPEC §7.4 clause 3). This field is the proof of entitlement; a
1707/// reader must not mistake it for a display label.
1708///
1709/// This type does not enforce any of the above: `recoverable_base_units` is
1710/// a bare `pub u64` with no constructor or validation. The **responder**
1711/// must compute it in the order described; nothing here checks that it did.
1712#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1713#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1714pub struct RewardDistributorCommitment {
1715    /// The epoch this commitment slot funds.
1716    pub epoch_start: u64,
1717    /// The chain's `clawback_ph` (SPEC / `chia-sdk-types`
1718    /// `RewardDistributorCommitmentSlotValue`): the puzzle hash whose key
1719    /// holder alone may claw this slot back.
1720    pub clawback_puzzle_hash: HexId,
1721    /// The committed amount, in base units.
1722    pub rewards_base_units: u64,
1723    /// The amount actually recoverable on clawback, in base units —
1724    /// `rewards_base_units * withdrawal_share_bps / 10_000`, integer
1725    /// arithmetic, truncated down. See the type doc for why this must never
1726    /// be derived by a caller from `rewards_base_units` alone.
1727    ///
1728    /// This is share arithmetic only. It is **NOT an eligibility claim**: it
1729    /// says what fraction of the slot would return, not that the caller may
1730    /// claw it back. Entitlement is key-holding against
1731    /// `clawback_puzzle_hash` and nothing else (SPEC §7.4 cl. 3).
1732    pub recoverable_base_units: u64,
1733}
1734
1735/// Result for
1736/// [`dig.listRewardDistributorCommitments`](crate::method::Method::ListRewardDistributorCommitments)
1737/// — SPEC §7.4 clause 5: per-epoch commitment slots, never a single balance
1738/// figure.
1739#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1740#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1741pub struct ListRewardDistributorCommitmentsResult {
1742    /// The distributor singleton's launcher id (64-hex).
1743    pub launcher_id: HexId,
1744    /// The curried launch constant, echoed so a caller's row math (dividing
1745    /// `recoverable_base_units` by `rewards_base_units`) is auditable against
1746    /// the value that actually governs it. A responder MUST use this echoed
1747    /// value — never a compiled-in constant — when computing each row's
1748    /// `recoverable_base_units`, because the share is a launch-curried,
1749    /// per-distributor value that differs across distributors. A conforming
1750    /// responder MUST NOT emit a value above `10_000`.
1751    pub withdrawal_share_bps: u16,
1752    /// The payout epoch length, in seconds — a launch-curried, immutable
1753    /// distributor constant, echoed here so a caller can compute an epoch's
1754    /// end (`epoch_start + epoch_seconds`) or place a commitment on a
1755    /// calendar without a second `dig.getRewardDistributor` call. This is
1756    /// per-distributor and defaulted, not a fixed 7-day value, so it must
1757    /// not be hardcoded.
1758    pub epoch_seconds: u64,
1759    /// One entry per commitment slot. Empty is legitimate: a distributor
1760    /// funded only via `AddIncentives` has no clawback-eligible slots at all
1761    /// — an irrevocable donation, not an error.
1762    pub commitments: Vec<RewardDistributorCommitment>,
1763    /// Unix seconds this result was assembled.
1764    pub observed_at: u64,
1765}
1766
1767// ===========================================================================
1768// dig.health / dig.methods / rpc.discover  (discovery)
1769// ===========================================================================
1770
1771/// Result for [`dig.health`](crate::method::Method::Health) — liveness + a
1772/// capability summary.
1773#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
1774#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1775pub struct Health {
1776    /// Liveness — `"ok"` when the node can serve.
1777    pub status: String,
1778    /// The node's software version.
1779    #[serde(skip_serializing_if = "Option::is_none", default)]
1780    pub version: Option<String>,
1781    /// The DIG network id the node serves.
1782    #[serde(skip_serializing_if = "Option::is_none", default)]
1783    pub network_id: Option<String>,
1784    /// The method names this node implements (its profile).
1785    #[serde(default)]
1786    pub methods: Vec<String>,
1787}
1788
1789/// Result for [`dig.methods`](crate::method::Method::Methods) — the method names
1790/// this node implements (agent self-describe).
1791#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
1792#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1793pub struct Methods {
1794    /// The implemented method names.
1795    pub methods: Vec<String>,
1796}
1797
1798#[cfg(test)]
1799mod tests {
1800    use super::*;
1801    use serde_json::json;
1802
1803    /// **Proves:** `ContentChunk` round-trips a node-profile window (no
1804    /// network-profile fields) without inventing keys.
1805    /// **Catches:** a missing `skip_serializing_if` that would leak `null`
1806    /// network-profile fields onto the node profile.
1807    #[test]
1808    fn content_chunk_node_profile_is_lean() {
1809        let c = ContentChunk {
1810            ciphertext: "AAA=".into(),
1811            root: "ab".repeat(32),
1812            complete: false,
1813            next_offset: Some(3_145_728),
1814            inclusion_proof: Some("cHJvb2Y=".into()),
1815            chunk_lens: Some(vec![10, 20]),
1816            source: Some("local".into()),
1817            total_length: None,
1818            length: None,
1819            offset: None,
1820            program_hash: None,
1821        };
1822        let v = serde_json::to_value(&c).unwrap();
1823        assert_eq!(v["source"], "local");
1824        assert!(
1825            v.get("total_length").is_none(),
1826            "node profile must omit total_length"
1827        );
1828        assert!(v.get("program_hash").is_none());
1829        assert_eq!(serde_json::from_value::<ContentChunk>(v).unwrap(), c);
1830    }
1831
1832    /// **Proves:** the network-profile fields serialize when present.
1833    #[test]
1834    fn content_chunk_network_profile_carries_extras() {
1835        let c = ContentChunk {
1836            ciphertext: "AAA=".into(),
1837            root: "cd".repeat(32),
1838            complete: true,
1839            next_offset: None,
1840            inclusion_proof: None,
1841            chunk_lens: None,
1842            source: None,
1843            total_length: Some(100),
1844            length: Some(100),
1845            offset: Some(0),
1846            program_hash: Some("ef".repeat(32)),
1847        };
1848        let v = serde_json::to_value(&c).unwrap();
1849        assert_eq!(v["total_length"], 100);
1850        assert_eq!(v["length"], 100);
1851        assert!(v.get("source").is_none());
1852    }
1853
1854    /// **Proves:** the untagged `Inventory` picks `ForStore` vs `AllStores` by
1855    /// shape.
1856    /// **Catches:** a lost `#[serde(untagged)]` that would tag the variant.
1857    #[test]
1858    fn inventory_untagged_by_shape() {
1859        let for_store = Inventory::ForStore {
1860            store_id: "ab".repeat(32),
1861            roots: vec!["cd".repeat(32)],
1862        };
1863        let s = serde_json::to_string(&for_store).unwrap();
1864        assert!(s.contains("\"roots\""));
1865        assert!(!s.contains("ForStore"));
1866        assert_eq!(serde_json::from_str::<Inventory>(&s).unwrap(), for_store);
1867
1868        let all = Inventory::AllStores {
1869            stores: vec!["ef".repeat(32)],
1870        };
1871        let s = serde_json::to_string(&all).unwrap();
1872        assert!(s.contains("\"stores\""));
1873        assert_eq!(serde_json::from_str::<Inventory>(&s).unwrap(), all);
1874    }
1875
1876    /// **Proves:** `RedirectInfo` serializes the full redirect payload the
1877    /// `-32008` envelope carries.
1878    #[test]
1879    fn redirect_info_shape() {
1880        let r = RedirectInfo {
1881            content: ContentRef {
1882                store_id: "ab".repeat(32),
1883                root: Some("cd".repeat(32)),
1884                retrieval_key: Some("ef".repeat(32)),
1885            },
1886            providers: vec![Provider {
1887                peer_id: "12".repeat(32),
1888                addresses: vec![PeerAddress {
1889                    host: "::1".into(),
1890                    port: 9444,
1891                    kind: "direct".into(),
1892                }],
1893            }],
1894            redirect_depth: 1,
1895            max_redirects: 4,
1896        };
1897        let v = serde_json::to_value(&r).unwrap();
1898        assert_eq!(v["redirect_depth"], 1);
1899        assert_eq!(v["max_redirects"], 4);
1900        assert_eq!(v["providers"][0]["addresses"][0]["host"], "::1");
1901        assert_eq!(serde_json::from_value::<RedirectInfo>(v).unwrap(), r);
1902    }
1903
1904    /// **Proves:** `cache.stats` models the live dig-node result field-for-field
1905    /// (the nested `content_cache{hits,misses}` object included).
1906    /// **Catches:** a drift from the node's `cache.stats` wire shape (#1075).
1907    #[test]
1908    fn cache_stats_wire_shape() {
1909        let s = CacheStats {
1910            cap_bytes: 1 << 30,
1911            used_bytes: 2048,
1912            entry_count: 3,
1913            total_bytes: 2048,
1914            evicted_count: 1,
1915            evicted_bytes: 512,
1916            content_cache: ContentCacheCounters { hits: 7, misses: 2 },
1917        };
1918        let v = serde_json::to_value(s).unwrap();
1919        assert_eq!(v["cap_bytes"], 1 << 30);
1920        assert_eq!(v["entry_count"], 3);
1921        assert_eq!(v["content_cache"]["hits"], 7);
1922        assert_eq!(v["content_cache"]["misses"], 2);
1923        assert_eq!(serde_json::from_value::<CacheStats>(v).unwrap(), s);
1924    }
1925
1926    /// **Proves:** the subscription-management results carry the exact
1927    /// `{subscribed, added|removed, store_id}` / `{subscriptions, count}` shapes
1928    /// the live node returns.
1929    #[test]
1930    fn subscription_result_shapes() {
1931        let sub = SubscribeResult {
1932            subscribed: true,
1933            added: true,
1934            store_id: "ab".repeat(32),
1935        };
1936        let v = serde_json::to_value(&sub).unwrap();
1937        assert_eq!(v["subscribed"], true);
1938        assert_eq!(v["added"], true);
1939        assert_eq!(serde_json::from_value::<SubscribeResult>(v).unwrap(), sub);
1940
1941        let unsub = UnsubscribeResult {
1942            subscribed: false,
1943            removed: true,
1944            store_id: "cd".repeat(32),
1945        };
1946        let v = serde_json::to_value(&unsub).unwrap();
1947        assert_eq!(v["subscribed"], false);
1948        assert_eq!(v["removed"], true);
1949        assert_eq!(
1950            serde_json::from_value::<UnsubscribeResult>(v).unwrap(),
1951            unsub
1952        );
1953
1954        let list = SubscriptionsList {
1955            subscriptions: vec!["ef".repeat(32)],
1956            count: 1,
1957        };
1958        let v = serde_json::to_value(&list).unwrap();
1959        assert_eq!(v["count"], 1);
1960        assert_eq!(
1961            serde_json::from_value::<SubscriptionsList>(v).unwrap(),
1962            list
1963        );
1964    }
1965
1966    /// **Proves:** `ModuleInfo` carries `chunk_lens` covering every chunk, and
1967    /// round-trips with unknown future fields.
1968    /// **Catches:** a missing `chunk_lens` field that would leave a puller unable
1969    /// to map a fetched byte range to its covering chunk hash.
1970    /// **Invariants enforced by docs:** `chunk_lens` must have the same length as
1971    /// `chunk_hashes` and must sum to `total_size`.
1972    #[test]
1973    fn module_info_chunk_lens_shape() {
1974        let info = ModuleInfo {
1975            total_size: 1024,
1976            module_hash: "ab".repeat(32),
1977            chunk_hashes: vec!["cd".repeat(32), "ef".repeat(32)],
1978            chunk_lens: vec![512, 512],
1979        };
1980        let v = serde_json::to_value(&info).unwrap();
1981        assert_eq!(v["total_size"], 1024);
1982        assert_eq!(v["chunk_hashes"].as_array().unwrap().len(), 2);
1983        assert_eq!(v["chunk_lens"].as_array().unwrap().len(), 2);
1984        assert_eq!(v["chunk_lens"][0], 512);
1985        assert_eq!(v["chunk_lens"][1], 512);
1986        assert_eq!(serde_json::from_value::<ModuleInfo>(v).unwrap(), info);
1987    }
1988
1989    /// **Proves:** `ModuleInfo` deserialization REJECTS missing `chunk_lens` field.
1990    /// This is a REQUIRED field (not optional) — omitting it from the wire is a
1991    /// protocol violation and must fail-closed.
1992    #[test]
1993    fn module_info_rejects_missing_chunk_lens() {
1994        let json_str = r#"{"total_size": 2048, "module_hash": "1122334455667788990011223344556677889900112233445566778899001122", "chunk_hashes": []}"#;
1995        let result: Result<ModuleInfo, _> = serde_json::from_str(json_str);
1996        assert!(
1997            result.is_err(),
1998            "ModuleInfo must reject JSON missing the required chunk_lens field"
1999        );
2000        let err = result.unwrap_err();
2001        assert!(
2002            err.to_string().contains("chunk_lens"),
2003            "error message should mention chunk_lens: {}",
2004            err
2005        );
2006    }
2007
2008    /// **Proves:** the peer connect/disconnect params + results round-trip and
2009    /// match the node's `{connected|disconnected, peer_id}` shapes.
2010    #[test]
2011    fn peer_connect_disconnect_shapes() {
2012        let p = PeerConnectParams {
2013            peer: "12".repeat(32),
2014        };
2015        let v = serde_json::to_value(&p).unwrap();
2016        assert_eq!(serde_json::from_value::<PeerConnectParams>(v).unwrap(), p);
2017
2018        let c = PeerConnectResult {
2019            connected: true,
2020            peer_id: "12".repeat(32),
2021        };
2022        let v = serde_json::to_value(&c).unwrap();
2023        assert_eq!(v["connected"], true);
2024        assert_eq!(serde_json::from_value::<PeerConnectResult>(v).unwrap(), c);
2025
2026        let d = PeerDisconnectResult {
2027            disconnected: true,
2028            peer_id: "34".repeat(32),
2029        };
2030        let v = serde_json::to_value(&d).unwrap();
2031        assert_eq!(v["disconnected"], true);
2032        assert_eq!(
2033            serde_json::from_value::<PeerDisconnectResult>(v).unwrap(),
2034            d
2035        );
2036    }
2037
2038    /// **Proves:** `cache.getConfig` uses the canonical `cache_dir` field name.
2039    /// **Catches:** a regression to the shell's historical `dir` name.
2040    #[test]
2041    fn cache_config_field_name_is_cache_dir() {
2042        let c = CacheConfig {
2043            cap_bytes: 1 << 30,
2044            used_bytes: 0,
2045            cache_dir: "/var/cache/dig".into(),
2046            shared: true,
2047        };
2048        let v = serde_json::to_value(&c).unwrap();
2049        assert!(v.get("cache_dir").is_some());
2050        assert!(v.get("dir").is_none(), "must not use the legacy `dir` name");
2051    }
2052
2053    /// **Proves:** an OLDER client's `dig.getAvailability` params — written
2054    /// before the hop budget existed — still deserialize, and read as a fresh,
2055    /// unhopped ask.
2056    /// **Catches:** a `redirect_depth` declared as a required `u64`, which
2057    /// rejects exactly these params with `missing field redirect_depth` and would
2058    /// make every pre-0.8 caller's ask a parse error at the peer boundary.
2059    /// **Guarded by:** the field's `Option` TYPE. `serde`'s derive already reads a
2060    /// missing `Option` field as `None`, so the `#[serde(default)]` beside it is
2061    /// parity with the sibling params types rather than the live guard — removing
2062    /// it alone leaves this test green (mutant-tested). Do not cite the attribute
2063    /// as the thing that keeps older clients working.
2064    #[test]
2065    fn get_availability_params_accepts_an_older_clients_params() {
2066        let older = json!({
2067            "items": [ { "store_id": "ab".repeat(32) } ]
2068        });
2069        let p: GetAvailabilityParams = serde_json::from_value(older).unwrap();
2070        assert_eq!(p.items.len(), 1);
2071        assert_eq!(p.redirect_depth, None, "an absent budget stays absent");
2072        assert_eq!(p.hops_consumed(), 0, "absent means zero hops consumed");
2073    }
2074
2075    /// **Proves:** a hop-zero ask serializes to exactly the pre-0.8 bytes — the
2076    /// `redirect_depth` key is absent, not `null`.
2077    /// **Catches:** a bare `#[serde(default)]` without `skip_serializing_if`,
2078    /// which would add `"redirect_depth": null` to every existing caller's
2079    /// frame and change the wire for callers that never opted in.
2080    #[test]
2081    fn get_availability_params_omits_an_absent_hop_budget() {
2082        let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2083            store_id: "ab".repeat(32),
2084            root: None,
2085            retrieval_key: None,
2086        }]);
2087        let v = serde_json::to_value(&p).unwrap();
2088        let keys: Vec<&String> = v.as_object().unwrap().keys().collect();
2089        assert_eq!(keys, vec!["items"], "hop-zero params carry only `items`");
2090    }
2091
2092    /// **Proves:** a hopped ask round-trips its budget under the `redirect_depth`
2093    /// key, and reads back through `hops_consumed`.
2094    #[test]
2095    fn get_availability_params_round_trips_the_hop_budget() {
2096        let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2097            store_id: "cd".repeat(32),
2098            root: Some("ef".repeat(32)),
2099            retrieval_key: None,
2100        }])
2101        .with_redirect_depth(2);
2102        let v = serde_json::to_value(&p).unwrap();
2103        assert_eq!(v["redirect_depth"], 2);
2104        assert_eq!(p.hops_consumed(), 2);
2105        assert_eq!(
2106            serde_json::from_value::<GetAvailabilityParams>(v).unwrap(),
2107            p
2108        );
2109    }
2110
2111    /// **Proves:** an older client params object — written before ANY of the
2112    /// recursive-ask fields existed — still deserializes, and every new field reads
2113    /// as its documented absent value.
2114    /// **Catches:** any of the three declared as required, which would turn every
2115    /// pre-0.9 caller ask into `missing field` at the peer boundary.
2116    #[test]
2117    fn get_availability_params_accepts_a_client_older_than_the_recursive_ask() {
2118        let older = json!({ "items": [ { "store_id": "ab".repeat(32) } ] });
2119        let p: GetAvailabilityParams = serde_json::from_value(older).unwrap();
2120
2121        assert_eq!(p.budget_ms(), None, "absent budget_ms means unbudgeted");
2122        assert_eq!(p.ask_id(), None, "absent ask_id means dedup opted out");
2123        assert_eq!(p.hops_consumed(), 0);
2124    }
2125
2126    /// **Proves:** a params object carrying no recursive-ask fields serializes to
2127    /// exactly the pre-0.9 bytes — the three new keys are ABSENT, not `null`.
2128    /// **Catches:** a bare `#[serde(default)]` without `skip_serializing_if`, which
2129    /// would add `"budget_ms": null` and `"ask_id": null` to the frame of every
2130    /// caller that never opted in.
2131    #[test]
2132    fn get_availability_params_omits_absent_recursive_ask_fields() {
2133        let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2134            store_id: "ab".repeat(32),
2135            root: None,
2136            retrieval_key: None,
2137        }]);
2138        let v = serde_json::to_value(&p).unwrap();
2139        let keys: Vec<&String> = v.as_object().unwrap().keys().collect();
2140        assert_eq!(keys, vec!["items"], "a plain ask carries only `items`");
2141    }
2142
2143    /// **Proves:** the time budget and the hop budget are two INDEPENDENT fields
2144    /// under two distinct keys, each round-tripping its own value.
2145    /// **Catches:** the shape defect this addition exists to prevent — folding the
2146    /// time budget into `redirect_depth`. The fixture sets them to DIFFERENT values
2147    /// (2 hops, 9000 ms) precisely so a single backing integer cannot satisfy both
2148    /// assertions; equal values would pass under either shape.
2149    #[test]
2150    fn the_time_budget_is_a_separate_field_from_the_hop_budget() {
2151        let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2152            store_id: "cd".repeat(32),
2153            root: None,
2154            retrieval_key: None,
2155        }])
2156        .with_redirect_depth(2)
2157        .with_budget_ms(9_000);
2158
2159        let v = serde_json::to_value(&p).unwrap();
2160        assert_eq!(v["redirect_depth"], 2, "hops counted UP from zero");
2161        assert_eq!(v["budget_ms"], 9_000, "milliseconds counted DOWN to zero");
2162        assert_eq!(p.hops_consumed(), 2);
2163        assert_eq!(p.budget_ms(), Some(9_000));
2164        assert_eq!(
2165            serde_json::from_value::<GetAvailabilityParams>(v).unwrap(),
2166            p
2167        );
2168    }
2169
2170    /// **Proves:** a zero time budget survives the wire as `Some(0)` and is NOT
2171    /// erased into `None`.
2172    /// **Catches:** a `skip_serializing_if` written over the VALUE rather than the
2173    /// Option (`is_zero`-style), which would make "you have no time left, do not ask
2174    /// onward" indistinguishable from "unbudgeted, use your own policy" — exactly
2175    /// inverting the field on the one hop where it matters most.
2176    #[test]
2177    fn a_zero_time_budget_is_not_the_same_as_an_absent_one() {
2178        let exhausted = GetAvailabilityParams::new(vec![]).with_budget_ms(0);
2179        let v = serde_json::to_value(&exhausted).unwrap();
2180
2181        assert_eq!(v["budget_ms"], 0, "an exhausted budget stays on the wire");
2182        assert_eq!(
2183            serde_json::from_value::<GetAvailabilityParams>(v)
2184                .unwrap()
2185                .budget_ms(),
2186            Some(0)
2187        );
2188        assert_eq!(
2189            GetAvailabilityParams::new(vec![]).budget_ms(),
2190            None,
2191            "unbudgeted is a different state from budget zero"
2192        );
2193    }
2194
2195    /// **Proves:** `ask_id` round-trips verbatim under its own key, and is NOT the
2196    /// JSON-RPC `id`.
2197    /// **Catches:** an implementation that reuses the envelope correlator for dedup.
2198    /// The fixture puts a hardcoded `"id": 1` — the exact value dig-node was sending
2199    /// — beside a real 16-byte ask id in one envelope, so a reader that took the
2200    /// correlator would see `1` and disagree with both assertions.
2201    #[test]
2202    fn the_ask_id_is_not_the_jsonrpc_correlator() {
2203        const ASK_ID: &str = "3f9c1a04b7e25d68f0a1c3b5d7e9f012";
2204        assert_eq!(ASK_ID.len(), 32, "16 random bytes as lowercase hex");
2205
2206        let envelope = json!({
2207            "jsonrpc": "2.0",
2208            "id": 1,
2209            "method": "dig.getAvailability",
2210            "params": {
2211                "items": [ { "store_id": "ab".repeat(32) } ],
2212                "ask_id": ASK_ID,
2213            }
2214        });
2215
2216        let p: GetAvailabilityParams = serde_json::from_value(envelope["params"].clone()).unwrap();
2217        assert_eq!(p.ask_id(), Some(ASK_ID));
2218        assert_ne!(
2219            p.ask_id(),
2220            Some("1"),
2221            "the dedup identity must not be read from the envelope `id`"
2222        );
2223        assert_eq!(envelope["id"], 1, "the correlator is untouched beside it");
2224    }
2225
2226    /// **Proves:** `absence_established` distinguishes THREE states on the wire —
2227    /// asserted, explicitly-not-established, and unknown-because-older-server — and
2228    /// that the unknown state serializes as an ABSENT key rather than `false`.
2229    /// **Catches:** the collapse this field exists to prevent. The fixture carries
2230    /// all three answers in ONE batch, so a `bool` with `#[serde(default)]` (which
2231    /// would read the old server answer as `false`) makes the second and third
2232    /// answers compare EQUAL and the test fails; a fixture with only one answer
2233    /// could not see that.
2234    #[test]
2235    fn absence_established_keeps_absent_distinct_from_false() {
2236        let asserted = AvailabilityAnswer {
2237            available: false,
2238            absence_established: Some(true),
2239            ..Default::default()
2240        };
2241        let inconclusive = AvailabilityAnswer {
2242            available: false,
2243            absence_established: Some(false),
2244            ..Default::default()
2245        };
2246        let older_server = AvailabilityAnswer {
2247            available: false,
2248            ..Default::default()
2249        };
2250
2251        assert_ne!(
2252            inconclusive, older_server,
2253            "an explicit `false` is a claim; an absent field is not"
2254        );
2255        assert_eq!(asserted.absence_established_or_unknown(), Some(true));
2256        assert_eq!(inconclusive.absence_established_or_unknown(), Some(false));
2257        assert_eq!(
2258            older_server.absence_established_or_unknown(),
2259            None,
2260            "an older server makes no claim either way"
2261        );
2262
2263        let batch = serde_json::to_value(AvailabilityBatch {
2264            items: vec![asserted, inconclusive, older_server],
2265        })
2266        .unwrap();
2267        assert_eq!(batch["items"][0]["absence_established"], true);
2268        assert_eq!(batch["items"][1]["absence_established"], false);
2269        assert!(
2270            batch["items"][2].get("absence_established").is_none(),
2271            "the unknown state is an absent key, never `false` and never `null`"
2272        );
2273    }
2274
2275    /// **Proves:** an OLDER client can still read a NEWER answer — the added field
2276    /// does not break the shipped shape (§5.1).
2277    #[test]
2278    fn an_answer_carrying_the_new_field_still_parses_as_the_shipped_shape() {
2279        let newer = json!({
2280            "items": [ { "available": false, "absence_established": true } ]
2281        });
2282        let b: AvailabilityBatch = serde_json::from_value(newer).unwrap();
2283        assert_eq!(b.items.len(), 1);
2284        assert!(!b.items[0].available);
2285        assert_eq!(b.items[0].absence_established_or_unknown(), Some(true));
2286    }
2287
2288    /// **Proves:** the hop budget an availability ask carries is the SAME field,
2289    /// with the same key, type and value, that a `-32008` redirect hands back and
2290    /// that `dig.getContent` / `dig.fetchRange` already echo — one field, one
2291    /// interpretation, counted UP toward `max_redirects`.
2292    /// **Catches:** a second reading of the budget in this crate (a remaining
2293    /// allowance counting DOWN, a differently-named key, a differently-typed
2294    /// value) — the byte-drift the shipped redirect contract exists to prevent.
2295    #[test]
2296    fn availability_hop_budget_mirrors_the_redirect_budget() {
2297        let handed_back = RedirectInfo {
2298            content: ContentRef {
2299                store_id: "ab".repeat(32),
2300                root: None,
2301                retrieval_key: None,
2302            },
2303            providers: vec![],
2304            redirect_depth: 3,
2305            max_redirects: 4,
2306        };
2307        let echoed = handed_back.redirect_depth;
2308
2309        let availability = serde_json::to_value(
2310            GetAvailabilityParams::new(vec![AvailabilityQuery {
2311                store_id: "ab".repeat(32),
2312                root: None,
2313                retrieval_key: None,
2314            }])
2315            .with_redirect_depth(echoed),
2316        )
2317        .unwrap();
2318        let content = serde_json::to_value(GetContentParams {
2319            store_id: "ab".repeat(32),
2320            retrieval_key: "cd".repeat(32),
2321            root: None,
2322            offset: None,
2323            mode: None,
2324            redirect_depth: Some(echoed),
2325        })
2326        .unwrap();
2327        let range = serde_json::to_value(
2328            FetchRangeParams::resource("ab".repeat(32), "cd".repeat(32), "ef".repeat(32), 1)
2329                .with_redirect_depth(echoed),
2330        )
2331        .unwrap();
2332
2333        for (method, params) in [
2334            ("dig.getAvailability", &availability),
2335            ("dig.getContent", &content),
2336            ("dig.fetchRange", &range),
2337        ] {
2338            assert_eq!(
2339                params["redirect_depth"], 3,
2340                "{method} must carry the echoed depth under `redirect_depth`"
2341            );
2342        }
2343        assert!(
2344            handed_back.redirect_depth < handed_back.max_redirects,
2345            "the budget counts UP toward `max_redirects`"
2346        );
2347    }
2348
2349    /// **Proves:** a NEWER client's params — carrying a field this build does not
2350    /// know — still deserialize, so a hop-bearing ask is never refused outright by
2351    /// an older responder that simply ignores the budget.
2352    /// **Catches:** a `#[serde(deny_unknown_fields)]` added to the params type,
2353    /// which would turn every forward-compatible extension into a hard parse
2354    /// failure at the peer boundary.
2355    #[test]
2356    fn get_availability_params_tolerates_an_unknown_field() {
2357        let newer = json!({
2358            "items": [ { "store_id": "ab".repeat(32) } ],
2359            "redirect_depth": 1,
2360            "a_field_this_build_does_not_know": true
2361        });
2362        let p: GetAvailabilityParams = serde_json::from_value(newer).unwrap();
2363        assert_eq!(p.hops_consumed(), 1);
2364    }
2365
2366    // -----------------------------------------------------------------
2367    // dig.listRewardDistributors / dig.getRewardProverStatus /
2368    // dig.getRewardDistributor  (#3250, dig-rewards-coin SPEC §2.3/§2.6)
2369    // -----------------------------------------------------------------
2370
2371    fn sample_prover_status() -> RewardProverStatus {
2372        RewardProverStatus {
2373            launcher_id: "ab".repeat(32),
2374            store_id: "cd".repeat(32),
2375            root: "ef".repeat(32),
2376            prover_state: ProverState::Running,
2377            prover_state_since: 1_000,
2378            last_cycle_started_at: Some(1_050),
2379            last_cycle_completed_at: None,
2380            next_cycle_due_at: Some(1_600),
2381            last_entry_write_at: Some(900),
2382            consecutive_cycle_failures: 0,
2383            pending_entry_writes: 2,
2384            observed_at: 1_700,
2385            counters: ProverCounters {
2386                mirrors_seen: 3,
2387                challenges_issued: 10,
2388                challenges_passed: 9,
2389                challenges_failed: 1,
2390                entries_added: 5,
2391                entries_removed: 1,
2392                entry_count: 4,
2393                reserve_base_units: 12_345,
2394                total_paid_out_base_units: 6_789,
2395            },
2396        }
2397    }
2398
2399    /// **Proves:** `RewardProverStatus` round-trips through serde.
2400    #[test]
2401    fn reward_prover_status_round_trips() {
2402        let status = sample_prover_status();
2403        let json = serde_json::to_string(&status).unwrap();
2404        let back: RewardProverStatus = serde_json::from_str(&json).unwrap();
2405        assert_eq!(status, back);
2406    }
2407
2408    /// **Proves:** `RewardProverStatus`'s JSON key set is EXACTLY the SPEC §2.3
2409    /// field list, and contains NEITHER a health boolean NOR a pre-computed
2410    /// staleness field — SPEC §2.4: a wedged loop cannot report its own
2411    /// wedging, so a boolean the writer sets reads true forever after the
2412    /// failure it exists to reveal.
2413    /// **Catches:** a `healthy`/`ok`/`up`/`running`/`stale`/
2414    /// `seconds_since_last_run`/`is_healthy` field reintroduced onto the
2415    /// self-reported prover record.
2416    #[test]
2417    fn reward_prover_status_has_no_health_boolean_and_exact_keys() {
2418        let value = serde_json::to_value(sample_prover_status()).unwrap();
2419        let obj = value.as_object().unwrap();
2420        let mut got: Vec<&str> = obj.keys().map(String::as_str).collect();
2421        got.sort_unstable();
2422
2423        let mut want = vec![
2424            "launcher_id",
2425            "store_id",
2426            "root",
2427            "prover_state",
2428            "prover_state_since",
2429            "last_cycle_started_at",
2430            "next_cycle_due_at",
2431            "last_entry_write_at",
2432            "consecutive_cycle_failures",
2433            "pending_entry_writes",
2434            "observed_at",
2435            "counters",
2436        ];
2437        // `last_cycle_completed_at` is `None` in the fixture and this type has
2438        // no `skip_serializing_if`, so it still serializes as `null` — include it.
2439        want.push("last_cycle_completed_at");
2440        want.sort_unstable();
2441        assert_eq!(got, want);
2442
2443        // Recurse into `counters` too — a smuggled health flag could hide one
2444        // level down, and a substring check on the serialized string would
2445        // miss it (and would also be actively wrong: `ProverState::Running`
2446        // legitimately serializes the *value* `"running"`, so a
2447        // `!s.contains("running")` assertion fails on honest input while
2448        // still passing a smuggled `isRunning` key).
2449        let counters_keys: Vec<&str> = value["counters"]
2450            .as_object()
2451            .unwrap()
2452            .keys()
2453            .map(String::as_str)
2454            .collect();
2455        let mut all_keys = got.clone();
2456        all_keys.extend(counters_keys);
2457
2458        for forbidden in [
2459            "healthy",
2460            "ok",
2461            "up",
2462            "running",
2463            "isRunning",
2464            "stale",
2465            "isStale",
2466            "staleness",
2467            "secondsSinceLastRun",
2468            "uptime",
2469            "alive",
2470            "live",
2471            "lastRunSecondsAgo",
2472        ] {
2473            assert!(
2474                !all_keys.contains(&forbidden),
2475                "RewardProverStatus (incl. counters) must not carry `{forbidden}` (SPEC §2.4)"
2476            );
2477        }
2478
2479        // Also assert directly against the Rust field list, independent of the
2480        // JSON round-trip, so a `#[serde(rename)]` cannot hide a violation.
2481        got.retain(|k| *k != "prover_state"); // enum-typed; checked separately below.
2482    }
2483
2484    /// **Proves:** `ProverState` deserializes each of the nine named SPEC §2.3
2485    /// variants and REJECTS an unknown string — fail-closed: no
2486    /// `#[serde(other)]`, no `Default`.
2487    #[test]
2488    fn prover_state_covers_the_closed_set_and_rejects_unknown() {
2489        let known = [
2490            ("idle", ProverState::Idle),
2491            ("running", ProverState::Running),
2492            ("localCopyMissing", ProverState::LocalCopyMissing),
2493            (
2494                "chainSourceUnavailable",
2495                ProverState::ChainSourceUnavailable,
2496            ),
2497            ("unfunded", ProverState::Unfunded),
2498            ("feeBudgetExhausted", ProverState::FeeBudgetExhausted),
2499            ("entrySetFull", ProverState::EntrySetFull),
2500            ("paused", ProverState::Paused),
2501            ("stopped", ProverState::Stopped),
2502        ];
2503        assert_eq!(known.len(), 9, "the SPEC §2.3 set has exactly nine members");
2504        for (wire, variant) in known {
2505            let got: ProverState = serde_json::from_value(json!(wire)).unwrap();
2506            assert_eq!(got, variant, "{wire}");
2507            assert_eq!(serde_json::to_value(variant).unwrap(), json!(wire));
2508        }
2509
2510        let err = serde_json::from_value::<ProverState>(json!("somethingElse"));
2511        assert!(
2512            err.is_err(),
2513            "an unknown ProverState string must be rejected"
2514        );
2515    }
2516
2517    /// **Proves:** `GetRewardProverStatusParams` / `GetRewardProverStatusResult`
2518    /// round-trip.
2519    #[test]
2520    fn get_reward_prover_status_types_round_trip() {
2521        let params = GetRewardProverStatusParams {
2522            launcher_id: Some("ab".repeat(32)),
2523        };
2524        let back: GetRewardProverStatusParams =
2525            serde_json::from_str(&serde_json::to_string(&params).unwrap()).unwrap();
2526        assert_eq!(params, back);
2527
2528        let result = GetRewardProverStatusResult {
2529            statuses: vec![sample_prover_status()],
2530        };
2531        let back: GetRewardProverStatusResult =
2532            serde_json::from_str(&serde_json::to_string(&result).unwrap()).unwrap();
2533        assert_eq!(result, back);
2534    }
2535
2536    /// **Proves:** `ListRewardDistributorsResult` round-trips and its JSON keys
2537    /// are exactly `funded` / `claimable` (SPEC §2.6).
2538    #[test]
2539    fn list_reward_distributors_result_round_trips_with_exact_keys() {
2540        let result = ListRewardDistributorsResult {
2541            funded: vec![RewardDistributorRef {
2542                launcher_id: "11".repeat(32),
2543                store_id: "22".repeat(32),
2544                root: "33".repeat(32),
2545            }],
2546            claimable: vec![],
2547        };
2548        let value = serde_json::to_value(&result).unwrap();
2549        let mut got: Vec<&str> = value
2550            .as_object()
2551            .unwrap()
2552            .keys()
2553            .map(String::as_str)
2554            .collect();
2555        got.sort_unstable();
2556        assert_eq!(got, vec!["claimable", "funded"]);
2557
2558        let back: ListRewardDistributorsResult = serde_json::from_value(value).unwrap();
2559        assert_eq!(result, back);
2560    }
2561
2562    /// **Proves:** `GetRewardDistributorResult` round-trips, and `entry_set_stale`
2563    /// IS present on this chain-derived type (contrast `RewardProverStatus`,
2564    /// which must never carry it — SPEC §12.4 vs §2.4).
2565    #[test]
2566    fn get_reward_distributor_result_round_trips_and_carries_entry_set_stale() {
2567        let params = GetRewardDistributorParams {
2568            launcher_id: "ab".repeat(32),
2569        };
2570        let back: GetRewardDistributorParams =
2571            serde_json::from_str(&serde_json::to_string(&params).unwrap()).unwrap();
2572        assert_eq!(params, back);
2573
2574        let result = GetRewardDistributorResult {
2575            launcher_id: "ab".repeat(32),
2576            store_id: "cd".repeat(32),
2577            root: "ef".repeat(32),
2578            epoch_seconds: 86_400,
2579            first_epoch_start: 1_000,
2580            payout_threshold: 500_000,
2581            fee_bps: 250,
2582            withdrawal_share_bps: 9_000,
2583            reserve_base_units: 1_000_000,
2584            entry_count: 42,
2585            current_distributor_epoch: 7,
2586            last_entry_write_at: Some(1_650),
2587            entry_set_stale: true,
2588            observed_at: 1_700,
2589        };
2590        let value = serde_json::to_value(&result).unwrap();
2591        assert_eq!(value["entry_set_stale"], true);
2592        let back: GetRewardDistributorResult = serde_json::from_value(value).unwrap();
2593        assert_eq!(result, back);
2594    }
2595
2596    /// **Proves:** `entry_set_stale` is placed on exactly one of the two
2597    /// reward-distributor result types — present on the chain-derived
2598    /// `GetRewardDistributorResult`, absent from the self-reported
2599    /// `RewardProverStatus` — SPEC §12.4 vs §2.4.
2600    /// **Catches:** the staleness boolean migrating (or being copy-pasted)
2601    /// onto the self-reported type, which would let a wedged prover fake
2602    /// liveness by simply never flipping it.
2603    #[test]
2604    fn entry_set_stale_is_placed_on_the_chain_derived_result_only() {
2605        let prover_status = serde_json::to_value(sample_prover_status()).unwrap();
2606        assert!(
2607            !prover_status
2608                .as_object()
2609                .unwrap()
2610                .contains_key("entry_set_stale"),
2611            "RewardProverStatus must never carry entry_set_stale (SPEC §2.4)"
2612        );
2613
2614        let distributor_result = GetRewardDistributorResult {
2615            launcher_id: "ab".repeat(32),
2616            store_id: "cd".repeat(32),
2617            root: "ef".repeat(32),
2618            epoch_seconds: 86_400,
2619            first_epoch_start: 1_000,
2620            payout_threshold: 500_000,
2621            fee_bps: 250,
2622            withdrawal_share_bps: 9_000,
2623            reserve_base_units: 1_000_000,
2624            entry_count: 42,
2625            current_distributor_epoch: 7,
2626            last_entry_write_at: None,
2627            entry_set_stale: false,
2628            observed_at: 1_700,
2629        };
2630        let value = serde_json::to_value(&distributor_result).unwrap();
2631        assert!(
2632            value.as_object().unwrap().contains_key("entry_set_stale"),
2633            "GetRewardDistributorResult must carry entry_set_stale (SPEC §12.4)"
2634        );
2635    }
2636
2637    /// **Proves:** `GetRewardProverStatusParams` with an absent `launcher_id`
2638    /// deserializes from an empty JSON object to `None` — the field is
2639    /// genuinely optional on the wire, not merely optional in Rust.
2640    #[test]
2641    fn get_reward_prover_status_params_absent_launcher_id_is_none() {
2642        let parsed: GetRewardProverStatusParams = serde_json::from_value(json!({})).unwrap();
2643        assert_eq!(parsed.launcher_id, None);
2644
2645        // And the round trip the other way: `Some` serializes the key back out.
2646        let with_id = GetRewardProverStatusParams {
2647            launcher_id: Some("ab".repeat(32)),
2648        };
2649        let value = serde_json::to_value(&with_id).unwrap();
2650        assert_eq!(value["launcher_id"], json!("ab".repeat(32)));
2651    }
2652
2653    /// **Proves:** `ListRewardDistributorCommitmentsResult` round-trips,
2654    /// including the legitimate EMPTY `commitments` case (a distributor
2655    /// funded only via `AddIncentives` has no clawback slots at all — an
2656    /// irrevocable donation, not an error) — SPEC §7.4 clause 5.
2657    #[test]
2658    fn list_reward_distributor_commitments_round_trips_with_empty_commitments() {
2659        let params = ListRewardDistributorCommitmentsParams {
2660            launcher_id: "ab".repeat(32),
2661        };
2662        let back: ListRewardDistributorCommitmentsParams =
2663            serde_json::from_str(&serde_json::to_string(&params).unwrap()).unwrap();
2664        assert_eq!(params, back);
2665
2666        let result = ListRewardDistributorCommitmentsResult {
2667            launcher_id: "ab".repeat(32),
2668            withdrawal_share_bps: 9_000,
2669            epoch_seconds: 86_400,
2670            commitments: vec![],
2671            observed_at: 1_700,
2672        };
2673        let back: ListRewardDistributorCommitmentsResult =
2674            serde_json::from_str(&serde_json::to_string(&result).unwrap()).unwrap();
2675        assert_eq!(result, back);
2676        assert_eq!(back.epoch_seconds, 86_400);
2677    }
2678
2679    /// **Proves:** `recoverable_base_units` is `rewards_base_units *
2680    /// withdrawal_share_bps / 10_000`, computed with integer arithmetic
2681    /// (multiply then divide) that TRUNCATES rather than rounds up — SPEC
2682    /// §7.4 clause 4 / §7.5.
2683    /// **Catches:** a rounded-up recoverable amount, which would promise
2684    /// money the chain will not return on clawback.
2685    #[test]
2686    fn commitment_recoverable_amount_truncates_and_never_exceeds_committed() {
2687        let withdrawal_share_bps: u64 = 9_000;
2688
2689        // Evenly divisible: 1_000 * 9000 / 10000 = 900.
2690        let even = RewardDistributorCommitment {
2691            epoch_start: 10,
2692            clawback_puzzle_hash: "aa".repeat(32),
2693            rewards_base_units: 1_000,
2694            recoverable_base_units: 1_000 * withdrawal_share_bps / 10_000,
2695        };
2696        assert_eq!(even.recoverable_base_units, 900);
2697
2698        // Not evenly divisible: 1_001 * 9000 / 10000 = 900.9 -> 900, not 901.
2699        let odd = RewardDistributorCommitment {
2700            epoch_start: 11,
2701            clawback_puzzle_hash: "bb".repeat(32),
2702            rewards_base_units: 1_001,
2703            recoverable_base_units: 1_001 * withdrawal_share_bps / 10_000,
2704        };
2705        assert_eq!(
2706            odd.recoverable_base_units, 900,
2707            "a non-evenly-divisible amount must truncate down, never round up"
2708        );
2709
2710        for commitment in [even, odd] {
2711            assert!(
2712                commitment.recoverable_base_units <= commitment.rewards_base_units,
2713                "recoverable_base_units must never exceed rewards_base_units"
2714            );
2715        }
2716    }
2717}