@dignetwork/dig-sdk 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -20,6 +20,75 @@ var SIGN_METHODS = [
20
20
  ];
21
21
  var DEFAULT_CHAIN = "chia:mainnet";
22
22
 
23
+ // src/errors.ts
24
+ var DIG_SDK_ERROR_CODES = Object.freeze({
25
+ // ---- provider / connect (provider/chia-provider.ts, provider/*) ----
26
+ /** WalletConnect was requested/needed but no `walletConnect` options were supplied. */
27
+ WC_OPTIONS_REQUIRED: "WC_OPTIONS_REQUIRED",
28
+ /** `mode: "injected"` (or the injected leg of `auto`) found no usable `window.chia`. */
29
+ NO_INJECTED_WALLET: "NO_INJECTED_WALLET",
30
+ /** The optional `@walletconnect/sign-client` peer dependency is not installed/usable. */
31
+ WC_DEPENDENCY_MISSING: "WC_DEPENDENCY_MISSING",
32
+ /** The active wallet session/transport does not grant the requested method. */
33
+ METHOD_NOT_SUPPORTED: "METHOD_NOT_SUPPORTED",
34
+ /** A wallet RPC timed out (e.g. Sage did not respond within the per-request timeout). */
35
+ WALLET_TIMEOUT: "WALLET_TIMEOUT",
36
+ /** The wallet returned no public keys / no key to sign with. */
37
+ WALLET_NO_KEYS: "WALLET_NO_KEYS",
38
+ // ---- read-crypto / RPC (dig-client.ts, loader.ts) ----
39
+ /** A content read needs a confirmed on-chain root and none was supplied/derivable. */
40
+ ROOT_REQUIRED: "ROOT_REQUIRED",
41
+ /** The resource did not decrypt+authenticate under this URN (wrong key/salt, or a decoy). */
42
+ DECRYPT_FAILED: "DECRYPT_FAILED",
43
+ /** The dig RPC could not be reached (network/transport failure). */
44
+ RPC_TRANSPORT: "RPC_TRANSPORT",
45
+ /** The dig RPC responded with an HTTP error or a JSON-RPC `error` object. */
46
+ RPC_ERROR: "RPC_ERROR",
47
+ /** The dig RPC returned a malformed / inconsistent payload (e.g. chunk-length mismatch). */
48
+ RPC_MALFORMED_RESPONSE: "RPC_MALFORMED_RESPONSE",
49
+ /** The vendored read-crypto wasm failed its SRI integrity check — fail closed. */
50
+ WASM_INTEGRITY: "WASM_INTEGRITY",
51
+ /** The read-crypto wasm could not be loaded (fetch/resolve failure). */
52
+ WASM_LOAD_FAILED: "WASM_LOAD_FAILED",
53
+ // ---- paywall / spends (paywall.ts) ----
54
+ /** The canonical chip35 wasm builder for this operation is unavailable (never hand-rolled). */
55
+ SPEND_BUILDER_UNAVAILABLE: "SPEND_BUILDER_UNAVAILABLE",
56
+ /** No secure random source was available to generate a payment nonce. */
57
+ NO_SECURE_RANDOM: "NO_SECURE_RANDOM",
58
+ // ---- deploy / adapters (adapters/run.ts, adapters/deploy.ts) ----
59
+ /** The `digstore` binary could not be spawned (not installed / not on PATH). */
60
+ DIGSTORE_NOT_FOUND: "DIGSTORE_NOT_FOUND",
61
+ /** `digstore deploy` exited non-zero. */
62
+ DEPLOY_FAILED: "DEPLOY_FAILED",
63
+ /** `digstore deploy --json` output could not be parsed into a capsule result. */
64
+ DEPLOY_OUTPUT_UNPARSEABLE: "DEPLOY_OUTPUT_UNPARSEABLE",
65
+ // ---- argument validation (shared) ----
66
+ /** An argument was malformed (e.g. a non-hex string, a bad URN, mutually-exclusive options). */
67
+ INVALID_ARGUMENT: "INVALID_ARGUMENT"
68
+ });
69
+ var DIG_SDK_ERROR_BRAND = "__dignetwork_dig_sdk_error__";
70
+ var DigSdkError = class _DigSdkError extends Error {
71
+ constructor(code, message, context = {}, options = {}) {
72
+ super(message);
73
+ this.name = "DigSdkError";
74
+ this.code = code;
75
+ this.context = context;
76
+ if (options.cause !== void 0) {
77
+ this.cause = options.cause;
78
+ }
79
+ Object.defineProperty(this, DIG_SDK_ERROR_BRAND, { value: true, enumerable: false });
80
+ Object.setPrototypeOf(this, _DigSdkError.prototype);
81
+ }
82
+ /** A JSON-friendly view of the error: `{ code, message, context }`. */
83
+ toJSON() {
84
+ return { code: this.code, message: this.message, context: this.context };
85
+ }
86
+ };
87
+ function isDigSdkError(e, code) {
88
+ const branded = e instanceof DigSdkError || typeof e === "object" && e !== null && e[DIG_SDK_ERROR_BRAND] === true;
89
+ return branded && (code === void 0 || e.code === code);
90
+ }
91
+
23
92
  // src/provider/injected.ts
