@veilo/sdk-core 0.4.0 → 0.6.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 (481) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +449 -1243
  3. package/accounts.d.ts +2 -0
  4. package/accounts.js +3 -0
  5. package/cloak.d.ts +2 -0
  6. package/cloak.js +3 -0
  7. package/config.d.ts +2 -2
  8. package/config.js +2 -3
  9. package/dist/cjs/accounts/admin.d.ts +84 -0
  10. package/dist/cjs/accounts/admin.js +208 -0
  11. package/dist/cjs/accounts/errors.d.ts +6 -0
  12. package/dist/cjs/accounts/errors.js +98 -0
  13. package/dist/cjs/accounts/index.d.ts +4 -0
  14. package/dist/cjs/accounts/index.js +20 -0
  15. package/dist/cjs/accounts/pdas.d.ts +23 -0
  16. package/dist/cjs/accounts/pdas.js +44 -0
  17. package/dist/cjs/accounts/queries.d.ts +41 -0
  18. package/dist/cjs/accounts/queries.js +95 -0
  19. package/dist/cjs/client.d.ts +2 -407
  20. package/dist/cjs/client.js +6 -938
  21. package/dist/cjs/cloak/client.d.ts +28 -0
  22. package/dist/cjs/cloak/client.js +68 -0
  23. package/dist/cjs/cloak/errors.d.ts +13 -0
  24. package/dist/cjs/cloak/errors.js +25 -0
  25. package/dist/cjs/cloak/helpers.d.ts +6 -0
  26. package/dist/cjs/cloak/helpers.js +35 -0
  27. package/dist/cjs/cloak/index.d.ts +6 -0
  28. package/dist/cjs/cloak/index.js +24 -0
  29. package/dist/cjs/cloak/polling.d.ts +7 -0
  30. package/dist/cjs/cloak/polling.js +66 -0
  31. package/dist/cjs/cloak/transport.d.ts +15 -0
  32. package/dist/cjs/cloak/transport.js +119 -0
  33. package/dist/cjs/cloak/types.d.ts +188 -0
  34. package/dist/cjs/cloak/types.js +5 -0
  35. package/dist/cjs/cloak.d.ts +1 -0
  36. package/dist/cjs/cloak.js +18 -0
  37. package/dist/cjs/compactNote.d.ts +21 -0
  38. package/dist/cjs/compactNote.js +31 -7
  39. package/dist/cjs/events/index.d.ts +6 -0
  40. package/dist/cjs/events/index.js +22 -0
  41. package/dist/cjs/events/parsing.d.ts +25 -0
  42. package/dist/cjs/events/parsing.js +158 -0
  43. package/dist/cjs/events/position.d.ts +26 -0
  44. package/dist/cjs/events/position.js +53 -0
  45. package/dist/cjs/events/recovery.d.ts +87 -0
  46. package/dist/cjs/events/recovery.js +281 -0
  47. package/dist/cjs/events/scanning.d.ts +35 -0
  48. package/dist/cjs/events/scanning.js +98 -0
  49. package/dist/cjs/events/tree.d.ts +27 -0
  50. package/dist/cjs/events/tree.js +63 -0
  51. package/dist/cjs/events/types.d.ts +39 -0
  52. package/dist/cjs/events.d.ts +1 -77
  53. package/dist/cjs/events.js +6 -154
  54. package/dist/cjs/identity/encoding.d.ts +9 -0
  55. package/dist/cjs/identity/encoding.js +85 -0
  56. package/dist/cjs/identity/index.d.ts +4 -0
  57. package/dist/cjs/identity/index.js +20 -0
  58. package/dist/cjs/identity/noteKey.d.ts +33 -0
  59. package/dist/cjs/identity/noteKey.js +97 -0
  60. package/dist/cjs/identity/spending.d.ts +18 -0
  61. package/dist/cjs/identity/spending.js +46 -0
  62. package/dist/cjs/identity/viewKey.d.ts +38 -0
  63. package/dist/cjs/identity/viewKey.js +105 -0
  64. package/dist/cjs/idl/index.d.ts +18 -0
  65. package/dist/cjs/idl/index.js +24 -0
  66. package/dist/cjs/idl/privacy_pool.json +9907 -9907
  67. package/dist/cjs/idl/privacy_pool_legacy.js +3307 -0
  68. package/dist/cjs/idl/privacy_pool_legacy.json +2302 -0
  69. package/dist/cjs/idl/privacy_pool_legacy2.d.ts +5 -0
  70. package/dist/cjs/idl/privacy_pool_legacy2.js +3397 -0
  71. package/dist/cjs/idl/privacy_pool_legacy2.json +2376 -0
  72. package/dist/cjs/index.d.ts +9 -3
  73. package/dist/cjs/index.js +15 -2
  74. package/dist/cjs/notes/amount.d.ts +2 -0
  75. package/dist/cjs/notes/amount.js +21 -0
  76. package/dist/cjs/notes/encryption.d.ts +41 -0
  77. package/dist/cjs/notes/encryption.js +75 -0
  78. package/dist/cjs/notes/index.d.ts +8 -0
  79. package/dist/cjs/notes/index.js +24 -0
  80. package/dist/cjs/notes/mailbox.d.ts +70 -0
  81. package/dist/cjs/notes/mailbox.js +164 -0
  82. package/dist/cjs/notes/model.d.ts +91 -0
  83. package/dist/cjs/notes/model.js +109 -0
  84. package/dist/cjs/notes/nullifier.d.ts +27 -0
  85. package/dist/cjs/notes/nullifier.js +45 -0
  86. package/dist/cjs/notes/recovery.d.ts +20 -0
  87. package/dist/cjs/notes/recovery.js +48 -0
  88. package/dist/cjs/notes/selection.d.ts +77 -0
  89. package/dist/cjs/notes/selection.js +193 -0
  90. package/dist/cjs/notes/spent.d.ts +60 -0
  91. package/dist/cjs/notes/spent.js +101 -0
  92. package/dist/cjs/perps/constants.d.ts +16 -0
  93. package/dist/cjs/perps/constants.js +52 -0
  94. package/dist/cjs/perps/index.d.ts +5 -0
  95. package/dist/cjs/perps/index.js +21 -0
  96. package/dist/cjs/perps/keys.d.ts +16 -0
  97. package/dist/cjs/perps/keys.js +43 -0
  98. package/dist/cjs/perps/pdas.d.ts +29 -0
  99. package/dist/cjs/perps/pdas.js +55 -0
  100. package/dist/cjs/perps/relayer.d.ts +9 -0
  101. package/dist/cjs/perps/relayer.js +35 -0
  102. package/dist/cjs/perps/types.d.ts +126 -0
  103. package/dist/cjs/perps/types.js +2 -0
  104. package/dist/cjs/positions/index.d.ts +4 -0
  105. package/dist/cjs/positions/index.js +20 -0
  106. package/dist/cjs/positions/keys.d.ts +29 -0
  107. package/dist/cjs/positions/keys.js +71 -0
  108. package/dist/cjs/positions/pdas.d.ts +15 -0
  109. package/dist/cjs/positions/pdas.js +54 -0
  110. package/dist/cjs/positions/relayer.d.ts +4 -0
  111. package/dist/cjs/positions/relayer.js +15 -0
  112. package/dist/cjs/positions/types.d.ts +97 -0
  113. package/dist/cjs/positions/types.js +2 -0
  114. package/dist/cjs/predictions/client.d.ts +41 -0
  115. package/dist/cjs/predictions/client.js +147 -0
  116. package/dist/cjs/predictions/index.d.ts +5 -0
  117. package/dist/cjs/predictions/index.js +21 -0
  118. package/dist/cjs/predictions/keys.d.ts +14 -0
  119. package/dist/cjs/predictions/keys.js +40 -0
  120. package/dist/cjs/predictions/pdas.d.ts +6 -0
  121. package/dist/cjs/predictions/pdas.js +13 -0
  122. package/dist/cjs/predictions/relayer.d.ts +3 -0
  123. package/dist/cjs/predictions/relayer.js +11 -0
  124. package/dist/cjs/predictions/types.d.ts +178 -0
  125. package/dist/cjs/predictions/types.js +2 -0
  126. package/dist/cjs/program.d.ts +2 -0
  127. package/dist/cjs/program.js +8 -7
  128. package/dist/cjs/proof.d.ts +1 -183
  129. package/dist/cjs/proof.js +16 -290
  130. package/dist/cjs/proofs/encoding.d.ts +17 -0
  131. package/dist/cjs/proofs/encoding.js +72 -0
  132. package/dist/cjs/proofs/formatting.d.ts +6 -0
  133. package/dist/cjs/proofs/formatting.js +34 -0
  134. package/dist/cjs/proofs/index.d.ts +5 -0
  135. package/dist/cjs/proofs/index.js +21 -0
  136. package/dist/cjs/proofs/swap.d.ts +87 -0
  137. package/dist/cjs/proofs/swap.js +144 -0
  138. package/dist/cjs/proofs/transaction.d.ts +28 -0
  139. package/dist/cjs/proofs/transaction.js +110 -0
  140. package/dist/cjs/proofs/types.d.ts +70 -0
  141. package/dist/cjs/proofs/types.js +2 -0
  142. package/dist/cjs/prover.d.ts +30 -4
  143. package/dist/cjs/prover.js +118 -49
  144. package/dist/cjs/relayer/api.d.ts +31 -0
  145. package/dist/cjs/relayer/api.js +86 -0
  146. package/dist/cjs/relayer/client.d.ts +73 -0
  147. package/dist/cjs/relayer/client.js +206 -0
  148. package/dist/cjs/relayer/crypto.d.ts +5 -0
  149. package/dist/cjs/relayer/crypto.js +26 -0
  150. package/dist/cjs/relayer/encoding.d.ts +2 -0
  151. package/dist/cjs/relayer/encoding.js +23 -0
  152. package/dist/cjs/relayer/errors.d.ts +7 -0
  153. package/dist/cjs/relayer/errors.js +17 -0
  154. package/dist/cjs/relayer/index.d.ts +6 -0
  155. package/dist/cjs/relayer/index.js +19 -0
  156. package/dist/cjs/relayer/internal-config.d.ts +36 -0
  157. package/dist/cjs/relayer/internal-config.js +9 -0
  158. package/dist/cjs/relayer/internal.d.ts +6 -0
  159. package/dist/cjs/relayer/internal.js +14 -0
  160. package/dist/cjs/relayer/transport.d.ts +19 -0
  161. package/dist/cjs/relayer/transport.js +68 -0
  162. package/dist/{src/relayer.d.ts → cjs/relayer/types.d.ts} +53 -96
  163. package/dist/cjs/relayer/types.js +5 -0
  164. package/dist/cjs/relayer.d.ts +1 -318
  165. package/dist/cjs/relayer.js +15 -254
  166. package/dist/cjs/shield/alt.js +8 -8
  167. package/dist/cjs/shield/errors.js +2 -2
  168. package/dist/cjs/shield/finalize.js +2 -2
  169. package/dist/cjs/shield/ix.d.ts +1 -1
  170. package/dist/cjs/shield/owner.js +9 -11
  171. package/dist/cjs/shield/ports.js +3 -3
  172. package/dist/cjs/shield/preflight.js +3 -3
  173. package/dist/cjs/shield/shield.js +20 -19
  174. package/dist/cjs/shield/types.d.ts +1 -1
  175. package/dist/cjs/transactions/deposit.d.ts +94 -0
  176. package/dist/cjs/transactions/deposit.js +234 -0
  177. package/dist/cjs/transactions/index.d.ts +7 -0
  178. package/dist/cjs/transactions/index.js +26 -0
  179. package/dist/cjs/transactions/swap.d.ts +71 -0
  180. package/dist/cjs/transactions/swap.js +184 -0
  181. package/dist/cjs/transactions/transact.d.ts +34 -0
  182. package/dist/cjs/transactions/transact.js +146 -0
  183. package/dist/cjs/transactions/transfer.d.ts +51 -0
  184. package/dist/cjs/transactions/transfer.js +106 -0
  185. package/dist/cjs/transactions/withdraw.d.ts +52 -0
  186. package/dist/cjs/transactions/withdraw.js +104 -0
  187. package/dist/cjs/utxo.d.ts +1 -235
  188. package/dist/cjs/utxo.js +15 -404
  189. package/dist/esm/accounts/admin.d.ts +84 -0
  190. package/dist/esm/accounts/admin.js +165 -0
  191. package/dist/esm/accounts/errors.d.ts +6 -0
  192. package/dist/esm/accounts/errors.js +95 -0
  193. package/dist/esm/accounts/index.d.ts +4 -0
  194. package/dist/esm/accounts/index.js +4 -0
  195. package/dist/esm/accounts/pdas.d.ts +23 -0
  196. package/dist/esm/accounts/pdas.js +38 -0
  197. package/dist/esm/accounts/queries.d.ts +41 -0
  198. package/dist/esm/accounts/queries.js +88 -0
  199. package/dist/esm/client.d.ts +2 -407
  200. package/dist/esm/client.js +3 -891
  201. package/dist/esm/cloak/client.d.ts +28 -0
  202. package/dist/esm/cloak/client.js +64 -0
  203. package/dist/esm/cloak/errors.d.ts +13 -0
  204. package/dist/esm/cloak/errors.js +21 -0
  205. package/dist/esm/cloak/helpers.d.ts +6 -0
  206. package/dist/esm/cloak/helpers.js +31 -0
  207. package/dist/esm/cloak/index.d.ts +6 -0
  208. package/dist/esm/cloak/index.js +6 -0
  209. package/dist/esm/cloak/polling.d.ts +7 -0
  210. package/dist/esm/cloak/polling.js +63 -0
  211. package/dist/esm/cloak/transport.d.ts +15 -0
  212. package/dist/esm/cloak/transport.js +115 -0
  213. package/dist/esm/cloak/types.d.ts +188 -0
  214. package/dist/esm/cloak/types.js +4 -0
  215. package/dist/esm/cloak.d.ts +1 -0
  216. package/dist/esm/cloak.js +2 -0
  217. package/dist/esm/compactNote.d.ts +21 -0
  218. package/dist/esm/compactNote.js +24 -1
  219. package/dist/esm/events/index.d.ts +6 -0
  220. package/dist/esm/events/index.js +6 -0
  221. package/dist/esm/events/parsing.d.ts +25 -0
  222. package/dist/esm/events/parsing.js +120 -0
  223. package/dist/esm/events/position.d.ts +26 -0
  224. package/dist/esm/events/position.js +48 -0
  225. package/dist/esm/events/recovery.d.ts +87 -0
  226. package/dist/esm/events/recovery.js +237 -0
  227. package/dist/esm/events/scanning.d.ts +35 -0
  228. package/dist/esm/events/scanning.js +92 -0
  229. package/dist/esm/events/tree.d.ts +27 -0
  230. package/dist/esm/events/tree.js +58 -0
  231. package/dist/esm/events/types.d.ts +39 -0
  232. package/dist/esm/events/types.js +1 -0
  233. package/dist/esm/events.d.ts +1 -77
  234. package/dist/esm/events.js +3 -129
  235. package/dist/esm/identity/encoding.d.ts +9 -0
  236. package/dist/esm/identity/encoding.js +75 -0
  237. package/dist/esm/identity/index.d.ts +4 -0
  238. package/dist/esm/identity/index.js +4 -0
  239. package/dist/esm/identity/noteKey.d.ts +33 -0
  240. package/dist/esm/identity/noteKey.js +91 -0
  241. package/dist/esm/identity/spending.d.ts +18 -0
  242. package/dist/esm/identity/spending.js +35 -0
  243. package/dist/esm/identity/viewKey.d.ts +38 -0
  244. package/dist/esm/identity/viewKey.js +96 -0
  245. package/dist/esm/idl/index.d.ts +18 -0
  246. package/dist/esm/idl/index.js +18 -0
  247. package/dist/esm/idl/privacy_pool.json +9907 -9907
  248. package/dist/esm/idl/privacy_pool_legacy.d.ts +5 -0
  249. package/dist/esm/idl/privacy_pool_legacy.js +3305 -0
  250. package/dist/esm/idl/privacy_pool_legacy.json +2302 -0
  251. package/dist/esm/idl/privacy_pool_legacy2.d.ts +5 -0
  252. package/dist/esm/idl/privacy_pool_legacy2.js +3395 -0
  253. package/dist/esm/idl/privacy_pool_legacy2.json +2376 -0
  254. package/dist/esm/index.d.ts +9 -3
  255. package/dist/esm/index.js +10 -3
  256. package/dist/esm/notes/amount.d.ts +2 -0
  257. package/dist/esm/notes/amount.js +18 -0
  258. package/dist/esm/notes/encryption.d.ts +41 -0
  259. package/dist/esm/notes/encryption.js +67 -0
  260. package/dist/esm/notes/index.d.ts +8 -0
  261. package/dist/esm/notes/index.js +8 -0
  262. package/dist/esm/notes/mailbox.d.ts +70 -0
  263. package/dist/esm/notes/mailbox.js +154 -0
  264. package/dist/esm/notes/model.d.ts +91 -0
  265. package/dist/esm/notes/model.js +99 -0
  266. package/dist/esm/notes/nullifier.d.ts +27 -0
  267. package/dist/esm/notes/nullifier.js +40 -0
  268. package/dist/esm/notes/recovery.d.ts +20 -0
  269. package/dist/esm/notes/recovery.js +45 -0
  270. package/dist/esm/notes/selection.d.ts +77 -0
  271. package/dist/esm/notes/selection.js +188 -0
  272. package/dist/esm/notes/spent.d.ts +60 -0
  273. package/dist/esm/notes/spent.js +96 -0
  274. package/dist/esm/perps/constants.d.ts +16 -0
  275. package/dist/esm/perps/constants.js +48 -0
  276. package/dist/esm/perps/index.d.ts +5 -0
  277. package/dist/esm/perps/index.js +5 -0
  278. package/dist/esm/perps/keys.d.ts +16 -0
  279. package/dist/esm/perps/keys.js +35 -0
  280. package/dist/esm/perps/pdas.d.ts +29 -0
  281. package/dist/esm/perps/pdas.js +47 -0
  282. package/dist/esm/perps/relayer.d.ts +9 -0
  283. package/dist/esm/perps/relayer.js +25 -0
  284. package/dist/esm/perps/types.d.ts +126 -0
  285. package/dist/esm/perps/types.js +1 -0
  286. package/dist/esm/positions/index.d.ts +4 -0
  287. package/dist/esm/positions/index.js +4 -0
  288. package/dist/esm/positions/keys.d.ts +29 -0
  289. package/dist/esm/positions/keys.js +65 -0
  290. package/dist/esm/positions/pdas.d.ts +15 -0
  291. package/dist/esm/positions/pdas.js +44 -0
  292. package/dist/esm/positions/relayer.d.ts +4 -0
  293. package/dist/esm/positions/relayer.js +10 -0
  294. package/dist/esm/positions/types.d.ts +97 -0
  295. package/dist/esm/positions/types.js +1 -0
  296. package/dist/esm/predictions/client.d.ts +41 -0
  297. package/dist/esm/predictions/client.js +141 -0
  298. package/dist/esm/predictions/index.d.ts +5 -0
  299. package/dist/esm/predictions/index.js +5 -0
  300. package/dist/esm/predictions/keys.d.ts +14 -0
  301. package/dist/esm/predictions/keys.js +33 -0
  302. package/dist/esm/predictions/pdas.d.ts +6 -0
  303. package/dist/esm/predictions/pdas.js +10 -0
  304. package/dist/esm/predictions/relayer.d.ts +3 -0
  305. package/dist/esm/predictions/relayer.js +7 -0
  306. package/dist/esm/predictions/types.d.ts +178 -0
  307. package/dist/esm/predictions/types.js +1 -0
  308. package/dist/esm/program.d.ts +2 -0
  309. package/dist/esm/program.js +4 -3
  310. package/dist/esm/proof.d.ts +1 -183
  311. package/dist/esm/proof.js +2 -281
  312. package/dist/esm/proofs/encoding.d.ts +17 -0
  313. package/dist/esm/proofs/encoding.js +68 -0
  314. package/dist/esm/proofs/formatting.d.ts +6 -0
  315. package/dist/esm/proofs/formatting.js +31 -0
  316. package/dist/esm/proofs/index.d.ts +5 -0
  317. package/dist/esm/proofs/index.js +5 -0
  318. package/dist/esm/proofs/swap.d.ts +87 -0
  319. package/dist/esm/proofs/swap.js +138 -0
  320. package/dist/esm/proofs/transaction.d.ts +28 -0
  321. package/dist/esm/proofs/transaction.js +105 -0
  322. package/dist/esm/proofs/types.d.ts +70 -0
  323. package/dist/esm/proofs/types.js +1 -0
  324. package/dist/esm/prover.d.ts +30 -4
  325. package/dist/esm/prover.js +115 -15
  326. package/dist/esm/relayer/api.d.ts +31 -0
  327. package/dist/esm/relayer/api.js +55 -0
  328. package/dist/esm/relayer/client.d.ts +73 -0
  329. package/dist/esm/relayer/client.js +199 -0
  330. package/dist/esm/relayer/crypto.d.ts +5 -0
  331. package/dist/esm/relayer/crypto.js +20 -0
  332. package/dist/esm/relayer/encoding.d.ts +2 -0
  333. package/dist/esm/relayer/encoding.js +19 -0
  334. package/dist/esm/relayer/errors.d.ts +7 -0
  335. package/dist/esm/relayer/errors.js +13 -0
  336. package/dist/esm/relayer/index.d.ts +6 -0
  337. package/dist/esm/relayer/index.js +3 -0
  338. package/dist/esm/relayer/internal-config.d.ts +36 -0
  339. package/dist/esm/relayer/internal-config.js +6 -0
  340. package/dist/esm/relayer/internal.d.ts +6 -0
  341. package/dist/esm/relayer/internal.js +10 -0
  342. package/dist/esm/relayer/transport.d.ts +19 -0
  343. package/dist/esm/relayer/transport.js +64 -0
  344. package/dist/esm/relayer/types.d.ts +275 -0
  345. package/dist/esm/relayer/types.js +4 -0
  346. package/dist/esm/relayer.d.ts +1 -318
  347. package/dist/esm/relayer.js +2 -249
  348. package/dist/esm/shield/alt.js +1 -1
  349. package/dist/esm/shield/errors.js +1 -1
  350. package/dist/esm/shield/finalize.js +1 -1
  351. package/dist/esm/shield/ix.d.ts +1 -1
  352. package/dist/esm/shield/owner.js +3 -5
  353. package/dist/esm/shield/ports.js +1 -1
  354. package/dist/esm/shield/preflight.js +1 -1
  355. package/dist/esm/shield/shield.js +4 -3
  356. package/dist/esm/shield/types.d.ts +1 -1
  357. package/dist/esm/transactions/deposit.d.ts +94 -0
  358. package/dist/esm/transactions/deposit.js +198 -0
  359. package/dist/esm/transactions/index.d.ts +7 -0
  360. package/dist/esm/transactions/index.js +7 -0
  361. package/dist/esm/transactions/swap.d.ts +71 -0
  362. package/dist/esm/transactions/swap.js +144 -0
  363. package/dist/esm/transactions/transact.d.ts +34 -0
  364. package/dist/esm/transactions/transact.js +110 -0
  365. package/dist/esm/transactions/transfer.d.ts +51 -0
  366. package/dist/esm/transactions/transfer.js +103 -0
  367. package/dist/esm/transactions/withdraw.d.ts +52 -0
  368. package/dist/esm/transactions/withdraw.js +101 -0
  369. package/dist/esm/utxo.d.ts +1 -235
  370. package/dist/esm/utxo.js +2 -382
  371. package/identity.d.ts +2 -0
  372. package/identity.js +3 -0
  373. package/idl.d.ts +2 -0
  374. package/idl.js +3 -0
  375. package/notes.d.ts +2 -0
  376. package/notes.js +3 -0
  377. package/package.json +131 -11
  378. package/perps.d.ts +2 -0
  379. package/perps.js +3 -0
  380. package/poseidon.d.ts +2 -2
  381. package/poseidon.js +2 -3
  382. package/positions.d.ts +2 -0
  383. package/positions.js +3 -0
  384. package/predictions.d.ts +2 -0
  385. package/predictions.js +3 -0
  386. package/proof.d.ts +2 -2
  387. package/proof.js +2 -3
  388. package/prover.d.ts +2 -2
  389. package/prover.js +2 -3
  390. package/relayer.d.ts +2 -0
  391. package/relayer.js +3 -0
  392. package/shield.d.ts +2 -2
  393. package/shield.js +2 -3
  394. package/transactions.d.ts +2 -0
  395. package/transactions.js +3 -0
  396. package/SHIELD_INTEGRATION.md +0 -143
  397. package/dist/src/client.d.ts +0 -407
  398. package/dist/src/client.js +0 -951
  399. package/dist/src/compactNote.d.ts +0 -107
  400. package/dist/src/compactNote.js +0 -167
  401. package/dist/src/config.d.ts +0 -82
  402. package/dist/src/config.js +0 -57
  403. package/dist/src/events.d.ts +0 -77
  404. package/dist/src/events.js +0 -167
  405. package/dist/src/idl/privacy_pool.js +0 -15218
  406. package/dist/src/index.d.ts +0 -16
  407. package/dist/src/index.js +0 -67
  408. package/dist/src/merkle.d.ts +0 -77
  409. package/dist/src/merkle.js +0 -156
  410. package/dist/src/poseidon.d.ts +0 -29
  411. package/dist/src/poseidon.js +0 -100
  412. package/dist/src/program.d.ts +0 -37
  413. package/dist/src/program.js +0 -61
  414. package/dist/src/proof.d.ts +0 -183
  415. package/dist/src/proof.js +0 -292
  416. package/dist/src/prover.d.ts +0 -54
  417. package/dist/src/prover.js +0 -112
  418. package/dist/src/random.d.ts +0 -16
  419. package/dist/src/random.js +0 -28
  420. package/dist/src/relayer.js +0 -257
  421. package/dist/src/retry.d.ts +0 -32
  422. package/dist/src/retry.js +0 -75
  423. package/dist/src/shield/alt.d.ts +0 -87
  424. package/dist/src/shield/alt.js +0 -194
  425. package/dist/src/shield/computeBudget.d.ts +0 -61
  426. package/dist/src/shield/computeBudget.js +0 -64
  427. package/dist/src/shield/errors.d.ts +0 -58
  428. package/dist/src/shield/errors.js +0 -121
  429. package/dist/src/shield/finalize.d.ts +0 -45
  430. package/dist/src/shield/finalize.js +0 -119
  431. package/dist/src/shield/index.d.ts +0 -35
  432. package/dist/src/shield/index.js +0 -68
  433. package/dist/src/shield/ix.d.ts +0 -54
  434. package/dist/src/shield/ix.js +0 -119
  435. package/dist/src/shield/owner.d.ts +0 -36
  436. package/dist/src/shield/owner.js +0 -126
  437. package/dist/src/shield/ports.d.ts +0 -43
  438. package/dist/src/shield/ports.js +0 -153
  439. package/dist/src/shield/preflight.d.ts +0 -30
  440. package/dist/src/shield/preflight.js +0 -154
  441. package/dist/src/shield/shield.d.ts +0 -68
  442. package/dist/src/shield/shield.js +0 -499
  443. package/dist/src/shield/types.d.ts +0 -202
  444. package/dist/src/utxo.d.ts +0 -235
  445. package/dist/src/utxo.js +0 -407
  446. package/dist/tests/compact-note.test.d.ts +0 -1
  447. package/dist/tests/compact-note.test.js +0 -173
  448. package/dist/tests/config.test.d.ts +0 -1
  449. package/dist/tests/config.test.js +0 -102
  450. package/dist/tests/edge-cases.test.d.ts +0 -1
  451. package/dist/tests/edge-cases.test.js +0 -220
  452. package/dist/tests/encryption.test.d.ts +0 -1
  453. package/dist/tests/encryption.test.js +0 -215
  454. package/dist/tests/events.test.d.ts +0 -1
  455. package/dist/tests/events.test.js +0 -78
  456. package/dist/tests/multi-tree.test.d.ts +0 -1
  457. package/dist/tests/multi-tree.test.js +0 -405
  458. package/dist/tests/pda.test.d.ts +0 -1
  459. package/dist/tests/pda.test.js +0 -229
  460. package/dist/tests/poseidon-builder-parity.test.d.ts +0 -1
  461. package/dist/tests/poseidon-builder-parity.test.js +0 -72
  462. package/dist/tests/poseidon.test.d.ts +0 -1
  463. package/dist/tests/poseidon.test.js +0 -142
  464. package/dist/tests/proof.test.d.ts +0 -1
  465. package/dist/tests/proof.test.js +0 -296
  466. package/dist/tests/relayer.test.d.ts +0 -1
  467. package/dist/tests/relayer.test.js +0 -271
  468. package/dist/tests/sdk.integration.test.d.ts +0 -1
  469. package/dist/tests/sdk.integration.test.js +0 -330
  470. package/dist/tests/shield-owner.test.d.ts +0 -1
  471. package/dist/tests/shield-owner.test.js +0 -89
  472. package/dist/tests/shield-preflight.test.d.ts +0 -1
  473. package/dist/tests/shield-preflight.test.js +0 -87
  474. package/dist/tests/shield-realproof.test.d.ts +0 -1
  475. package/dist/tests/shield-realproof.test.js +0 -272
  476. package/dist/tests/shield.test.d.ts +0 -1
  477. package/dist/tests/shield.test.js +0 -403
  478. package/dist/tests/utxo.test.d.ts +0 -1
  479. package/dist/tests/utxo.test.js +0 -140
  480. /package/dist/{src/shield → cjs/events}/types.js +0 -0
  481. /package/dist/{src/idl/privacy_pool.d.ts → cjs/idl/privacy_pool_legacy.d.ts} +0 -0
