@veilo/sdk-core 0.3.3 → 0.4.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.
Files changed (195) hide show
  1. package/README.md +42 -3
  2. package/SHIELD_INTEGRATION.md +143 -0
  3. package/config.d.ts +2 -0
  4. package/config.js +4 -0
  5. package/dist/cjs/client.d.ts +5 -5
  6. package/dist/cjs/client.js +79 -42
  7. package/dist/cjs/compactNote.d.ts +107 -0
  8. package/dist/cjs/compactNote.js +167 -0
  9. package/dist/cjs/events.d.ts +1 -1
  10. package/dist/cjs/events.js +2 -2
  11. package/dist/cjs/idl/privacy_pool.d.ts +5 -0
  12. package/dist/cjs/idl/privacy_pool.js +15218 -0
  13. package/dist/cjs/index.d.ts +16 -13
  14. package/dist/cjs/index.js +40 -30
  15. package/dist/cjs/merkle.d.ts +13 -0
  16. package/dist/cjs/merkle.js +31 -8
  17. package/dist/cjs/program.d.ts +11 -0
  18. package/dist/cjs/program.js +26 -3
  19. package/dist/cjs/proof.d.ts +1 -1
  20. package/dist/cjs/proof.js +37 -37
  21. package/dist/cjs/prover.d.ts +1 -1
  22. package/dist/cjs/prover.js +2 -2
  23. package/dist/cjs/random.d.ts +16 -0
  24. package/dist/cjs/random.js +28 -0
  25. package/dist/cjs/relayer.d.ts +27 -4
  26. package/dist/cjs/relayer.js +16 -5
  27. package/dist/cjs/shield/alt.d.ts +87 -0
  28. package/dist/cjs/shield/alt.js +194 -0
  29. package/dist/cjs/shield/computeBudget.d.ts +61 -0
  30. package/dist/cjs/shield/computeBudget.js +64 -0
  31. package/dist/cjs/shield/errors.d.ts +58 -0
  32. package/dist/cjs/shield/errors.js +121 -0
  33. package/dist/cjs/shield/finalize.d.ts +45 -0
  34. package/dist/cjs/shield/finalize.js +119 -0
  35. package/dist/cjs/shield/index.d.ts +35 -0
  36. package/dist/cjs/shield/index.js +68 -0
  37. package/dist/cjs/shield/ix.d.ts +54 -0
  38. package/dist/cjs/shield/ix.js +119 -0
  39. package/dist/cjs/shield/owner.d.ts +36 -0
  40. package/dist/cjs/shield/owner.js +126 -0
  41. package/dist/cjs/shield/ports.d.ts +43 -0
  42. package/dist/cjs/shield/ports.js +153 -0
  43. package/dist/cjs/shield/preflight.d.ts +30 -0
  44. package/dist/cjs/shield/preflight.js +154 -0
  45. package/dist/cjs/shield/shield.d.ts +68 -0
  46. package/dist/cjs/shield/shield.js +499 -0
  47. package/dist/cjs/shield/types.d.ts +202 -0
  48. package/dist/cjs/shield/types.js +2 -0
  49. package/dist/cjs/utxo.d.ts +20 -0
  50. package/dist/cjs/utxo.js +41 -28
  51. package/dist/esm/client.d.ts +407 -0
  52. package/dist/esm/client.js +9 -5
  53. package/dist/esm/compactNote.d.ts +107 -0
  54. package/dist/esm/compactNote.js +156 -0
  55. package/dist/esm/config.d.ts +82 -0
  56. package/dist/esm/events.d.ts +77 -0
  57. package/dist/esm/events.js +1 -1
  58. package/dist/esm/idl/privacy_pool.d.ts +5 -0
  59. package/dist/esm/idl/privacy_pool.js +15216 -0
  60. package/dist/esm/index.d.ts +16 -0
  61. package/dist/esm/index.js +18 -11
  62. package/dist/esm/merkle.d.ts +77 -0
  63. package/dist/esm/merkle.js +23 -1
  64. package/dist/esm/package.json +1 -0
  65. package/dist/esm/poseidon.d.ts +29 -0
  66. package/dist/esm/program.d.ts +37 -0
  67. package/dist/esm/program.js +23 -1
  68. package/dist/esm/proof.d.ts +183 -0
  69. package/dist/esm/proof.js +2 -2
  70. package/dist/esm/prover.d.ts +54 -0
  71. package/dist/esm/prover.js +1 -1
  72. package/dist/esm/random.d.ts +16 -0
  73. package/dist/esm/random.js +21 -0
  74. package/dist/esm/relayer.d.ts +318 -0
  75. package/dist/esm/relayer.js +16 -5
  76. package/dist/esm/retry.d.ts +32 -0
  77. package/dist/esm/shield/alt.d.ts +87 -0
  78. package/dist/esm/shield/alt.js +186 -0
  79. package/dist/esm/shield/computeBudget.d.ts +61 -0
  80. package/dist/esm/shield/computeBudget.js +61 -0
  81. package/dist/esm/shield/errors.d.ts +58 -0
  82. package/dist/esm/shield/errors.js +115 -0
  83. package/dist/esm/shield/finalize.d.ts +45 -0
  84. package/dist/esm/shield/finalize.js +83 -0
  85. package/dist/esm/shield/index.d.ts +35 -0
  86. package/dist/esm/shield/index.js +32 -0
  87. package/dist/esm/shield/ix.d.ts +54 -0
  88. package/dist/esm/shield/ix.js +82 -0
  89. package/dist/esm/shield/owner.d.ts +36 -0
  90. package/dist/esm/shield/owner.js +122 -0
  91. package/dist/esm/shield/ports.d.ts +43 -0
  92. package/dist/esm/shield/ports.js +147 -0
  93. package/dist/esm/shield/preflight.d.ts +30 -0
  94. package/dist/esm/shield/preflight.js +151 -0
  95. package/dist/esm/shield/shield.d.ts +68 -0
  96. package/dist/esm/shield/shield.js +492 -0
  97. package/dist/esm/shield/types.d.ts +202 -0
  98. package/dist/esm/shield/types.js +1 -0
  99. package/dist/esm/utxo.d.ts +235 -0
  100. package/dist/esm/utxo.js +18 -8
  101. package/dist/src/client.d.ts +407 -0
  102. package/dist/src/client.js +951 -0
  103. package/dist/src/compactNote.d.ts +107 -0
  104. package/dist/src/compactNote.js +167 -0
  105. package/dist/src/config.d.ts +82 -0
  106. package/dist/src/config.js +57 -0
  107. package/dist/src/events.d.ts +77 -0
  108. package/dist/src/events.js +167 -0
  109. package/dist/src/idl/privacy_pool.d.ts +5 -0
  110. package/dist/src/idl/privacy_pool.js +15218 -0
  111. package/dist/src/index.d.ts +16 -0
  112. package/dist/src/index.js +67 -0
  113. package/dist/src/merkle.d.ts +77 -0
  114. package/dist/src/merkle.js +156 -0
  115. package/dist/src/poseidon.d.ts +29 -0
  116. package/dist/src/poseidon.js +100 -0
  117. package/dist/src/program.d.ts +37 -0
  118. package/dist/src/program.js +61 -0
  119. package/dist/src/proof.d.ts +183 -0
  120. package/dist/src/proof.js +292 -0
  121. package/dist/src/prover.d.ts +54 -0
  122. package/dist/src/prover.js +112 -0
  123. package/dist/src/random.d.ts +16 -0
  124. package/dist/src/random.js +28 -0
  125. package/dist/src/relayer.d.ts +318 -0
  126. package/dist/src/relayer.js +257 -0
  127. package/dist/src/retry.d.ts +32 -0
  128. package/dist/src/retry.js +75 -0
  129. package/dist/src/shield/alt.d.ts +87 -0
  130. package/dist/src/shield/alt.js +194 -0
  131. package/dist/src/shield/computeBudget.d.ts +61 -0
  132. package/dist/src/shield/computeBudget.js +64 -0
  133. package/dist/src/shield/errors.d.ts +58 -0
  134. package/dist/src/shield/errors.js +121 -0
  135. package/dist/src/shield/finalize.d.ts +45 -0
  136. package/dist/src/shield/finalize.js +119 -0
  137. package/dist/src/shield/index.d.ts +35 -0
  138. package/dist/src/shield/index.js +68 -0
  139. package/dist/src/shield/ix.d.ts +54 -0
  140. package/dist/src/shield/ix.js +119 -0
  141. package/dist/src/shield/owner.d.ts +36 -0
  142. package/dist/src/shield/owner.js +126 -0
  143. package/dist/src/shield/ports.d.ts +43 -0
  144. package/dist/src/shield/ports.js +153 -0
  145. package/dist/src/shield/preflight.d.ts +30 -0
  146. package/dist/src/shield/preflight.js +154 -0
  147. package/dist/src/shield/shield.d.ts +68 -0
  148. package/dist/src/shield/shield.js +499 -0
  149. package/dist/src/shield/types.d.ts +202 -0
  150. package/dist/src/shield/types.js +2 -0
  151. package/dist/src/utxo.d.ts +235 -0
  152. package/dist/src/utxo.js +407 -0
  153. package/dist/tests/compact-note.test.d.ts +1 -0
  154. package/dist/tests/compact-note.test.js +173 -0
  155. package/dist/tests/config.test.d.ts +1 -0
  156. package/dist/tests/config.test.js +102 -0
  157. package/dist/tests/edge-cases.test.d.ts +1 -0
  158. package/dist/tests/edge-cases.test.js +220 -0
  159. package/dist/tests/encryption.test.d.ts +1 -0
  160. package/dist/tests/encryption.test.js +215 -0
  161. package/dist/tests/events.test.d.ts +1 -0
  162. package/dist/tests/events.test.js +78 -0
  163. package/dist/tests/multi-tree.test.d.ts +1 -0
  164. package/dist/tests/multi-tree.test.js +405 -0
  165. package/dist/tests/pda.test.d.ts +1 -0
  166. package/dist/tests/pda.test.js +229 -0
  167. package/dist/tests/poseidon-builder-parity.test.d.ts +1 -0
  168. package/dist/tests/poseidon-builder-parity.test.js +72 -0
  169. package/dist/tests/poseidon.test.d.ts +1 -0
  170. package/dist/tests/poseidon.test.js +142 -0
  171. package/dist/tests/proof.test.d.ts +1 -0
  172. package/dist/tests/proof.test.js +296 -0
  173. package/dist/tests/relayer.test.d.ts +1 -0
  174. package/dist/tests/relayer.test.js +271 -0
  175. package/dist/tests/sdk.integration.test.d.ts +1 -0
  176. package/dist/tests/sdk.integration.test.js +330 -0
  177. package/dist/tests/shield-owner.test.d.ts +1 -0
  178. package/dist/tests/shield-owner.test.js +89 -0
  179. package/dist/tests/shield-preflight.test.d.ts +1 -0
  180. package/dist/tests/shield-preflight.test.js +87 -0
  181. package/dist/tests/shield-realproof.test.d.ts +1 -0
  182. package/dist/tests/shield-realproof.test.js +272 -0
  183. package/dist/tests/shield.test.d.ts +1 -0
  184. package/dist/tests/shield.test.js +403 -0
  185. package/dist/tests/utxo.test.d.ts +1 -0
  186. package/dist/tests/utxo.test.js +140 -0
  187. package/package.json +69 -11
  188. package/poseidon.d.ts +2 -0
  189. package/poseidon.js +4 -0
  190. package/proof.d.ts +2 -0
  191. package/proof.js +4 -0
  192. package/prover.d.ts +2 -0
  193. package/prover.js +4 -0
  194. package/shield.d.ts +2 -0
  195. package/shield.js +4 -0
