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 — or
1575 /// the statement that the prover registry was never consulted.
1576 ///
1577 /// This is a [`Half`] for the same reason as
1578 /// [`ListRewardDistributorsResult`]'s two halves: a bare empty vector cannot
1579 /// tell an operator "this node runs no prover loops" apart from "I could not
1580 /// read the registry", and on a reward surface the second reads as the first
1581 /// while meaning the opposite. It describes the responder's own consultation
1582 /// of its prover registry, never a chain fact about any one distributor.
1583 pub statuses: Half<RewardProverStatus>,
1584}
1585
1586/// A minimal distributor reference — SPEC §2.6.
1587#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1588#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1589pub struct RewardDistributorRef {
1590 /// The distributor singleton's launcher id (64-hex).
1591 pub launcher_id: HexId,
1592 /// The backing store's launcher id (64-hex).
1593 pub store_id: HexId,
1594 /// The store's current generation root (64-hex).
1595 pub root: HexId,
1596}
1597
1598/// One collection a responder either consulted — and can therefore answer for —
1599/// or did not: dig-rewards-coin SPEC §12.5 clause 6.
1600///
1601/// # Why the items live INSIDE the variant
1602///
1603/// Clause 6: "the absence MUST be surfaced, not swallowed", and it "MUST be
1604/// dated by an `observed_at` and MUST NOT be presented as a bare zero". A bare
1605/// `claimable: []` cannot tell an operator apart "I looked and I hold no mirror
1606/// claims" from "nothing looked" — a funder-only responder emitting the empty
1607/// vector reads as the former while meaning the latter.
1608///
1609/// An observation carried *beside* its collection would leave
1610/// `{"outcome": "not_consulted", "items": [seven things]}` expressible, forbidden
1611/// only by prose. Folding the items into
1612/// [`Consulted`](Self::Consulted) makes that contradiction unconstructible in
1613/// Rust and unparseable on the wire: the arm that says nothing looked has no
1614/// field to put items in, and the arm that carries items has already said it
1615/// looked. A partially consulted half, if this crate ever needs one, is a third
1616/// arm rather than a new convention layered over the same two fields.
1617///
1618/// # What it deliberately cannot say
1619///
1620/// It describes the **responder's own consultation of the collection**, never a
1621/// chain fact about any one member. Clause 7 forbids a consumer reconstructing
1622/// "never admitted" from "evicted after settlement", and there is no arm, reason
1623/// code or per-member record here that could carry that split: after a
1624/// `Consulted` read, a distributor the peer was never admitted to and one it was
1625/// evicted from are both simply absent from `items`, exactly as before.
1626///
1627/// This does **not** discharge clause 6's *per-member* dated absence, which
1628/// needs a field this wire does not yet carry. What it closes is the
1629/// per-collection consultation record.
1630///
1631/// # Relation to `absence_established`
1632///
1633/// [`AvailabilityAnswer::absence_established`] is this crate's earlier, weaker
1634/// expression of the same idea: a marker *beside* the data, so "absence not
1635/// established, and here are seven items" stays representable and is forbidden
1636/// only by prose. `Half` is the intended direction for new shapes.
1637/// `AvailabilityAnswer` keeps its form because it has shipped consumers; it is
1638/// not a second pattern to copy.
1639///
1640/// # Fail-closed
1641///
1642/// Matching [`ProverState`]: internally tagged on `outcome`, no
1643/// `#[serde(other)]`, no `Default`, no `skip_serializing_if`, and `observed_at`
1644/// required in **every** arm. An unknown or missing outcome, or a missing date,
1645/// is a hard parse error rather than a silently coerced "consulted".
1646///
1647/// ```
1648/// use dig_rpc_protocol::types::Half;
1649///
1650/// let looked: Half<u32> = Half::Consulted { observed_at: 1_700, items: vec![] };
1651/// let did_not: Half<u32> = Half::NotConsulted { observed_at: 1_700 };
1652/// assert_eq!(looked.items(), Some(&[][..]));
1653/// assert_eq!(did_not.items(), None);
1654/// assert_eq!(did_not.observed_at(), 1_700);
1655/// ```
1656#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1657#[serde(tag = "outcome", rename_all = "snake_case", deny_unknown_fields)]
1658#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1659pub enum Half<T> {
1660 /// The collection WAS consulted, and `items` is its complete answer as of
1661 /// `observed_at` (Unix seconds). An empty `items` here means "none", and the
1662 /// reader derives staleness itself from `observed_at`.
1663 Consulted {
1664 /// Unix seconds the collection was read.
1665 observed_at: u64,
1666 /// The complete answer as of `observed_at`; empty means "none".
1667 items: Vec<T>,
1668 },
1669 /// The collection was NOT consulted as of `observed_at` (Unix seconds):
1670 /// nothing looked, so there is no answer here to read as "none".
1671 NotConsulted {
1672 /// Unix seconds this answer was assembled without consulting the
1673 /// collection.
1674 observed_at: u64,
1675 },
1676}
1677
1678impl<T> Half<T> {
1679 /// The Unix seconds this half was observed — present in both arms, so a
1680 /// reader always has a staleness anchor.
1681 pub fn observed_at(&self) -> u64 {
1682 match self {
1683 Half::Consulted { observed_at, .. } | Half::NotConsulted { observed_at } => {
1684 *observed_at
1685 }
1686 }
1687 }
1688
1689 /// The consulted answer, or `None` when nothing looked.
1690 ///
1691 /// `Some(&[])` means "consulted, and there are none"; `None` means "not
1692 /// consulted" — the distinction a bare `Vec` cannot make.
1693 pub fn items(&self) -> Option<&[T]> {
1694 match self {
1695 Half::Consulted { items, .. } => Some(items),
1696 Half::NotConsulted { .. } => None,
1697 }
1698 }
1699}
1700
1701/// Result for
1702/// [`dig.listRewardDistributors`](crate::method::Method::ListRewardDistributors)
1703/// — SPEC §2.6: "the distributors this node funds, and the distributors this
1704/// node has a claim to as a mirror".
1705///
1706/// # No `Default`, by design
1707///
1708/// `Default` is not derived here and MUST NOT be re-added. A default could only
1709/// be the empty, consulted-looking answer — the exact ambiguity [`Half`] exists
1710/// to remove (SPEC §12.5 clause 6). Every producer must state, per half, whether
1711/// it consulted that half.
1712#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1713#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1714pub struct ListRewardDistributorsResult {
1715 /// Distributors this node funds (the reserve is this node's), or the
1716 /// statement that the funded half was never consulted.
1717 ///
1718 /// A responder whose funded set is unconfigured, unreadable, or failed to
1719 /// read must say so here rather than emit an empty list, which would read as
1720 /// "this node funds nothing" — a claim about the operator's own money.
1721 pub funded: Half<RewardDistributorRef>,
1722 /// Distributors this node has a claim to as a mirror but does not fund, or
1723 /// the statement that the claimable half was never consulted.
1724 pub claimable: Half<RewardDistributorRef>,
1725}
1726
1727/// Params for
1728/// [`dig.getRewardDistributor`](crate::method::Method::GetRewardDistributor).
1729#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1730#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1731pub struct GetRewardDistributorParams {
1732 /// The distributor singleton's launcher id (64-hex, required).
1733 pub launcher_id: HexId,
1734}
1735
1736/// Result for
1737/// [`dig.getRewardDistributor`](crate::method::Method::GetRewardDistributor) —
1738/// SPEC §2.6, third method: chain-derived distributor state only, never the
1739/// local prover loop's own state (see [`RewardProverStatus`] for that).
1740///
1741/// # `entry_set_stale` lives HERE, never on `RewardProverStatus`
1742///
1743/// This is the one boolean in the reward-distributor surface, and it belongs
1744/// here specifically: per SPEC §12.4 it is computed by the responder from the
1745/// distributor singleton's on-chain spend history at read time, not
1746/// self-reported by a possibly-wedged writer. Copying it onto
1747/// [`RewardProverStatus`] would reintroduce exactly the self-reported-health
1748/// failure that type's doc comment forbids — see that type for the full
1749/// argument.
1750#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1751#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1752pub struct GetRewardDistributorResult {
1753 /// The distributor singleton's launcher id (64-hex).
1754 pub launcher_id: HexId,
1755 /// The backing store's launcher id (64-hex).
1756 pub store_id: HexId,
1757 /// The store's current generation root (64-hex).
1758 pub root: HexId,
1759 /// The payout epoch length, in seconds.
1760 pub epoch_seconds: u64,
1761 /// Unix seconds the first epoch started.
1762 pub first_epoch_start: u64,
1763 /// The reserve threshold, in base units, that triggers a payout.
1764 pub payout_threshold: u64,
1765 /// The distributor's fee, in basis points.
1766 pub fee_bps: u16,
1767 /// The share of a clawed-back commitment the committer recovers, in basis
1768 /// points — SPEC §7.5. `withdrawal_share_bps = 9000` means a clawback
1769 /// returns 90% of the committed value; the remaining 10% is forfeited to
1770 /// the reserve as a deterrent against the funder (SPEC §7.5 clause 1: it
1771 /// is priced correctly and is **not** compensation to induced mirrors).
1772 /// Curried at launch and immutable, same as [`Self::fee_bps`] beside it.
1773 pub withdrawal_share_bps: u16,
1774 /// The current reserve, in base units.
1775 pub reserve_base_units: u64,
1776 /// The current entry-set size.
1777 pub entry_count: u64,
1778 /// The current epoch index (`0`-based from `first_epoch_start`).
1779 pub current_distributor_epoch: u64,
1780 /// Unix seconds of the most recent entry-set write on chain, if any.
1781 /// `None` together with a non-zero `reserve_base_units` **implies
1782 /// stale**: an entry set that has never been written is maximally
1783 /// stale, not unknown, and a consumer MUST NOT render it as blank or
1784 /// "unknown" (SPEC §2.4 cl. 1 — silence is not an acceptable
1785 /// representation of "not distributing").
1786 pub last_entry_write_at: Option<u64>,
1787 /// `true` when the entry set has not changed in
1788 /// `STALE_ENTRY_SET_SECONDS = 172_800` (48 h) **while the reserve is
1789 /// non-zero** — SPEC §12.4. A drained distributor with a frozen entry set
1790 /// is not stale, it is [`Unfunded`](crate::types::ProverState::Unfunded);
1791 /// the non-zero-reserve conjunct exists to keep the two states distinct.
1792 /// The responder computes this at read time from the singleton's own
1793 /// on-chain spend history — it is not self-reported, so a wedged prover
1794 /// cannot fake it. See the type doc for why this boolean is safe here and
1795 /// forbidden on [`RewardProverStatus`].
1796 pub entry_set_stale: bool,
1797 /// Unix seconds this result was assembled.
1798 pub observed_at: u64,
1799}
1800
1801/// Params for
1802/// [`dig.listRewardDistributorCommitments`](crate::method::Method::ListRewardDistributorCommitments).
1803#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1804#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1805pub struct ListRewardDistributorCommitmentsParams {
1806 /// The distributor singleton's launcher id (64-hex, required).
1807 pub launcher_id: HexId,
1808}
1809
1810/// One clawback commitment slot for a distributor epoch — SPEC §7.4 clause 5.
1811///
1812/// # `recoverable_base_units` is NOT `rewards_base_units`
1813///
1814/// Committed is not recoverable: SPEC §7.4 clause 4 / §7.5 return only
1815/// `withdrawal_share_bps / 10000` of the committed value on clawback (the
1816/// remainder is forfeited to the reserve — see
1817/// [`GetRewardDistributorResult::withdrawal_share_bps`]). Reporting only
1818/// `rewards_base_units` and letting a caller label it "recoverable" would
1819/// overstate every clawback by the forfeit fraction — exactly the
1820/// one-balance-figure money-honesty failure SPEC §7.4 clause 5 forbids,
1821/// relocated from a single total into a single per-slot figure. So the
1822/// **responder** must compute `recoverable_base_units` itself, with integer
1823/// arithmetic in the order `rewards_base_units * withdrawal_share_bps /
1824/// 10_000` — multiply then divide, no floats, truncated (never rounded up:
1825/// rounding up would promise money the chain will not return). This type
1826/// does not enforce that computation — see below.
1827///
1828/// Only the holder of the key for `clawback_puzzle_hash` may claw this slot
1829/// back — not an operator role, not the manager singleton, and not the
1830/// launcher (SPEC §7.4 clause 3). This field is the proof of entitlement; a
1831/// reader must not mistake it for a display label.
1832///
1833/// This type does not enforce any of the above: `recoverable_base_units` is
1834/// a bare `pub u64` with no constructor or validation. The **responder**
1835/// must compute it in the order described; nothing here checks that it did.
1836#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1837#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1838pub struct RewardDistributorCommitment {
1839 /// The epoch this commitment slot funds.
1840 pub epoch_start: u64,
1841 /// The chain's `clawback_ph` (SPEC / `chia-sdk-types`
1842 /// `RewardDistributorCommitmentSlotValue`): the puzzle hash whose key
1843 /// holder alone may claw this slot back.
1844 pub clawback_puzzle_hash: HexId,
1845 /// The committed amount, in base units.
1846 pub rewards_base_units: u64,
1847 /// The amount actually recoverable on clawback, in base units —
1848 /// `rewards_base_units * withdrawal_share_bps / 10_000`, integer
1849 /// arithmetic, truncated down. See the type doc for why this must never
1850 /// be derived by a caller from `rewards_base_units` alone.
1851 ///
1852 /// This is share arithmetic only. It is **NOT an eligibility claim**: it
1853 /// says what fraction of the slot would return, not that the caller may
1854 /// claw it back. Entitlement is key-holding against
1855 /// `clawback_puzzle_hash` and nothing else (SPEC §7.4 cl. 3).
1856 pub recoverable_base_units: u64,
1857}
1858
1859/// Result for
1860/// [`dig.listRewardDistributorCommitments`](crate::method::Method::ListRewardDistributorCommitments)
1861/// — SPEC §7.4 clause 5: per-epoch commitment slots, never a single balance
1862/// figure.
1863#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
1864#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1865pub struct ListRewardDistributorCommitmentsResult {
1866 /// The distributor singleton's launcher id (64-hex).
1867 pub launcher_id: HexId,
1868 /// The curried launch constant, echoed so a caller's row math (dividing
1869 /// `recoverable_base_units` by `rewards_base_units`) is auditable against
1870 /// the value that actually governs it. A responder MUST use this echoed
1871 /// value — never a compiled-in constant — when computing each row's
1872 /// `recoverable_base_units`, because the share is a launch-curried,
1873 /// per-distributor value that differs across distributors. A conforming
1874 /// responder MUST NOT emit a value above `10_000`.
1875 pub withdrawal_share_bps: u16,
1876 /// The payout epoch length, in seconds — a launch-curried, immutable
1877 /// distributor constant, echoed here so a caller can compute an epoch's
1878 /// end (`epoch_start + epoch_seconds`) or place a commitment on a
1879 /// calendar without a second `dig.getRewardDistributor` call. This is
1880 /// per-distributor and defaulted, not a fixed 7-day value, so it must
1881 /// not be hardcoded.
1882 pub epoch_seconds: u64,
1883 /// One entry per commitment slot. Empty is legitimate: a distributor
1884 /// funded only via `AddIncentives` has no clawback-eligible slots at all
1885 /// — an irrevocable donation, not an error.
1886 pub commitments: Vec<RewardDistributorCommitment>,
1887 /// Unix seconds this result was assembled.
1888 pub observed_at: u64,
1889}
1890
1891// ===========================================================================
1892// dig.getPayeeRewardClaimStatus
1893// (CONTROL — loopback / in-process only; dig-rewards-coin SPEC §12.5 clause 6,
1894// §2.4)
1895// ===========================================================================
1896
1897/// The subject of a **payee-side** status answer.
1898///
1899/// One variant on purpose, and named for that one variant on purpose. A payee's
1900/// claim-side posture and a funder's distributor-side posture are different
1901/// answers with different money behind them, and this crate keeps them in
1902/// different types rather than in two arms of one enum — so a payee-shaped
1903/// result structurally cannot be built carrying a funder's subject, whatever a
1904/// responder gets wrong. A funder answer, if this crate ever grows one, gets its
1905/// own type and its own literal.
1906///
1907/// The name carries that rule. A `RewardSubject` invites a `Funder` arm, and the
1908/// moment it has one the type guarantees nothing; `PayeeSubject` cannot absorb a
1909/// funder arm without a rename obviously wrong at the call site, which is the
1910/// point.
1911#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
1912#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1913pub enum PayeeSubject {
1914 /// The node answering is speaking as a **payee** — a mirror with a claim,
1915 /// not the party that funded the reserve.
1916 #[serde(rename = "payee")]
1917 Payee,
1918}
1919
1920/// What a node can say about its own claim log: it read the log and has a count,
1921/// or it did not read the log and has no count to give.
1922///
1923/// # Why the count is inside the variant
1924///
1925/// The count and the fact that anything was counted cannot be separated, for the
1926/// same reason [`Half`]'s items live inside `Consulted`. A node whose claim log
1927/// is missing, unreadable, or failed to read has nothing to report, and a
1928/// `claims_submitted_count: 0` beside a freshly stamped `observed_at` is worse
1929/// than an undated zero: the date actively reassures the reader that something
1930/// looked at the log just now and found nothing, which is dig-rewards-coin SPEC
1931/// §12.5 clause 6's "reassuring zero" reproduced inside the type added to remove
1932/// it. There is no arm here that can carry a count without having read the log.
1933///
1934/// This is a sibling of [`Half`] rather than an instance of it: `Half` answers
1935/// for a *collection* and carries `items`, and forcing a scalar tally through it
1936/// would mean either a vacuous `Vec` or a wire key that names the wrong thing.
1937/// The vocabulary — `outcome`, two arms, `observed_at` in both — is deliberately
1938/// identical, so a reader who has learned one has learned the other.
1939///
1940/// `observed_at` dates the **consultation**, not the assembly of the answer:
1941/// in [`Consulted`](Self::Consulted) it is when the log was read, and in
1942/// [`NotConsulted`](Self::NotConsulted) it is when the responder established
1943/// that it could not read it. Fail-closed like [`Half`]: internally tagged, no
1944/// `#[serde(other)]`, no `Default`, no `skip_serializing_if`.
1945#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
1946#[serde(tag = "outcome", rename_all = "snake_case", deny_unknown_fields)]
1947#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
1948pub enum ClaimLogObservation {
1949 /// The claim log WAS read as of `observed_at` (Unix seconds), and
1950 /// `claims_submitted_count` is what it held.
1951 Consulted {
1952 /// Unix seconds the claim log was read.
1953 observed_at: u64,
1954 /// How many claim submissions this node has made as a payee. A count of
1955 /// attempts, not of money: it says nothing about how much was settled,
1956 /// and a reader MUST NOT treat it as an amount or as a success count.
1957 claims_submitted_count: u64,
1958 },
1959 /// The claim log was NOT read as of `observed_at` (Unix seconds) — missing,
1960 /// unreadable, or the read failed. There is deliberately no count here.
1961 NotConsulted {
1962 /// Unix seconds the responder established it could not read the log.
1963 observed_at: u64,
1964 },
1965}
1966
1967/// The claim loop's own condition, as the loop last reported it — a closed
1968/// set of seven members (SPEC §4.4.3). `ClaimLoopState` mirrors the producer's
1969/// enumeration one-to-one, payloads included: a wire type with fewer states
1970/// than the loop can be in is a new instance of the defect this method exists
1971/// to remove, a type that cannot say something went wrong.
1972///
1973/// The tag key is `kind`, not `state` — the field holding this type is already
1974/// named `state`, and `"state": { "state": … }` would put two meanings under
1975/// one key in adjacent positions.
1976///
1977/// [`ClaimableButNotClaiming`](Self::ClaimableButNotClaiming) is the state a
1978/// conforming producer reports **whenever claims exist that the loop did not
1979/// make and no cycle-wide fault is live** — the anti-silence signal this
1980/// method exists to carry. It is never folded into
1981/// [`Nominal`](Self::Nominal) for lack of anywhere else to go, and a
1982/// cycle-wide fault is never folded into it either.
1983///
1984/// The five payload-less members ([`Idle`](Self::Idle),
1985/// [`ChainSourceUnavailable`](Self::ChainSourceUnavailable),
1986/// [`PersistedStateCorrupt`](Self::PersistedStateCorrupt),
1987/// [`CadenceNotElapsed`](Self::CadenceNotElapsed), [`Nominal`](Self::Nominal))
1988/// serialise as exactly `{ "kind": … }`. serde does not apply
1989/// `deny_unknown_fields` to the payload-less members of an internally tagged
1990/// enum, so `{ "kind": "idle", "claimable": 5 }` parses as `Idle` with the
1991/// stray key silently dropped (SPEC §4.4.1's one stated vacuity) — a
1992/// conforming producer never emits the stray key, and a consumer MUST NOT
1993/// read any key but `kind` from a payload-less state. The property this type
1994/// does enforce is the one that carries weight: the counts a reader acts on
1995/// live on [`ClaimLoopObservation::Consulted`], where unknown and missing
1996/// keys ARE rejected.
1997///
1998/// Not `#[non_exhaustive]`, on purpose: a wildcard arm in a consumer is
1999/// `#[serde(other)]` relocated to the render path, deciding at compile time
2000/// that a state nobody has heard of renders as something bland. A new member
2001/// is a SPEC amendment and a breaking release for every consumer.
2002#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
2003#[serde(tag = "kind", rename_all = "snake_case", deny_unknown_fields)]
2004#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
2005pub enum ClaimLoopState {
2006 /// No cycle has been attempted yet.
2007 Idle,
2008 /// The chain seam reported itself unavailable; no cycle ran. The true
2009 /// state, not a silent no-op.
2010 ChainSourceUnavailable,
2011 /// The loop's persisted claim state was unreadable, unparsable, over its
2012 /// own budget or future-dated; the loop treats its spend window as
2013 /// exhausted and submits nothing this cycle. A refusal made visible, not
2014 /// a freeze that reads as [`Nominal`](Self::Nominal).
2015 PersistedStateCorrupt,
2016 /// The claim cadence has not elapsed since the last completed cycle: a
2017 /// deliberate skip, named as its own condition rather than left as the
2018 /// absence of one.
2019 CadenceNotElapsed,
2020 /// A chain call this cycle failed with a real error, distinct from "no
2021 /// chain at all".
2022 Faulted {
2023 /// Consecutive cycles, including the current one, on which the loop
2024 /// has observed a cycle-wide fault. From a conforming producer this
2025 /// is at least 1; the type does not reject `0`.
2026 cycles: u64,
2027 },
2028 /// Fewer distributors were claimed against this cycle than should have
2029 /// been, and no fault is live. **The anti-silence signal**: the loop is
2030 /// running and paying nobody, or not everybody. This is the state
2031 /// reported whenever claims exist and none are being made.
2032 ClaimableButNotClaiming {
2033 /// This cycle's distributors that should have been claimed against.
2034 /// A count of distributors, never an amount, and at least
2035 /// [`ClaimLoopObservation::Consulted`]'s own
2036 /// `distributors_claimable` — the producer folds in refusals it
2037 /// never counted as claimable.
2038 claimable: u64,
2039 /// This cycle's distributors actually claimed against. From a
2040 /// conforming producer, strictly less than `claimable`; the type
2041 /// does not reject the contrary.
2042 submitted: u64,
2043 },
2044 /// A cycle completed and none of the above is true.
2045 Nominal,
2046}
2047
2048/// What a node can say about its own claim loop: it read the loop's last
2049/// reported condition and has counts and a state, or it did not read the loop
2050/// and has nothing to give.
2051///
2052/// A sibling of [`ClaimLogObservation`], same vocabulary: `outcome`, two
2053/// arms, `observed_at` in both. `observed_at` dates the **consultation** —
2054/// in [`Consulted`](Self::Consulted) it is when the loop last wrote the
2055/// status this arm reports, stamped by the loop in the cycle that produced
2056/// these numbers or, before any cycle, when the loop published its initial
2057/// `idle`; a responder MUST NOT stamp it with the clock of the RPC handler
2058/// that read the status. Re-dating the snapshot at read time manufactures
2059/// freshness for a number nobody produced just now, and only an
2060/// `observed_at` that stops advancing tells a reader a stuck loop's last
2061/// `nominal` is its last word rather than its current one.
2062///
2063/// In [`NotConsulted`](Self::NotConsulted) it is when the responder
2064/// established the loop's status could not be read: the loop is not
2065/// constructed (claiming disabled or not started) or its status was
2066/// unreadable — not "the chain is unreachable" (that is a
2067/// [`ClaimLoopState`]) and not "no distributors" (that is a count).
2068///
2069/// Fail-closed like [`ClaimLogObservation`]: internally tagged, no
2070/// `#[serde(other)]`, no `Default`, no `skip_serializing_if`,
2071/// `deny_unknown_fields` on the whole enum — a count or a verdict cannot
2072/// ride an arm that says nothing was read.
2073#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
2074#[serde(tag = "outcome", rename_all = "snake_case", deny_unknown_fields)]
2075#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
2076pub enum ClaimLoopObservation {
2077 /// The claim loop's status WAS read as of `observed_at` (Unix seconds).
2078 Consulted {
2079 /// Unix seconds the claim loop last wrote the status this arm
2080 /// reports.
2081 observed_at: u64,
2082 /// How many reward distributors this node's claim loop has
2083 /// discovered as candidates it might hold an entry in. A count of
2084 /// distributors, never an amount.
2085 distributors_known: u64,
2086 /// How many of those the loop judged claimable in the cycle dated by
2087 /// `observed_at`. A count of distributors, never an amount, and a
2088 /// per-cycle reading, not a lifetime total.
2089 distributors_claimable: u64,
2090 /// The loop's condition in the cycle dated by `observed_at`.
2091 state: ClaimLoopState,
2092 },
2093 /// The claim loop's status was NOT read as of `observed_at` (Unix
2094 /// seconds) — the loop is not constructed or its status was unreadable.
2095 /// There is deliberately no count and no state here.
2096 NotConsulted {
2097 /// Unix seconds the responder established it could not read the
2098 /// loop's status.
2099 observed_at: u64,
2100 },
2101}
2102
2103/// Result for
2104/// [`dig.getPayeeRewardClaimStatus`](crate::method::Method::GetPayeeRewardClaimStatus)
2105/// — the claim-side posture of the node answering, as a payee.
2106///
2107/// # The subject is on the wire, not inferred from the endpoint
2108///
2109/// [`subject`](Self::subject) is required and is the literal `"payee"`. It is
2110/// not redundant with the method name: this epic shipped a defect in which a
2111/// **funder's** distributor-wide total was rendered to a **payee** as that
2112/// operator's own earnings, overstating by up to 250x, and it passed security
2113/// review and a full green CI because no test asserted *whose* money the number
2114/// was. A renderer that reads `subject` off the payload cannot make that
2115/// substitution silently; one that infers the subject from which endpoint it
2116/// thinks it called can.
2117///
2118/// # No monetary amount, at all
2119///
2120/// There is deliberately no amount field here — not optional, not nullable,
2121/// absent. A payload that carries no amount has nothing a UI can misrender as
2122/// earnings, and that absence is the whole defence; an `Option<u64>` would not
2123/// be, because the misrendering path is a present number attributed to the wrong
2124/// party. A payee that wants its own settled history reads its own past
2125/// `InitiatePayout` spends, which are on chain and are evidence (SPEC §12.5
2126/// clause 7). The payout puzzle hash is likewise absent and MUST NOT be added:
2127/// it is the payee's payment identity, and nothing here needs it.
2128///
2129/// # No `#[serde(default)]`, no `skip_serializing_if`
2130///
2131/// Every field is required on the wire in both directions. A defaulting field is
2132/// a field a producer can omit and a consumer will invent — which for
2133/// [`subject`](Self::subject) would restore exactly the inferred-subject hazard
2134/// above, and for [`claim_log`](Self::claim_log) would manufacture a
2135/// consultation nobody performed.
2136#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
2137#[serde(deny_unknown_fields)]
2138#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
2139pub struct PayeeClaimStatus {
2140 /// Always [`PayeeSubject::Payee`]; serialises as the literal
2141 /// `"subject": "payee"`.
2142 pub subject: PayeeSubject,
2143 /// This node's claim log: read, with the count it held, or not read at all.
2144 ///
2145 /// The count lives inside the observation so it cannot be separated from the
2146 /// fact that something read the log. The reader derives staleness itself
2147 /// from the observation's `observed_at` and its own clock (SPEC §2.4); no
2148 /// staleness is pre-computed here.
2149 pub claim_log: ClaimLogObservation,
2150 /// This node's claim loop: read, with its counts and last-reported
2151 /// state, or not read at all (new in 0.13.0, SPEC §4.4).
2152 ///
2153 /// New in 0.13.0. `deny_unknown_fields` on this struct means a 0.12.0
2154 /// payload — which has no `claim_loop` key — fails to parse rather than
2155 /// silently answering with a missing field: version skew fails loudly in
2156 /// both directions.
2157 pub claim_loop: ClaimLoopObservation,
2158}
2159
2160// ===========================================================================
2161// dig.health / dig.methods / rpc.discover (discovery)
2162// ===========================================================================
2163
2164/// Result for [`dig.health`](crate::method::Method::Health) — liveness + a
2165/// capability summary.
2166#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
2167#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
2168pub struct Health {
2169 /// Liveness — `"ok"` when the node can serve.
2170 pub status: String,
2171 /// The node's software version.
2172 #[serde(skip_serializing_if = "Option::is_none", default)]
2173 pub version: Option<String>,
2174 /// The DIG network id the node serves.
2175 #[serde(skip_serializing_if = "Option::is_none", default)]
2176 pub network_id: Option<String>,
2177 /// The method names this node implements (its profile).
2178 #[serde(default)]
2179 pub methods: Vec<String>,
2180}
2181
2182/// Result for [`dig.methods`](crate::method::Method::Methods) — the method names
2183/// this node implements (agent self-describe).
2184#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
2185#[cfg_attr(feature = "schema-export", derive(schemars::JsonSchema))]
2186pub struct Methods {
2187 /// The implemented method names.
2188 pub methods: Vec<String>,
2189}
2190
2191#[cfg(test)]
2192mod tests {
2193 use super::*;
2194 use serde_json::json;
2195
2196 /// The JSON object keys of `value`, sorted — so a key-set assertion reads as
2197 /// one line and fails naming the field that appeared or vanished.
2198 fn sorted_keys(value: &serde_json::Value) -> Vec<&str> {
2199 let mut keys: Vec<&str> = value
2200 .as_object()
2201 .expect("expected a JSON object")
2202 .keys()
2203 .map(String::as_str)
2204 .collect();
2205 keys.sort_unstable();
2206 keys
2207 }
2208
2209 /// **Proves:** `ContentChunk` round-trips a node-profile window (no
2210 /// network-profile fields) without inventing keys.
2211 /// **Catches:** a missing `skip_serializing_if` that would leak `null`
2212 /// network-profile fields onto the node profile.
2213 #[test]
2214 fn content_chunk_node_profile_is_lean() {
2215 let c = ContentChunk {
2216 ciphertext: "AAA=".into(),
2217 root: "ab".repeat(32),
2218 complete: false,
2219 next_offset: Some(3_145_728),
2220 inclusion_proof: Some("cHJvb2Y=".into()),
2221 chunk_lens: Some(vec![10, 20]),
2222 source: Some("local".into()),
2223 total_length: None,
2224 length: None,
2225 offset: None,
2226 program_hash: None,
2227 };
2228 let v = serde_json::to_value(&c).unwrap();
2229 assert_eq!(v["source"], "local");
2230 assert!(
2231 v.get("total_length").is_none(),
2232 "node profile must omit total_length"
2233 );
2234 assert!(v.get("program_hash").is_none());
2235 assert_eq!(serde_json::from_value::<ContentChunk>(v).unwrap(), c);
2236 }
2237
2238 /// **Proves:** the network-profile fields serialize when present.
2239 #[test]
2240 fn content_chunk_network_profile_carries_extras() {
2241 let c = ContentChunk {
2242 ciphertext: "AAA=".into(),
2243 root: "cd".repeat(32),
2244 complete: true,
2245 next_offset: None,
2246 inclusion_proof: None,
2247 chunk_lens: None,
2248 source: None,
2249 total_length: Some(100),
2250 length: Some(100),
2251 offset: Some(0),
2252 program_hash: Some("ef".repeat(32)),
2253 };
2254 let v = serde_json::to_value(&c).unwrap();
2255 assert_eq!(v["total_length"], 100);
2256 assert_eq!(v["length"], 100);
2257 assert!(v.get("source").is_none());
2258 }
2259
2260 /// **Proves:** the untagged `Inventory` picks `ForStore` vs `AllStores` by
2261 /// shape.
2262 /// **Catches:** a lost `#[serde(untagged)]` that would tag the variant.
2263 #[test]
2264 fn inventory_untagged_by_shape() {
2265 let for_store = Inventory::ForStore {
2266 store_id: "ab".repeat(32),
2267 roots: vec!["cd".repeat(32)],
2268 };
2269 let s = serde_json::to_string(&for_store).unwrap();
2270 assert!(s.contains("\"roots\""));
2271 assert!(!s.contains("ForStore"));
2272 assert_eq!(serde_json::from_str::<Inventory>(&s).unwrap(), for_store);
2273
2274 let all = Inventory::AllStores {
2275 stores: vec!["ef".repeat(32)],
2276 };
2277 let s = serde_json::to_string(&all).unwrap();
2278 assert!(s.contains("\"stores\""));
2279 assert_eq!(serde_json::from_str::<Inventory>(&s).unwrap(), all);
2280 }
2281
2282 /// **Proves:** `RedirectInfo` serializes the full redirect payload the
2283 /// `-32008` envelope carries.
2284 #[test]
2285 fn redirect_info_shape() {
2286 let r = RedirectInfo {
2287 content: ContentRef {
2288 store_id: "ab".repeat(32),
2289 root: Some("cd".repeat(32)),
2290 retrieval_key: Some("ef".repeat(32)),
2291 },
2292 providers: vec![Provider {
2293 peer_id: "12".repeat(32),
2294 addresses: vec![PeerAddress {
2295 host: "::1".into(),
2296 port: 9444,
2297 kind: "direct".into(),
2298 }],
2299 }],
2300 redirect_depth: 1,
2301 max_redirects: 4,
2302 };
2303 let v = serde_json::to_value(&r).unwrap();
2304 assert_eq!(v["redirect_depth"], 1);
2305 assert_eq!(v["max_redirects"], 4);
2306 assert_eq!(v["providers"][0]["addresses"][0]["host"], "::1");
2307 assert_eq!(serde_json::from_value::<RedirectInfo>(v).unwrap(), r);
2308 }
2309
2310 /// **Proves:** `cache.stats` models the live dig-node result field-for-field
2311 /// (the nested `content_cache{hits,misses}` object included).
2312 /// **Catches:** a drift from the node's `cache.stats` wire shape (#1075).
2313 #[test]
2314 fn cache_stats_wire_shape() {
2315 let s = CacheStats {
2316 cap_bytes: 1 << 30,
2317 used_bytes: 2048,
2318 entry_count: 3,
2319 total_bytes: 2048,
2320 evicted_count: 1,
2321 evicted_bytes: 512,
2322 content_cache: ContentCacheCounters { hits: 7, misses: 2 },
2323 };
2324 let v = serde_json::to_value(s).unwrap();
2325 assert_eq!(v["cap_bytes"], 1 << 30);
2326 assert_eq!(v["entry_count"], 3);
2327 assert_eq!(v["content_cache"]["hits"], 7);
2328 assert_eq!(v["content_cache"]["misses"], 2);
2329 assert_eq!(serde_json::from_value::<CacheStats>(v).unwrap(), s);
2330 }
2331
2332 /// **Proves:** the subscription-management results carry the exact
2333 /// `{subscribed, added|removed, store_id}` / `{subscriptions, count}` shapes
2334 /// the live node returns.
2335 #[test]
2336 fn subscription_result_shapes() {
2337 let sub = SubscribeResult {
2338 subscribed: true,
2339 added: true,
2340 store_id: "ab".repeat(32),
2341 };
2342 let v = serde_json::to_value(&sub).unwrap();
2343 assert_eq!(v["subscribed"], true);
2344 assert_eq!(v["added"], true);
2345 assert_eq!(serde_json::from_value::<SubscribeResult>(v).unwrap(), sub);
2346
2347 let unsub = UnsubscribeResult {
2348 subscribed: false,
2349 removed: true,
2350 store_id: "cd".repeat(32),
2351 };
2352 let v = serde_json::to_value(&unsub).unwrap();
2353 assert_eq!(v["subscribed"], false);
2354 assert_eq!(v["removed"], true);
2355 assert_eq!(
2356 serde_json::from_value::<UnsubscribeResult>(v).unwrap(),
2357 unsub
2358 );
2359
2360 let list = SubscriptionsList {
2361 subscriptions: vec!["ef".repeat(32)],
2362 count: 1,
2363 };
2364 let v = serde_json::to_value(&list).unwrap();
2365 assert_eq!(v["count"], 1);
2366 assert_eq!(
2367 serde_json::from_value::<SubscriptionsList>(v).unwrap(),
2368 list
2369 );
2370 }
2371
2372 /// **Proves:** `ModuleInfo` carries `chunk_lens` covering every chunk, and
2373 /// round-trips with unknown future fields.
2374 /// **Catches:** a missing `chunk_lens` field that would leave a puller unable
2375 /// to map a fetched byte range to its covering chunk hash.
2376 /// **Invariants enforced by docs:** `chunk_lens` must have the same length as
2377 /// `chunk_hashes` and must sum to `total_size`.
2378 #[test]
2379 fn module_info_chunk_lens_shape() {
2380 let info = ModuleInfo {
2381 total_size: 1024,
2382 module_hash: "ab".repeat(32),
2383 chunk_hashes: vec!["cd".repeat(32), "ef".repeat(32)],
2384 chunk_lens: vec![512, 512],
2385 };
2386 let v = serde_json::to_value(&info).unwrap();
2387 assert_eq!(v["total_size"], 1024);
2388 assert_eq!(v["chunk_hashes"].as_array().unwrap().len(), 2);
2389 assert_eq!(v["chunk_lens"].as_array().unwrap().len(), 2);
2390 assert_eq!(v["chunk_lens"][0], 512);
2391 assert_eq!(v["chunk_lens"][1], 512);
2392 assert_eq!(serde_json::from_value::<ModuleInfo>(v).unwrap(), info);
2393 }
2394
2395 /// **Proves:** `ModuleInfo` deserialization REJECTS missing `chunk_lens` field.
2396 /// This is a REQUIRED field (not optional) — omitting it from the wire is a
2397 /// protocol violation and must fail-closed.
2398 #[test]
2399 fn module_info_rejects_missing_chunk_lens() {
2400 let json_str = r#"{"total_size": 2048, "module_hash": "1122334455667788990011223344556677889900112233445566778899001122", "chunk_hashes": []}"#;
2401 let result: Result<ModuleInfo, _> = serde_json::from_str(json_str);
2402 assert!(
2403 result.is_err(),
2404 "ModuleInfo must reject JSON missing the required chunk_lens field"
2405 );
2406 let err = result.unwrap_err();
2407 assert!(
2408 err.to_string().contains("chunk_lens"),
2409 "error message should mention chunk_lens: {}",
2410 err
2411 );
2412 }
2413
2414 /// **Proves:** the peer connect/disconnect params + results round-trip and
2415 /// match the node's `{connected|disconnected, peer_id}` shapes.
2416 #[test]
2417 fn peer_connect_disconnect_shapes() {
2418 let p = PeerConnectParams {
2419 peer: "12".repeat(32),
2420 };
2421 let v = serde_json::to_value(&p).unwrap();
2422 assert_eq!(serde_json::from_value::<PeerConnectParams>(v).unwrap(), p);
2423
2424 let c = PeerConnectResult {
2425 connected: true,
2426 peer_id: "12".repeat(32),
2427 };
2428 let v = serde_json::to_value(&c).unwrap();
2429 assert_eq!(v["connected"], true);
2430 assert_eq!(serde_json::from_value::<PeerConnectResult>(v).unwrap(), c);
2431
2432 let d = PeerDisconnectResult {
2433 disconnected: true,
2434 peer_id: "34".repeat(32),
2435 };
2436 let v = serde_json::to_value(&d).unwrap();
2437 assert_eq!(v["disconnected"], true);
2438 assert_eq!(
2439 serde_json::from_value::<PeerDisconnectResult>(v).unwrap(),
2440 d
2441 );
2442 }
2443
2444 /// **Proves:** `cache.getConfig` uses the canonical `cache_dir` field name.
2445 /// **Catches:** a regression to the shell's historical `dir` name.
2446 #[test]
2447 fn cache_config_field_name_is_cache_dir() {
2448 let c = CacheConfig {
2449 cap_bytes: 1 << 30,
2450 used_bytes: 0,
2451 cache_dir: "/var/cache/dig".into(),
2452 shared: true,
2453 };
2454 let v = serde_json::to_value(&c).unwrap();
2455 assert!(v.get("cache_dir").is_some());
2456 assert!(v.get("dir").is_none(), "must not use the legacy `dir` name");
2457 }
2458
2459 /// **Proves:** an OLDER client's `dig.getAvailability` params — written
2460 /// before the hop budget existed — still deserialize, and read as a fresh,
2461 /// unhopped ask.
2462 /// **Catches:** a `redirect_depth` declared as a required `u64`, which
2463 /// rejects exactly these params with `missing field redirect_depth` and would
2464 /// make every pre-0.8 caller's ask a parse error at the peer boundary.
2465 /// **Guarded by:** the field's `Option` TYPE. `serde`'s derive already reads a
2466 /// missing `Option` field as `None`, so the `#[serde(default)]` beside it is
2467 /// parity with the sibling params types rather than the live guard — removing
2468 /// it alone leaves this test green (mutant-tested). Do not cite the attribute
2469 /// as the thing that keeps older clients working.
2470 #[test]
2471 fn get_availability_params_accepts_an_older_clients_params() {
2472 let older = json!({
2473 "items": [ { "store_id": "ab".repeat(32) } ]
2474 });
2475 let p: GetAvailabilityParams = serde_json::from_value(older).unwrap();
2476 assert_eq!(p.items.len(), 1);
2477 assert_eq!(p.redirect_depth, None, "an absent budget stays absent");
2478 assert_eq!(p.hops_consumed(), 0, "absent means zero hops consumed");
2479 }
2480
2481 /// **Proves:** a hop-zero ask serializes to exactly the pre-0.8 bytes — the
2482 /// `redirect_depth` key is absent, not `null`.
2483 /// **Catches:** a bare `#[serde(default)]` without `skip_serializing_if`,
2484 /// which would add `"redirect_depth": null` to every existing caller's
2485 /// frame and change the wire for callers that never opted in.
2486 #[test]
2487 fn get_availability_params_omits_an_absent_hop_budget() {
2488 let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2489 store_id: "ab".repeat(32),
2490 root: None,
2491 retrieval_key: None,
2492 }]);
2493 let v = serde_json::to_value(&p).unwrap();
2494 let keys: Vec<&String> = v.as_object().unwrap().keys().collect();
2495 assert_eq!(keys, vec!["items"], "hop-zero params carry only `items`");
2496 }
2497
2498 /// **Proves:** a hopped ask round-trips its budget under the `redirect_depth`
2499 /// key, and reads back through `hops_consumed`.
2500 #[test]
2501 fn get_availability_params_round_trips_the_hop_budget() {
2502 let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2503 store_id: "cd".repeat(32),
2504 root: Some("ef".repeat(32)),
2505 retrieval_key: None,
2506 }])
2507 .with_redirect_depth(2);
2508 let v = serde_json::to_value(&p).unwrap();
2509 assert_eq!(v["redirect_depth"], 2);
2510 assert_eq!(p.hops_consumed(), 2);
2511 assert_eq!(
2512 serde_json::from_value::<GetAvailabilityParams>(v).unwrap(),
2513 p
2514 );
2515 }
2516
2517 /// **Proves:** an older client params object — written before ANY of the
2518 /// recursive-ask fields existed — still deserializes, and every new field reads
2519 /// as its documented absent value.
2520 /// **Catches:** any of the three declared as required, which would turn every
2521 /// pre-0.9 caller ask into `missing field` at the peer boundary.
2522 #[test]
2523 fn get_availability_params_accepts_a_client_older_than_the_recursive_ask() {
2524 let older = json!({ "items": [ { "store_id": "ab".repeat(32) } ] });
2525 let p: GetAvailabilityParams = serde_json::from_value(older).unwrap();
2526
2527 assert_eq!(p.budget_ms(), None, "absent budget_ms means unbudgeted");
2528 assert_eq!(p.ask_id(), None, "absent ask_id means dedup opted out");
2529 assert_eq!(p.hops_consumed(), 0);
2530 }
2531
2532 /// **Proves:** a params object carrying no recursive-ask fields serializes to
2533 /// exactly the pre-0.9 bytes — the three new keys are ABSENT, not `null`.
2534 /// **Catches:** a bare `#[serde(default)]` without `skip_serializing_if`, which
2535 /// would add `"budget_ms": null` and `"ask_id": null` to the frame of every
2536 /// caller that never opted in.
2537 #[test]
2538 fn get_availability_params_omits_absent_recursive_ask_fields() {
2539 let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2540 store_id: "ab".repeat(32),
2541 root: None,
2542 retrieval_key: None,
2543 }]);
2544 let v = serde_json::to_value(&p).unwrap();
2545 let keys: Vec<&String> = v.as_object().unwrap().keys().collect();
2546 assert_eq!(keys, vec!["items"], "a plain ask carries only `items`");
2547 }
2548
2549 /// **Proves:** the time budget and the hop budget are two INDEPENDENT fields
2550 /// under two distinct keys, each round-tripping its own value.
2551 /// **Catches:** the shape defect this addition exists to prevent — folding the
2552 /// time budget into `redirect_depth`. The fixture sets them to DIFFERENT values
2553 /// (2 hops, 9000 ms) precisely so a single backing integer cannot satisfy both
2554 /// assertions; equal values would pass under either shape.
2555 #[test]
2556 fn the_time_budget_is_a_separate_field_from_the_hop_budget() {
2557 let p = GetAvailabilityParams::new(vec![AvailabilityQuery {
2558 store_id: "cd".repeat(32),
2559 root: None,
2560 retrieval_key: None,
2561 }])
2562 .with_redirect_depth(2)
2563 .with_budget_ms(9_000);
2564
2565 let v = serde_json::to_value(&p).unwrap();
2566 assert_eq!(v["redirect_depth"], 2, "hops counted UP from zero");
2567 assert_eq!(v["budget_ms"], 9_000, "milliseconds counted DOWN to zero");
2568 assert_eq!(p.hops_consumed(), 2);
2569 assert_eq!(p.budget_ms(), Some(9_000));
2570 assert_eq!(
2571 serde_json::from_value::<GetAvailabilityParams>(v).unwrap(),
2572 p
2573 );
2574 }
2575
2576 /// **Proves:** a zero time budget survives the wire as `Some(0)` and is NOT
2577 /// erased into `None`.
2578 /// **Catches:** a `skip_serializing_if` written over the VALUE rather than the
2579 /// Option (`is_zero`-style), which would make "you have no time left, do not ask
2580 /// onward" indistinguishable from "unbudgeted, use your own policy" — exactly
2581 /// inverting the field on the one hop where it matters most.
2582 #[test]
2583 fn a_zero_time_budget_is_not_the_same_as_an_absent_one() {
2584 let exhausted = GetAvailabilityParams::new(vec![]).with_budget_ms(0);
2585 let v = serde_json::to_value(&exhausted).unwrap();
2586
2587 assert_eq!(v["budget_ms"], 0, "an exhausted budget stays on the wire");
2588 assert_eq!(
2589 serde_json::from_value::<GetAvailabilityParams>(v)
2590 .unwrap()
2591 .budget_ms(),
2592 Some(0)
2593 );
2594 assert_eq!(
2595 GetAvailabilityParams::new(vec![]).budget_ms(),
2596 None,
2597 "unbudgeted is a different state from budget zero"
2598 );
2599 }
2600
2601 /// **Proves:** `ask_id` round-trips verbatim under its own key, and is NOT the
2602 /// JSON-RPC `id`.
2603 /// **Catches:** an implementation that reuses the envelope correlator for dedup.
2604 /// The fixture puts a hardcoded `"id": 1` — the exact value dig-node was sending
2605 /// — beside a real 16-byte ask id in one envelope, so a reader that took the
2606 /// correlator would see `1` and disagree with both assertions.
2607 #[test]
2608 fn the_ask_id_is_not_the_jsonrpc_correlator() {
2609 const ASK_ID: &str = "3f9c1a04b7e25d68f0a1c3b5d7e9f012";
2610 assert_eq!(ASK_ID.len(), 32, "16 random bytes as lowercase hex");
2611
2612 let envelope = json!({
2613 "jsonrpc": "2.0",
2614 "id": 1,
2615 "method": "dig.getAvailability",
2616 "params": {
2617 "items": [ { "store_id": "ab".repeat(32) } ],
2618 "ask_id": ASK_ID,
2619 }
2620 });
2621
2622 let p: GetAvailabilityParams = serde_json::from_value(envelope["params"].clone()).unwrap();
2623 assert_eq!(p.ask_id(), Some(ASK_ID));
2624 assert_ne!(
2625 p.ask_id(),
2626 Some("1"),
2627 "the dedup identity must not be read from the envelope `id`"
2628 );
2629 assert_eq!(envelope["id"], 1, "the correlator is untouched beside it");
2630 }
2631
2632 /// **Proves:** `absence_established` distinguishes THREE states on the wire —
2633 /// asserted, explicitly-not-established, and unknown-because-older-server — and
2634 /// that the unknown state serializes as an ABSENT key rather than `false`.
2635 /// **Catches:** the collapse this field exists to prevent. The fixture carries
2636 /// all three answers in ONE batch, so a `bool` with `#[serde(default)]` (which
2637 /// would read the old server answer as `false`) makes the second and third
2638 /// answers compare EQUAL and the test fails; a fixture with only one answer
2639 /// could not see that.
2640 #[test]
2641 fn absence_established_keeps_absent_distinct_from_false() {
2642 let asserted = AvailabilityAnswer {
2643 available: false,
2644 absence_established: Some(true),
2645 ..Default::default()
2646 };
2647 let inconclusive = AvailabilityAnswer {
2648 available: false,
2649 absence_established: Some(false),
2650 ..Default::default()
2651 };
2652 let older_server = AvailabilityAnswer {
2653 available: false,
2654 ..Default::default()
2655 };
2656
2657 assert_ne!(
2658 inconclusive, older_server,
2659 "an explicit `false` is a claim; an absent field is not"
2660 );
2661 assert_eq!(asserted.absence_established_or_unknown(), Some(true));
2662 assert_eq!(inconclusive.absence_established_or_unknown(), Some(false));
2663 assert_eq!(
2664 older_server.absence_established_or_unknown(),
2665 None,
2666 "an older server makes no claim either way"
2667 );
2668
2669 let batch = serde_json::to_value(AvailabilityBatch {
2670 items: vec![asserted, inconclusive, older_server],
2671 })
2672 .unwrap();
2673 assert_eq!(batch["items"][0]["absence_established"], true);
2674 assert_eq!(batch["items"][1]["absence_established"], false);
2675 assert!(
2676 batch["items"][2].get("absence_established").is_none(),
2677 "the unknown state is an absent key, never `false` and never `null`"
2678 );
2679 }
2680
2681 /// **Proves:** an OLDER client can still read a NEWER answer — the added field
2682 /// does not break the shipped shape (§5.1).
2683 #[test]
2684 fn an_answer_carrying_the_new_field_still_parses_as_the_shipped_shape() {
2685 let newer = json!({
2686 "items": [ { "available": false, "absence_established": true } ]
2687 });
2688 let b: AvailabilityBatch = serde_json::from_value(newer).unwrap();
2689 assert_eq!(b.items.len(), 1);
2690 assert!(!b.items[0].available);
2691 assert_eq!(b.items[0].absence_established_or_unknown(), Some(true));
2692 }
2693
2694 /// **Proves:** the hop budget an availability ask carries is the SAME field,
2695 /// with the same key, type and value, that a `-32008` redirect hands back and
2696 /// that `dig.getContent` / `dig.fetchRange` already echo — one field, one
2697 /// interpretation, counted UP toward `max_redirects`.
2698 /// **Catches:** a second reading of the budget in this crate (a remaining
2699 /// allowance counting DOWN, a differently-named key, a differently-typed
2700 /// value) — the byte-drift the shipped redirect contract exists to prevent.
2701 #[test]
2702 fn availability_hop_budget_mirrors_the_redirect_budget() {
2703 let handed_back = RedirectInfo {
2704 content: ContentRef {
2705 store_id: "ab".repeat(32),
2706 root: None,
2707 retrieval_key: None,
2708 },
2709 providers: vec![],
2710 redirect_depth: 3,
2711 max_redirects: 4,
2712 };
2713 let echoed = handed_back.redirect_depth;
2714
2715 let availability = serde_json::to_value(
2716 GetAvailabilityParams::new(vec![AvailabilityQuery {
2717 store_id: "ab".repeat(32),
2718 root: None,
2719 retrieval_key: None,
2720 }])
2721 .with_redirect_depth(echoed),
2722 )
2723 .unwrap();
2724 let content = serde_json::to_value(GetContentParams {
2725 store_id: "ab".repeat(32),
2726 retrieval_key: "cd".repeat(32),
2727 root: None,
2728 offset: None,
2729 mode: None,
2730 redirect_depth: Some(echoed),
2731 })
2732 .unwrap();
2733 let range = serde_json::to_value(
2734 FetchRangeParams::resource("ab".repeat(32), "cd".repeat(32), "ef".repeat(32), 1)
2735 .with_redirect_depth(echoed),
2736 )
2737 .unwrap();
2738
2739 for (method, params) in [
2740 ("dig.getAvailability", &availability),
2741 ("dig.getContent", &content),
2742 ("dig.fetchRange", &range),
2743 ] {
2744 assert_eq!(
2745 params["redirect_depth"], 3,
2746 "{method} must carry the echoed depth under `redirect_depth`"
2747 );
2748 }
2749 assert!(
2750 handed_back.redirect_depth < handed_back.max_redirects,
2751 "the budget counts UP toward `max_redirects`"
2752 );
2753 }
2754
2755 /// **Proves:** a NEWER client's params — carrying a field this build does not
2756 /// know — still deserialize, so a hop-bearing ask is never refused outright by
2757 /// an older responder that simply ignores the budget.
2758 /// **Catches:** a `#[serde(deny_unknown_fields)]` added to the params type,
2759 /// which would turn every forward-compatible extension into a hard parse
2760 /// failure at the peer boundary.
2761 #[test]
2762 fn get_availability_params_tolerates_an_unknown_field() {
2763 let newer = json!({
2764 "items": [ { "store_id": "ab".repeat(32) } ],
2765 "redirect_depth": 1,
2766 "a_field_this_build_does_not_know": true
2767 });
2768 let p: GetAvailabilityParams = serde_json::from_value(newer).unwrap();
2769 assert_eq!(p.hops_consumed(), 1);
2770 }
2771
2772 // -----------------------------------------------------------------
2773 // dig.listRewardDistributors / dig.getRewardProverStatus /
2774 // dig.getRewardDistributor (#3250, dig-rewards-coin SPEC §2.3/§2.6)
2775 // -----------------------------------------------------------------
2776
2777 fn sample_prover_status() -> RewardProverStatus {
2778 RewardProverStatus {
2779 launcher_id: "ab".repeat(32),
2780 store_id: "cd".repeat(32),
2781 root: "ef".repeat(32),
2782 prover_state: ProverState::Running,
2783 prover_state_since: 1_000,
2784 last_cycle_started_at: Some(1_050),
2785 last_cycle_completed_at: None,
2786 next_cycle_due_at: Some(1_600),
2787 last_entry_write_at: Some(900),
2788 consecutive_cycle_failures: 0,
2789 pending_entry_writes: 2,
2790 observed_at: 1_700,
2791 counters: ProverCounters {
2792 mirrors_seen: 3,
2793 challenges_issued: 10,
2794 challenges_passed: 9,
2795 challenges_failed: 1,
2796 entries_added: 5,
2797 entries_removed: 1,
2798 entry_count: 4,
2799 reserve_base_units: 12_345,
2800 total_paid_out_base_units: 6_789,
2801 },
2802 }
2803 }
2804
2805 /// **Proves:** `RewardProverStatus` round-trips through serde.
2806 #[test]
2807 fn reward_prover_status_round_trips() {
2808 let status = sample_prover_status();
2809 let json = serde_json::to_string(&status).unwrap();
2810 let back: RewardProverStatus = serde_json::from_str(&json).unwrap();
2811 assert_eq!(status, back);
2812 }
2813
2814 /// **Proves:** `RewardProverStatus`'s JSON key set is EXACTLY the SPEC §2.3
2815 /// field list, and contains NEITHER a health boolean NOR a pre-computed
2816 /// staleness field — SPEC §2.4: a wedged loop cannot report its own
2817 /// wedging, so a boolean the writer sets reads true forever after the
2818 /// failure it exists to reveal.
2819 /// **Catches:** a `healthy`/`ok`/`up`/`running`/`stale`/
2820 /// `seconds_since_last_run`/`is_healthy` field reintroduced onto the
2821 /// self-reported prover record.
2822 #[test]
2823 fn reward_prover_status_has_no_health_boolean_and_exact_keys() {
2824 let value = serde_json::to_value(sample_prover_status()).unwrap();
2825 let obj = value.as_object().unwrap();
2826 let mut got: Vec<&str> = obj.keys().map(String::as_str).collect();
2827 got.sort_unstable();
2828
2829 let mut want = vec![
2830 "launcher_id",
2831 "store_id",
2832 "root",
2833 "prover_state",
2834 "prover_state_since",
2835 "last_cycle_started_at",
2836 "next_cycle_due_at",
2837 "last_entry_write_at",
2838 "consecutive_cycle_failures",
2839 "pending_entry_writes",
2840 "observed_at",
2841 "counters",
2842 ];
2843 // `last_cycle_completed_at` is `None` in the fixture and this type has
2844 // no `skip_serializing_if`, so it still serializes as `null` — include it.
2845 want.push("last_cycle_completed_at");
2846 want.sort_unstable();
2847 assert_eq!(got, want);
2848
2849 // Recurse into `counters` too — a smuggled health flag could hide one
2850 // level down, and a substring check on the serialized string would
2851 // miss it (and would also be actively wrong: `ProverState::Running`
2852 // legitimately serializes the *value* `"running"`, so a
2853 // `!s.contains("running")` assertion fails on honest input while
2854 // still passing a smuggled `isRunning` key).
2855 let counters_keys: Vec<&str> = value["counters"]
2856 .as_object()
2857 .unwrap()
2858 .keys()
2859 .map(String::as_str)
2860 .collect();
2861 let mut all_keys = got.clone();
2862 all_keys.extend(counters_keys);
2863
2864 for forbidden in [
2865 "healthy",
2866 "ok",
2867 "up",
2868 "running",
2869 "isRunning",
2870 "stale",
2871 "isStale",
2872 "staleness",
2873 "secondsSinceLastRun",
2874 "uptime",
2875 "alive",
2876 "live",
2877 "lastRunSecondsAgo",
2878 ] {
2879 assert!(
2880 !all_keys.contains(&forbidden),
2881 "RewardProverStatus (incl. counters) must not carry `{forbidden}` (SPEC §2.4)"
2882 );
2883 }
2884
2885 // Also assert directly against the Rust field list, independent of the
2886 // JSON round-trip, so a `#[serde(rename)]` cannot hide a violation.
2887 got.retain(|k| *k != "prover_state"); // enum-typed; checked separately below.
2888 }
2889
2890 /// **Proves:** `ProverState` deserializes each of the nine named SPEC §2.3
2891 /// variants and REJECTS an unknown string — fail-closed: no
2892 /// `#[serde(other)]`, no `Default`.
2893 #[test]
2894 fn prover_state_covers_the_closed_set_and_rejects_unknown() {
2895 let known = [
2896 ("idle", ProverState::Idle),
2897 ("running", ProverState::Running),
2898 ("localCopyMissing", ProverState::LocalCopyMissing),
2899 (
2900 "chainSourceUnavailable",
2901 ProverState::ChainSourceUnavailable,
2902 ),
2903 ("unfunded", ProverState::Unfunded),
2904 ("feeBudgetExhausted", ProverState::FeeBudgetExhausted),
2905 ("entrySetFull", ProverState::EntrySetFull),
2906 ("paused", ProverState::Paused),
2907 ("stopped", ProverState::Stopped),
2908 ];
2909 assert_eq!(known.len(), 9, "the SPEC §2.3 set has exactly nine members");
2910 for (wire, variant) in known {
2911 let got: ProverState = serde_json::from_value(json!(wire)).unwrap();
2912 assert_eq!(got, variant, "{wire}");
2913 assert_eq!(serde_json::to_value(variant).unwrap(), json!(wire));
2914 }
2915
2916 let err = serde_json::from_value::<ProverState>(json!("somethingElse"));
2917 assert!(
2918 err.is_err(),
2919 "an unknown ProverState string must be rejected"
2920 );
2921 }
2922
2923 /// **Proves:** `GetRewardProverStatusParams` / `GetRewardProverStatusResult`
2924 /// round-trip, and the statuses half is a `Half`.
2925 #[test]
2926 fn get_reward_prover_status_types_round_trip() {
2927 let params = GetRewardProverStatusParams {
2928 launcher_id: Some("ab".repeat(32)),
2929 };
2930 let back: GetRewardProverStatusParams =
2931 serde_json::from_str(&serde_json::to_string(¶ms).unwrap()).unwrap();
2932 assert_eq!(params, back);
2933
2934 let result = GetRewardProverStatusResult {
2935 statuses: Half::Consulted {
2936 observed_at: 1_700,
2937 items: vec![sample_prover_status()],
2938 },
2939 };
2940 let back: GetRewardProverStatusResult =
2941 serde_json::from_str(&serde_json::to_string(&result).unwrap()).unwrap();
2942 assert_eq!(result, back);
2943 }
2944
2945 /// **Proves:** "this node runs no prover loops" and "this node could not
2946 /// read its prover registry" are DIFFERENT wire payloads, each dated.
2947 /// **Catches:** `GetRewardProverStatusResult.statuses` reverting to a bare
2948 /// `Vec`, where an unreadable registry renders as a confident "none" on a
2949 /// reward surface.
2950 #[test]
2951 fn unconsulted_prover_registry_is_distinguishable_from_an_empty_one() {
2952 let not_consulted = GetRewardProverStatusResult {
2953 statuses: Half::NotConsulted { observed_at: 1_700 },
2954 };
2955 let consulted_and_empty = GetRewardProverStatusResult {
2956 statuses: Half::Consulted {
2957 observed_at: 1_700,
2958 items: vec![],
2959 },
2960 };
2961
2962 let a = serde_json::to_value(¬_consulted).unwrap();
2963 let b = serde_json::to_value(&consulted_and_empty).unwrap();
2964 assert_ne!(
2965 a, b,
2966 "an unread prover registry must not serialise as an empty one"
2967 );
2968 assert_eq!(a["statuses"]["outcome"], "not_consulted");
2969 assert_eq!(a["statuses"]["observed_at"], 1_700);
2970 assert_eq!(b["statuses"]["outcome"], "consulted");
2971 assert_eq!(b["statuses"]["observed_at"], 1_700);
2972
2973 let back: GetRewardProverStatusResult = serde_json::from_value(a).unwrap();
2974 assert_eq!(back, not_consulted);
2975 let back: GetRewardProverStatusResult = serde_json::from_value(b).unwrap();
2976 assert_eq!(back, consulted_and_empty);
2977 }
2978
2979 /// **Proves:** `ListRewardDistributorsResult` round-trips and its JSON keys
2980 /// are exactly `funded` / `claimable`, each a `Half` object carrying its own
2981 /// `outcome`, `observed_at` and `items` (SPEC §2.6, §12.5 clause 6).
2982 #[test]
2983 fn list_reward_distributors_result_round_trips_with_exact_keys() {
2984 let result = ListRewardDistributorsResult {
2985 funded: Half::Consulted {
2986 observed_at: 1_700,
2987 items: vec![RewardDistributorRef {
2988 launcher_id: "11".repeat(32),
2989 store_id: "22".repeat(32),
2990 root: "33".repeat(32),
2991 }],
2992 },
2993 claimable: Half::Consulted {
2994 observed_at: 1_700,
2995 items: vec![],
2996 },
2997 };
2998 let value = serde_json::to_value(&result).unwrap();
2999 assert_eq!(sorted_keys(&value), vec!["claimable", "funded"]);
3000 assert_eq!(
3001 sorted_keys(&value["funded"]),
3002 vec!["items", "observed_at", "outcome"],
3003 "a half must carry its items INSIDE the tagged observation"
3004 );
3005
3006 let back: ListRewardDistributorsResult = serde_json::from_value(value).unwrap();
3007 assert_eq!(result, back);
3008 }
3009
3010 /// **Proves:** "the mirror-claim half was not consulted" and "it was
3011 /// consulted and is empty" are DIFFERENT wire payloads — the whole point of
3012 /// SPEC §12.5 clause 6. Both carry an `observed_at`, so neither is a bare,
3013 /// undated zero.
3014 /// **Catches:** the dated absence collapsing back into a plain empty vector,
3015 /// which is how a funder-only answer came to read as "you have no mirror
3016 /// claims".
3017 #[test]
3018 fn unconsulted_claimable_half_is_distinguishable_from_an_empty_one() {
3019 let not_consulted = ListRewardDistributorsResult {
3020 funded: Half::Consulted {
3021 observed_at: 1_700,
3022 items: vec![],
3023 },
3024 claimable: Half::NotConsulted { observed_at: 1_700 },
3025 };
3026 let consulted_and_empty = ListRewardDistributorsResult {
3027 claimable: Half::Consulted {
3028 observed_at: 1_700,
3029 items: vec![],
3030 },
3031 ..not_consulted.clone()
3032 };
3033
3034 let a = serde_json::to_value(¬_consulted).unwrap();
3035 let b = serde_json::to_value(&consulted_and_empty).unwrap();
3036 assert_ne!(
3037 a, b,
3038 "an unconsulted half must not serialise as an empty one"
3039 );
3040 assert_eq!(a["claimable"]["outcome"], "not_consulted");
3041 assert_eq!(a["claimable"]["observed_at"], 1_700);
3042 assert_eq!(b["claimable"]["outcome"], "consulted");
3043
3044 let back: ListRewardDistributorsResult = serde_json::from_value(a).unwrap();
3045 assert_eq!(back, not_consulted);
3046 }
3047
3048 /// **Proves:** "this node's funded half was not consulted" and "it was
3049 /// consulted and is empty" are DIFFERENT wire payloads, each dated, exactly
3050 /// as for the mirror-claim half (SPEC §12.5 clause 6).
3051 /// **Catches:** a node that cannot read its own funder registry -- not
3052 /// configured, persisted state corrupt, or the read failed -- reporting an
3053 /// empty funded list, which states that the operator funds nothing.
3054 #[test]
3055 fn unconsulted_funded_half_is_distinguishable_from_an_empty_one() {
3056 let not_consulted = ListRewardDistributorsResult {
3057 funded: Half::NotConsulted { observed_at: 1_700 },
3058 claimable: Half::Consulted {
3059 observed_at: 1_700,
3060 items: vec![],
3061 },
3062 };
3063 let consulted_and_empty = ListRewardDistributorsResult {
3064 funded: Half::Consulted {
3065 observed_at: 1_700,
3066 items: vec![],
3067 },
3068 ..not_consulted.clone()
3069 };
3070
3071 let a = serde_json::to_value(¬_consulted).unwrap();
3072 let b = serde_json::to_value(&consulted_and_empty).unwrap();
3073 assert_ne!(
3074 a, b,
3075 "an unconsulted funded half must not serialise as an empty one"
3076 );
3077 assert_eq!(a["funded"]["outcome"], "not_consulted");
3078 assert_eq!(a["funded"]["observed_at"], 1_700);
3079 assert_eq!(b["funded"]["outcome"], "consulted");
3080 assert_eq!(b["funded"]["observed_at"], 1_700);
3081
3082 let back: ListRewardDistributorsResult = serde_json::from_value(a).unwrap();
3083 assert_eq!(back, not_consulted);
3084 let back: ListRewardDistributorsResult = serde_json::from_value(b).unwrap();
3085 assert_eq!(back, consulted_and_empty);
3086 }
3087
3088 /// **Proves:** "nothing looked, and here are the results" is UNREPRESENTABLE
3089 /// — in Rust, because [`Half::NotConsulted`] has no `items` field at all; and
3090 /// on the wire, because the arm denies unknown fields, so a producer that
3091 /// emits both is a parse ERROR rather than having its items silently dropped.
3092 /// **Catches:** the observation drifting back out beside the collection,
3093 /// where only prose forbids the contradiction (dig_ecosystem#3269
3094 /// Condition 1).
3095 #[test]
3096 fn not_consulted_carrying_items_does_not_parse() {
3097 let contradiction = serde_json::json!({
3098 "outcome": "not_consulted",
3099 "observed_at": 1_700,
3100 "items": [{"launcher_id": "11".repeat(32),
3101 "store_id": "22".repeat(32),
3102 "root": "33".repeat(32)}],
3103 });
3104 assert!(
3105 serde_json::from_value::<Half<RewardDistributorRef>>(contradiction).is_err(),
3106 "\"not consulted, and here are the items\" must not parse"
3107 );
3108 }
3109
3110 /// **Proves:** `Half` is fail-closed — an unknown outcome, or one missing its
3111 /// `observed_at`, is a parse ERROR, never a silently coerced "consulted" (the
3112 /// `ProverState` discipline, SPEC §12.5 clause 6's ban on an undated absence).
3113 #[test]
3114 fn half_rejects_unknown_and_undated_outcomes() {
3115 let unknown = serde_json::json!({"outcome": "maybe", "observed_at": 1, "items": []});
3116 assert!(serde_json::from_value::<Half<RewardDistributorRef>>(unknown).is_err());
3117
3118 let undated = serde_json::json!({"outcome": "not_consulted"});
3119 assert!(serde_json::from_value::<Half<RewardDistributorRef>>(undated).is_err());
3120
3121 let undated_consulted = serde_json::json!({"outcome": "consulted", "items": []});
3122 assert!(serde_json::from_value::<Half<RewardDistributorRef>>(undated_consulted).is_err());
3123
3124 // A half that says it looked owes an answer, even an empty one.
3125 let itemless = serde_json::json!({"outcome": "consulted", "observed_at": 1});
3126 assert!(serde_json::from_value::<Half<RewardDistributorRef>>(itemless).is_err());
3127 }
3128
3129 /// **Proves:** [`Half::items`] distinguishes "consulted, none" (`Some(&[])`)
3130 /// from "not consulted" (`None`), and [`Half::observed_at`] answers in both
3131 /// arms — so a consumer never has to re-match to get a staleness anchor.
3132 #[test]
3133 fn half_accessors_keep_the_distinction() {
3134 let consulted: Half<RewardDistributorRef> = Half::Consulted {
3135 observed_at: 1_700,
3136 items: vec![],
3137 };
3138 let not_consulted: Half<RewardDistributorRef> = Half::NotConsulted { observed_at: 1_701 };
3139 assert_eq!(consulted.items().map(<[_]>::len), Some(0));
3140 assert!(not_consulted.items().is_none());
3141 assert_eq!(consulted.observed_at(), 1_700);
3142 assert_eq!(not_consulted.observed_at(), 1_701);
3143 }
3144
3145 /// A `ListRewardDistributorsResult` body with every key present, so a test
3146 /// can delete exactly one and assert the deletion is what broke it.
3147 fn full_list_reward_distributors_body() -> serde_json::Value {
3148 serde_json::json!({
3149 "funded": {"outcome": "consulted", "observed_at": 1_700, "items": []},
3150 "claimable": {"outcome": "consulted", "observed_at": 1_700, "items": []},
3151 })
3152 }
3153
3154 /// **Proves:** omitting `funded` -- or `claimable` -- is a PARSE ERROR, not a
3155 /// default, while the same body with both keys present parses. Neither half
3156 /// may be silently assumed consulted.
3157 /// **Catches:** `#[serde(default)]` (or a re-derived `Default`) being added
3158 /// as a compatibility convenience, which would make every legacy payload
3159 /// parse as "both halves consulted" -- the undated bare zero SPEC §12.5
3160 /// clause 6 forbids.
3161 #[test]
3162 fn omitting_either_half_is_a_parse_error() {
3163 serde_json::from_value::<ListRewardDistributorsResult>(full_list_reward_distributors_body())
3164 .expect("the complete body must parse, or the omission assertions prove nothing");
3165
3166 for omitted in ["funded", "claimable"] {
3167 let mut body = full_list_reward_distributors_body();
3168 body.as_object_mut().unwrap().remove(omitted).unwrap();
3169 assert!(
3170 serde_json::from_value::<ListRewardDistributorsResult>(body).is_err(),
3171 "omitting {omitted} must fail to parse, never default to consulted"
3172 );
3173 }
3174 }
3175
3176 /// **Proves:** `PayeeClaimStatus` carries the literal `"subject": "payee"`
3177 /// and a claim-log observation — and NO monetary field and no payout puzzle
3178 /// hash (dig_ecosystem#3269).
3179 /// **Catches:** an amount or a payment identity creeping back onto the payee
3180 /// payload, which is the shape that let a funder's total render as one
3181 /// operator's personal earnings.
3182 #[test]
3183 fn payee_claim_status_names_its_subject_and_carries_no_money() {
3184 let status = PayeeClaimStatus {
3185 subject: PayeeSubject::Payee,
3186 claim_log: ClaimLogObservation::Consulted {
3187 observed_at: 1_700,
3188 claims_submitted_count: 3,
3189 },
3190 claim_loop: ClaimLoopObservation::Consulted {
3191 observed_at: 1_690,
3192 distributors_known: 4,
3193 distributors_claimable: 2,
3194 state: ClaimLoopState::ClaimableButNotClaiming {
3195 claimable: 2,
3196 submitted: 0,
3197 },
3198 },
3199 };
3200 let value = serde_json::to_value(status).unwrap();
3201 assert_eq!(value["subject"], "payee");
3202 assert_eq!(
3203 sorted_keys(&value),
3204 vec!["claim_log", "claim_loop", "subject"],
3205 "PayeeClaimStatus gained a field -- if it names money or a payee's \
3206 payment identity, it must not ship"
3207 );
3208 assert_eq!(
3209 sorted_keys(&value["claim_log"]),
3210 vec!["claims_submitted_count", "observed_at", "outcome"],
3211 "the claim log gained a field -- the same money rule applies inside it"
3212 );
3213 assert_eq!(
3214 sorted_keys(&value["claim_loop"]),
3215 vec![
3216 "distributors_claimable",
3217 "distributors_known",
3218 "observed_at",
3219 "outcome",
3220 "state",
3221 ],
3222 "the claim loop's consulted arm gained a field -- the same money rule \
3223 applies inside it"
3224 );
3225
3226 let back: PayeeClaimStatus = serde_json::from_value(value).unwrap();
3227 assert_eq!(status, back);
3228 }
3229
3230 /// **Proves:** every field of `PayeeClaimStatus` is REQUIRED on the wire —
3231 /// nothing defaults, so a producer cannot omit the subject and have a
3232 /// consumer invent it.
3233 #[test]
3234 fn payee_claim_status_fields_do_not_default() {
3235 let full = || {
3236 serde_json::json!({
3237 "subject": "payee",
3238 "claim_log": {
3239 "outcome": "consulted",
3240 "observed_at": 1_700,
3241 "claims_submitted_count": 3,
3242 },
3243 "claim_loop": {
3244 "outcome": "consulted",
3245 "observed_at": 1_690,
3246 "distributors_known": 4,
3247 "distributors_claimable": 2,
3248 "state": { "kind": "nominal" },
3249 },
3250 })
3251 };
3252 serde_json::from_value::<PayeeClaimStatus>(full())
3253 .expect("the complete body must parse, or the omission assertions prove nothing");
3254
3255 for missing in ["subject", "claim_log", "claim_loop"] {
3256 let mut value = full();
3257 value.as_object_mut().unwrap().remove(missing).unwrap();
3258 assert!(
3259 serde_json::from_value::<PayeeClaimStatus>(value).is_err(),
3260 "{missing} must be required"
3261 );
3262 }
3263
3264 let wrong_subject = serde_json::json!({
3265 "subject": "funder",
3266 "claim_log": {
3267 "outcome": "consulted",
3268 "observed_at": 1_700,
3269 "claims_submitted_count": 3,
3270 },
3271 "claim_loop": {
3272 "outcome": "consulted",
3273 "observed_at": 1_690,
3274 "distributors_known": 4,
3275 "distributors_claimable": 2,
3276 "state": { "kind": "nominal" },
3277 },
3278 });
3279 assert!(
3280 serde_json::from_value::<PayeeClaimStatus>(wrong_subject).is_err(),
3281 "only the literal \"payee\" subject may parse into PayeeClaimStatus"
3282 );
3283 }
3284
3285 /// **Proves:** a node that never read its claim log cannot emit a count at
3286 /// all — there is no field for one in `not_consulted`, and a payload that
3287 /// carries one anyway is a parse ERROR. "Consulted and zero" and "never
3288 /// looked" are different, dated payloads.
3289 /// **Catches:** dig_ecosystem#3269 Condition 3 — a freshly dated
3290 /// `claims_submitted_count: 0` emitted by a node whose log was unreadable,
3291 /// which is SPEC §12.5 clause 6's reassuring zero with a timestamp on it.
3292 #[test]
3293 fn an_unread_claim_log_cannot_report_a_count() {
3294 let unread = PayeeClaimStatus {
3295 subject: PayeeSubject::Payee,
3296 claim_log: ClaimLogObservation::NotConsulted { observed_at: 1_700 },
3297 claim_loop: ClaimLoopObservation::NotConsulted { observed_at: 1_700 },
3298 };
3299 let read_and_zero = PayeeClaimStatus {
3300 subject: PayeeSubject::Payee,
3301 claim_log: ClaimLogObservation::Consulted {
3302 observed_at: 1_700,
3303 claims_submitted_count: 0,
3304 },
3305 claim_loop: ClaimLoopObservation::NotConsulted { observed_at: 1_700 },
3306 };
3307
3308 let a = serde_json::to_value(unread).unwrap();
3309 let b = serde_json::to_value(read_and_zero).unwrap();
3310 assert_ne!(a, b, "an unread claim log must not serialise as a zero one");
3311 assert_eq!(a["claim_log"]["outcome"], "not_consulted");
3312 assert_eq!(a["claim_log"]["observed_at"], 1_700);
3313 assert!(
3314 a["claim_log"].get("claims_submitted_count").is_none(),
3315 "an unread log has no count to give"
3316 );
3317 assert_eq!(b["claim_log"]["claims_submitted_count"], 0);
3318
3319 let contradiction = serde_json::json!({
3320 "outcome": "not_consulted",
3321 "observed_at": 1_700,
3322 "claims_submitted_count": 0,
3323 });
3324 assert!(
3325 serde_json::from_value::<ClaimLogObservation>(contradiction).is_err(),
3326 "\"never looked, and the count is zero\" must not parse"
3327 );
3328
3329 let undated = serde_json::json!({"outcome": "not_consulted"});
3330 assert!(serde_json::from_value::<ClaimLogObservation>(undated).is_err());
3331
3332 let countless = serde_json::json!({"outcome": "consulted", "observed_at": 1_700});
3333 assert!(
3334 serde_json::from_value::<ClaimLogObservation>(countless).is_err(),
3335 "a log that says it was read owes a count"
3336 );
3337 }
3338
3339 /// A `PayeeClaimStatus` carrying a fully populated `claim_loop` for use as
3340 /// a base by the new-test fixtures below.
3341 fn claim_loop_fixture() -> serde_json::Value {
3342 serde_json::json!({
3343 "subject": "payee",
3344 "claim_log": {
3345 "outcome": "not_consulted",
3346 "observed_at": 1_700,
3347 },
3348 "claim_loop": {
3349 "outcome": "consulted",
3350 "observed_at": 1_690,
3351 "distributors_known": 4,
3352 "distributors_claimable": 2,
3353 "state": { "kind": "nominal" },
3354 },
3355 })
3356 }
3357
3358 /// **Proves:** every one of the seven `ClaimLoopState` kinds round-trips
3359 /// through `PayeeClaimStatus` with exactly the keys SPEC §4.4.1 lists for
3360 /// its arm -- no more, no fewer. The two distributor counts parse from their
3361 /// correctly-named JSON keys: swapping `distributors_known` and
3362 /// `distributors_claimable` on the wire changes the parsed values.
3363 #[test]
3364 fn every_claim_loop_state_kind_round_trips_with_exact_keys() {
3365 let cases: Vec<(serde_json::Value, Vec<&str>)> = vec![
3366 (serde_json::json!({"kind": "idle"}), vec!["kind"]),
3367 (
3368 serde_json::json!({"kind": "chain_source_unavailable"}),
3369 vec!["kind"],
3370 ),
3371 (
3372 serde_json::json!({"kind": "persisted_state_corrupt"}),
3373 vec!["kind"],
3374 ),
3375 (
3376 serde_json::json!({"kind": "cadence_not_elapsed"}),
3377 vec!["kind"],
3378 ),
3379 (serde_json::json!({"kind": "nominal"}), vec!["kind"]),
3380 (
3381 serde_json::json!({"kind": "faulted", "cycles": 3}),
3382 vec!["cycles", "kind"],
3383 ),
3384 (
3385 serde_json::json!({
3386 "kind": "claimable_but_not_claiming",
3387 "claimable": 2,
3388 "submitted": 0,
3389 }),
3390 vec!["claimable", "kind", "submitted"],
3391 ),
3392 ];
3393
3394 // Pin the wire names to their field bindings: a transposition on the
3395 // wire would silently invert the counts.
3396 let parsed: PayeeClaimStatus = serde_json::from_value(claim_loop_fixture()).unwrap();
3397 assert!(
3398 matches!(
3399 parsed.claim_loop,
3400 ClaimLoopObservation::Consulted { distributors_known: 4, distributors_claimable: 2, .. }
3401 ),
3402 "distributors_known must parse from the `distributors_known` key and \
3403 distributors_claimable from `distributors_claimable`; a swap must not parse into the same value"
3404 );
3405
3406 for (state, expected_keys) in cases {
3407 let mut body = claim_loop_fixture();
3408 body["claim_loop"]["state"] = state.clone();
3409 assert_eq!(
3410 sorted_keys(&state),
3411 expected_keys,
3412 "state {state:?} does not carry its SPEC section 4.4.1 key set"
3413 );
3414 let parsed: PayeeClaimStatus = serde_json::from_value(body).unwrap_or_else(|e| {
3415 panic!("state {state:?} must round-trip, got {e}");
3416 });
3417 let back = serde_json::to_value(parsed).unwrap();
3418 assert_eq!(
3419 sorted_keys(&back["claim_loop"]["state"]),
3420 expected_keys,
3421 "state {state:?} changed shape across a round trip"
3422 );
3423 }
3424 }
3425
3426 /// **Proves:** every one of `claim_loop.consulted`'s five keys is
3427 /// REQUIRED -- removing any one is a parse error, never a default.
3428 #[test]
3429 fn claim_loop_consulted_fields_do_not_default() {
3430 for missing in [
3431 "outcome",
3432 "observed_at",
3433 "distributors_known",
3434 "distributors_claimable",
3435 "state",
3436 ] {
3437 let mut body = claim_loop_fixture();
3438 body["claim_loop"].as_object_mut().unwrap().remove(missing);
3439 assert!(
3440 serde_json::from_value::<PayeeClaimStatus>(body).is_err(),
3441 "claim_loop.consulted must require {missing}"
3442 );
3443 }
3444 }
3445
3446 /// **Proves:** a `ClaimLoopState` payload is rejected for an unknown
3447 /// `kind`, for a bare-string `state`, for `faulted` missing `cycles`, for
3448 /// `claimable_but_not_claiming` missing `submitted`, and for an unknown
3449 /// key riding beside a `faulted` payload.
3450 #[test]
3451 fn claim_loop_state_rejects_malformed_and_unknown_payloads() {
3452 let reject = |state: serde_json::Value, why: &str| {
3453 let mut body = claim_loop_fixture();
3454 body["claim_loop"]["state"] = state;
3455 assert!(
3456 serde_json::from_value::<PayeeClaimStatus>(body).is_err(),
3457 "{why}"
3458 );
3459 };
3460
3461 reject(
3462 serde_json::json!({"kind": "not_a_real_state"}),
3463 "an unknown kind must not parse, never coerce to idle",
3464 );
3465 reject(
3466 serde_json::json!("idle"),
3467 "state must always be an object, never a bare string",
3468 );
3469 reject(
3470 serde_json::json!({"kind": "faulted"}),
3471 "faulted without cycles must not parse",
3472 );
3473 reject(
3474 serde_json::json!({"kind": "claimable_but_not_claiming", "claimable": 2}),
3475 "claimable_but_not_claiming without submitted must not parse",
3476 );
3477 reject(
3478 serde_json::json!({"kind": "faulted", "cycles": 3, "extra": 1}),
3479 "an unknown key beside a faulted payload must not parse",
3480 );
3481 }
3482
3483 /// **Proves:** `claim_loop.not_consulted` carries no count and no state --
3484 /// a count or a verdict cannot ride an arm that says nothing was read.
3485 #[test]
3486 fn claim_loop_not_consulted_rejects_every_count_and_state_key() {
3487 let base_not_consulted = || {
3488 serde_json::json!({
3489 "outcome": "not_consulted",
3490 "observed_at": 1_700,
3491 })
3492 };
3493
3494 for (key, value) in [
3495 ("distributors_known", serde_json::json!(0)),
3496 ("distributors_claimable", serde_json::json!(0)),
3497 ("state", serde_json::json!({"kind": "idle"})),
3498 ] {
3499 let mut claim_loop = base_not_consulted();
3500 claim_loop
3501 .as_object_mut()
3502 .unwrap()
3503 .insert(key.to_string(), value);
3504 let mut body = claim_loop_fixture();
3505 body["claim_loop"] = claim_loop;
3506 assert!(
3507 serde_json::from_value::<PayeeClaimStatus>(body).is_err(),
3508 "not_consulted must reject a stray {key}"
3509 );
3510 }
3511 }
3512
3513 /// **Proves:** the anti-silence rule (SPEC section 4.4.4) actually holds
3514 /// on the wire -- a consumer reading ONLY `claim_loop.state.kind` from
3515 /// the serialised JSON can tell "running, not paying everybody" apart
3516 /// from "nothing to do", without touching the Rust enum. Each distributor
3517 /// count rides under its own wire key: swapping `distributors_known`
3518 /// and `distributors_claimable` field names changes the JSON values.
3519 /// **Catches:** a producer that folds `claimable_but_not_claiming` into
3520 /// `nominal` or `idle`, which is the exact silence this method exists to
3521 /// remove.
3522 #[test]
3523 fn claimable_but_not_claiming_is_distinguishable_from_idle_by_json_alone() {
3524 let running_and_shortfalling = PayeeClaimStatus {
3525 subject: PayeeSubject::Payee,
3526 claim_log: ClaimLogObservation::NotConsulted { observed_at: 1_700 },
3527 claim_loop: ClaimLoopObservation::Consulted {
3528 observed_at: 1_690,
3529 distributors_known: 4,
3530 distributors_claimable: 2,
3531 state: ClaimLoopState::ClaimableButNotClaiming {
3532 claimable: 2,
3533 submitted: 0,
3534 },
3535 },
3536 };
3537 let nothing_to_do = PayeeClaimStatus {
3538 subject: PayeeSubject::Payee,
3539 claim_log: ClaimLogObservation::NotConsulted { observed_at: 1_700 },
3540 claim_loop: ClaimLoopObservation::Consulted {
3541 observed_at: 1_690,
3542 distributors_known: 0,
3543 distributors_claimable: 0,
3544 state: ClaimLoopState::Idle,
3545 },
3546 };
3547
3548 let a = serde_json::to_value(running_and_shortfalling).unwrap();
3549 let b = serde_json::to_value(nothing_to_do).unwrap();
3550
3551 // The two counts an operator compares must each ride under its OWN
3552 // key: a transposition on the wire would invert "known" and
3553 // "claimable" and every other assertion here would still pass.
3554 assert_eq!(a["claim_loop"]["distributors_known"], 4);
3555 assert_eq!(a["claim_loop"]["distributors_claimable"], 2);
3556
3557 let a_kind = a["claim_loop"]["state"]["kind"].as_str().unwrap();
3558 let b_kind = b["claim_loop"]["state"]["kind"].as_str().unwrap();
3559
3560 assert_ne!(
3561 a_kind, b_kind,
3562 "a loop that is running and shortfalling must not read the same as one \
3563 with nothing to do, from the JSON alone"
3564 );
3565 assert_eq!(a_kind, "claimable_but_not_claiming");
3566 }
3567
3568 /// **Proves:** an unknown top-level key on `PayeeClaimStatus` is a parse
3569 /// error, per `deny_unknown_fields` (new in 0.13.0).
3570 #[test]
3571 fn payee_claim_status_rejects_an_unknown_top_level_key() {
3572 let mut body = claim_loop_fixture();
3573 body.as_object_mut()
3574 .unwrap()
3575 .insert("amount".to_string(), serde_json::json!(5));
3576 assert!(
3577 serde_json::from_value::<PayeeClaimStatus>(body).is_err(),
3578 "an unknown top-level key must not parse"
3579 );
3580 }
3581
3582 /// **Proves:** `GetRewardDistributorResult` round-trips, and `entry_set_stale`
3583 /// IS present on this chain-derived type (contrast `RewardProverStatus`,
3584 /// which must never carry it — SPEC §12.4 vs §2.4).
3585 #[test]
3586 fn get_reward_distributor_result_round_trips_and_carries_entry_set_stale() {
3587 let params = GetRewardDistributorParams {
3588 launcher_id: "ab".repeat(32),
3589 };
3590 let back: GetRewardDistributorParams =
3591 serde_json::from_str(&serde_json::to_string(¶ms).unwrap()).unwrap();
3592 assert_eq!(params, back);
3593
3594 let result = GetRewardDistributorResult {
3595 launcher_id: "ab".repeat(32),
3596 store_id: "cd".repeat(32),
3597 root: "ef".repeat(32),
3598 epoch_seconds: 86_400,
3599 first_epoch_start: 1_000,
3600 payout_threshold: 500_000,
3601 fee_bps: 250,
3602 withdrawal_share_bps: 9_000,
3603 reserve_base_units: 1_000_000,
3604 entry_count: 42,
3605 current_distributor_epoch: 7,
3606 last_entry_write_at: Some(1_650),
3607 entry_set_stale: true,
3608 observed_at: 1_700,
3609 };
3610 let value = serde_json::to_value(&result).unwrap();
3611 assert_eq!(value["entry_set_stale"], true);
3612 let back: GetRewardDistributorResult = serde_json::from_value(value).unwrap();
3613 assert_eq!(result, back);
3614 }
3615
3616 /// **Proves:** `entry_set_stale` is placed on exactly one of the two
3617 /// reward-distributor result types — present on the chain-derived
3618 /// `GetRewardDistributorResult`, absent from the self-reported
3619 /// `RewardProverStatus` — SPEC §12.4 vs §2.4.
3620 /// **Catches:** the staleness boolean migrating (or being copy-pasted)
3621 /// onto the self-reported type, which would let a wedged prover fake
3622 /// liveness by simply never flipping it.
3623 #[test]
3624 fn entry_set_stale_is_placed_on_the_chain_derived_result_only() {
3625 let prover_status = serde_json::to_value(sample_prover_status()).unwrap();
3626 assert!(
3627 !prover_status
3628 .as_object()
3629 .unwrap()
3630 .contains_key("entry_set_stale"),
3631 "RewardProverStatus must never carry entry_set_stale (SPEC §2.4)"
3632 );
3633
3634 let distributor_result = GetRewardDistributorResult {
3635 launcher_id: "ab".repeat(32),
3636 store_id: "cd".repeat(32),
3637 root: "ef".repeat(32),
3638 epoch_seconds: 86_400,
3639 first_epoch_start: 1_000,
3640 payout_threshold: 500_000,
3641 fee_bps: 250,
3642 withdrawal_share_bps: 9_000,
3643 reserve_base_units: 1_000_000,
3644 entry_count: 42,
3645 current_distributor_epoch: 7,
3646 last_entry_write_at: None,
3647 entry_set_stale: false,
3648 observed_at: 1_700,
3649 };
3650 let value = serde_json::to_value(&distributor_result).unwrap();
3651 assert!(
3652 value.as_object().unwrap().contains_key("entry_set_stale"),
3653 "GetRewardDistributorResult must carry entry_set_stale (SPEC §12.4)"
3654 );
3655 }
3656
3657 /// **Proves:** `GetRewardProverStatusParams` with an absent `launcher_id`
3658 /// deserializes from an empty JSON object to `None` — the field is
3659 /// genuinely optional on the wire, not merely optional in Rust.
3660 #[test]
3661 fn get_reward_prover_status_params_absent_launcher_id_is_none() {
3662 let parsed: GetRewardProverStatusParams = serde_json::from_value(json!({})).unwrap();
3663 assert_eq!(parsed.launcher_id, None);
3664
3665 // And the round trip the other way: `Some` serializes the key back out.
3666 let with_id = GetRewardProverStatusParams {
3667 launcher_id: Some("ab".repeat(32)),
3668 };
3669 let value = serde_json::to_value(&with_id).unwrap();
3670 assert_eq!(value["launcher_id"], json!("ab".repeat(32)));
3671 }
3672
3673 /// **Proves:** `ListRewardDistributorCommitmentsResult` round-trips,
3674 /// including the legitimate EMPTY `commitments` case (a distributor
3675 /// funded only via `AddIncentives` has no clawback slots at all — an
3676 /// irrevocable donation, not an error) — SPEC §7.4 clause 5.
3677 #[test]
3678 fn list_reward_distributor_commitments_round_trips_with_empty_commitments() {
3679 let params = ListRewardDistributorCommitmentsParams {
3680 launcher_id: "ab".repeat(32),
3681 };
3682 let back: ListRewardDistributorCommitmentsParams =
3683 serde_json::from_str(&serde_json::to_string(¶ms).unwrap()).unwrap();
3684 assert_eq!(params, back);
3685
3686 let result = ListRewardDistributorCommitmentsResult {
3687 launcher_id: "ab".repeat(32),
3688 withdrawal_share_bps: 9_000,
3689 epoch_seconds: 86_400,
3690 commitments: vec![],
3691 observed_at: 1_700,
3692 };
3693 let back: ListRewardDistributorCommitmentsResult =
3694 serde_json::from_str(&serde_json::to_string(&result).unwrap()).unwrap();
3695 assert_eq!(result, back);
3696 assert_eq!(back.epoch_seconds, 86_400);
3697 }
3698
3699 /// **Proves:** `recoverable_base_units` is `rewards_base_units *
3700 /// withdrawal_share_bps / 10_000`, computed with integer arithmetic
3701 /// (multiply then divide) that TRUNCATES rather than rounds up — SPEC
3702 /// §7.4 clause 4 / §7.5.
3703 /// **Catches:** a rounded-up recoverable amount, which would promise
3704 /// money the chain will not return on clawback.
3705 #[test]
3706 fn commitment_recoverable_amount_truncates_and_never_exceeds_committed() {
3707 let withdrawal_share_bps: u64 = 9_000;
3708
3709 // Evenly divisible: 1_000 * 9000 / 10000 = 900.
3710 let even = RewardDistributorCommitment {
3711 epoch_start: 10,
3712 clawback_puzzle_hash: "aa".repeat(32),
3713 rewards_base_units: 1_000,
3714 recoverable_base_units: 1_000 * withdrawal_share_bps / 10_000,
3715 };
3716 assert_eq!(even.recoverable_base_units, 900);
3717
3718 // Not evenly divisible: 1_001 * 9000 / 10000 = 900.9 -> 900, not 901.
3719 let odd = RewardDistributorCommitment {
3720 epoch_start: 11,
3721 clawback_puzzle_hash: "bb".repeat(32),
3722 rewards_base_units: 1_001,
3723 recoverable_base_units: 1_001 * withdrawal_share_bps / 10_000,
3724 };
3725 assert_eq!(
3726 odd.recoverable_base_units, 900,
3727 "a non-evenly-divisible amount must truncate down, never round up"
3728 );
3729
3730 for commitment in [even, odd] {
3731 assert!(
3732 commitment.recoverable_base_units <= commitment.rewards_base_units,
3733 "recoverable_base_units must never exceed rewards_base_units"
3734 );
3735 }
3736 }
3737}