@@ -3,8 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveShieldOwner = resolveShieldOwner;
4
4
  exports.unsafeShieldOwner = unsafeShieldOwner;
5
5
  const web3_js_1 = require("@solana/web3.js");
6
- const relayer_js_1 = require("../relayer.js");
7
- const errors_js_1 = require("./errors.js");
6
+ const client_js_1 = require("../relayer/client.js");
7
+ const errors_js_1 = require("../relayer/errors.js");
8
+ const errors_js_2 = require("./errors.js");
8
9
  /**
9
10
  * Owner resolution is a Veilo protocol service, not an integrator-selected
10
11
  * transport. Keep the production endpoint and public encryption key inside the
@@ -16,10 +17,7 @@ const errors_js_1 = require("./errors.js");
16
17
  * inspectable. The two owner endpoints used below are intentionally public and
17
18
  * return public key material only.
18
19
  */
19
- const OWNER_RELAYER = new relayer_js_1.VeiloRelayerClient({
20
- apiKey: "",
21
- relayerPublicKey: "utVxnA7zax09qJCZ7UJsa8PAOoWLRcCwOkdxg/ZGmD4=",
22
- });
20
+ const OWNER_RELAYER = new client_js_1.VeiloRelayerClient();
23
21
  /**
24
22
  * Resolve a shield recipient into the pair of keys that must belong to the same
25
23
  * account.
@@ -54,13 +52,13 @@ async function resolveShieldOwner(target) {
54
52
  // public and idempotent, and returns only the Poseidon spend key; the
55
53
  // address we were given is the matching note-viewing key.
56
54
  if ("publicKey" in target &&
57
- (e?.status === 404 || (e instanceof relayer_js_1.VeiloApiError && e.status === 404))) {
55
+ (e?.status === 404 || (e instanceof errors_js_1.VeiloApiError && e.status === 404))) {
58
56
  const wallet = typeof target.publicKey === "string"
59
57
  ? new web3_js_1.PublicKey(target.publicKey)
60
58
  : target.publicKey;
61
59
  const provisioned = await OWNER_RELAYER.preRegisterKey(wallet.toBase58());
62
60
  if (!provisioned?.veiloPublicKey) {
63
- throw new errors_js_1.ShieldError("UNKNOWN", "The relayer pre-registered the recipient but returned no Veilo public key.", { context: { publicKey: wallet.toBase58(), response: provisioned }, cause: e });
61
+ throw new errors_js_2.ShieldError("UNKNOWN", "The relayer pre-registered the recipient but returned no Veilo public key.", { context: { publicKey: wallet.toBase58(), response: provisioned }, cause: e });
64
62
  }
65
63
  return {
66
64
  veiloPublicKey: BigInt(provisioned.veiloPublicKey),
@@ -75,7 +73,7 @@ async function resolveShieldOwner(target) {
75
73
  if (e?.body?.preRegistered ||
76
74
  e?.details?.preRegistered ||
77
75
  /preregistered/i.test(String(e?.message ?? ""))) {
78
- throw new errors_js_1.ShieldError("UNKNOWN", `"${"username" in target ? target.username : "that account"}" is pre-registered ` +
76
+ throw new errors_js_2.ShieldError("UNKNOWN", `"${"username" in target ? target.username : "that account"}" is pre-registered ` +
79
77
  `and cannot be resolved by username. Resolve it by Solana address instead — ` +
80
78
  `resolveShieldOwner({ publicKey }).`, { context: { preRegistered: true }, cause: e });
81
79
  }
@@ -84,7 +82,7 @@ async function resolveShieldOwner(target) {
84
82
  const veiloPublicKeyRaw = response?.veiloPublicKey;
85
83
  const walletRaw = response?.pubK;
86
84
  if (!veiloPublicKeyRaw || !walletRaw) {
87
- throw new errors_js_1.ShieldError("UNKNOWN", `The relayer did not return both keys for this recipient ` +
85
+ throw new errors_js_2.ShieldError("UNKNOWN", `The relayer did not return both keys for this recipient ` +
88
86
  `(veiloPublicKey=${!!veiloPublicKeyRaw}, pubK=${!!walletRaw}). ` +
89
87
  `Shielding without both would create a note the owner cannot find.`, { context: { response } });
90
88
  }
@@ -93,7 +91,7 @@ async function resolveShieldOwner(target) {
93
91
  !noteViewingKey.equals(typeof target.publicKey === "string"
94
92
  ? new web3_js_1.PublicKey(target.publicKey)
95
93
  : target.publicKey)) {
96
- throw new errors_js_1.ShieldError("UNKNOWN", "The Veilo owner service returned a different wallet than the one requested. " +
94
+ throw new errors_js_2.ShieldError("UNKNOWN", "The Veilo owner service returned a different wallet than the one requested. " +
97
95
  "Shielding was stopped to prevent creating a note for the wrong recipient.", {
98
96
  context: {
99
97
  requested: typeof target.publicKey === "string"
@@ -5,7 +5,7 @@ exports.staticTreeSource = staticTreeSource;
5
5
  exports.memoryCache = memoryCache;
6
6
  exports.noCache = noCache;
7
7
  const program_js_1 = require("../program.js");
8
- const client_js_1 = require("../client.js");
8
+ const pdas_js_1 = require("../accounts/pdas.js");
9
9
  const config_js_1 = require("../config.js");
10
10
  const errors_js_1 = require("./errors.js");
11
11
  /**
@@ -36,7 +36,7 @@ function onChainTreeSource(connection, programId = program_js_1.PRIVACY_POOL_PRO
36
36
  return {
37
37
  async getDepositTarget(mint) {
38
38
  const program = (0, program_js_1.createReadonlyVeiloProgram)(connection);
39
- const { config } = (0, client_js_1.getPoolPdas)(programId, mint);
39
+ const { config } = (0, pdas_js_1.getPoolPdas)(programId, mint);
40
40
  const cfg = await program.account.privacyConfig.fetch(config);
41
41
  const numTrees = Number(cfg.numTrees);
42
42
  if (!Number.isInteger(numTrees) || numTrees <= 0) {
@@ -44,7 +44,7 @@ function onChainTreeSource(connection, programId = program_js_1.PRIVACY_POOL_PRO
44
44
  }
45
45
  // Fetch every tree in one RPC call. The older getBestTreeForDeposit path
46
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));
47
+ const treePdas = Array.from({ length: numTrees }, (_, treeId) => (0, pdas_js_1.getNoteTreePda)(programId, mint, treeId));
48
48
  const infos = await connection.getMultipleAccountsInfo(treePdas, {
49
49
  commitment: "confirmed",
50
50
  });
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.preflightShield = preflightShield;
4
4
  const spl_token_1 = require("@solana/spl-token");
5
- const client_js_1 = require("../client.js");
5
+ const pdas_js_1 = require("../accounts/pdas.js");
6
6
  const program_js_1 = require("../program.js");
7
7
  const config_js_1 = require("../config.js");
8
8
  const errors_js_1 = require("./errors.js");
@@ -27,7 +27,7 @@ async function preflightShield(params) {
27
27
  // --- Pool state ------------------------------------------------------------
28
28
  if (!options.skipPoolState) {
29
29
  const program = (0, program_js_1.createReadonlyVeiloProgram)(connection);
30
- const { config } = (0, client_js_1.getPoolPdas)(programId, mint);
30
+ const { config } = (0, pdas_js_1.getPoolPdas)(programId, mint);
31
31
  let cfg;
32
32
  try {
33
33
  cfg = await program.account.privacyConfig.fetch(config);
@@ -103,7 +103,7 @@ async function preflightShield(params) {
103
103
  }
104
104
  // The vault's ATA must already exist — the program requires the canonical
105
105
  // one and will not create it.
106
- const { vault } = (0, client_js_1.getPoolPdas)(programId, mint);
106
+ const { vault } = (0, pdas_js_1.getPoolPdas)(programId, mint);
107
107
  const vaultAta = await (0, spl_token_1.getAssociatedTokenAddress)(mint, vault, true);
108
108
  const vaultInfo = await connection.getAccountInfo(vaultAta);
109
109
  if (!vaultInfo) {
@@ -8,14 +8,15 @@ exports.deserializeProofCache = deserializeProofCache;
8
8
  const web3_js_1 = require("@solana/web3.js");
9
9
  const spl_token_1 = require("@solana/spl-token");
10
10
  const program_js_1 = require("../program.js");
11
- const client_js_1 = require("../client.js");
11
+ const pdas_js_1 = require("../accounts/pdas.js");
12
12
  const config_js_1 = require("../config.js");
13
13
  const poseidon_js_1 = require("../poseidon.js");
14
14
  Object.defineProperty(exports, "bytesToBigIntBE", { enumerable: true, get: function () { return poseidon_js_1.bytesToBigIntBE; } });
15
15
  Object.defineProperty(exports, "BN254_FR_MODULUS", { enumerable: true, get: function () { return poseidon_js_1.BN254_FR_MODULUS; } });
16
16
  const merkle_js_1 = require("../merkle.js");
17
- const utxo_js_1 = require("../utxo.js");
18
- const proof_js_1 = require("../proof.js");
17
+ const model_js_1 = require("../notes/model.js");
18
+ const transaction_js_1 = require("../proofs/transaction.js");
19
+ const encoding_js_1 = require("../proofs/encoding.js");
19
20
  const compactNote_js_1 = require("../compactNote.js");
20
21
  const ix_js_1 = require("./ix.js");
21
22
  const alt_js_1 = require("./alt.js");
@@ -114,14 +115,14 @@ async function shield(params) {
114
115
  // --- 3. Outputs ------------------------------------------------------------
115
116
  // Output 0 carries the value and is owned by the recipient. Output 1 is a
116
117
  // zero-value dummy the 2-in-2-out circuit requires.
117
- const outputNote = (0, utxo_js_1.createUTXO)({
118
+ const outputNote = (0, model_js_1.createUTXO)({
118
119
  amount,
119
120
  pubkey: owner.veiloPublicKey,
120
121
  mintAddress: mint,
121
122
  });
122
- const dummyOutput = (0, utxo_js_1.createUTXO)({
123
+ const dummyOutput = (0, model_js_1.createUTXO)({
123
124
  amount: 0n,
124
- pubkey: (0, utxo_js_1.generateKeypair)().publicKey,
125
+ pubkey: (0, model_js_1.generateKeypair)().publicKey,
125
126
  mintAddress: mint,
126
127
  });
127
128
  // --- 4. Dummy inputs -------------------------------------------------------
@@ -130,8 +131,8 @@ async function shield(params) {
130
131
  // blinding randomness; two keys make it structural.
131
132
  const zeroChain = (0, merkle_js_1.poseidonZeroChain)(22).slice(0, 22);
132
133
  const dummyInputs = [
133
- toDummyInput((0, utxo_js_1.createOwnedZeroUTXO)((0, utxo_js_1.generateKeypair)().privateKey, mint), zeroChain),
134
- toDummyInput((0, utxo_js_1.createOwnedZeroUTXO)((0, utxo_js_1.generateKeypair)().privateKey, mint), zeroChain),
134
+ toDummyInput((0, model_js_1.createOwnedZeroUTXO)((0, model_js_1.generateKeypair)().privateKey, mint), zeroChain),
135
+ toDummyInput((0, model_js_1.createOwnedZeroUTXO)((0, model_js_1.generateKeypair)().privateKey, mint), zeroChain),
135
136
  ];
136
137
  // --- 5. ExtData ------------------------------------------------------------
137
138
  // For a deposit these slots carry no payment semantics — no fee is taken and
@@ -144,9 +145,9 @@ async function shield(params) {
144
145
  refund: 0n,
145
146
  claimant: web3_js_1.SystemProgram.programId,
146
147
  };
147
- const extDataHash = (0, proof_js_1.computeExtDataHash)(extData);
148
+ const extDataHash = (0, transaction_js_1.computeExtDataHash)(extData);
148
149
  // --- 6. Prove --------------------------------------------------------------
149
- const circuitInputs = (0, proof_js_1.prepareTransactionInputs)({
150
+ const circuitInputs = (0, transaction_js_1.prepareTransactionInputs)({
150
151
  inputUTXOs: dummyInputs,
151
152
  outputUTXOs: [outputNote, dummyOutput],
152
153
  root: target.inputRoot,
@@ -156,7 +157,7 @@ async function shield(params) {
156
157
  });
157
158
  let proof;
158
159
  try {
159
- proof = (0, proof_js_1.encodeSnarkjsProofToTransactionProof)(await prover(circuitInputs));
160
+ proof = (0, encoding_js_1.encodeSnarkjsProofToTransactionProof)(await prover(circuitInputs));
160
161
  }
161
162
  catch (e) {
162
163
  throw (0, errors_js_1.mapShieldError)(e);
@@ -176,8 +177,8 @@ async function shield(params) {
176
177
  outputTreeId: target.outputTreeId,
177
178
  inputNullifiers: circuitInputs.inputNullifiers,
178
179
  vaultTokenAccount: isToken
179
- ? await (0, spl_token_1.getAssociatedTokenAddress)(mint, (0, client_js_1.getPoolPdas)(programId, mint).vault, true)
180
- : (0, client_js_1.getPoolPdas)(programId, mint).vault,
180
+ ? await (0, spl_token_1.getAssociatedTokenAddress)(mint, (0, pdas_js_1.getPoolPdas)(programId, mint).vault, true)
181
+ : (0, pdas_js_1.getPoolPdas)(programId, mint).vault,
181
182
  isToken,
182
183
  });
183
184
  // --- 9. Cache everything needed to rebuild ---------------------------------
@@ -452,16 +453,16 @@ function toDummyInput(utxo, zeroChain) {
452
453
  }
453
454
  function resolveTransactAccounts(params) {
454
455
  const { programId, mint, signer } = params;
455
- const { config, vault, nullifiers } = (0, client_js_1.getPoolPdas)(programId, mint);
456
+ const { config, vault, nullifiers } = (0, pdas_js_1.getPoolPdas)(programId, mint);
456
457
  return {
457
458
  config,
458
- global_config: (0, client_js_1.getGlobalConfigPda)(programId),
459
+ global_config: (0, pdas_js_1.getGlobalConfigPda)(programId),
459
460
  vault,
460
- input_tree: (0, client_js_1.getNoteTreePda)(programId, mint, params.inputTreeId),
461
- output_tree: (0, client_js_1.getNoteTreePda)(programId, mint, params.outputTreeId),
461
+ input_tree: (0, pdas_js_1.getNoteTreePda)(programId, mint, params.inputTreeId),
462
+ output_tree: (0, pdas_js_1.getNoteTreePda)(programId, mint, params.outputTreeId),
462
463
  nullifiers,
463
- nullifier_marker_0: (0, client_js_1.getNullifierMarkerPda)(programId, mint, params.inputNullifiers[0]),
464
- nullifier_marker_1: (0, client_js_1.getNullifierMarkerPda)(programId, mint, params.inputNullifiers[1]),
464
+ nullifier_marker_0: (0, pdas_js_1.getNullifierMarkerPda)(programId, mint, params.inputNullifiers[0]),
465
+ nullifier_marker_1: (0, pdas_js_1.getNullifierMarkerPda)(programId, mint, params.inputNullifiers[1]),
465
466
  relayer: signer,
466
467
  // For a deposit nothing is withdrawn, so `recipient` is just the signer.
467
468
  // Pointing the unused token slots at accounts already in the transaction
@@ -1,5 +1,5 @@
1
1
  import { AddressLookupTableAccount, Connection, PublicKey, VersionedTransaction } from "@solana/web3.js";
2
- import type { TransactionProofBuilder, TransactionProofStruct } from "../proof.js";
2
+ import type { TransactionProofBuilder, TransactionProofStruct } from "../proofs/types.js";
3
3
  import type { CompactNoteCipher } from "../compactNote.js";
4
4
  /**
5
5
  * Who owns the resulting note. Both halves are required and neither is derived
@@ -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; } });