@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,51 @@
1
+ import type { Program, Idl } from "@coral-xyz/anchor";
2
+ import { Keypair, PublicKey } from "@solana/web3.js";
3
+ import type { TransactionProofBuilder } from "../proofs/types.js";
4
+ import type { InputUTXO, SerializedUTXO } from "../notes/model.js";
5
+ import { MerkleTree } from "../merkle.js";
6
+ import { type NoteCiphers } from "../compactNote.js";
7
+ export type TransferResult = {
8
+ /** Output UTXOs created by the transfer */
9
+ outputUTXOs: [SerializedUTXO, SerializedUTXO];
10
+ /** Leaf indices where the UTXOs were inserted */
11
+ leafIndices: [number, number];
12
+ /** New Merkle root after insertion */
13
+ root: Uint8Array;
14
+ };
15
+ /**
16
+ * Execute a private transfer within the pool.
17
+ *
18
+ * For transfers, the publicAmount is 0 (no funds enter or leave the pool).
19
+ * Input amounts must equal output amounts.
20
+ *
21
+ * @param inputUTXOs - The UTXOs being spent
22
+ * @param outputPubkeys - UTXO public keys for the recipients
23
+ * @param outputAmounts - Amounts for each output (must sum to input total)
24
+ * @param inputTreeId - The tree ID where input UTXOs are located
25
+ * @param outputTreeId - The tree ID where output commitments will be inserted
26
+ */
27
+ export declare function privateTransfer<T extends Idl>(params: {
28
+ program: Program<T>;
29
+ relayer: Keypair;
30
+ mintAddress: PublicKey;
31
+ inputUTXOs: [InputUTXO, InputUTXO];
32
+ outputPubkeys: [bigint, bigint];
33
+ outputAmounts: [bigint, bigint];
34
+ root: Uint8Array;
35
+ inputTreeId: number;
36
+ outputTreeId: number;
37
+ tree: MerkleTree;
38
+ proofBuilder: TransactionProofBuilder;
39
+ /** Must be zero: the program rejects fees on publicAmount=0 transfers. */
40
+ fee?: bigint;
41
+ deadline?: bigint;
42
+ /** Public recipient account committed in ExtData (no funds are sent to it). */
43
+ externalRecipient?: PublicKey;
44
+ /** Wallet keys used to encrypt output notes for on-chain recovery. */
45
+ noteRecipientWallets?: [
46
+ PublicKey | Uint8Array | null,
47
+ PublicKey | Uint8Array | null
48
+ ];
49
+ /** Prebuilt note ciphers. Takes precedence over noteRecipientWallets. */
50
+ noteCiphers?: NoteCiphers | null;
51
+ }): Promise<TransferResult>;
@@ -0,0 +1,103 @@
1
+ import { Keypair, PublicKey, SystemProgram } from "@solana/web3.js";
2
+ import { prepareTransactionInputs } from "../proofs/transaction.js";
3
+ import { encodeSnarkjsProofToTransactionProof } from "../proofs/encoding.js";
4
+ import { createUTXO } from "../notes/model.js";
5
+ import { transact } from "./transact.js";
6
+ import { bigIntToBytesBE } from "../poseidon.js";
7
+ import { createNoteCiphers, } from "../compactNote.js";
8
+ /**
9
+ * Execute a private transfer within the pool.
10
+ *
11
+ * For transfers, the publicAmount is 0 (no funds enter or leave the pool).
12
+ * Input amounts must equal output amounts.
13
+ *
14
+ * @param inputUTXOs - The UTXOs being spent
15
+ * @param outputPubkeys - UTXO public keys for the recipients
16
+ * @param outputAmounts - Amounts for each output (must sum to input total)
17
+ * @param inputTreeId - The tree ID where input UTXOs are located
18
+ * @param outputTreeId - The tree ID where output commitments will be inserted
19
+ */
20
+ export async function privateTransfer(params) {
21
+ const { program, relayer, mintAddress, inputUTXOs, outputPubkeys, outputAmounts, root, inputTreeId, outputTreeId, tree, proofBuilder, fee = 0n, deadline = BigInt(Math.floor(Date.now() / 1000) + 600), externalRecipient = Keypair.generate().publicKey, noteRecipientWallets, noteCiphers, } = params;
22
+ if (fee !== 0n) {
23
+ throw new Error("Private transact transfers require fee=0; represent any relayer fee in the output amounts");
24
+ }
25
+ const totalInput = inputUTXOs[0].amount + inputUTXOs[1].amount;
26
+ const totalOutput = outputAmounts[0] + outputAmounts[1];
27
+ if (totalInput !== totalOutput) {
28
+ throw new Error(`Balance mismatch: inputs=${totalInput}, outputs=${totalOutput}`);
29
+ }
30
+ const outputUTXO0 = createUTXO({
31
+ amount: outputAmounts[0],
32
+ pubkey: outputPubkeys[0],
33
+ mintAddress,
34
+ });
35
+ const outputUTXO1 = createUTXO({
36
+ amount: outputAmounts[1],
37
+ pubkey: outputPubkeys[1],
38
+ mintAddress,
39
+ });
40
+ const outputUTXOs = [
41
+ outputUTXO0,
42
+ outputUTXO1,
43
+ ];
44
+ const extData = {
45
+ recipient: externalRecipient,
46
+ relayer: relayer.publicKey,
47
+ fee: 0n,
48
+ refund: 0n,
49
+ claimant: SystemProgram.programId,
50
+ };
51
+ // publicAmount is 0 for transfers
52
+ const publicAmount = 0n;
53
+ const circuitInputs = prepareTransactionInputs({
54
+ inputUTXOs,
55
+ outputUTXOs,
56
+ root,
57
+ publicAmount,
58
+ extData,
59
+ mintAddress,
60
+ });
61
+ const rawProof = await proofBuilder(circuitInputs);
62
+ const proof = encodeSnarkjsProofToTransactionProof(rawProof);
63
+ const walletBytes = (wallet) => wallet instanceof PublicKey ? wallet.toBytes() : wallet;
64
+ const transferNoteCiphers = noteCiphers ??
65
+ (noteRecipientWallets
66
+ ? createNoteCiphers(noteRecipientWallets[0]
67
+ ? {
68
+ recipientWalletPubkey: walletBytes(noteRecipientWallets[0]),
69
+ blinding: bigIntToBytesBE(outputUTXOs[0].blinding),
70
+ amount: outputUTXOs[0].amount,
71
+ }
72
+ : null, noteRecipientWallets[1]
73
+ ? {
74
+ recipientWalletPubkey: walletBytes(noteRecipientWallets[1]),
75
+ blinding: bigIntToBytesBE(outputUTXOs[1].blinding),
76
+ amount: outputUTXOs[1].amount,
77
+ }
78
+ : null)
79
+ : null);
80
+ await transact({
81
+ program,
82
+ relayer,
83
+ recipient: externalRecipient,
84
+ mintAddress,
85
+ root,
86
+ inputTreeId,
87
+ outputTreeId,
88
+ publicAmount,
89
+ inputNullifiers: circuitInputs.inputNullifiers,
90
+ outputCommitments: circuitInputs.outputCommitments,
91
+ extData,
92
+ proof,
93
+ deadline,
94
+ noteCiphers: transferNoteCiphers,
95
+ });
96
+ const { index: outIdx0 } = tree.insert(outputUTXOs[0].commitment);
97
+ const { index: outIdx1, root: newRoot } = tree.insert(outputUTXOs[1].commitment);
98
+ return {
99
+ outputUTXOs,
100
+ leafIndices: [outIdx0, outIdx1],
101
+ root: newRoot,
102
+ };
103
+ }
@@ -0,0 +1,52 @@
1
+ import type { Program, Idl } from "@coral-xyz/anchor";
2
+ import { Keypair, PublicKey } from "@solana/web3.js";
3
+ import type { TransactionProofBuilder } from "../proofs/types.js";
4
+ import type { InputUTXO, SerializedUTXO } from "../notes/model.js";
5
+ import { MerkleTree } from "../merkle.js";
6
+ import { type NoteCiphers } from "../compactNote.js";
7
+ export type WithdrawResult = {
8
+ /** Change UTXO (remaining balance) */
9
+ changeUTXO: SerializedUTXO;
10
+ /** Leaf index of the change UTXO */
11
+ leafIndex: number;
12
+ /** New Merkle root after insertion */
13
+ root: Uint8Array;
14
+ };
15
+ /**
16
+ * Withdraw funds from the privacy pool.
17
+ *
18
+ * For withdrawals, we spend input UTXOs and create change output UTXOs.
19
+ * The publicAmount is negative (funds flowing out).
20
+ *
21
+ * @param withdrawAmount - Amount to withdraw in lamports/token units
22
+ * @param inputUTXOs - The UTXOs being spent
23
+ * @param changePubkey - UTXO public key for the change output
24
+ * @param inputTreeId - The tree ID where input UTXOs are located
25
+ * @param outputTreeId - The tree ID where change outputs will be inserted
26
+ */
27
+ export declare function withdraw<T extends Idl>(params: {
28
+ program: Program<T>;
29
+ relayer: Keypair;
30
+ recipient: PublicKey;
31
+ mintAddress: PublicKey;
32
+ inputUTXOs: [InputUTXO, InputUTXO];
33
+ changePubkey: bigint;
34
+ withdrawAmount: bigint;
35
+ fee: bigint;
36
+ refund: bigint;
37
+ root: Uint8Array;
38
+ inputTreeId: number;
39
+ outputTreeId: number;
40
+ tree: MerkleTree;
41
+ proofBuilder: TransactionProofBuilder;
42
+ /** When true, the fee is debited in addition to withdrawAmount. */
43
+ feeOnTop?: boolean;
44
+ deadline?: bigint;
45
+ /** Solana wallet key used to encrypt the change note for chain recovery. */
46
+ changeNoteRecipientWallet?: PublicKey | Uint8Array;
47
+ /** Prebuilt recovery payload. Takes precedence over changeNoteRecipientWallet. */
48
+ noteCiphers?: NoteCiphers | null;
49
+ }): Promise<WithdrawResult>;
50
+ /**
51
+ * Result of a private transfer operation.
52
+ */
@@ -0,0 +1,101 @@
1
+ import { PublicKey, SystemProgram } from "@solana/web3.js";
2
+ import { prepareTransactionInputs } from "../proofs/transaction.js";
3
+ import { encodeSnarkjsProofToTransactionProof } from "../proofs/encoding.js";
4
+ import { createUTXO, generateKeypair } from "../notes/model.js";
5
+ import { transact } from "./transact.js";
6
+ import { bigIntToBytesBE } from "../poseidon.js";
7
+ import { createNoteCiphers, } from "../compactNote.js";
8
+ /**
9
+ * Withdraw funds from the privacy pool.
10
+ *
11
+ * For withdrawals, we spend input UTXOs and create change output UTXOs.
12
+ * The publicAmount is negative (funds flowing out).
13
+ *
14
+ * @param withdrawAmount - Amount to withdraw in lamports/token units
15
+ * @param inputUTXOs - The UTXOs being spent
16
+ * @param changePubkey - UTXO public key for the change output
17
+ * @param inputTreeId - The tree ID where input UTXOs are located
18
+ * @param outputTreeId - The tree ID where change outputs will be inserted
19
+ */
20
+ export async function withdraw(params) {
21
+ const { program, relayer, recipient, mintAddress, inputUTXOs, changePubkey, withdrawAmount, fee, refund, root, inputTreeId, outputTreeId, tree, proofBuilder, feeOnTop = false, deadline = BigInt(Math.floor(Date.now() / 1000) + 600), changeNoteRecipientWallet, noteCiphers, } = params;
22
+ const totalInput = inputUTXOs[0].amount + inputUTXOs[1].amount;
23
+ const outflowAmount = feeOnTop ? withdrawAmount + fee : withdrawAmount;
24
+ const changeAmount = totalInput - outflowAmount;
25
+ if (withdrawAmount <= 0n) {
26
+ throw new Error("Withdrawal amount must be positive");
27
+ }
28
+ if (fee < 0n || refund < 0n || fee + refund > outflowAmount) {
29
+ throw new Error("Withdrawal fee and refund must fit within the public outflow");
30
+ }
31
+ if (changeAmount < 0n) {
32
+ throw new Error("Insufficient input balance for withdrawal");
33
+ }
34
+ const changeUTXO = createUTXO({
35
+ amount: changeAmount,
36
+ pubkey: changePubkey,
37
+ mintAddress,
38
+ });
39
+ const zeroUTXO = createUTXO({
40
+ amount: 0n,
41
+ pubkey: generateKeypair().publicKey,
42
+ mintAddress,
43
+ });
44
+ const outputUTXOs = [changeUTXO, zeroUTXO];
45
+ const extData = {
46
+ recipient,
47
+ relayer: relayer.publicKey,
48
+ fee,
49
+ refund,
50
+ claimant: SystemProgram.programId,
51
+ };
52
+ // publicAmount is negative for withdrawals
53
+ const publicAmount = -outflowAmount;
54
+ const circuitInputs = prepareTransactionInputs({
55
+ inputUTXOs,
56
+ outputUTXOs,
57
+ root,
58
+ publicAmount,
59
+ extData,
60
+ mintAddress,
61
+ });
62
+ const rawProof = await proofBuilder(circuitInputs);
63
+ const proof = encodeSnarkjsProofToTransactionProof(rawProof);
64
+ const withdrawNoteCiphers = noteCiphers !== undefined
65
+ ? noteCiphers
66
+ : changeNoteRecipientWallet && changeAmount > 0n
67
+ ? createNoteCiphers({
68
+ recipientWalletPubkey: changeNoteRecipientWallet instanceof PublicKey
69
+ ? changeNoteRecipientWallet.toBytes()
70
+ : changeNoteRecipientWallet,
71
+ blinding: bigIntToBytesBE(changeUTXO.blinding),
72
+ amount: changeAmount,
73
+ }, null)
74
+ : null;
75
+ await transact({
76
+ program,
77
+ relayer,
78
+ recipient,
79
+ mintAddress,
80
+ root,
81
+ inputTreeId,
82
+ outputTreeId,
83
+ publicAmount,
84
+ inputNullifiers: circuitInputs.inputNullifiers,
85
+ outputCommitments: circuitInputs.outputCommitments,
86
+ extData,
87
+ proof,
88
+ deadline,
89
+ noteCiphers: withdrawNoteCiphers,
90
+ });
91
+ const { index: changeIdx } = tree.insert(changeUTXO.commitment);
92
+ const { root: newRoot } = tree.insert(zeroUTXO.commitment);
93
+ return {
94
+ changeUTXO,
95
+ leafIndex: changeIdx,
96
+ root: newRoot,
97
+ };
98
+ }
99
+ /**
100
+ * Result of a private transfer operation.
101
+ */
@@ -1,235 +1 @@
1
- import { PublicKey } from "@solana/web3.js";
2
- /**
3
- * Keypair for UTXO ownership.
4
- * Public key is derived via Poseidon: pubkey = Poseidon(privateKey)
5
- */
6
- export type Keypair = {
7
- privateKey: bigint;
8
- publicKey: bigint;
9
- };
10
- /**
11
- * UTXO structure matching the circuit's UTXOCommitment template.
12
- * commitment = Poseidon(amount, pubkey, blinding, mintAddress)
13
- */
14
- export type UTXO = {
15
- /** Amount in lamports/token units */
16
- amount: bigint;
17
- /** Owner's public key (derived from private key via Poseidon) */
18
- pubkey: bigint;
19
- /** Random blinding factor for commitment privacy */
20
- blinding: bigint;
21
- /** Token mint address as field element */
22
- mintAddress: bigint;
23
- };
24
- /**
25
- * Serialized UTXO with precomputed commitment and optional ownership data.
26
- */
27
- export type SerializedUTXO = UTXO & {
28
- /** 32-byte commitment: Poseidon(amount, pubkey, blinding, mintAddress) */
29
- commitment: Uint8Array;
30
- /** Private key for spending (only present for owned UTXOs) */
31
- privateKey?: bigint;
32
- /** Leaf index in the Merkle tree (set after insertion) */
33
- pathIndex?: number;
34
- };
35
- /**
36
- * Input UTXO with Merkle proof data for spending.
37
- */
38
- export type InputUTXO = SerializedUTXO & {
39
- /** Leaf index in the Merkle tree */
40
- pathIndex: number;
41
- /** Merkle path elements (sibling hashes from leaf to root) */
42
- pathElements: Uint8Array[];
43
- /** Private key for nullifier derivation */
44
- privateKey: bigint;
45
- };
46
- /**
47
- * Generate a random keypair.
48
- * Private key is a random 32-byte scalar.
49
- * Public key is derived via Poseidon: pubkey = Poseidon(privateKey)
50
- */
51
- export declare function generateKeypair(): Keypair;
52
- /**
53
- * Derive public key from private key.
54
- * Matches circuit's Keypair template: publicKey = Poseidon(privateKey)
55
- */
56
- export declare function derivePublicKey(privateKey: bigint): bigint;
57
- /**
58
- * Create keypair from a known private key.
59
- */
60
- export declare function keypairFromPrivateKey(privateKey: bigint): Keypair;
61
- /**
62
- * Compute UTXO commitment.
63
- * Matches circuit's UTXOCommitment template:
64
- * commitment = Poseidon(amount, pubkey, blinding, mintAddress)
65
- */
66
- export declare function commitUTXO(utxo: UTXO): Uint8Array;
67
- /**
68
- * Create a random UTXO with the given parameters.
69
- */
70
- export declare function createUTXO(params: {
71
- amount: bigint;
72
- pubkey: bigint;
73
- mintAddress: PublicKey;
74
- }): SerializedUTXO;
75
- /**
76
- * Create a UTXO with a specified private key (for owned UTXOs).
77
- */
78
- export declare function createOwnedUTXO(params: {
79
- amount: bigint;
80
- privateKey: bigint;
81
- mintAddress: PublicKey;
82
- }): SerializedUTXO;
83
- /**
84
- * Create a zero UTXO (for deposits where no input exists).
85
- * Zero UTXOs have amount=0 and are used as placeholders in 2-in-2-out transactions.
86
- */
87
- export declare function createZeroUTXO(pubkey: bigint, mintAddress: PublicKey): SerializedUTXO;
88
- /**
89
- * Create a zero UTXO with private key (for owned zero UTXOs).
90
- */
91
- export declare function createOwnedZeroUTXO(privateKey: bigint, mintAddress: PublicKey): SerializedUTXO;
92
- /**
93
- * Compute signature for nullifier derivation.
94
- * Matches circuit's Signature template:
95
- * signature = Poseidon(privateKey, commitment, pathIndex)
96
- */
97
- export declare function computeSignature(privateKey: bigint, commitment: bigint, pathIndex: bigint): bigint;
98
- /**
99
- * Derive nullifier for a UTXO.
100
- * Matches circuit's UTXONullifier template:
101
- * signature = Poseidon(privateKey, commitment, pathIndex)
102
- * nullifier = Poseidon(commitment, pathIndex, signature)
103
- *
104
- * The signature-based nullifier ensures only the private key holder can spend.
105
- */
106
- export declare function deriveNullifier(utxo: SerializedUTXO, pathIndex: number, privateKey: bigint): Uint8Array;
107
- /**
108
- * Convert InputUTXO to the format expected by the circuit.
109
- */
110
- export declare function inputUTXOToCircuitFormat(input: InputUTXO): {
111
- amount: bigint;
112
- pubkey: bigint;
113
- blinding: bigint;
114
- pathElements: bigint[];
115
- pathIndex: number;
116
- privateKey: bigint;
117
- };
118
- /**
119
- * Encrypted UTXO note — can be broadcast alongside a transaction so the
120
- * recipient can recover their note without a server.
121
- */
122
- export type EncryptedNote = {
123
- /** 24-byte NaCl box nonce */
124
- nonce: Uint8Array;
125
- /** Ciphertext containing amount + blinding + privateKey */
126
- ciphertext: Uint8Array;
127
- /** Sender's ephemeral 32-byte X25519 public key */
128
- senderEphemeralPubkey: Uint8Array;
129
- };
130
- /**
131
- * Derive a NaCl X25519 encryption keypair from a UTXO private key.
132
- * The keypair is deterministic: same privateKey always yields the same pair.
133
- */
134
- export declare function deriveEncryptionKeypair(privateKey: bigint): {
135
- publicKey: Uint8Array;
136
- secretKey: Uint8Array;
137
- };
138
- /**
139
- * Encrypt a UTXO so the recipient can recover it from on-chain events.
140
- *
141
- * Plaintext layout (72 bytes):
142
- * [0..8] amount — 8-byte little-endian u64
143
- * [8..40] blinding — 32-byte big-endian field element
144
- * [40..72] privateKey — 32-byte big-endian field element
145
- *
146
- * Uses ephemeral-key NaCl box so the sender key is single-use.
147
- */
148
- export declare function encryptUTXONote(utxo: SerializedUTXO & {
149
- privateKey: bigint;
150
- }, recipientEncPubkey: Uint8Array): EncryptedNote;
151
- /**
152
- * Try to decrypt an encrypted UTXO note using the recipient's private key.
153
- * Returns the SerializedUTXO if decryption succeeds and the commitment
154
- * matches, or `null` if the note was not intended for this key.
155
- */
156
- export declare function decryptUTXONote(note: EncryptedNote, recipientPrivateKey: bigint, commitment: Uint8Array, mintAddress: PublicKey): SerializedUTXO | null;
157
- /** Note data stored inside a Blind Mailbox encrypted blob */
158
- export type BlindMailboxNoteData = {
159
- blinding: Uint8Array;
160
- leafIndex: number;
161
- commitment: Uint8Array;
162
- amount: bigint;
163
- mintAddress: string;
164
- treeId: number;
165
- };
166
- /** Encrypted note as returned by the relayer's /api/notes endpoint */
167
- export type BlindMailboxNote = {
168
- commitment: string;
169
- ephemeralPublicKey: string;
170
- encryptedBlob: string;
171
- timestamp?: number;
172
- blockHeight?: number;
173
- txSignature?: string;
174
- };
175
- /** Decrypted note data after calling decryptBlindMailboxNote */
176
- export type DecryptedNote = {
177
- blinding: Uint8Array;
178
- leafIndex: number;
179
- commitment: Uint8Array;
180
- amount: bigint;
181
- timestamp: number;
182
- mintAddress?: string;
183
- treeId: number;
184
- };
185
- /** Derive 32-byte encryption key from a shared secret using SHA-512 truncated.
186
- * Must match the production "sha256" helper which uses nacl.hash (SHA-512) [0:32].
187
- *
188
- * DO NOT "fix" this to real SHA-256. The name in the sibling implementations
189
- * (`sha256ForNotes`) is a misnomer, but the bytes are load-bearing: changing the
190
- * KDF makes every historical note undecryptable.
191
- *
192
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
193
- export declare function kdfSHA512_256(secret: Uint8Array): Uint8Array;
194
- /** Convert an Ed25519 private seed (32 bytes) to an X25519 scalar.
195
- * Equivalent to ed2curve.convertSecretKey(seed).
196
- *
197
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
198
- export declare function ed25519SeedToX25519Private(seed: Uint8Array): Uint8Array;
199
- /** Convert an Ed25519 compressed public key (32 bytes) to X25519.
200
- * Equivalent to ed2curve.convertPublicKey(pubkey).
201
- * Edwards y-coord → Montgomery u via: u = (1 + y) / (1 - y) (mod p).
202
- *
203
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
204
- export declare function ed25519PublicKeyToX25519(pubkey: Uint8Array): Uint8Array;
205
- /**
206
- * Encrypt a UTXO note for a recipient identified by their Solana wallet public key.
207
- * Produces a blob the relayer will store and serve via POST /notes/save.
208
- *
209
- * @param recipientWalletPubkey 32-byte Ed25519 public key (wallet.publicKey.toBytes())
210
- * @param noteData UTXO details to encrypt
211
- */
212
- export declare function encryptBlindMailboxNote(recipientWalletPubkey: Uint8Array, noteData: BlindMailboxNoteData): {
213
- ephemeralPublicKey: Uint8Array;
214
- encryptedBlob: string;
215
- };
216
- /**
217
- * Decrypt a Blind Mailbox note using the recipient's Solana wallet private seed.
218
- *
219
- * @param walletSecretKey Full 64-byte wallet.secretKey — the first 32 bytes are the seed
220
- * @param ephemeralPublicKey 32-byte raw public key stored alongside the encrypted blob.
221
- * This may be either an Ed25519 pubkey (from Keypair.generate())
222
- * or a raw X25519 pubkey — the decryption path handles both:
223
- * if it is an Ed25519 key it is converted; otherwise used directly.
224
- * @param encryptedBlob Base64 string as stored by the relayer
225
- */
226
- export declare function decryptBlindMailboxNote(walletSecretKey: Uint8Array, ephemeralPublicKey: Uint8Array, encryptedBlob: string): DecryptedNote;
227
- /**
228
- * Fetch all encrypted notes for a wallet from the relayer's Blind Mailbox endpoint
229
- * and decrypt them using the wallet's secret key.
230
- *
231
- * @param walletPublicKey Base58 wallet address used to query the relayer
232
- * @param walletSecretKey Full 64-byte keypair.secretKey for decryption
233
- * @param relayerUrl Relayer base URL (e.g. "https://relay.veilo.app")
234
- */
235
- export declare function fetchAndDecryptNotes(walletPublicKey: string, walletSecretKey: Uint8Array, relayerUrl: string): Promise<DecryptedNote[]>;
1
+ export * from "./notes/index.js";