@veilo/sdk-core 0.4.0 → 0.5.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 (296) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +286 -1298
  3. package/dist/cjs/accounts/admin.d.ts +84 -0
  4. package/dist/cjs/accounts/admin.js +208 -0
  5. package/dist/cjs/accounts/errors.d.ts +6 -0
  6. package/dist/cjs/accounts/errors.js +98 -0
  7. package/dist/cjs/accounts/index.d.ts +4 -0
  8. package/dist/cjs/accounts/index.js +20 -0
  9. package/dist/cjs/accounts/pdas.d.ts +23 -0
  10. package/dist/cjs/accounts/pdas.js +44 -0
  11. package/dist/cjs/accounts/queries.d.ts +41 -0
  12. package/dist/cjs/accounts/queries.js +95 -0
  13. package/dist/cjs/client.d.ts +2 -407
  14. package/dist/cjs/client.js +6 -938
  15. package/dist/cjs/cloak/client.d.ts +28 -0
  16. package/dist/cjs/cloak/client.js +68 -0
  17. package/dist/cjs/cloak/errors.d.ts +13 -0
  18. package/dist/cjs/cloak/errors.js +25 -0
  19. package/dist/cjs/cloak/helpers.d.ts +6 -0
  20. package/dist/cjs/cloak/helpers.js +35 -0
  21. package/dist/cjs/cloak/index.d.ts +6 -0
  22. package/dist/cjs/cloak/index.js +24 -0
  23. package/dist/cjs/cloak/polling.d.ts +7 -0
  24. package/dist/cjs/cloak/polling.js +66 -0
  25. package/dist/cjs/cloak/transport.d.ts +15 -0
  26. package/dist/cjs/cloak/transport.js +119 -0
  27. package/dist/cjs/cloak/types.d.ts +188 -0
  28. package/dist/cjs/cloak/types.js +5 -0
  29. package/dist/cjs/cloak.d.ts +1 -0
  30. package/dist/cjs/cloak.js +18 -0
  31. package/dist/cjs/compactNote.d.ts +21 -0
  32. package/dist/cjs/compactNote.js +31 -7
  33. package/dist/cjs/index.d.ts +2 -1
  34. package/dist/cjs/index.js +4 -1
  35. package/dist/cjs/notes/encryption.d.ts +41 -0
  36. package/dist/cjs/notes/encryption.js +75 -0
  37. package/dist/cjs/notes/index.d.ts +5 -0
  38. package/dist/cjs/notes/index.js +21 -0
  39. package/dist/cjs/notes/mailbox.d.ts +70 -0
  40. package/dist/cjs/notes/mailbox.js +164 -0
  41. package/dist/cjs/notes/model.d.ts +91 -0
  42. package/dist/cjs/notes/model.js +109 -0
  43. package/dist/cjs/notes/nullifier.d.ts +27 -0
  44. package/dist/cjs/notes/nullifier.js +45 -0
  45. package/dist/cjs/notes/recovery.d.ts +10 -0
  46. package/dist/cjs/notes/recovery.js +31 -0
  47. package/dist/cjs/proof.d.ts +1 -183
  48. package/dist/cjs/proof.js +16 -290
  49. package/dist/cjs/proofs/encoding.d.ts +17 -0
  50. package/dist/cjs/proofs/encoding.js +72 -0
  51. package/dist/cjs/proofs/formatting.d.ts +6 -0
  52. package/dist/cjs/proofs/formatting.js +34 -0
  53. package/dist/cjs/proofs/index.d.ts +5 -0
  54. package/dist/cjs/proofs/index.js +21 -0
  55. package/dist/cjs/proofs/swap.d.ts +87 -0
  56. package/dist/cjs/proofs/swap.js +144 -0
  57. package/dist/cjs/proofs/transaction.d.ts +28 -0
  58. package/dist/cjs/proofs/transaction.js +110 -0
  59. package/dist/cjs/proofs/types.d.ts +70 -0
  60. package/dist/cjs/prover.d.ts +4 -1
  61. package/dist/cjs/prover.js +12 -2
  62. package/dist/cjs/relayer/client.d.ts +61 -0
  63. package/dist/cjs/relayer/client.js +151 -0
  64. package/dist/cjs/relayer/crypto.d.ts +5 -0
  65. package/dist/cjs/relayer/crypto.js +26 -0
  66. package/dist/cjs/relayer/encoding.d.ts +2 -0
  67. package/dist/cjs/relayer/encoding.js +23 -0
  68. package/dist/cjs/relayer/errors.d.ts +7 -0
  69. package/dist/cjs/relayer/errors.js +17 -0
  70. package/dist/cjs/relayer/index.d.ts +3 -0
  71. package/dist/cjs/relayer/index.js +19 -0
  72. package/dist/cjs/relayer/transport.d.ts +17 -0
  73. package/dist/cjs/relayer/transport.js +63 -0
  74. package/dist/{src/relayer.d.ts → cjs/relayer/types.d.ts} +44 -86
  75. package/dist/cjs/relayer/types.js +5 -0
  76. package/dist/cjs/relayer.d.ts +1 -318
  77. package/dist/cjs/relayer.js +15 -254
  78. package/dist/cjs/shield/alt.js +8 -8
  79. package/dist/cjs/shield/errors.js +2 -2
  80. package/dist/cjs/shield/finalize.js +2 -2
  81. package/dist/cjs/shield/ix.d.ts +1 -1
  82. package/dist/cjs/shield/owner.js +9 -8
  83. package/dist/cjs/shield/ports.js +3 -3
  84. package/dist/cjs/shield/preflight.js +3 -3
  85. package/dist/cjs/shield/shield.js +20 -19
  86. package/dist/cjs/shield/types.d.ts +1 -1
  87. package/dist/cjs/transactions/deposit.d.ts +94 -0
  88. package/dist/cjs/transactions/deposit.js +234 -0
  89. package/dist/cjs/transactions/index.d.ts +7 -0
  90. package/dist/cjs/transactions/index.js +26 -0
  91. package/dist/cjs/transactions/swap.d.ts +71 -0
  92. package/dist/cjs/transactions/swap.js +184 -0
  93. package/dist/cjs/transactions/transact.d.ts +34 -0
  94. package/dist/cjs/transactions/transact.js +146 -0
  95. package/dist/cjs/transactions/transfer.d.ts +51 -0
  96. package/dist/cjs/transactions/transfer.js +106 -0
  97. package/dist/cjs/transactions/withdraw.d.ts +52 -0
  98. package/dist/cjs/transactions/withdraw.js +104 -0
  99. package/dist/cjs/utxo.d.ts +1 -235
  100. package/dist/cjs/utxo.js +15 -404
  101. package/dist/esm/accounts/admin.d.ts +84 -0
  102. package/dist/esm/accounts/admin.js +165 -0
  103. package/dist/esm/accounts/errors.d.ts +6 -0
  104. package/dist/esm/accounts/errors.js +95 -0
  105. package/dist/esm/accounts/index.d.ts +4 -0
  106. package/dist/esm/accounts/index.js +4 -0
  107. package/dist/esm/accounts/pdas.d.ts +23 -0
  108. package/dist/esm/accounts/pdas.js +38 -0
  109. package/dist/esm/accounts/queries.d.ts +41 -0
  110. package/dist/esm/accounts/queries.js +88 -0
  111. package/dist/esm/client.d.ts +2 -407
  112. package/dist/esm/client.js +3 -891
  113. package/dist/esm/cloak/client.d.ts +28 -0
  114. package/dist/esm/cloak/client.js +64 -0
  115. package/dist/esm/cloak/errors.d.ts +13 -0
  116. package/dist/esm/cloak/errors.js +21 -0
  117. package/dist/esm/cloak/helpers.d.ts +6 -0
  118. package/dist/esm/cloak/helpers.js +31 -0
  119. package/dist/esm/cloak/index.d.ts +6 -0
  120. package/dist/esm/cloak/index.js +6 -0
  121. package/dist/esm/cloak/polling.d.ts +7 -0
  122. package/dist/esm/cloak/polling.js +63 -0
  123. package/dist/esm/cloak/transport.d.ts +15 -0
  124. package/dist/esm/cloak/transport.js +115 -0
  125. package/dist/esm/cloak/types.d.ts +188 -0
  126. package/dist/esm/cloak/types.js +4 -0
  127. package/dist/esm/cloak.d.ts +1 -0
  128. package/dist/esm/cloak.js +2 -0
  129. package/dist/esm/compactNote.d.ts +21 -0
  130. package/dist/esm/compactNote.js +24 -1
  131. package/dist/esm/index.d.ts +2 -1
  132. package/dist/esm/index.js +3 -1
  133. package/dist/esm/notes/encryption.d.ts +41 -0
  134. package/dist/esm/notes/encryption.js +67 -0
  135. package/dist/esm/notes/index.d.ts +5 -0
  136. package/dist/esm/notes/index.js +5 -0
  137. package/dist/esm/notes/mailbox.d.ts +70 -0
  138. package/dist/esm/notes/mailbox.js +154 -0
  139. package/dist/esm/notes/model.d.ts +91 -0
  140. package/dist/esm/notes/model.js +99 -0
  141. package/dist/esm/notes/nullifier.d.ts +27 -0
  142. package/dist/esm/notes/nullifier.js +40 -0
  143. package/dist/esm/notes/recovery.d.ts +10 -0
  144. package/dist/esm/notes/recovery.js +28 -0
  145. package/dist/esm/proof.d.ts +1 -183
  146. package/dist/esm/proof.js +2 -281
  147. package/dist/esm/proofs/encoding.d.ts +17 -0
  148. package/dist/esm/proofs/encoding.js +68 -0
  149. package/dist/esm/proofs/formatting.d.ts +6 -0
  150. package/dist/esm/proofs/formatting.js +31 -0
  151. package/dist/esm/proofs/index.d.ts +5 -0
  152. package/dist/esm/proofs/index.js +5 -0
  153. package/dist/esm/proofs/swap.d.ts +87 -0
  154. package/dist/esm/proofs/swap.js +138 -0
  155. package/dist/esm/proofs/transaction.d.ts +28 -0
  156. package/dist/esm/proofs/transaction.js +105 -0
  157. package/dist/esm/proofs/types.d.ts +70 -0
  158. package/dist/esm/proofs/types.js +1 -0
  159. package/dist/esm/prover.d.ts +4 -1
  160. package/dist/esm/prover.js +10 -1
  161. package/dist/esm/relayer/client.d.ts +61 -0
  162. package/dist/esm/relayer/client.js +144 -0
  163. package/dist/esm/relayer/crypto.d.ts +5 -0
  164. package/dist/esm/relayer/crypto.js +20 -0
  165. package/dist/esm/relayer/encoding.d.ts +2 -0
  166. package/dist/esm/relayer/encoding.js +19 -0
  167. package/dist/esm/relayer/errors.d.ts +7 -0
  168. package/dist/esm/relayer/errors.js +13 -0
  169. package/dist/esm/relayer/index.d.ts +3 -0
  170. package/dist/esm/relayer/index.js +3 -0
  171. package/dist/esm/relayer/transport.d.ts +17 -0
  172. package/dist/esm/relayer/transport.js +59 -0
  173. package/dist/esm/relayer/types.d.ts +276 -0
  174. package/dist/esm/relayer/types.js +4 -0
  175. package/dist/esm/relayer.d.ts +1 -318
  176. package/dist/esm/relayer.js +2 -249
  177. package/dist/esm/shield/alt.js +1 -1
  178. package/dist/esm/shield/errors.js +1 -1
  179. package/dist/esm/shield/finalize.js +1 -1
  180. package/dist/esm/shield/ix.d.ts +1 -1
  181. package/dist/esm/shield/owner.js +2 -1
  182. package/dist/esm/shield/ports.js +1 -1
  183. package/dist/esm/shield/preflight.js +1 -1
  184. package/dist/esm/shield/shield.js +4 -3
  185. package/dist/esm/shield/types.d.ts +1 -1
  186. package/dist/esm/transactions/deposit.d.ts +94 -0
  187. package/dist/esm/transactions/deposit.js +198 -0
  188. package/dist/esm/transactions/index.d.ts +7 -0
  189. package/dist/esm/transactions/index.js +7 -0
  190. package/dist/esm/transactions/swap.d.ts +71 -0
  191. package/dist/esm/transactions/swap.js +144 -0
  192. package/dist/esm/transactions/transact.d.ts +34 -0
  193. package/dist/esm/transactions/transact.js +110 -0
  194. package/dist/esm/transactions/transfer.d.ts +51 -0
  195. package/dist/esm/transactions/transfer.js +103 -0
  196. package/dist/esm/transactions/withdraw.d.ts +52 -0
  197. package/dist/esm/transactions/withdraw.js +101 -0
  198. package/dist/esm/utxo.d.ts +1 -235
  199. package/dist/esm/utxo.js +2 -382
  200. package/package.json +54 -16
  201. package/SHIELD_INTEGRATION.md +0 -143
  202. package/config.d.ts +0 -2
  203. package/config.js +0 -4
  204. package/dist/src/client.d.ts +0 -407
  205. package/dist/src/client.js +0 -951
  206. package/dist/src/compactNote.d.ts +0 -107
  207. package/dist/src/compactNote.js +0 -167
  208. package/dist/src/config.d.ts +0 -82
  209. package/dist/src/config.js +0 -57
  210. package/dist/src/events.d.ts +0 -77
  211. package/dist/src/events.js +0 -167
  212. package/dist/src/idl/privacy_pool.d.ts +0 -5
  213. package/dist/src/idl/privacy_pool.js +0 -15218
  214. package/dist/src/index.d.ts +0 -16
  215. package/dist/src/index.js +0 -67
  216. package/dist/src/merkle.d.ts +0 -77
  217. package/dist/src/merkle.js +0 -156
  218. package/dist/src/poseidon.d.ts +0 -29
  219. package/dist/src/poseidon.js +0 -100
  220. package/dist/src/program.d.ts +0 -37
  221. package/dist/src/program.js +0 -61
  222. package/dist/src/proof.d.ts +0 -183
  223. package/dist/src/proof.js +0 -292
  224. package/dist/src/prover.d.ts +0 -54
  225. package/dist/src/prover.js +0 -112
  226. package/dist/src/random.d.ts +0 -16
  227. package/dist/src/random.js +0 -28
  228. package/dist/src/relayer.js +0 -257
  229. package/dist/src/retry.d.ts +0 -32
  230. package/dist/src/retry.js +0 -75
  231. package/dist/src/shield/alt.d.ts +0 -87
  232. package/dist/src/shield/alt.js +0 -194
  233. package/dist/src/shield/computeBudget.d.ts +0 -61
  234. package/dist/src/shield/computeBudget.js +0 -64
  235. package/dist/src/shield/errors.d.ts +0 -58
  236. package/dist/src/shield/errors.js +0 -121
  237. package/dist/src/shield/finalize.d.ts +0 -45
  238. package/dist/src/shield/finalize.js +0 -119
  239. package/dist/src/shield/index.d.ts +0 -35
  240. package/dist/src/shield/index.js +0 -68
  241. package/dist/src/shield/ix.d.ts +0 -54
  242. package/dist/src/shield/ix.js +0 -119
  243. package/dist/src/shield/owner.d.ts +0 -36
  244. package/dist/src/shield/owner.js +0 -126
  245. package/dist/src/shield/ports.d.ts +0 -43
  246. package/dist/src/shield/ports.js +0 -153
  247. package/dist/src/shield/preflight.d.ts +0 -30
  248. package/dist/src/shield/preflight.js +0 -154
  249. package/dist/src/shield/shield.d.ts +0 -68
  250. package/dist/src/shield/shield.js +0 -499
  251. package/dist/src/shield/types.d.ts +0 -202
  252. package/dist/src/utxo.d.ts +0 -235
  253. package/dist/src/utxo.js +0 -407
  254. package/dist/tests/compact-note.test.d.ts +0 -1
  255. package/dist/tests/compact-note.test.js +0 -173
  256. package/dist/tests/config.test.d.ts +0 -1
  257. package/dist/tests/config.test.js +0 -102
  258. package/dist/tests/edge-cases.test.d.ts +0 -1
  259. package/dist/tests/edge-cases.test.js +0 -220
  260. package/dist/tests/encryption.test.d.ts +0 -1
  261. package/dist/tests/encryption.test.js +0 -215
  262. package/dist/tests/events.test.d.ts +0 -1
  263. package/dist/tests/events.test.js +0 -78
  264. package/dist/tests/multi-tree.test.d.ts +0 -1
  265. package/dist/tests/multi-tree.test.js +0 -405
  266. package/dist/tests/pda.test.d.ts +0 -1
  267. package/dist/tests/pda.test.js +0 -229
  268. package/dist/tests/poseidon-builder-parity.test.d.ts +0 -1
  269. package/dist/tests/poseidon-builder-parity.test.js +0 -72
  270. package/dist/tests/poseidon.test.d.ts +0 -1
  271. package/dist/tests/poseidon.test.js +0 -142
  272. package/dist/tests/proof.test.d.ts +0 -1
  273. package/dist/tests/proof.test.js +0 -296
  274. package/dist/tests/relayer.test.d.ts +0 -1
  275. package/dist/tests/relayer.test.js +0 -271
  276. package/dist/tests/sdk.integration.test.d.ts +0 -1
  277. package/dist/tests/sdk.integration.test.js +0 -330
  278. package/dist/tests/shield-owner.test.d.ts +0 -1
  279. package/dist/tests/shield-owner.test.js +0 -89
  280. package/dist/tests/shield-preflight.test.d.ts +0 -1
  281. package/dist/tests/shield-preflight.test.js +0 -87
  282. package/dist/tests/shield-realproof.test.d.ts +0 -1
  283. package/dist/tests/shield-realproof.test.js +0 -272
  284. package/dist/tests/shield.test.d.ts +0 -1
  285. package/dist/tests/shield.test.js +0 -403
  286. package/dist/tests/utxo.test.d.ts +0 -1
  287. package/dist/tests/utxo.test.js +0 -140
  288. package/poseidon.d.ts +0 -2
  289. package/poseidon.js +0 -4
  290. package/proof.d.ts +0 -2
  291. package/proof.js +0 -4
  292. package/prover.d.ts +0 -2
  293. package/prover.js +0 -4
  294. package/shield.d.ts +0 -2
  295. package/shield.js +0 -4
  296. /package/dist/{src/shield → cjs/proofs}/types.js +0 -0