@@ -0,0 +1,153 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.onChainTreeSource = onChainTreeSource;
4
+ exports.staticTreeSource = staticTreeSource;
5
+ exports.memoryCache = memoryCache;
6
+ exports.noCache = noCache;
7
+ const program_js_1 = require("../program.js");
8
+ const client_js_1 = require("../client.js");
9
+ const config_js_1 = require("../config.js");
10
+ const errors_js_1 = require("./errors.js");
11
+ /**
12
+ * Injection points for the shield path.
13
+ *
14
+ * The three production deposit implementations (extension, wallet-app,
15
+ * veilo-dapp) are ~85% identical and diverge on exactly these axes: where
16
+ * proofs come from, where the tree comes from, which lookup table to use, and
17
+ * what to cache into. Making each an explicit port is what lets one
18
+ * implementation serve all of them — and lets a third-party integrator supply
19
+ * their own without forking anything.
20
+ *
21
+ * Proof generation is deliberately NOT redefined here: `TransactionProofBuilder`
22
+ * from `proof.ts` already has the right shape, and a second prover abstraction
23
+ * would be exactly the kind of duplication this module exists to avoid.
24
+ */
25
+ // -- TreeSource ---------------------------------------------------------------
26
+ /**
27
+ * Read the target tree and root directly from chain.
28
+ *
29
+ * Note the account decoding: `MerkleTreeAccount::EXPECTED_SIZE` (9107) does not
30
+ * match the size its declared fields sum to (8987), a 120-byte discrepancy that
31
+ * is unexplained. Until it is, hand-slicing this account at fixed byte offsets
32
+ * is unsafe. Anchor's coder reads declared fields from the front and ignores the
33
+ * tail, so `.fetch()` stays correct regardless.
34
+ */
35
+ function onChainTreeSource(connection, programId = program_js_1.PRIVACY_POOL_PROGRAM_ID) {
36
+ return {
37
+ async getDepositTarget(mint) {
38
+ const program = (0, program_js_1.createReadonlyVeiloProgram)(connection);
39
+ const { config } = (0, client_js_1.getPoolPdas)(programId, mint);
40
+ const cfg = await program.account.privacyConfig.fetch(config);
41
+ const numTrees = Number(cfg.numTrees);
42
+ if (!Number.isInteger(numTrees) || numTrees <= 0) {
43
+ throw new errors_js_1.ShieldError("TREE_FULL", `Pool ${mint.toBase58()} has no deposit tree.`, { context: { mint: mint.toBase58(), numTrees } });
44
+ }
45
+ // Fetch every tree in one RPC call. The older getBestTreeForDeposit path
46
+ // fetched them serially, then fetched the chosen trees a second time.
47
+ const treePdas = Array.from({ length: numTrees }, (_, treeId) => (0, client_js_1.getNoteTreePda)(programId, mint, treeId));
48
+ const infos = await connection.getMultipleAccountsInfo(treePdas, {
49
+ commitment: "confirmed",
50
+ });
51
+ const capacity = 2 ** config_js_1.MERKLE_TREE_DEPTH;
52
+ const trees = infos.map((info, treeId) => {
53
+ if (!info)
54
+ return null;
55
+ // Anchor camel-cases the IDL's `MerkleTreeAccount` name when it builds
56
+ // the Borsh account-layout map (the same key exposed as
57
+ // `program.account.merkleTreeAccount`).
58
+ const decoded = program.coder.accounts.decode("merkleTreeAccount", info.data);
59
+ const nextIndex = Number(decoded.nextIndex);
60
+ return {
61
+ treeId,
62
+ decoded,
63
+ nextIndex,
64
+ remainingCapacity: capacity - nextIndex,
65
+ };
66
+ });
67
+ const inputTree = trees[0];
68
+ if (!inputTree) {
69
+ throw new errors_js_1.ShieldError("POOL_NOT_FOUND", `Pool ${mint.toBase58()} is missing its input Merkle tree (tree 0).`, { context: { mint: mint.toBase58(), tree: treePdas[0].toBase58() } });
70
+ }
71
+ const available = trees.filter((tree) => !!tree && tree.nextIndex < capacity);
72
+ if (available.length === 0) {
73
+ throw new errors_js_1.ShieldError("TREE_FULL", `All ${numTrees} Merkle trees for ${mint.toBase58()} are full.`, { context: { mint: mint.toBase58(), numTrees, capacity } });
74
+ }
75
+ const minCapacity = Math.floor(capacity * 0.0001);
76
+ const preferred = available
77
+ .filter((tree) => tree.remainingCapacity >= minCapacity)
78
+ .sort((a, b) => a.treeId - b.treeId);
79
+ const outputTree = preferred[0] ??
80
+ available.sort((a, b) => b.remainingCapacity - a.remainingCapacity)[0];
81
+ return {
82
+ inputTreeId: 0,
83
+ inputRoot: extractRoot(inputTree.decoded),
84
+ outputTreeId: outputTree.treeId,
85
+ outputNextIndex: outputTree.nextIndex,
86
+ };
87
+ },
88
+ };
89
+ }
90
+ /**
91
+ * Fixed values, for tests and offline builds.
92
+ *
93
+ * Also the escape hatch for an integrator who already tracks the tree state and
94
+ * does not want the SDK making RPC calls on their behalf.
95
+ */
96
+ function staticTreeSource(target) {
97
+ return { async getDepositTarget() { return target; } };
98
+ }
99
+ /**
100
+ * Read the root from a decoded `MerkleTreeAccount`.
101
+ *
102
+ * Uses `root_history[root_index]` rather than the `root` field. Both are written
103
+ * to the same value by `append` (merkle_tree.rs:108-111) so they agree, but the
104
+ * history read is what all three production implementations use and is therefore
105
+ * the one that is actually exercised against mainnet.
106
+ */
107
+ function extractRoot(tree) {
108
+ const history = tree.rootHistory ?? tree.root_history;
109
+ const index = Number(tree.rootIndex ?? tree.root_index ?? 0);
110
+ if (Array.isArray(history) && history[index]) {
111
+ return new Uint8Array(history[index]);
112
+ }
113
+ const root = tree.root;
114
+ if (root)
115
+ return new Uint8Array(root);
116
+ throw new Error("could not read a Merkle root from the tree account");
117
+ }
118
+ // -- Cache --------------------------------------------------------------------
119
+ /**
120
+ * In-memory cache with TTL. The default.
121
+ *
122
+ * Persistent storage is deliberately the caller's problem — `localStorage`,
123
+ * `chrome.storage`, and `AsyncStorage` are three different answers in three
124
+ * different apps, and none of them belongs in a published SDK.
125
+ */
126
+ function memoryCache() {
127
+ const store = new Map();
128
+ return {
129
+ async get(key) {
130
+ const hit = store.get(key);
131
+ if (!hit)
132
+ return undefined;
133
+ if (hit.expiresAt !== 0 && hit.expiresAt < Date.now()) {
134
+ store.delete(key);
135
+ return undefined;
136
+ }
137
+ return hit.value;
138
+ },
139
+ async set(key, value, ttlMs) {
140
+ store.set(key, {
141
+ value,
142
+ expiresAt: ttlMs && ttlMs > 0 ? Date.now() + ttlMs : 0,
143
+ });
144
+ },
145
+ };
146
+ }
147
+ /** A cache that never stores anything. Useful for tests that assert fetch counts. */
148
+ function noCache() {
149
+ return {
150
+ async get() { return undefined; },
151
+ async set() { },
152
+ };
153
+ }
@@ -0,0 +1,30 @@
1
+ import { Connection, PublicKey } from "@solana/web3.js";
2
+ import type { PreflightOptions, ShieldCachePort } from "./types.js";
3
+ /**
4
+ * Checks that run before the prover.
5
+ *
6
+ * Proving costs 10–30 seconds. Every check here is a single RPC call, and each
7
+ * one pre-empts an on-chain failure whose message tells the user nothing they
8
+ * can act on. The delegate check is the clearest example: the program requires
9
+ * `user_token.delegate.is_none()`, so anyone who ever approved a DEX has a
10
+ * permanently broken deposit path that reports only "Invalid token account
11
+ * authority" — with no hint that revoking a delegate would fix it.
12
+ *
13
+ * These are advisory in the sense that the chain enforces them anyway. They are
14
+ * not advisory in the sense that skipping them produces a materially worse
15
+ * product.
16
+ */
17
+ export declare function preflightShield(params: {
18
+ connection: Connection;
19
+ amount: bigint;
20
+ mint: PublicKey;
21
+ signer: {
22
+ publicKey: PublicKey;
23
+ tokenAccount: PublicKey;
24
+ };
25
+ programId?: PublicKey;
26
+ options?: PreflightOptions;
27
+ cache?: ShieldCachePort;
28
+ computeUnitLimit?: number;
29
+ computeUnitPriceMicroLamports?: number;
30
+ }): Promise<void>;
@@ -0,0 +1,154 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.preflightShield = preflightShield;
4
+ const spl_token_1 = require("@solana/spl-token");
5
+ const client_js_1 = require("../client.js");
6
+ const program_js_1 = require("../program.js");
7
+ const config_js_1 = require("../config.js");
8
+ const errors_js_1 = require("./errors.js");
9
+ const computeBudget_js_1 = require("./computeBudget.js");
10
+ /**
11
+ * Checks that run before the prover.
12
+ *
13
+ * Proving costs 10–30 seconds. Every check here is a single RPC call, and each
14
+ * one pre-empts an on-chain failure whose message tells the user nothing they
15
+ * can act on. The delegate check is the clearest example: the program requires
16
+ * `user_token.delegate.is_none()`, so anyone who ever approved a DEX has a
17
+ * permanently broken deposit path that reports only "Invalid token account
18
+ * authority" — with no hint that revoking a delegate would fix it.
19
+ *
20
+ * These are advisory in the sense that the chain enforces them anyway. They are
21
+ * not advisory in the sense that skipping them produces a materially worse
22
+ * product.
23
+ */
24
+ async function preflightShield(params) {
25
+ const { connection, amount, mint, signer, programId = program_js_1.PRIVACY_POOL_PROGRAM_ID, options = {}, } = params;
26
+ const isToken = !mint.equals(config_js_1.NATIVE_SOL_MINT);
27
+ // --- Pool state ------------------------------------------------------------
28
+ if (!options.skipPoolState) {
29
+ const program = (0, program_js_1.createReadonlyVeiloProgram)(connection);
30
+ const { config } = (0, client_js_1.getPoolPdas)(programId, mint);
31
+ let cfg;
32
+ try {
33
+ cfg = await program.account.privacyConfig.fetch(config);
34
+ }
35
+ catch (e) {
36
+ throw new errors_js_1.ShieldError("POOL_NOT_FOUND", `No privacy pool exists for mint ${mint.toBase58()}.`, { context: { mint: mint.toBase58(), config: config.toBase58() }, cause: e });
37
+ }
38
+ if (cfg.paused) {
39
+ throw new errors_js_1.ShieldError("POOL_PAUSED", "The pool is paused. Try again later.");
40
+ }
41
+ const min = BigInt(cfg.minDepositAmount?.toString() ?? "0");
42
+ const max = BigInt(cfg.maxDepositAmount?.toString() ?? "0");
43
+ if (min > 0n && amount < min) {
44
+ throw new errors_js_1.ShieldError("AMOUNT_BELOW_MINIMUM", `Amount ${amount} is below the pool minimum of ${min}.`, { context: { amount: amount.toString(), minimum: min.toString() } });
45
+ }
46
+ if (max > 0n && amount > max) {
47
+ throw new errors_js_1.ShieldError("AMOUNT_ABOVE_MAXIMUM", `Amount ${amount} exceeds the pool maximum of ${max}.`, { context: { amount: amount.toString(), maximum: max.toString() } });
48
+ }
49
+ }
50
+ // --- Source token account (SPL only) --------------------------------------
51
+ if (isToken && !options.skipTokenAccount) {
52
+ let account;
53
+ try {
54
+ account = await (0, spl_token_1.getAccount)(connection, signer.tokenAccount);
55
+ }
56
+ catch (e) {
57
+ if (e instanceof spl_token_1.TokenAccountNotFoundError || /could not find/i.test(String(e))) {
58
+ // Deliberately no "create the ATA" remedy: an ATA that does not exist
59
+ // holds zero tokens, so creating it would only move the failure to
60
+ // INSUFFICIENT_TOKEN_BALANCE. Say the true thing instead.
61
+ throw new errors_js_1.ShieldError("TOKEN_ACCOUNT_MISSING", `The signer has no token account for ${mint.toBase58()}, so there is nothing to shield.`, { context: { tokenAccount: signer.tokenAccount.toBase58() }, cause: e });
62
+ }
63
+ throw e;
64
+ }
65
+ if (!account.mint.equals(mint)) {
66
+ throw new errors_js_1.ShieldError("TOKEN_ACCOUNT_WRONG_MINT", `Token account ${signer.tokenAccount.toBase58()} holds ${account.mint.toBase58()}, not ${mint.toBase58()}.`, { context: { expected: mint.toBase58(), actual: account.mint.toBase58() } });
67
+ }
68
+ if (!account.owner.equals(signer.publicKey)) {
69
+ throw new errors_js_1.ShieldError("TOKEN_ACCOUNT_WRONG_OWNER", `Token account ${signer.tokenAccount.toBase58()} is owned by ${account.owner.toBase58()}, ` +
70
+ `not by the signing wallet. The program requires the signer to own the source account outright.`, {
71
+ context: {
72
+ tokenAccount: signer.tokenAccount.toBase58(),
73
+ owner: account.owner.toBase58(),
74
+ signer: signer.publicKey.toBase58(),
75
+ },
76
+ });
77
+ }
78
+ if (account.isFrozen) {
79
+ throw new errors_js_1.ShieldError("TOKEN_ACCOUNT_FROZEN", `Token account ${signer.tokenAccount.toBase58()} is frozen.`, { context: { tokenAccount: signer.tokenAccount.toBase58() } });
80
+ }
81
+ // The program checks `delegate.is_none()`, NOT the delegated amount — so a
82
+ // stale delegate with zero allowance still fails. This is the single most
83
+ // common avoidable failure on this path, and it is entirely fixable.
84
+ if (account.delegate) {
85
+ throw new errors_js_1.ShieldError("TOKEN_ACCOUNT_DELEGATED", `Token account ${signer.tokenAccount.toBase58()} has an active delegate ` +
86
+ `(${account.delegate.toBase58()}). The pool rejects deposits from delegated ` +
87
+ `accounts even when the delegated amount is zero. Revoke the delegate, then shield.`, {
88
+ context: {
89
+ tokenAccount: signer.tokenAccount.toBase58(),
90
+ delegate: account.delegate.toBase58(),
91
+ delegatedAmount: account.delegatedAmount.toString(),
92
+ },
93
+ remedy: {
94
+ description: `Revoke the delegate on ${signer.tokenAccount.toBase58()}`,
95
+ instructions: [
96
+ (0, spl_token_1.createRevokeInstruction)(signer.tokenAccount, signer.publicKey),
97
+ ],
98
+ },
99
+ });
100
+ }
101
+ if (account.amount < amount) {
102
+ throw new errors_js_1.ShieldError("INSUFFICIENT_TOKEN_BALANCE", `Token account holds ${account.amount} but ${amount} is required.`, { context: { balance: account.amount.toString(), required: amount.toString() } });
103
+ }
104
+ // The vault's ATA must already exist — the program requires the canonical
105
+ // one and will not create it.
106
+ const { vault } = (0, client_js_1.getPoolPdas)(programId, mint);
107
+ const vaultAta = await (0, spl_token_1.getAssociatedTokenAddress)(mint, vault, true);
108
+ const vaultInfo = await connection.getAccountInfo(vaultAta);
109
+ if (!vaultInfo) {
110
+ throw new errors_js_1.ShieldError("VAULT_ATA_MISSING", `The pool vault has no associated token account for ${mint.toBase58()}. ` +
111
+ `This is a pool provisioning issue, not something the signer can fix.`, { context: { vault: vault.toBase58(), vaultAta: vaultAta.toBase58() } });
112
+ }
113
+ }
114
+ // --- Signer balance --------------------------------------------------------
115
+ if (!options.skipBalance) {
116
+ const rentPer = await cachedRent(connection, params.cache);
117
+ const rent = BigInt(rentPer) * BigInt(computeBudget_js_1.NULLIFIER_MARKERS_PER_TRANSACT);
118
+ const computeUnitLimit = params.computeUnitLimit ?? computeBudget_js_1.SHIELD_COMPUTE_UNIT_LIMIT;
119
+ const computeUnitPriceMicroLamports = params.computeUnitPriceMicroLamports ?? computeBudget_js_1.SHIELD_COMPUTE_UNIT_PRICE_MICRO_LAMPORTS;
120
+ const priorityFee = (BigInt(computeUnitLimit) * BigInt(computeUnitPriceMicroLamports)) /
121
+ 1000000n;
122
+ const baseFee = 5000n;
123
+ // The signer pays the marker rent regardless of the mint — it is SOL either
124
+ // way, and it is burned, not refunded.
125
+ const required = rent + priorityFee + baseFee + (isToken ? 0n : amount);
126
+ const balance = BigInt(await connection.getBalance(signer.publicKey));
127
+ if (balance < required) {
128
+ throw new errors_js_1.ShieldError("INSUFFICIENT_SOL", `The signing wallet has ${balance} lamports but needs ${required} ` +
129
+ `(${isToken ? "" : `${amount} shielded + `}${rent} nullifier-marker rent + ` +
130
+ `${priorityFee + baseFee} fees). Note that the marker rent is burned, not refunded, ` +
131
+ `and the program forces it onto the signer — it cannot be sponsored.`, {
132
+ context: {
133
+ balance: balance.toString(),
134
+ required: required.toString(),
135
+ breakdown: {
136
+ amount: isToken ? "0" : amount.toString(),
137
+ nullifierMarkerRent: rent.toString(),
138
+ priorityFee: priorityFee.toString(),
139
+ baseFee: baseFee.toString(),
140
+ },
141
+ },
142
+ });
143
+ }
144
+ }
145
+ }
146
+ async function cachedRent(connection, cache) {
147
+ const key = `rent:${computeBudget_js_1.NULLIFIER_MARKER_ACCOUNT_BYTES}`;
148
+ const hit = await cache?.get(key);
149
+ if (hit !== undefined)
150
+ return hit;
151
+ const value = await connection.getMinimumBalanceForRentExemption(computeBudget_js_1.NULLIFIER_MARKER_ACCOUNT_BYTES);
152
+ await cache?.set(key, value, 60 * 60000);
153
+ return value;
154
+ }
@@ -0,0 +1,68 @@
1
+ import { AddressLookupTableAccount, Connection } from "@solana/web3.js";
2
+ import { bytesToBigIntBE, BN254_FR_MODULUS } from "../poseidon.js";
3
+ import type { ShieldParams, ShieldProofCache, ShieldResult } from "./types.js";
4
+ /**
5
+ * Build an unsigned transaction that shields public funds into the privacy pool.
6
+ *
7
+ * ## The contract
8
+ *
9
+ * This function builds. It does not sign, submit, confirm, or retry — those
10
+ * belong to whoever holds the key, exactly as with Jupiter's `/swap`. The
11
+ * returned `transaction` is unsigned; the caller signs it with whatever wallet
12
+ * they have and broadcasts it themselves.
13
+ *
14
+ * ## Why this can be handed to a third party
15
+ *
16
+ * Three properties make it safe to build a shield on behalf of a signer you do
17
+ * not control, and to shield to an owner who is not the signer:
18
+ *
19
+ * 1. **Deposits are permissionless.** The program gates its relayer allowlist
20
+ * to `public_amount <= 0`, so any wallet can sign a deposit.
21
+ * 2. **No secrets are involved in building.** The proof for a deposit has no
22
+ * real inputs, and the output commitment binds only the recipient's *public*
23
+ * keys.
24
+ * 3. **The note rides on-chain.** `note_ciphers` travels inside the instruction,
25
+ * so the recipient can find the note by scanning even if the platform that
26
+ * submitted it never says a word.
27
+ *
28
+ * ## What the signer unavoidably pays
29
+ *
30
+ * The signer is the fee payer, the funding source, and the payer of two
31
+ * `NullifierMarker` rents (~0.00192 SOL, permanently burned — the program
32
+ * hardcodes `payer = relayer` on both). A wallet with zero SOL cannot shield
33
+ * through this path no matter who submits the transaction. Fee sponsorship is
34
+ * not achievable here: a second signature costs ~96 bytes against a budget with
35
+ * ~69 to spare, and would not cover the rent anyway.
36
+ */
37
+ export declare function shield(params: ShieldParams): Promise<ShieldResult>;
38
+ /**
39
+ * Re-assemble a shield with a fresh blockhash and deadline, reusing the proof.
40
+ *
41
+ * The Groth16 proof commits to the root, the public amount, `ext_data_hash`, the
42
+ * mint, the nullifiers and the commitments — none of which is time-dependent.
43
+ * `deadline` is a positional instruction argument, outside `ext_data_hash` and
44
+ * therefore outside the proof, so it can be refreshed too. That last part
45
+ * matters: a shield built at T and signed at T+59min needs a new deadline, not
46
+ * just a new blockhash.
47
+ *
48
+ * Costs one `getLatestBlockhash` and a message compile — no proving, no
49
+ * Poseidon, no account resolution.
50
+ *
51
+ * Does NOT recover from `ROOT_STALE`: a stale root invalidates the proof, so
52
+ * that case needs a fresh `shield()` call.
53
+ */
54
+ export declare function rebuild(result: ShieldResult, opts?: {
55
+ connection?: Connection;
56
+ alt?: AddressLookupTableAccount;
57
+ blockhash?: {
58
+ blockhash: string;
59
+ lastValidBlockHeight: number;
60
+ };
61
+ deadlineSeconds?: number;
62
+ computeUnitPriceMicroLamports?: number;
63
+ }): Promise<ShieldResult>;
64
+ /** Serialize a proof cache for transport between processes. Contains no secrets. */
65
+ export declare function serializeProofCache(cache: ShieldProofCache): string;
66
+ export declare function deserializeProofCache(json: string): ShieldProofCache;
67
+ /** Re-exported for callers that want the raw field arithmetic. */
68
+ export { bytesToBigIntBE, BN254_FR_MODULUS };