24
93
  function getInjectedProvider() {
25
94
  const g = globalThis;
@@ -52,7 +121,11 @@ var InjectedTransport = class {
52
121
  }
53
122
  async request(method, params) {
54
123
  if (!this.supports(method)) {
55
- throw new Error(`The DIG Browser wallet does not support "${method}".`);
124
+ throw new DigSdkError(
125
+ "METHOD_NOT_SUPPORTED",
126
+ `The DIG Browser wallet does not support "${method}".`,
127
+ { method }
128
+ );
56
129
  }
57
130
  return this.provider.request({ method, params });
58
131
  }
@@ -136,8 +209,10 @@ var WalletConnectTransport = class _WalletConnectTransport {
136
209
  }
137
210
  async request(method, params) {
138
211
  if (!this.supports(method)) {
139
- throw new Error(
140
- `Your wallet session does not grant "${method}". Disconnect and reconnect your wallet to refresh the session (and make sure Sage is up to date).`
212
+ throw new DigSdkError(
213
+ "METHOD_NOT_SUPPORTED",
214
+ `Your wallet session does not grant "${method}". Disconnect and reconnect your wallet to refresh the session (and make sure Sage is up to date).`,
215
+ { method }
141
216
  );
142
217
  }
143
218
  const MAX_ATTEMPTS = 3;
@@ -160,7 +235,13 @@ var WalletConnectTransport = class _WalletConnectTransport {
160
235
  let t;
161
236
  const timeout = new Promise((_, rej) => {
162
237
  t = setTimeout(
163
- () => rej(new Error("Sage did not respond \u2014 open the Sage app and try again.")),
238
+ () => rej(
239
+ new DigSdkError(
240
+ "WALLET_TIMEOUT",
241
+ "Sage did not respond \u2014 open the Sage app and try again.",
242
+ { method, timeoutMs: this.requestTimeoutMs }
243
+ )
244
+ ),
164
245
  this.requestTimeoutMs
165
246
  );
166
247
  });
@@ -190,9 +271,12 @@ async function loadSignClient() {
190
271
  throw new Error("unexpected @walletconnect/sign-client shape");
191
272
  }
192
273
  return SignClient;
193
- } catch {
194
- throw new Error(
195
- "WalletConnect fallback requires the optional peer dependency '@walletconnect/sign-client'. Install it (npm i @walletconnect/sign-client) to use the WalletConnect\u2192Sage transport."
274
+ } catch (e) {
275
+ throw new DigSdkError(
276
+ "WC_DEPENDENCY_MISSING",
277
+ "WalletConnect fallback requires the optional peer dependency '@walletconnect/sign-client'. Install it (npm i @walletconnect/sign-client) to use the WalletConnect\u2192Sage transport.",
278
+ {},
279
+ { cause: e }
196
280
  );
197
281
  }
198
282
  }
@@ -229,7 +313,8 @@ async function signMessage(request, supports, message, address) {
229
313
  }
230
314
  const keys = await getPublicKeys(request);
231
315
  const publicKey = keys[0];
232
- if (!publicKey) throw new Error("Wallet returned no keys to sign with.");
316
+ if (!publicKey)
317
+ throw new DigSdkError("WALLET_NO_KEYS", "Wallet returned no keys to sign with.");
233
318
  const sig = normalizeSig(await request("chip0002_signMessage", { message, publicKey }));
234
319
  return { publicKey: sig.publicKey ?? with0x(publicKey), signature: sig.signature };
235
320
  }
@@ -241,7 +326,11 @@ async function signCoinSpends(request, coinSpends) {
241
326
  }
242
327
  async function takeOffer(request, supports, offer, fee = 0) {
243
328
  if (!supports("chia_takeOffer")) {
244
- throw new Error("Your wallet session does not support taking offers. Reconnect your wallet.");
329
+ throw new DigSdkError(
330
+ "METHOD_NOT_SUPPORTED",
331
+ "Your wallet session does not support taking offers. Reconnect your wallet.",
332
+ { method: "chia_takeOffer" }
333
+ );
245
334
  }
246
335
  return request("chia_takeOffer", { offer, fee });
247
336
  }
@@ -325,8 +414,10 @@ var ChiaProvider = class _ChiaProvider {
325
414
  };
326
415
  const tryWalletConnect = async () => {
327
416
  if (!options.walletConnect) {
328
- throw new Error(
329
- "WalletConnect options are required to connect via WalletConnect (pass { walletConnect: { projectId, metadata, onUri } })."
417
+ throw new DigSdkError(
418
+ "WC_OPTIONS_REQUIRED",
419
+ "WalletConnect options are required to connect via WalletConnect (pass { walletConnect: { projectId, metadata, onUri } }).",
420
+ { mode }
330
421
  );
331
422
  }
332
423
  const transport = await WalletConnectTransport.connect({
@@ -338,8 +429,10 @@ var ChiaProvider = class _ChiaProvider {
338
429
  if (mode === "injected") {
339
430
  const injected = await tryInjected();
340
431
  if (!injected) {
341
- throw new Error(
342
- "No injected DIG wallet found. Open this page in the DIG Browser, or use mode 'auto'."
432
+ throw new DigSdkError(
433
+ "NO_INJECTED_WALLET",
434
+ "No injected DIG wallet found. Open this page in the DIG Browser, or use mode 'auto'.",
435
+ { mode, acceptAnyInjected: !!options.acceptAnyInjected }
343
436
  );
344
437
  }
345
438
  return injected;
@@ -414,6 +507,200 @@ function connectWallet(options) {
414
507
  return ChiaProvider.connect(options);
415
508
  }
416
509
 
510
+ // src/paywall.ts
511
+ function strip0x2(hex) {
512
+ return hex.replace(/^0x/i, "").toLowerCase();
513
+ }
514
+ function hexToBytes(hex) {
515
+ const h = strip0x2(hex);
516
+ if (h.length % 2 !== 0 || /[^0-9a-f]/.test(h)) {
517
+ throw new DigSdkError("INVALID_ARGUMENT", `invalid hex string: ${hex}`, { value: hex });
518
+ }
519
+ const out = new Uint8Array(h.length / 2);
520
+ for (let i = 0; i < out.length; i++) out[i] = parseInt(h.slice(i * 2, i * 2 + 2), 16);
521
+ return out;
522
+ }
523
+ function bytesToHex(bytes) {
524
+ let s = "";
525
+ for (const b of bytes) s += b.toString(16).padStart(2, "0");
526
+ return s;
527
+ }
528
+ async function randomNonce() {
529
+ const out = new Uint8Array(32);
530
+ const webcrypto = globalThis.crypto;
531
+ if (webcrypto?.getRandomValues) {
532
+ webcrypto.getRandomValues(out);
533
+ return out;
534
+ }
535
+ const nodeCrypto = await import('crypto');
536
+ if (!nodeCrypto.webcrypto?.getRandomValues) {
537
+ throw new DigSdkError(
538
+ "NO_SECURE_RANDOM",
539
+ "No secure random source available to generate a payment nonce."
540
+ );
541
+ }
542
+ nodeCrypto.webcrypto.getRandomValues(out);
543
+ return out;
544
+ }
545
+ var Paywall = class {
546
+ constructor(provider, options = {}) {
547
+ this.provider = provider;
548
+ this.injectedSpends = options.spends;
549
+ }
550
+ /**
551
+ * Resolve the canonical monetization spends (injected, or lazily imported + `init()`ed). Memoized.
552
+ * This is the ONLY source of coin-spend construction in the Paywall — there is no fallback that
553
+ * hand-rolls a spend.
554
+ */
555
+ spends() {
556
+ if (this.injectedSpends) {
557
+ if (typeof this.injectedSpends.init === "function") this.injectedSpends.init();
558
+ return Promise.resolve(this.injectedSpends);
559
+ }
560
+ if (!this.spendsReady) {
561
+ this.spendsReady = (async () => {
562
+ const mod = await import(
563
+ /* @vite-ignore */
564
+ '@dignetwork/chip35-dl-coin-wasm'
565
+ );
566
+ if (typeof mod.init === "function") mod.init();
567
+ return mod;
568
+ })().catch((e) => {
569
+ this.spendsReady = void 0;
570
+ throw e;
571
+ });
572
+ }
573
+ return this.spendsReady;
574
+ }
575
+ /** The wallet's first synthetic public key, as bytes (the buyer key the spends are built against). */
576
+ async buyerKey() {
577
+ const keys = await this.provider.getPublicKeys();
578
+ const key = keys?.[0];
579
+ if (!key)
580
+ throw new DigSdkError(
581
+ "WALLET_NO_KEYS",
582
+ "Wallet returned no public keys to build the payment against."
583
+ );
584
+ return hexToBytes(key);
585
+ }
586
+ /** Resolve the 32-byte unlock nonce: explicit hex, else derived from `memo`, else random. */
587
+ async resolveNonce(spends, args) {
588
+ if (args.nonce) return hexToBytes(args.nonce);
589
+ if (args.memo) {
590
+ if (typeof spends.paymentNonce !== "function") {
591
+ throw new DigSdkError(
592
+ "SPEND_BUILDER_UNAVAILABLE",
593
+ "Cannot derive a nonce from `memo`: the chip35 wasm `paymentNonce` is unavailable.",
594
+ { builder: "paymentNonce" }
595
+ );
596
+ }
597
+ return spends.paymentNonce(new TextEncoder().encode(args.memo));
598
+ }
599
+ return randomNonce();
600
+ }
601
+ /**
602
+ * Charge the buyer (the connected wallet) `amount` to pay the dapp `owner`, then push the
603
+ * wasm-built coin spends to the wallet for signing. Returns the wallet signature + the receipt.
604
+ * Builds via the canonical wasm `buildPayment` (XCH) or `buildCatPayment` (CAT) — never hand-rolled.
605
+ */
606
+ async requestPayment(args) {
607
+ const spends = await this.spends();
608
+ const ownerPh = hexToBytes(args.owner);
609
+ const amount = BigInt(args.amount);
610
+ const nonce = await this.resolveNonce(spends, args);
611
+ const buyerKey = await this.buyerKey();
612
+ let built;
613
+ if (args.assetId) {
614
+ if (typeof spends.buildCatPayment !== "function") {
615
+ throw new DigSdkError(
616
+ "SPEND_BUILDER_UNAVAILABLE",
617
+ "chip35 wasm `buildCatPayment` is unavailable \u2014 cannot build a CAT payment (the Paywall never hand-rolls spends).",
618
+ { builder: "buildCatPayment" }
619
+ );
620
+ }
621
+ const cats = await this.provider.getCatCoins(strip0x2(args.assetId), args.coinLimit);
622
+ built = spends.buildCatPayment(buyerKey, cats, ownerPh, amount, nonce);
623
+ } else {
624
+ if (typeof spends.buildPayment !== "function") {
625
+ throw new DigSdkError(
626
+ "SPEND_BUILDER_UNAVAILABLE",
627
+ "chip35 wasm `buildPayment` is unavailable \u2014 cannot build an XCH payment (the Paywall never hand-rolls spends).",
628
+ { builder: "buildPayment" }
629
+ );
630
+ }
631
+ const coins = await this.provider.getXchCoins(args.coinLimit);
632
+ built = spends.buildPayment(buyerKey, coins, ownerPh, amount, nonce, BigInt(args.fee ?? 0));
633
+ }
634
+ const signature = await this.provider.signCoinSpends(built.coinSpends);
635
+ return {
636
+ signature,
637
+ receipt: built.receipt,
638
+ coinSpends: built.coinSpends,
639
+ nonce: bytesToHex(nonce)
640
+ };
641
+ }
642
+ /**
643
+ * Verify an observed on-chain payment unlocks the paywall (pay-to-unlock). Delegates to the wasm
644
+ * `verifyPaymentReceipt`; returns its `{ ok, error? }` verdict. `ok:true` grants access.
645
+ */
646
+ async verifyReceipt(args) {
647
+ const spends = await this.spends();
648
+ if (typeof spends.verifyPaymentReceipt !== "function") {
649
+ throw new DigSdkError(
650
+ "SPEND_BUILDER_UNAVAILABLE",
651
+ "chip35 wasm `verifyPaymentReceipt` is unavailable.",
652
+ { builder: "verifyPaymentReceipt" }
653
+ );
654
+ }
655
+ const asset = args.asset ?? { xch: true };
656
+ const requiredAsset = "assetId" in asset && asset.assetId ? { assetId: hexToBytes(asset.assetId) } : { xch: true };
657
+ const requireNonce = args.nonce ? hexToBytes(args.nonce) : null;
658
+ return spends.verifyPaymentReceipt(
659
+ args.observed,
660
+ hexToBytes(args.owner),
661
+ BigInt(args.minAmount),
662
+ requiredAsset,
663
+ requireNonce
664
+ );
665
+ }
666
+ /**
667
+ * Prove the `owner` holds access: gate on a specific NFT (`nft` launcher id) via the wasm
668
+ * `proveNftOwnership`, or on collection/creator membership (`collection` DID) via
669
+ * `proveCollectionMembership`. Returns `{ ok, proof?, error? }`. The caller still confirms the
670
+ * proof's coin is unspent on-chain for liveness.
671
+ */
672
+ async proveAccess(args) {
673
+ if (args.nft && args.collection) {
674
+ throw new DigSdkError(
675
+ "INVALID_ARGUMENT",
676
+ "proveAccess: pass either `nft` or `collection`, not both.",
677
+ { value: "nft+collection" }
678
+ );
679
+ }
680
+ const spends = await this.spends();
681
+ const owner = hexToBytes(args.owner);
682
+ if (args.collection) {
683
+ if (typeof spends.proveCollectionMembership !== "function") {
684
+ throw new DigSdkError(
685
+ "SPEND_BUILDER_UNAVAILABLE",
686
+ "chip35 wasm `proveCollectionMembership` is unavailable.",
687
+ { builder: "proveCollectionMembership" }
688
+ );
689
+ }
690
+ return spends.proveCollectionMembership(args.parentSpend, owner, hexToBytes(args.collection));
691
+ }
692
+ if (typeof spends.proveNftOwnership !== "function") {
693
+ throw new DigSdkError(
694
+ "SPEND_BUILDER_UNAVAILABLE",
695
+ "chip35 wasm `proveNftOwnership` is unavailable.",
696
+ { builder: "proveNftOwnership" }
697
+ );
698
+ }
699
+ const requiredNft = args.nft ? hexToBytes(args.nft) : null;
700
+ return spends.proveNftOwnership(args.parentSpend, owner, requiredNft);
701
+ }
702
+ };
703
+
417
704
  // src/loader.ts
418
705
  var DIG_CLIENT_WASM_SHA256 = "ff486be806f908a2a90780e499a04dbd34e10e3b97be0470cb9ee841a1e49e77";
419
706
  var _config = {};
@@ -439,8 +726,10 @@ async function sha256Hex(bytes) {
439
726
  function assertIntegrity(hex) {
440
727
  if (_config.skipIntegrity) return;
441
728
  if (hex !== DIG_CLIENT_WASM_SHA256) {
442
- throw new Error(
443
- `dig-client wasm integrity check failed \u2014 refusing to run unverified crypto (expected ${DIG_CLIENT_WASM_SHA256}, got ${hex}).`
729
+ throw new DigSdkError(
730
+ "WASM_INTEGRITY",
731
+ `dig-client wasm integrity check failed \u2014 refusing to run unverified crypto (expected ${DIG_CLIENT_WASM_SHA256}, got ${hex}).`,
732
+ { expected: DIG_CLIENT_WASM_SHA256, actual: hex }
444
733
  );
445
734
  }
446
735
  }
@@ -465,7 +754,11 @@ async function loadBrowser() {
465
754
  } else {
466
755
  const wasmUrl = _config.wasmUrl ?? new URL("../vendor/dig_client_bg.wasm", (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href))).href;
467
756
  const res = await fetch(wasmUrl);
468
- if (!res.ok) throw new Error(`dig-client wasm fetch failed (${res.status})`);
757
+ if (!res.ok)
758
+ throw new DigSdkError("WASM_LOAD_FAILED", `dig-client wasm fetch failed (${res.status})`, {
759
+ httpStatus: res.status,
760
+ wasmUrl
761
+ });
469
762
  bytes = await res.arrayBuffer();
470
763
  }
471
764
  return { glueHref, bytes };
@@ -494,8 +787,10 @@ function parseUrn(raw) {
494
787
  const s = String(raw ?? "").trim();
495
788
  const m = URN_RE.exec(s);
496
789
  if (!m) {
497
- throw new Error(
498
- "Not a valid dig URN (expected urn:dig:chia:<store-id>[:<root>]/<path>[?salt=<hex>])."
790
+ throw new DigSdkError(
791
+ "INVALID_ARGUMENT",
792
+ "Not a valid dig URN (expected urn:dig:chia:<store-id>[:<root>]/<path>[?salt=<hex>]).",
793
+ { value: s, expected: "urn:dig:chia:<store-id>[:<root>]/<path>[?salt=<hex>]" }
499
794
  );
500
795
  }
501
796
  return {
@@ -587,8 +882,10 @@ var DigClient = class {
587
882
  const effSalt = input.salt ?? parsed.salt ?? null;
588
883
  const effRoot = input.root ?? parsed.root ?? null;
589
884
  if (!effRoot) {
590
- throw new Error(
591
- "a confirmed on-chain root is required to read content (pass { root } or use a root-pinned URN)"
885
+ throw new DigSdkError(
886
+ "ROOT_REQUIRED",
887
+ "a confirmed on-chain root is required to read content (pass { root } or use a root-pinned URN)",
888
+ { urn: input.urn }
592
889
  );
593
890
  }
594
891
  return this.readResource(
@@ -600,8 +897,10 @@ var DigClient = class {
600
897
  async readText(input, opts = {}) {
601
898
  const r = await this.read(input, opts);
602
899
  if (!r.decrypted) {
603
- throw new Error(
604
- "resource did not decrypt under this URN \u2014 wrong store/key/salt, or a decoy response"
900
+ throw new DigSdkError(
901
+ "DECRYPT_FAILED",
902
+ "resource did not decrypt under this URN \u2014 wrong store/key/salt, or a decoy response",
903
+ { urn: input.urn }
605
904
  );
606
905
  }
607
906
  return new TextDecoder().decode(r.bytes);
@@ -650,6 +949,62 @@ var DigClient = class {
650
949
  };
651
950
  }
652
951
  }
952
+ /**
953
+ * Read a collection's public, owner-independent facts (creator DID, item count, uniform royalty)
954
+ * from the dig RPC (`dig.getCollection`). The collection's item set is its NFT launcher ids — the
955
+ * authoritative, owner-independent anchor the mint produced (a DID-attributed NFT is hinted to its
956
+ * OWNER at mint, not to the creator DID, so launcher ids — not the DID — are the read key). Pass
957
+ * the optional `did` to have it echoed back and recorded as the declared creator.
958
+ *
959
+ * No wallet, no read-crypto wasm — a plain JSON-RPC read. Throws a coded {@link DigSdkError} on a
960
+ * transport/RPC failure (never a "not found": an empty/partly-confirmed set just resolves to fewer
961
+ * items).
962
+ *
963
+ * @example
964
+ * const meta = await dig.getCollection({ launcherIds: ["ab…", "cd…"], did: "ef…" });
965
+ * console.log(meta.resolved_count, meta.royalty_basis_points);
966
+ */
967
+ async getCollection(input, opts = {}) {
968
+ const rpc = opts.rpc ?? this.rpc;
969
+ const params = { launcher_ids: input.launcherIds };
970
+ if (input.did) params.did = input.did;
971
+ const r = await this.rpcCall(rpc, "dig.getCollection", params);
972
+ if (!r)
973
+ throw new DigSdkError(
974
+ "RPC_MALFORMED_RESPONSE",
975
+ "The content network returned no collection facts for this request.",
976
+ { rpcMethod: "dig.getCollection" }
977
+ );
978
+ return r;
979
+ }
980
+ /**
981
+ * Read a deterministic, paginated page of a collection's items (`dig.listCollectionItems`), each
982
+ * resolved to its CURRENT on-chain state — current owner, royalty, and CHIP-0007 metadata — by the
983
+ * RPC walking the singleton lineage forward to the live tip (so the owner is never the stale
984
+ * mint-time owner). Items come back in the input launcher-id order. `limit` is clamped to the
985
+ * server cap (200); `offset` defaults to 0.
986
+ *
987
+ * Throws a coded {@link DigSdkError} on a transport/RPC failure.
988
+ *
989
+ * @example
990
+ * let page = await dig.listCollectionItems({ launcherIds, limit: 50 });
991
+ * for (const item of page.items) console.log(item.launcher_id, item.owner_puzzle_hash);
992
+ * // page.next_offset is null on the last page.
993
+ */
994
+ async listCollectionItems(input, opts = {}) {
995
+ const rpc = opts.rpc ?? this.rpc;
996
+ const params = { launcher_ids: input.launcherIds };
997
+ if (input.offset !== void 0) params.offset = input.offset;
998
+ if (input.limit !== void 0) params.limit = input.limit;
999
+ const r = await this.rpcCall(rpc, "dig.listCollectionItems", params);
1000
+ if (!r)
1001
+ throw new DigSdkError(
1002
+ "RPC_MALFORMED_RESPONSE",
1003
+ "The content network returned no collection items for this request.",
1004
+ { rpcMethod: "dig.listCollectionItems" }
1005
+ );
1006
+ return r;
1007
+ }
653
1008
  // Stream the FULL ciphertext for a resource from the RPC by retrieval key, reassembling 3-MiB
654
1009
  // chunks. A null result is a TRANSPORT failure, never a presence judgment.
655
1010
  async fetchCiphertext(storeId, rk, root, rpc) {
@@ -666,7 +1021,12 @@ var DigClient = class {
666
1021
  offset,
667
1022
  length: RPC_CHUNK_BYTES
668
1023
  });
669
- if (!r) throw new Error("The content network returned no data for this request.");
1024
+ if (!r)
1025
+ throw new DigSdkError(
1026
+ "RPC_MALFORMED_RESPONSE",
1027
+ "The content network returned no data for this request.",
1028
+ { rpcMethod: "dig.getContent" }
1029
+ );
670
1030
  if (total === null) {
671
1031
  total = r.total_length >>> 0;
672
1032
  buf = new Uint8Array(total);
@@ -683,7 +1043,8 @@ var DigClient = class {
683
1043
  }
684
1044
  return { ciphertext: buf ?? new Uint8Array(0), proof, chunkLens };
685
1045
  }
686
- // One JSON-RPC 2.0 call. Throws on transport failure or a JSON-RPC error; returns `result`.
1046
+ // One JSON-RPC 2.0 call. Throws a coded DigSdkError on transport failure (RPC_TRANSPORT) or a
1047
+ // JSON-RPC/HTTP error (RPC_ERROR, carrying rpcMethod/httpStatus/rpcCode context); returns `result`.
687
1048
  async rpcCall(rpc, method, params) {
688
1049
  let res;
689
1050
  try {
@@ -692,12 +1053,26 @@ var DigClient = class {
692
1053
  headers: { "content-type": "application/json" },
693
1054
  body: JSON.stringify({ jsonrpc: "2.0", id: 1, method, params })
694
1055
  });
695
- } catch {
696
- throw new Error("Could not reach the content network. Check your connection and try again.");
1056
+ } catch (e) {
1057
+ throw new DigSdkError(
1058
+ "RPC_TRANSPORT",
1059
+ "Could not reach the content network. Check your connection and try again.",
1060
+ { rpcMethod: method },
1061
+ { cause: e }
1062
+ );
697
1063
  }
698
- if (!res.ok) throw new Error(`dig RPC ${method} failed (${res.status})`);
1064
+ if (!res.ok)
1065
+ throw new DigSdkError("RPC_ERROR", `dig RPC ${method} failed (${res.status})`, {
1066
+ rpcMethod: method,
1067
+ httpStatus: res.status
1068
+ });
699
1069
  const json = await res.json();
700
- if (json && json.error) throw new Error(`dig RPC ${method}: ${json.error.message ?? "error"}`);
1070
+ if (json && json.error)
1071
+ throw new DigSdkError(
1072
+ "RPC_ERROR",
1073
+ `dig RPC ${method}: ${json.error.message ?? "error"}`,
1074
+ { rpcMethod: method, rpcCode: json.error.code }
1075
+ );
701
1076
  return json ? json.result ?? null : null;
702
1077
  }
703
1078
  };
@@ -705,7 +1080,11 @@ function decryptResourceChunks(wasm, keyHex, ciphertext, chunkLens) {
705
1080
  const lens = chunkLens && chunkLens.length ? chunkLens : [ciphertext.length];
706
1081
  const total = lens.reduce((a, n) => a + n, 0);
707
1082
  if (total !== ciphertext.length) {
708
- throw new Error("served ciphertext length does not match chunk lengths");
1083
+ throw new DigSdkError(
1084
+ "RPC_MALFORMED_RESPONSE",
1085
+ "served ciphertext length does not match chunk lengths",
1086
+ { rpcMethod: "dig.getContent", expected: String(total), actual: String(ciphertext.length) }
1087
+ );
709
1088
  }
710
1089
  if (lens.length === 1) return wasm.decryptChunk(keyHex, ciphertext);
711
1090
  const parts = [];
@@ -724,25 +1103,78 @@ function decryptResourceChunks(wasm, keyHex, ciphertext, chunkLens) {
724
1103
  }
725
1104
  function undefinedFetch() {
726
1105
  return (() => {
727
- throw new Error(
1106
+ throw new DigSdkError(
1107
+ "INVALID_ARGUMENT",
728
1108
  "No global fetch available. Pass { fetch } to DigClient (Node < 18 needs a fetch polyfill)."
729
1109
  );
730
1110
  });
731
1111
  }
732
1112
 
1113
+ // src/capabilities.ts
1114
+ var SDK_VERSION = "0.2.0" ;
1115
+ var MODULES = Object.freeze([
1116
+ {
1117
+ name: "ChiaProvider",
1118
+ summary: "Unified Chia wallet surface \u2014 prefers the injected DIG Browser wallet, falls back to WalletConnect\u2192Sage.",
1119
+ entry: "@dignetwork/dig-sdk"
1120
+ },
1121
+ {
1122
+ name: "DigClient",
1123
+ summary: "Read-crypto: derive URN keys, verify inclusion against an on-chain root, and decrypt content from the dig RPC.",
1124
+ entry: "@dignetwork/dig-sdk"
1125
+ },
1126
+ {
1127
+ name: "Paywall",
1128
+ summary: "Pay-to-unlock helper composing ChiaProvider with the canonical chip35 monetization spends (payment / receipt / NFT+collection gating).",
1129
+ entry: "@dignetwork/dig-sdk"
1130
+ },
1131
+ {
1132
+ name: "spend",
1133
+ summary: "The canonical CHIP-0035 spend builder (@dignetwork/chip35-dl-coin-wasm), re-exported verbatim.",
1134
+ entry: "@dignetwork/dig-sdk/spend"
1135
+ },
1136
+ {
1137
+ name: "adapters",
1138
+ summary: "Framework deploy glue (Vite + Next): dev window.chia shim and `digstore deploy` runner.",
1139
+ entry: "@dignetwork/dig-sdk/adapters"
1140
+ }
1141
+ ]);
1142
+ function capabilities() {
1143
+ return {
1144
+ name: "@dignetwork/dig-sdk",
1145
+ version: SDK_VERSION,
1146
+ modules: MODULES,
1147
+ walletMethods: [...WALLET_METHODS],
1148
+ signMethods: [...SIGN_METHODS],
1149
+ transports: ["injected", "walletconnect"],
1150
+ chains: [DEFAULT_CHAIN],
1151
+ defaultRpc: DEFAULT_RPC,
1152
+ readCryptoWasmSha256: DIG_CLIENT_WASM_SHA256,
1153
+ errorCodes: Object.values(DIG_SDK_ERROR_CODES)
1154
+ };
1155
+ }
1156
+ var describe = capabilities;
1157
+
733
1158
  exports.ChiaProvider = ChiaProvider;
734
1159
  exports.DEFAULT_CHAIN = DEFAULT_CHAIN;
735
1160
  exports.DEFAULT_RPC = DEFAULT_RPC;
736
1161
  exports.DIG_CLIENT_WASM_SHA256 = DIG_CLIENT_WASM_SHA256;
1162
+ exports.DIG_SDK_ERROR_CODES = DIG_SDK_ERROR_CODES;
737
1163
  exports.DigClient = DigClient;
1164
+ exports.DigSdkError = DigSdkError;
738
1165
  exports.INJECTED_TOPIC = INJECTED_TOPIC;
739
1166
  exports.InjectedTransport = InjectedTransport;
1167
+ exports.Paywall = Paywall;
1168
+ exports.SDK_VERSION = SDK_VERSION;
740
1169
  exports.SIGN_METHODS = SIGN_METHODS;
741
1170
  exports.WALLET_METHODS = WALLET_METHODS;
742
1171
  exports.WalletConnectTransport = WalletConnectTransport;
1172
+ exports.capabilities = capabilities;
743
1173
  exports.configureWasm = configureWasm;
744
1174
  exports.connectWallet = connectWallet;
1175
+ exports.describe = describe;
745
1176
  exports.getInjectedProvider = getInjectedProvider;
1177
+ exports.isDigSdkError = isDigSdkError;
746
1178
  exports.isInjectedAvailable = isInjectedAvailable;
747
1179
  exports.isTransientPublishError = isTransientPublishError;
748
1180
  exports.isUrn = isUrn;