@@ -0,0 +1,94 @@
1
+ import type { Program, Idl } from "@coral-xyz/anchor";
2
+ import { PublicKey, Transaction } from "@solana/web3.js";
3
+ import type { ExtData, TransactionProofBuilder } from "../proofs/types.js";
4
+ import type { SerializedUTXO } from "../notes/model.js";
5
+ import { MerkleTree } from "../merkle.js";
6
+ import { type NoteCiphers } from "../compactNote.js";
7
+ /**
8
+ * Result of a deposit operation, produced by `DepositBuild.commit()` after the
9
+ * caller has successfully submitted the deposit transaction on-chain.
10
+ */
11
+ export type DepositResult = {
12
+ /** The output UTXOs created by the deposit */
13
+ outputUTXOs: [SerializedUTXO, SerializedUTXO];
14
+ /** The leaf indices where the UTXOs were inserted */
15
+ leafIndices: [number, number];
16
+ /** The new Merkle root after insertion */
17
+ root: Uint8Array;
18
+ };
19
+ /**
20
+ * The return of `deposit()`. Instead of submitting the transaction itself,
21
+ * `deposit()` hands back an unsigned {@link Transaction} so the caller can
22
+ * sign it with whatever wallet they control (Solana wallet-adapter, Ledger,
23
+ * anchor NodeWallet, etc.) and submit it on their own terms.
24
+ *
25
+ * Usage pattern (browser / wallet-adapter):
26
+ *
27
+ * const { transaction, commit } = await deposit({ ... });
28
+ * const signed = await wallet.signTransaction(transaction);
29
+ * const sig = await connection.sendRawTransaction(signed.serialize());
30
+ * await connection.confirmTransaction(sig, "confirmed");
31
+ * const result = commit(); // updates the local tree, returns DepositResult
32
+ */
33
+ export type DepositBuild = {
34
+ /**
35
+ * Unsigned {@link Transaction} for the deposit. `feePayer` and
36
+ * `recentBlockhash` are already populated, so the caller only needs to sign
37
+ * and send.
38
+ */
39
+ transaction: Transaction;
40
+ /**
41
+ * Output UTXOs created by this deposit. Safe to read before submission —
42
+ * the commitment values are deterministic from the circuit inputs and do
43
+ * not depend on the on-chain result.
44
+ */
45
+ outputUTXOs: [SerializedUTXO, SerializedUTXO];
46
+ /**
47
+ * Inserts the two output commitments into the local {@link MerkleTree} and
48
+ * returns the receipt. Call this **only after** the on-chain transaction
49
+ * has been confirmed — deferring the insert keeps the local tree
50
+ * consistent with chain state if the submission fails.
51
+ *
52
+ * Calling `commit()` more than once is unsupported and will corrupt the
53
+ * local tree.
54
+ */
55
+ commit: () => DepositResult;
56
+ };
57
+ /**
58
+ * Build an unsigned deposit {@link Transaction} for the privacy pool.
59
+ *
60
+ * For deposits, we use zero input UTXOs (amount=0) and create output UTXOs
61
+ * with the deposit amount. `publicAmount` is positive. The caller is
62
+ * responsible for signing and submitting the returned transaction, and then
63
+ * calling `commit()` once it confirms.
64
+ *
65
+ * @param amount - Amount to deposit in lamports/token units
66
+ * @param recipientPubkey - UTXO public key that will own the deposited funds
67
+ * @param treeId - The tree ID to deposit into (defaults to 0)
68
+ */
69
+ export declare function deposit<T extends Idl>(params: {
70
+ program: Program<T>;
71
+ /**
72
+ * Account that will pay for and sign the deposit transaction. Only
73
+ * `publicKey` is read — `deposit()` never touches a secret key. A browser
74
+ * wallet-adapter wallet, a Node `anchor.Wallet`, or a raw `Keypair` are all
75
+ * structurally acceptable.
76
+ */
77
+ depositor: {
78
+ publicKey: PublicKey;
79
+ };
80
+ amount: bigint;
81
+ mintAddress: PublicKey;
82
+ recipientPubkey: bigint;
83
+ tree: MerkleTree;
84
+ proofBuilder: TransactionProofBuilder;
85
+ treeId?: number;
86
+ extData?: Partial<ExtData>;
87
+ /** Solana wallet key used to make output note 0 recoverable from chain events. */
88
+ noteRecipientWallet?: PublicKey | Uint8Array;
89
+ /** Prebuilt recovery payload. Takes precedence over noteRecipientWallet. */
90
+ noteCiphers?: NoteCiphers | null;
91
+ }): Promise<DepositBuild>;
92
+ /**
93
+ * Result of a withdrawal operation.
94
+ */
@@ -0,0 +1,234 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.deposit = deposit;
37
+ const anchor = __importStar(require("@coral-xyz/anchor"));
38
+ const web3_js_1 = require("@solana/web3.js");
39
+ const spl_token_1 = require("@solana/spl-token");
40
+ const transaction_js_1 = require("../proofs/transaction.js");
41
+ const encoding_js_1 = require("../proofs/encoding.js");
42
+ const model_js_1 = require("../notes/model.js");
43
+ const config_js_1 = require("../config.js");
44
+ const poseidon_js_1 = require("../poseidon.js");
45
+ const compactNote_js_1 = require("../compactNote.js");
46
+ const pdas_js_1 = require("../accounts/pdas.js");
47
+ // Anchor is CJS and does not expose BN as a detectable Node ESM named export.
48
+ const { BN } = anchor;
49
+ /**
50
+ * Build an unsigned deposit {@link Transaction} for the privacy pool.
51
+ *
52
+ * For deposits, we use zero input UTXOs (amount=0) and create output UTXOs
53
+ * with the deposit amount. `publicAmount` is positive. The caller is
54
+ * responsible for signing and submitting the returned transaction, and then
55
+ * calling `commit()` once it confirms.
56
+ *
57
+ * @param amount - Amount to deposit in lamports/token units
58
+ * @param recipientPubkey - UTXO public key that will own the deposited funds
59
+ * @param treeId - The tree ID to deposit into (defaults to 0)
60
+ */
61
+ async function deposit(params) {
62
+ const { program, depositor, amount, mintAddress, recipientPubkey, tree, proofBuilder, treeId = 0, extData: partialExtData, noteRecipientWallet, noteCiphers, } = params;
63
+ if (amount <= 0n) {
64
+ throw new Error("Deposit amount must be positive");
65
+ }
66
+ // Create zero input UTXOs (for deposits, we don't spend any existing UTXOs)
67
+ const zeroKeypair0 = (0, model_js_1.generateKeypair)();
68
+ const zeroKeypair1 = (0, model_js_1.generateKeypair)();
69
+ const zeroInput0 = (0, model_js_1.createOwnedZeroUTXO)(zeroKeypair0.privateKey, mintAddress);
70
+ const zeroInput1 = (0, model_js_1.createOwnedZeroUTXO)(zeroKeypair1.privateKey, mintAddress);
71
+ // The circuit skips the Merkle proof check for zero-amount inputs (amount == 0
72
+ // causes `enabled = 0` in MerkleProofIfEnabled). So we provide a dummy path using
73
+ // the tree's pre-computed zero chain without inserting anything into the tree.
74
+ const dummyPath = tree.zeroes.slice(0, tree.depth);
75
+ const currentRoot = tree.root;
76
+ const inputUTXOs = [
77
+ {
78
+ ...zeroInput0,
79
+ pathIndex: 0,
80
+ pathElements: dummyPath,
81
+ privateKey: zeroKeypair0.privateKey,
82
+ },
83
+ {
84
+ ...zeroInput1,
85
+ pathIndex: 0,
86
+ pathElements: dummyPath,
87
+ privateKey: zeroKeypair1.privateKey,
88
+ },
89
+ ];
90
+ const outputUTXO0 = (0, model_js_1.createUTXO)({
91
+ amount: amount,
92
+ pubkey: recipientPubkey,
93
+ mintAddress,
94
+ });
95
+ const outputUTXO1 = (0, model_js_1.createUTXO)({
96
+ amount: 0n,
97
+ pubkey: (0, model_js_1.generateKeypair)().publicKey,
98
+ mintAddress,
99
+ });
100
+ const outputUTXOs = [
101
+ outputUTXO0,
102
+ outputUTXO1,
103
+ ];
104
+ const depositorPubkey = depositor.publicKey;
105
+ const extData = {
106
+ recipient: partialExtData?.recipient ?? depositorPubkey,
107
+ relayer: partialExtData?.relayer ?? depositorPubkey,
108
+ fee: partialExtData?.fee ?? 0n,
109
+ refund: partialExtData?.refund ?? 0n,
110
+ claimant: partialExtData?.claimant ?? web3_js_1.SystemProgram.programId,
111
+ };
112
+ if (!extData.relayer.equals(depositorPubkey)) {
113
+ throw new Error("Deposit extData.relayer must be the signing depositor");
114
+ }
115
+ if (extData.fee !== 0n || extData.refund !== 0n) {
116
+ throw new Error("Deposits require extData fee and refund to be zero");
117
+ }
118
+ const circuitInputs = (0, transaction_js_1.prepareTransactionInputs)({
119
+ inputUTXOs,
120
+ outputUTXOs,
121
+ root: currentRoot,
122
+ publicAmount: amount, // Positive for deposits
123
+ extData,
124
+ mintAddress,
125
+ });
126
+ const rawProof = await proofBuilder(circuitInputs);
127
+ const proof = (0, encoding_js_1.encodeSnarkjsProofToTransactionProof)(rawProof);
128
+ const depositNoteCiphers = noteCiphers !== undefined
129
+ ? noteCiphers
130
+ : noteRecipientWallet
131
+ ? (0, compactNote_js_1.createNoteCiphers)({
132
+ recipientWalletPubkey: noteRecipientWallet instanceof web3_js_1.PublicKey
133
+ ? noteRecipientWallet.toBytes()
134
+ : noteRecipientWallet,
135
+ blinding: (0, poseidon_js_1.bigIntToBytesBE)(outputUTXO0.blinding),
136
+ amount: outputUTXO0.amount,
137
+ }, null)
138
+ : null;
139
+ // -----------------------------------------------------------------------
140
+ // Build the transact instruction inline because deposits return an unsigned
141
+ // wallet-signable transaction while `transact()` submits with a Keypair.
142
+ //
143
+ // We intentionally don't reuse the `transact()` helper: it submits via
144
+ // anchor's `.rpc()` with `.signers([relayer])`, which assumes the caller
145
+ // holds a real Keypair. For deposit, we want to return an unsigned
146
+ // Transaction so the caller (typically a browser wallet) can sign it.
147
+ // -----------------------------------------------------------------------
148
+ const { config, vault, nullifiers } = (0, pdas_js_1.getPoolPdas)(program.programId, mintAddress);
149
+ const globalConfig = (0, pdas_js_1.getGlobalConfigPda)(program.programId);
150
+ const inputTree = (0, pdas_js_1.getNoteTreePda)(program.programId, mintAddress, treeId);
151
+ const outputTree = (0, pdas_js_1.getNoteTreePda)(program.programId, mintAddress, treeId);
152
+ const nullifierMarker0 = (0, pdas_js_1.getNullifierMarkerPda)(program.programId, mintAddress, circuitInputs.inputNullifiers[0]);
153
+ const nullifierMarker1 = (0, pdas_js_1.getNullifierMarkerPda)(program.programId, mintAddress, circuitInputs.inputNullifiers[1]);
154
+ const extDataHash = (0, transaction_js_1.computeExtDataHash)(extData);
155
+ const isNativeSol = mintAddress.equals(config_js_1.NATIVE_SOL_MINT);
156
+ let vaultTA;
157
+ let userTA;
158
+ let recipientTA;
159
+ let relayerTA;
160
+ if (!isNativeSol) {
161
+ vaultTA = await (0, spl_token_1.getAssociatedTokenAddress)(mintAddress, vault, true);
162
+ userTA = await (0, spl_token_1.getAssociatedTokenAddress)(mintAddress, depositorPubkey);
163
+ recipientTA = await (0, spl_token_1.getAssociatedTokenAddress)(mintAddress, extData.recipient);
164
+ relayerTA = await (0, spl_token_1.getAssociatedTokenAddress)(mintAddress, depositorPubkey);
165
+ }
166
+ const builtTx = await program.methods
167
+ .transact(Array.from(currentRoot), treeId, treeId, new BN(amount.toString()), Array.from(extDataHash), mintAddress, Array.from(circuitInputs.inputNullifiers[0]), Array.from(circuitInputs.inputNullifiers[1]), Array.from(circuitInputs.outputCommitments[0]), Array.from(circuitInputs.outputCommitments[1]), new BN(Math.floor(Date.now() / 1000) + 3600), // 1-hour window from build time
168
+ {
169
+ recipient: extData.recipient,
170
+ relayer: extData.relayer,
171
+ fee: new BN(extData.fee.toString()),
172
+ refund: new BN(extData.refund.toString()),
173
+ claimant: extData.claimant,
174
+ }, {
175
+ proofA: proof.proofA,
176
+ proofB: proof.proofB,
177
+ proofC: proof.proofC,
178
+ }, depositNoteCiphers
179
+ ? {
180
+ note0EphemeralKey: Array.from(depositNoteCiphers.note0EphemeralKey),
181
+ note0Encrypted: Array.from(depositNoteCiphers.note0Encrypted),
182
+ note0ViewTag: depositNoteCiphers.note0ViewTag,
183
+ note1EphemeralKey: Array.from(depositNoteCiphers.note1EphemeralKey),
184
+ note1Encrypted: Array.from(depositNoteCiphers.note1Encrypted),
185
+ note1ViewTag: depositNoteCiphers.note1ViewTag,
186
+ }
187
+ : null)
188
+ .accountsStrict({
189
+ config,
190
+ globalConfig,
191
+ vault,
192
+ inputTree,
193
+ outputTree,
194
+ nullifiers,
195
+ nullifierMarker0,
196
+ nullifierMarker1,
197
+ relayer: depositorPubkey,
198
+ recipient: extData.recipient,
199
+ vaultTokenAccount: vaultTA ?? depositorPubkey,
200
+ userTokenAccount: userTA ?? depositorPubkey,
201
+ recipientTokenAccount: recipientTA ?? extData.recipient,
202
+ relayerTokenAccount: relayerTA ?? depositorPubkey,
203
+ tokenProgram: isNativeSol ? web3_js_1.SystemProgram.programId : spl_token_1.TOKEN_PROGRAM_ID,
204
+ systemProgram: web3_js_1.SystemProgram.programId,
205
+ })
206
+ .transaction();
207
+ // Add compute budget instruction for higher CU limit
208
+ const computeBudgetIx = web3_js_1.ComputeBudgetProgram.setComputeUnitLimit({
209
+ units: 1000000,
210
+ });
211
+ builtTx.instructions.unshift(computeBudgetIx);
212
+ // Populate feePayer + recentBlockhash so the wallet only has to sign.
213
+ const provider = program.provider;
214
+ builtTx.feePayer = depositorPubkey;
215
+ const { blockhash } = await provider.connection.getLatestBlockhash();
216
+ builtTx.recentBlockhash = blockhash;
217
+ const commit = () => {
218
+ const { index: outIdx0 } = tree.insert(outputUTXOs[0].commitment);
219
+ const { index: outIdx1, root: newRoot } = tree.insert(outputUTXOs[1].commitment);
220
+ return {
221
+ outputUTXOs,
222
+ leafIndices: [outIdx0, outIdx1],
223
+ root: newRoot,
224
+ };
225
+ };
226
+ return {
227
+ transaction: builtTx,
228
+ outputUTXOs,
229
+ commit,
230
+ };
231
+ }
232
+ /**
233
+ * Result of a withdrawal operation.
234
+ */
@@ -0,0 +1,7 @@
1
+ export * from "./transact.js";
2
+ export * from "./deposit.js";
3
+ export * from "./withdraw.js";
4
+ export * from "./transfer.js";
5
+ export * from "./swap.js";
6
+ export { buildTransactInstruction as buildRawTransactInstruction, TRANSACT_ACCOUNT_NAMES, } from "../shield/ix.js";
7
+ export type { TransactAccounts as RawTransactAccounts, TransactArgs as RawTransactArgs, } from "../shield/ix.js";
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.TRANSACT_ACCOUNT_NAMES = exports.buildRawTransactInstruction = void 0;
18
+ __exportStar(require("./transact.js"), exports);
19
+ __exportStar(require("./deposit.js"), exports);
20
+ __exportStar(require("./withdraw.js"), exports);
21
+ __exportStar(require("./transfer.js"), exports);
22
+ __exportStar(require("./swap.js"), exports);
23
+ // Raw IDL-correct builder for custom v0/ALT transaction composition.
24
+ var ix_js_1 = require("../shield/ix.js");
25
+ Object.defineProperty(exports, "buildRawTransactInstruction", { enumerable: true, get: function () { return ix_js_1.buildTransactInstruction; } });
26
+ Object.defineProperty(exports, "TRANSACT_ACCOUNT_NAMES", { enumerable: true, get: function () { return ix_js_1.TRANSACT_ACCOUNT_NAMES; } });
@@ -0,0 +1,71 @@
1
+ import type { Idl, Program } from "@coral-xyz/anchor";
2
+ import { Keypair, PublicKey, type AccountMeta, type TransactionInstruction } from "@solana/web3.js";
3
+ import type { ExtData, TransactionProofStruct } from "../proofs/types.js";
4
+ import type { NoteCiphers } from "../compactNote.js";
5
+ /** Seeds: ["swap_executor", source_mint, dest_mint, nullifier_0, relayer]. */
6
+ export declare function getSwapExecutorPda(programId: PublicKey, sourceMint: PublicKey, destMint: PublicKey, inputNullifier0: Uint8Array, relayer: PublicKey): PublicKey;
7
+ /** Build `fund_native_source`. It must immediately precede `transact_swap`. */
8
+ export declare function fundNativeSource<T extends Idl>(params: {
9
+ program: Program<T>;
10
+ relayer: {
11
+ publicKey: PublicKey;
12
+ };
13
+ sourceMint: PublicKey;
14
+ destMint: PublicKey;
15
+ inputNullifier0: Uint8Array;
16
+ swapAmount: bigint;
17
+ /** Wrapped-native mint used by the DEX. Defaults to canonical WSOL. */
18
+ sourceMintAccount?: PublicKey;
19
+ }): Promise<TransactionInstruction>;
20
+ export type SwapProofStruct = TransactionProofStruct;
21
+ /** Fields in the current IDL's `SwapParams` struct. */
22
+ export type SwapParams = {
23
+ minAmountOut: bigint;
24
+ deadline: bigint;
25
+ destAmount: bigint;
26
+ /** SHA-256 of the exact DEX instruction bytes passed as `swapData`. */
27
+ swapDataHash: Uint8Array;
28
+ };
29
+ export type TransactSwapParams<T extends Idl = Idl> = {
30
+ program: Program<T>;
31
+ relayer: {
32
+ publicKey: PublicKey;
33
+ };
34
+ sourceMint: PublicKey;
35
+ destMint: PublicKey;
36
+ sourceRoot: Uint8Array;
37
+ sourceTreeId: number;
38
+ destTreeId: number;
39
+ inputNullifiers: [Uint8Array, Uint8Array];
40
+ /** Output 0 is source-mint change; output 1 is the destination note. */
41
+ outputCommitments: [Uint8Array, Uint8Array];
42
+ proof: SwapProofStruct;
43
+ swapParams: SwapParams;
44
+ swapAmount: bigint;
45
+ /** Exact raw data from the DEX/Jupiter instruction. */
46
+ swapData: Uint8Array | Buffer;
47
+ extData: ExtData;
48
+ noteCiphers?: NoteCiphers | null;
49
+ sourceVaultTokenAccount: PublicKey;
50
+ /** Actual DEX source mint (WSOL for the native-SOL pool sentinel). */
51
+ sourceMintAccount: PublicKey;
52
+ destVaultTokenAccount: PublicKey;
53
+ /** Actual DEX destination mint (WSOL for the native-SOL pool sentinel). */
54
+ destMintAccount: PublicKey;
55
+ relayerTokenAccount: PublicKey;
56
+ swapProgram: PublicKey;
57
+ jupiterEventAuthority: PublicKey;
58
+ /** Preserve the DEX instruction's account order and duplicates exactly. */
59
+ remainingAccounts?: AccountMeta[];
60
+ };
61
+ /** Build the current IDL's `transact_swap` instruction without submitting it. */
62
+ export declare function buildTransactSwapInstruction<T extends Idl>(params: TransactSwapParams<T>): Promise<TransactionInstruction>;
63
+ /** Build the atomic instruction sequence, including native-source funding. */
64
+ export declare function buildPrivateSwapInstructions<T extends Idl>(params: TransactSwapParams<T>): Promise<TransactionInstruction[]>;
65
+ /**
66
+ * Submit the parity-correct instructions as a legacy transaction. For Jupiter
67
+ * routes, prefer `buildPrivateSwapInstructions` and compile v0 with route ALTs.
68
+ */
69
+ export declare function transactSwap<T extends Idl>(params: TransactSwapParams<T> & {
70
+ relayer: Keypair;
71
+ }): Promise<string>;
@@ -0,0 +1,184 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.getSwapExecutorPda = getSwapExecutorPda;
37
+ exports.fundNativeSource = fundNativeSource;
38
+ exports.buildTransactSwapInstruction = buildTransactSwapInstruction;
39
+ exports.buildPrivateSwapInstructions = buildPrivateSwapInstructions;
40
+ exports.transactSwap = transactSwap;
41
+ const anchor = __importStar(require("@coral-xyz/anchor"));
42
+ const web3_js_1 = require("@solana/web3.js");
43
+ const spl_token_1 = require("@solana/spl-token");
44
+ const config_js_1 = require("../config.js");
45
+ const retry_js_1 = require("../retry.js");
46
+ const pdas_js_1 = require("../accounts/pdas.js");
47
+ const { BN } = anchor;
48
+ /** Seeds: ["swap_executor", source_mint, dest_mint, nullifier_0, relayer]. */
49
+ function getSwapExecutorPda(programId, sourceMint, destMint, inputNullifier0, relayer) {
50
+ const [executor] = web3_js_1.PublicKey.findProgramAddressSync([
51
+ Buffer.from("swap_executor"),
52
+ sourceMint.toBuffer(),
53
+ destMint.toBuffer(),
54
+ inputNullifier0,
55
+ relayer.toBuffer(),
56
+ ], programId);
57
+ return executor;
58
+ }
59
+ /** Build `fund_native_source`. It must immediately precede `transact_swap`. */
60
+ async function fundNativeSource(params) {
61
+ const { program, relayer, sourceMint, destMint, inputNullifier0, swapAmount, sourceMintAccount = spl_token_1.NATIVE_MINT, } = params;
62
+ const { vault: sourceVault, config: sourceConfig } = (0, pdas_js_1.getPoolPdas)(program.programId, sourceMint);
63
+ const executor = getSwapExecutorPda(program.programId, sourceMint, destMint, inputNullifier0, relayer.publicKey);
64
+ const executorSourceToken = await (0, spl_token_1.getAssociatedTokenAddress)(sourceMintAccount, executor, true);
65
+ return program.methods
66
+ .fundNativeSource(sourceMint, destMint, Array.from(inputNullifier0), new BN(swapAmount.toString()))
67
+ .accountsStrict({
68
+ executor,
69
+ executorSourceToken,
70
+ sourceVault,
71
+ sourceConfig,
72
+ sourceMintAccount,
73
+ relayer: relayer.publicKey,
74
+ instructionsSysvar: web3_js_1.SYSVAR_INSTRUCTIONS_PUBKEY,
75
+ tokenProgram: spl_token_1.TOKEN_PROGRAM_ID,
76
+ systemProgram: web3_js_1.SystemProgram.programId,
77
+ associatedTokenProgram: spl_token_1.ASSOCIATED_TOKEN_PROGRAM_ID,
78
+ })
79
+ .instruction();
80
+ }
81
+ function encodeNoteCiphers(noteCiphers) {
82
+ return noteCiphers
83
+ ? {
84
+ note0EphemeralKey: Array.from(noteCiphers.note0EphemeralKey),
85
+ note0Encrypted: Array.from(noteCiphers.note0Encrypted),
86
+ note0ViewTag: noteCiphers.note0ViewTag,
87
+ note1EphemeralKey: Array.from(noteCiphers.note1EphemeralKey),
88
+ note1Encrypted: Array.from(noteCiphers.note1Encrypted),
89
+ note1ViewTag: noteCiphers.note1ViewTag,
90
+ }
91
+ : null;
92
+ }
93
+ /** Build the current IDL's `transact_swap` instruction without submitting it. */
94
+ async function buildTransactSwapInstruction(params) {
95
+ const { program, relayer, sourceMint, destMint, sourceRoot, sourceTreeId, destTreeId, inputNullifiers, outputCommitments, proof, swapParams, swapAmount, swapData, extData, noteCiphers = null, sourceVaultTokenAccount, sourceMintAccount, destVaultTokenAccount, destMintAccount, relayerTokenAccount, swapProgram, jupiterEventAuthority, remainingAccounts = [], } = params;
96
+ if (!extData.relayer.equals(relayer.publicKey)) {
97
+ throw new Error("extData.relayer must match the relayer account");
98
+ }
99
+ if (swapParams.deadline <= 0n) {
100
+ throw new Error("swapParams.deadline must be a positive Unix timestamp");
101
+ }
102
+ if (swapParams.swapDataHash.length !== 32) {
103
+ throw new Error("swapParams.swapDataHash must be 32 bytes");
104
+ }
105
+ const { config: sourceConfig, vault: sourceVault, nullifiers: sourceNullifiers, } = (0, pdas_js_1.getPoolPdas)(program.programId, sourceMint);
106
+ const { config: destConfig, vault: destVault } = (0, pdas_js_1.getPoolPdas)(program.programId, destMint);
107
+ const globalConfig = (0, pdas_js_1.getGlobalConfigPda)(program.programId);
108
+ const sourceTree = (0, pdas_js_1.getNoteTreePda)(program.programId, sourceMint, sourceTreeId);
109
+ const destTree = (0, pdas_js_1.getNoteTreePda)(program.programId, destMint, destTreeId);
110
+ const sourceNullifierMarker0 = (0, pdas_js_1.getNullifierMarkerPda)(program.programId, sourceMint, inputNullifiers[0]);
111
+ const sourceNullifierMarker1 = (0, pdas_js_1.getNullifierMarkerPda)(program.programId, sourceMint, inputNullifiers[1]);
112
+ const executor = getSwapExecutorPda(program.programId, sourceMint, destMint, inputNullifiers[0], relayer.publicKey);
113
+ const executorSourceToken = await (0, spl_token_1.getAssociatedTokenAddress)(sourceMintAccount, executor, true);
114
+ const executorDestToken = await (0, spl_token_1.getAssociatedTokenAddress)(destMintAccount, executor, true);
115
+ let method = program.methods
116
+ .transactSwap(sourceTreeId, sourceMint, Array.from(inputNullifiers[0]), Array.from(inputNullifiers[1]), destTreeId, destMint, { proofA: proof.proofA, proofB: proof.proofB, proofC: proof.proofC }, Array.from(sourceRoot), Array.from(outputCommitments[0]), Array.from(outputCommitments[1]), {
117
+ minAmountOut: new BN(swapParams.minAmountOut.toString()),
118
+ deadline: new BN(swapParams.deadline.toString()),
119
+ destAmount: new BN(swapParams.destAmount.toString()),
120
+ swapDataHash: Array.from(swapParams.swapDataHash),
121
+ }, new BN(swapAmount.toString()), Buffer.from(swapData), {
122
+ recipient: extData.recipient,
123
+ relayer: extData.relayer,
124
+ fee: new BN(extData.fee.toString()),
125
+ refund: new BN(extData.refund.toString()),
126
+ claimant: extData.claimant,
127
+ }, encodeNoteCiphers(noteCiphers))
128
+ .accountsStrict({
129
+ sourceConfig,
130
+ globalConfig,
131
+ sourceVault,
132
+ sourceTree,
133
+ sourceNullifiers,
134
+ sourceNullifierMarker0,
135
+ sourceNullifierMarker1,
136
+ sourceVaultTokenAccount,
137
+ sourceMintAccount,
138
+ destConfig,
139
+ destVault,
140
+ destTree,
141
+ destVaultTokenAccount,
142
+ destMintAccount,
143
+ executor,
144
+ executorSourceToken,
145
+ executorDestToken,
146
+ relayer: relayer.publicKey,
147
+ relayerTokenAccount,
148
+ swapProgram,
149
+ jupiterEventAuthority,
150
+ tokenProgram: spl_token_1.TOKEN_PROGRAM_ID,
151
+ systemProgram: web3_js_1.SystemProgram.programId,
152
+ associatedTokenProgram: spl_token_1.ASSOCIATED_TOKEN_PROGRAM_ID,
153
+ });
154
+ // Jupiter account order and duplicates are part of the CPI contract.
155
+ method = method.remainingAccounts(remainingAccounts);
156
+ return method.instruction();
157
+ }
158
+ /** Build the atomic instruction sequence, including native-source funding. */
159
+ async function buildPrivateSwapInstructions(params) {
160
+ const instructions = [];
161
+ if (params.sourceMint.equals(config_js_1.NATIVE_SOL_MINT)) {
162
+ instructions.push(await fundNativeSource({
163
+ program: params.program,
164
+ relayer: params.relayer,
165
+ sourceMint: params.sourceMint,
166
+ destMint: params.destMint,
167
+ inputNullifier0: params.inputNullifiers[0],
168
+ swapAmount: params.swapAmount,
169
+ sourceMintAccount: params.sourceMintAccount,
170
+ }));
171
+ }
172
+ instructions.push(await buildTransactSwapInstruction(params));
173
+ return instructions;
174
+ }
175
+ /**
176
+ * Submit the parity-correct instructions as a legacy transaction. For Jupiter
177
+ * routes, prefer `buildPrivateSwapInstructions` and compile v0 with route ALTs.
178
+ */
179
+ async function transactSwap(params) {
180
+ const instructions = await buildPrivateSwapInstructions(params);
181
+ const transaction = new web3_js_1.Transaction().add(...instructions);
182
+ const provider = params.program.provider;
183
+ return (0, retry_js_1.withRpcRetry)(() => provider.sendAndConfirm(transaction, [params.relayer]));
184
+ }
@@ -0,0 +1,34 @@
1
+ import type { Program, Idl } from "@coral-xyz/anchor";
2
+ import { Keypair, PublicKey } from "@solana/web3.js";
3
+ import type { ExtData, TransactionProofStruct } from "../proofs/types.js";
4
+ import type { NoteCiphers } from "../compactNote.js";
5
+ /**
6
+ * Execute a transaction on the privacy pool.
7
+ * This is the low-level function that calls the on-chain `transact` instruction.
8
+ *
9
+ * @param publicAmount - Positive for deposits, negative for withdrawals, 0 for transfers
10
+ * @param inputTreeId - The tree ID where input UTXOs are located
11
+ * @param outputTreeId - The tree ID where output commitments will be inserted
12
+ */
13
+ export declare function transact<T extends Idl>(params: {
14
+ program: Program<T>;
15
+ relayer: Keypair;
16
+ recipient: PublicKey;
17
+ mintAddress: PublicKey;
18
+ root: Uint8Array;
19
+ inputTreeId: number;
20
+ outputTreeId: number;
21
+ publicAmount: bigint;
22
+ inputNullifiers: [Uint8Array, Uint8Array];
23
+ outputCommitments: [Uint8Array, Uint8Array];
24
+ extData: ExtData;
25
+ proof: TransactionProofStruct;
26
+ /** Unix timestamp after which the tx is invalid. Defaults to 10 minutes from build time. */
27
+ deadline?: bigint;
28
+ /** Optional compact recovery payload emitted with the two output commitments. */
29
+ noteCiphers?: NoteCiphers | null;
30
+ vaultTokenAccount?: PublicKey;
31
+ userTokenAccount?: PublicKey;
32
+ recipientTokenAccount?: PublicKey;
33
+ relayerTokenAccount?: PublicKey;
34
+ }): Promise<string>;