@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
package/dist/cjs/utxo.js CHANGED
@@ -1,407 +1,18 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
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);
4
15
  };
5
16
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.generateKeypair = generateKeypair;
7
- exports.derivePublicKey = derivePublicKey;
8
- exports.keypairFromPrivateKey = keypairFromPrivateKey;
9
- exports.commitUTXO = commitUTXO;
10
- exports.createUTXO = createUTXO;
11
- exports.createOwnedUTXO = createOwnedUTXO;
12
- exports.createZeroUTXO = createZeroUTXO;
13
- exports.createOwnedZeroUTXO = createOwnedZeroUTXO;
14
- exports.computeSignature = computeSignature;
15
- exports.deriveNullifier = deriveNullifier;
16
- exports.inputUTXOToCircuitFormat = inputUTXOToCircuitFormat;
17
- exports.deriveEncryptionKeypair = deriveEncryptionKeypair;
18
- exports.encryptUTXONote = encryptUTXONote;
19
- exports.decryptUTXONote = decryptUTXONote;
20
- exports.kdfSHA512_256 = kdfSHA512_256;
21
- exports.ed25519SeedToX25519Private = ed25519SeedToX25519Private;
22
- exports.ed25519PublicKeyToX25519 = ed25519PublicKeyToX25519;
23
- exports.encryptBlindMailboxNote = encryptBlindMailboxNote;
24
- exports.decryptBlindMailboxNote = decryptBlindMailboxNote;
25
- exports.fetchAndDecryptNotes = fetchAndDecryptNotes;
26
- const random_js_1 = require("./random.js");
27
- const tweetnacl_1 = __importDefault(require("tweetnacl"));
28
- const sha256_1 = require("@noble/hashes/sha256");
29
- const poseidon_js_1 = require("./poseidon.js");
30
- // -----------------------------------------------------------------------------
31
- // Keypair Functions
32
- // -----------------------------------------------------------------------------
33
- /**
34
- * Generate a random keypair.
35
- * Private key is a random 32-byte scalar.
36
- * Public key is derived via Poseidon: pubkey = Poseidon(privateKey)
37
- */
38
- function generateKeypair() {
39
- const privateKeyBytes = new Uint8Array((0, random_js_1.randomBytes)(32));
40
- const privateKey = (0, poseidon_js_1.bytesToBigIntBE)(privateKeyBytes) % poseidon_js_1.BN254_FR_MODULUS;
41
- const publicKey = derivePublicKey(privateKey);
42
- return { privateKey, publicKey };
43
- }
44
- /**
45
- * Derive public key from private key.
46
- * Matches circuit's Keypair template: publicKey = Poseidon(privateKey)
47
- */
48
- function derivePublicKey(privateKey) {
49
- return (0, poseidon_js_1.poseidon1)(privateKey);
50
- }
51
- /**
52
- * Create keypair from a known private key.
53
- */
54
- function keypairFromPrivateKey(privateKey) {
55
- return {
56
- privateKey: privateKey % poseidon_js_1.BN254_FR_MODULUS,
57
- publicKey: derivePublicKey(privateKey % poseidon_js_1.BN254_FR_MODULUS),
58
- };
59
- }
60
- // -----------------------------------------------------------------------------
61
- // UTXO Commitment Functions
62
- // -----------------------------------------------------------------------------
63
- /**
64
- * Compute UTXO commitment.
65
- * Matches circuit's UTXOCommitment template:
66
- * commitment = Poseidon(amount, pubkey, blinding, mintAddress)
67
- */
68
- function commitUTXO(utxo) {
69
- const commitment = (0, poseidon_js_1.poseidon4)(utxo.amount, utxo.pubkey, utxo.blinding, utxo.mintAddress);
70
- return (0, poseidon_js_1.bigIntToBytesBE)(commitment);
71
- }
72
- /**
73
- * Create a random UTXO with the given parameters.
74
- */
75
- function createUTXO(params) {
76
- const blindingBytes = new Uint8Array((0, random_js_1.randomBytes)(32));
77
- const blinding = (0, poseidon_js_1.bytesToBigIntBE)(blindingBytes) % poseidon_js_1.BN254_FR_MODULUS;
78
- const utxo = {
79
- amount: params.amount,
80
- pubkey: params.pubkey,
81
- blinding,
82
- mintAddress: (0, poseidon_js_1.pubkeyToField)(params.mintAddress),
83
- };
84
- const commitment = commitUTXO(utxo);
85
- return {
86
- ...utxo,
87
- commitment,
88
- };
89
- }
90
- /**
91
- * Create a UTXO with a specified private key (for owned UTXOs).
92
- */
93
- function createOwnedUTXO(params) {
94
- const keypair = keypairFromPrivateKey(params.privateKey);
95
- const utxo = createUTXO({
96
- amount: params.amount,
97
- pubkey: keypair.publicKey,
98
- mintAddress: params.mintAddress,
99
- });
100
- return {
101
- ...utxo,
102
- privateKey: keypair.privateKey,
103
- };
104
- }
105
- /**
106
- * Create a zero UTXO (for deposits where no input exists).
107
- * Zero UTXOs have amount=0 and are used as placeholders in 2-in-2-out transactions.
108
- */
109
- function createZeroUTXO(pubkey, mintAddress) {
110
- return createUTXO({
111
- amount: 0n,
112
- pubkey,
113
- mintAddress,
114
- });
115
- }
116
- /**
117
- * Create a zero UTXO with private key (for owned zero UTXOs).
118
- */
119
- function createOwnedZeroUTXO(privateKey, mintAddress) {
120
- const keypair = keypairFromPrivateKey(privateKey);
121
- const utxo = createZeroUTXO(keypair.publicKey, mintAddress);
122
- return {
123
- ...utxo,
124
- privateKey: keypair.privateKey,
125
- };
126
- }
127
- // -----------------------------------------------------------------------------
128
- // Nullifier Functions
129
- // -----------------------------------------------------------------------------
130
- /**
131
- * Compute signature for nullifier derivation.
132
- * Matches circuit's Signature template:
133
- * signature = Poseidon(privateKey, commitment, pathIndex)
134
- */
135
- function computeSignature(privateKey, commitment, pathIndex) {
136
- return (0, poseidon_js_1.poseidon3)(privateKey, commitment, pathIndex);
137
- }
138
- /**
139
- * Derive nullifier for a UTXO.
140
- * Matches circuit's UTXONullifier template:
141
- * signature = Poseidon(privateKey, commitment, pathIndex)
142
- * nullifier = Poseidon(commitment, pathIndex, signature)
143
- *
144
- * The signature-based nullifier ensures only the private key holder can spend.
145
- */
146
- function deriveNullifier(utxo, pathIndex, privateKey) {
147
- const commitment = (0, poseidon_js_1.bytesToBigIntBE)(utxo.commitment) % poseidon_js_1.BN254_FR_MODULUS;
148
- const pathIndexField = BigInt(pathIndex) % poseidon_js_1.BN254_FR_MODULUS;
149
- const signature = computeSignature(privateKey, commitment, pathIndexField);
150
- const nullifier = (0, poseidon_js_1.poseidon3)(commitment, pathIndexField, signature);
151
- return (0, poseidon_js_1.bigIntToBytesBE)(nullifier);
152
- }
153
- /**
154
- * Convert InputUTXO to the format expected by the circuit.
155
- */
156
- function inputUTXOToCircuitFormat(input) {
157
- return {
158
- amount: input.amount,
159
- pubkey: input.pubkey,
160
- blinding: input.blinding,
161
- pathElements: input.pathElements.map((e) => (0, poseidon_js_1.bytesToBigIntBE)(e) % poseidon_js_1.BN254_FR_MODULUS),
162
- pathIndex: input.pathIndex,
163
- privateKey: input.privateKey,
164
- };
165
- }
166
- /**
167
- * Derive a NaCl X25519 encryption keypair from a UTXO private key.
168
- * The keypair is deterministic: same privateKey always yields the same pair.
169
- */
170
- function deriveEncryptionKeypair(privateKey) {
171
- const seed = (0, sha256_1.sha256)((0, poseidon_js_1.bigIntToBytesBE)(privateKey));
172
- return tweetnacl_1.default.box.keyPair.fromSecretKey(seed);
173
- }
174
- /**
175
- * Encrypt a UTXO so the recipient can recover it from on-chain events.
176
- *
177
- * Plaintext layout (72 bytes):
178
- * [0..8] amount — 8-byte little-endian u64
179
- * [8..40] blinding — 32-byte big-endian field element
180
- * [40..72] privateKey — 32-byte big-endian field element
181
- *
182
- * Uses ephemeral-key NaCl box so the sender key is single-use.
183
- */
184
- function encryptUTXONote(utxo, recipientEncPubkey) {
185
- const nonce = tweetnacl_1.default.randomBytes(tweetnacl_1.default.box.nonceLength); // 24 bytes
186
- const ephemeral = tweetnacl_1.default.box.keyPair();
187
- const amountBuf = new Uint8Array(8);
188
- let v = utxo.amount;
189
- for (let i = 0; i < 8; i++) {
190
- amountBuf[i] = Number(v & 0xffn);
191
- v >>= 8n;
192
- }
193
- const plaintext = new Uint8Array(72);
194
- plaintext.set(amountBuf, 0);
195
- plaintext.set((0, poseidon_js_1.bigIntToBytesBE)(utxo.blinding), 8);
196
- plaintext.set((0, poseidon_js_1.bigIntToBytesBE)(utxo.privateKey), 40);
197
- const sharedKey = tweetnacl_1.default.box.before(recipientEncPubkey, ephemeral.secretKey);
198
- const ciphertext = tweetnacl_1.default.box.after(plaintext, nonce, sharedKey);
199
- return { nonce, ciphertext, senderEphemeralPubkey: ephemeral.publicKey };
200
- }
201
- /**
202
- * Try to decrypt an encrypted UTXO note using the recipient's private key.
203
- * Returns the SerializedUTXO if decryption succeeds and the commitment
204
- * matches, or `null` if the note was not intended for this key.
205
- */
206
- function decryptUTXONote(note, recipientPrivateKey, commitment, mintAddress) {
207
- const { secretKey } = deriveEncryptionKeypair(recipientPrivateKey);
208
- const sharedKey = tweetnacl_1.default.box.before(note.senderEphemeralPubkey, secretKey);
209
- const plaintext = tweetnacl_1.default.box.open.after(note.ciphertext, note.nonce, sharedKey);
210
- if (!plaintext || plaintext.length < 72)
211
- return null;
212
- let amount = 0n;
213
- for (let i = 7; i >= 0; i--)
214
- amount = (amount << 8n) | BigInt(plaintext[i]);
215
- const blinding = (0, poseidon_js_1.bytesToBigIntBE)(plaintext.slice(8, 40)) % poseidon_js_1.BN254_FR_MODULUS;
216
- const privateKey = (0, poseidon_js_1.bytesToBigIntBE)(plaintext.slice(40, 72)) % poseidon_js_1.BN254_FR_MODULUS;
217
- const pubkey = derivePublicKey(privateKey);
218
- const utxo = {
219
- amount,
220
- pubkey,
221
- blinding,
222
- mintAddress: (0, poseidon_js_1.pubkeyToField)(mintAddress),
223
- };
224
- const expectedCommitment = commitUTXO(utxo);
225
- if (!expectedCommitment.every((b, i) => b === commitment[i]))
226
- return null;
227
- return { ...utxo, commitment, privateKey };
228
- }
229
- // -- Internal crypto helpers (no extra dependencies) --------------------------
230
- /** Derive 32-byte encryption key from a shared secret using SHA-512 truncated.
231
- * Must match the production "sha256" helper which uses nacl.hash (SHA-512) [0:32].
232
- *
233
- * DO NOT "fix" this to real SHA-256. The name in the sibling implementations
234
- * (`sha256ForNotes`) is a misnomer, but the bytes are load-bearing: changing the
235
- * KDF makes every historical note undecryptable.
236
- *
237
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
238
- function kdfSHA512_256(secret) {
239
- return tweetnacl_1.default.hash(secret).slice(0, 32);
240
- }
241
- /** Convert an Ed25519 private seed (32 bytes) to an X25519 scalar.
242
- * Equivalent to ed2curve.convertSecretKey(seed).
243
- *
244
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
245
- function ed25519SeedToX25519Private(seed) {
246
- const h = tweetnacl_1.default.hash(seed); // SHA-512
247
- const scalar = h.slice(0, 32);
248
- scalar[0] &= 248;
249
- scalar[31] &= 127;
250
- scalar[31] |= 64;
251
- return scalar;
252
- }
253
- const P25519 = (1n << 255n) - 19n;
254
- function modpow25519(b, e) {
255
- let r = 1n;
256
- b = b % P25519;
257
- while (e > 0n) {
258
- if (e & 1n)
259
- r = (r * b) % P25519;
260
- e >>= 1n;
261
- b = (b * b) % P25519;
262
- }
263
- return r;
264
- }
265
- /** Convert an Ed25519 compressed public key (32 bytes) to X25519.
266
- * Equivalent to ed2curve.convertPublicKey(pubkey).
267
- * Edwards y-coord → Montgomery u via: u = (1 + y) / (1 - y) (mod p).
268
- *
269
- * @internal Exported for `compactNote.ts`. Not part of the stable public API. */
270
- function ed25519PublicKeyToX25519(pubkey) {
271
- const pk = new Uint8Array(pubkey);
272
- pk[31] &= 0x7f; // clear sign bit to get y as LE integer
273
- // Decode little-endian y
274
- let y = 0n;
275
- for (let i = 31; i >= 0; i--)
276
- y = (y << 8n) | BigInt(pk[i]);
277
- // u = (1 + y) / (1 - y) mod p
278
- const num = (1n + y) % P25519;
279
- const den = (((1n - y) % P25519) + P25519) % P25519;
280
- const u = (num * modpow25519(den, P25519 - 2n)) % P25519;
281
- // Encode as 32-byte LE
282
- const out = new Uint8Array(32);
283
- let v = u;
284
- for (let i = 0; i < 32; i++) {
285
- out[i] = Number(v & 0xffn);
286
- v >>= 8n;
287
- }
288
- return out;
289
- }
290
- // -- Public API ---------------------------------------------------------------
291
- /**
292
- * Encrypt a UTXO note for a recipient identified by their Solana wallet public key.
293
- * Produces a blob the relayer will store and serve via POST /notes/save.
294
- *
295
- * @param recipientWalletPubkey 32-byte Ed25519 public key (wallet.publicKey.toBytes())
296
- * @param noteData UTXO details to encrypt
297
- */
298
- function encryptBlindMailboxNote(recipientWalletPubkey, noteData) {
299
- // 1. Generate ephemeral Ed25519 keypair seed
300
- const ephemeralSeed = (0, random_js_1.randomBytes)(32);
301
- // Ed25519 public key stored by relayer; dapp recovers X25519 via ed2curve.convertPublicKey()
302
- const ephemeralEdPublicKey = tweetnacl_1.default.sign.keyPair.fromSeed(new Uint8Array(ephemeralSeed)).publicKey;
303
- // X25519 scalar (ed2curve.convertSecretKey equivalent)
304
- const ephemeralX25519Private = ed25519SeedToX25519Private(new Uint8Array(ephemeralSeed));
305
- // X25519 public key (ed2curve.convertPublicKey equivalent)
306
- const recipientX25519Public = ed25519PublicKeyToX25519(recipientWalletPubkey);
307
- const sharedSecret = tweetnacl_1.default.scalarMult(ephemeralX25519Private, recipientX25519Public);
308
- const key = kdfSHA512_256(sharedSecret);
309
- // JSON format matches production relayer notes schema
310
- const hexArr = (b) => Array.from(b)
311
- .map((x) => x.toString(16).padStart(2, "0"))
312
- .join("");
313
- const noteJson = JSON.stringify({
314
- blinding: hexArr(noteData.blinding),
315
- leafIndex: noteData.leafIndex,
316
- commitment: hexArr(noteData.commitment),
317
- amount: noteData.amount.toString(),
318
- mintAddress: noteData.mintAddress,
319
- timestamp: Date.now(),
320
- treeId: noteData.treeId,
321
- });
322
- const nonce = tweetnacl_1.default.randomBytes(24);
323
- const plaintext = new TextEncoder().encode(noteJson);
324
- const encrypted = tweetnacl_1.default.secretbox(plaintext, nonce, key);
325
- const combined = new Uint8Array(nonce.length + encrypted.length);
326
- combined.set(nonce);
327
- combined.set(encrypted, nonce.length);
328
- const encryptedBlob = Buffer.from(combined).toString("base64");
329
- // Return Ed25519 public key (dapp calls ed2curve.convertPublicKey() to recover X25519)
330
- return { ephemeralPublicKey: ephemeralEdPublicKey, encryptedBlob };
331
- }
332
- /**
333
- * Decrypt a Blind Mailbox note using the recipient's Solana wallet private seed.
334
- *
335
- * @param walletSecretKey Full 64-byte wallet.secretKey — the first 32 bytes are the seed
336
- * @param ephemeralPublicKey 32-byte raw public key stored alongside the encrypted blob.
337
- * This may be either an Ed25519 pubkey (from Keypair.generate())
338
- * or a raw X25519 pubkey — the decryption path handles both:
339
- * if it is an Ed25519 key it is converted; otherwise used directly.
340
- * @param encryptedBlob Base64 string as stored by the relayer
341
- */
342
- function decryptBlindMailboxNote(walletSecretKey, ephemeralPublicKey, encryptedBlob) {
343
- // 1. Derive recipient X25519 from Ed25519 seed
344
- const seed = walletSecretKey.slice(0, 32);
345
- const myX25519Private = ed25519SeedToX25519Private(seed);
346
- // ephemeralPublicKey may be an Ed25519 pubkey (dapp's Keypair.generate()) or raw X25519;
347
- // try Ed25519→X25519 conversion first, fall back to using it directly.
348
- let theirPublic;
349
- try {
350
- theirPublic = ed25519PublicKeyToX25519(ephemeralPublicKey);
351
- }
352
- catch {
353
- theirPublic = ephemeralPublicKey; // already X25519
354
- }
355
- const sharedSecret = tweetnacl_1.default.scalarMult(myX25519Private, theirPublic);
356
- const key = kdfSHA512_256(sharedSecret);
357
- const combined = Buffer.from(encryptedBlob, "base64");
358
- const nonce = combined.slice(0, 24);
359
- const ciphertext = combined.slice(24);
360
- const decrypted = tweetnacl_1.default.secretbox.open(new Uint8Array(ciphertext), new Uint8Array(nonce), key);
361
- if (!decrypted) {
362
- throw new Error("decryptBlindMailboxNote: decryption failed — wrong key or corrupted blob");
363
- }
364
- const parsed = JSON.parse(new TextDecoder().decode(decrypted));
365
- const hexToBytes = (hex) => {
366
- const out = new Uint8Array(hex.length / 2);
367
- for (let i = 0; i < hex.length; i += 2)
368
- out[i / 2] = parseInt(hex.slice(i, i + 2), 16);
369
- return out;
370
- };
371
- return {
372
- blinding: hexToBytes(parsed.blinding),
373
- leafIndex: parsed.leafIndex,
374
- commitment: hexToBytes(parsed.commitment),
375
- amount: BigInt(parsed.amount),
376
- timestamp: parsed.timestamp ?? 0,
377
- mintAddress: parsed.mintAddress,
378
- treeId: parsed.treeId,
379
- };
380
- }
381
- /**
382
- * Fetch all encrypted notes for a wallet from the relayer's Blind Mailbox endpoint
383
- * and decrypt them using the wallet's secret key.
384
- *
385
- * @param walletPublicKey Base58 wallet address used to query the relayer
386
- * @param walletSecretKey Full 64-byte keypair.secretKey for decryption
387
- * @param relayerUrl Relayer base URL (e.g. "https://relay.veilo.app")
388
- */
389
- async function fetchAndDecryptNotes(walletPublicKey, walletSecretKey, relayerUrl) {
390
- const resp = await fetch(`${relayerUrl}/api/notes?recipientPublicKey=${walletPublicKey}`);
391
- if (!resp.ok) {
392
- throw new Error(`fetchAndDecryptNotes: ${resp.status} ${resp.statusText}`);
393
- }
394
- const { notes } = (await resp.json());
395
- const results = [];
396
- for (const note of notes) {
397
- try {
398
- const epk = Buffer.from(note.ephemeralPublicKey, "base64");
399
- const decrypted = decryptBlindMailboxNote(walletSecretKey, new Uint8Array(epk), note.encryptedBlob);
400
- results.push(decrypted);
401
- }
402
- catch {
403
- // Note not for this key or corrupted — skip silently
404
- }
405
- }
406
- return results;
407
- }
17
+ // Backward-compatible entry point. Note responsibilities live in src/notes.
18
+ __exportStar(require("./notes/index.js"), exports);
@@ -0,0 +1,84 @@
1
+ import * as anchor from "@coral-xyz/anchor";
2
+ import type { Program, Idl } from "@coral-xyz/anchor";
3
+ import { Keypair, PublicKey } from "@solana/web3.js";
4
+ import type { PrivacyConfigAccount } from "../config.js";
5
+ /**
6
+ * Initialize the global config (one-time setup).
7
+ */
8
+ export declare function initializeGlobalConfig<T extends Idl>(params: {
9
+ program: Program<T>;
10
+ admin: anchor.Wallet;
11
+ payer: Keypair;
12
+ }): Promise<void>;
13
+ /**
14
+ * Initialize a privacy pool with the new parameters.
15
+ * Creates the first merkle tree (tree ID 0).
16
+ */
17
+ export declare function initializePool<T extends Idl>(params: {
18
+ program: Program<T>;
19
+ admin: anchor.Wallet;
20
+ payer: Keypair;
21
+ feeBps: number;
22
+ mintAddress: PublicKey;
23
+ minDepositAmount?: bigint;
24
+ maxDepositAmount?: bigint;
25
+ minWithdrawAmount?: bigint;
26
+ maxWithdrawAmount?: bigint;
27
+ }): Promise<void>;
28
+ /**
29
+ * Update pool configuration.
30
+ */
31
+ export declare function updatePoolConfig<T extends Idl>(params: {
32
+ program: Program<T>;
33
+ admin: anchor.Wallet;
34
+ mintAddress: PublicKey;
35
+ minDepositAmount?: bigint;
36
+ maxDepositAmount?: bigint;
37
+ minWithdrawAmount?: bigint;
38
+ maxWithdrawAmount?: bigint;
39
+ feeBps?: number;
40
+ feeErrorMarginBps?: number;
41
+ minWithdrawalFee?: bigint;
42
+ minSwapFee?: bigint;
43
+ swapFeeBps?: number;
44
+ }): Promise<void>;
45
+ /**
46
+ * Add a new Merkle tree to the pool.
47
+ * The treeId must equal the current num_trees value in the pool config.
48
+ */
49
+ export declare function addMerkleTree<T extends Idl>(params: {
50
+ program: Program<T>;
51
+ relayer: Keypair;
52
+ mintAddress: PublicKey;
53
+ treeId: number;
54
+ }): Promise<void>;
55
+ /**
56
+ * Get the pool configuration account.
57
+ */
58
+ export declare function getPoolConfig<T extends Idl>(program: Program<T>, mintAddress: PublicKey): Promise<PrivacyConfigAccount>;
59
+ /**
60
+ * Add a relayer to the pool.
61
+ */
62
+ export declare function addRelayer<T extends Idl>(params: {
63
+ program: Program<T>;
64
+ admin: anchor.Wallet;
65
+ mintAddress: PublicKey;
66
+ newRelayer: PublicKey;
67
+ }): Promise<void>;
68
+ /**
69
+ * Set the paused state of a pool.
70
+ */
71
+ export declare function setPaused<T extends Idl>(params: {
72
+ program: Program<T>;
73
+ admin: anchor.Wallet;
74
+ mintAddress: PublicKey;
75
+ paused: boolean;
76
+ }): Promise<void>;
77
+ /**
78
+ * Update the global config.
79
+ * Currently takes no extra args — only admin verification.
80
+ */
81
+ export declare function updateGlobalConfig<T extends Idl>(params: {
82
+ program: Program<T>;
83
+ admin: anchor.Wallet;
84
+ }): Promise<void>;
@@ -0,0 +1,165 @@
1
+ import * as anchor from "@coral-xyz/anchor";
2
+ import { SystemProgram } from "@solana/web3.js";
3
+ import { getGlobalConfigPda, getNoteTreePda, getPoolPdas } from "./pdas.js";
4
+ // Anchor is CJS and does not expose BN as a detectable Node ESM named export.
5
+ const { BN } = anchor;
6
+ // -----------------------------------------------------------------------------
7
+ // Global Config Initialization
8
+ // -----------------------------------------------------------------------------
9
+ /**
10
+ * Initialize the global config (one-time setup).
11
+ */
12
+ export async function initializeGlobalConfig(params) {
13
+ const { program, admin, payer } = params;
14
+ const globalConfig = getGlobalConfigPda(program.programId);
15
+ await program.methods
16
+ .initializeGlobalConfig()
17
+ .accounts({
18
+ globalConfig,
19
+ admin: admin.publicKey,
20
+ payer: payer.publicKey,
21
+ systemProgram: SystemProgram.programId,
22
+ })
23
+ .signers([payer])
24
+ .rpc();
25
+ }
26
+ // -----------------------------------------------------------------------------
27
+ // Pool Initialization
28
+ // -----------------------------------------------------------------------------
29
+ /**
30
+ * Initialize a privacy pool with the new parameters.
31
+ * Creates the first merkle tree (tree ID 0).
32
+ */
33
+ export async function initializePool(params) {
34
+ const { program, admin, payer, feeBps, mintAddress, minDepositAmount, maxDepositAmount, minWithdrawAmount, maxWithdrawAmount, } = params;
35
+ const { config, vault, nullifiers } = getPoolPdas(program.programId, mintAddress);
36
+ const noteTree = getNoteTreePda(program.programId, mintAddress, 0);
37
+ await program.methods
38
+ .initialize(feeBps, mintAddress, minDepositAmount ? new BN(minDepositAmount.toString()) : null, maxDepositAmount ? new BN(maxDepositAmount.toString()) : null, minWithdrawAmount ? new BN(minWithdrawAmount.toString()) : null, maxWithdrawAmount ? new BN(maxWithdrawAmount.toString()) : null)
39
+ .accounts({
40
+ config,
41
+ vault,
42
+ noteTree,
43
+ nullifiers,
44
+ admin: admin.publicKey,
45
+ payer: payer.publicKey,
46
+ systemProgram: SystemProgram.programId,
47
+ })
48
+ .signers([payer])
49
+ .rpc();
50
+ }
51
+ // -----------------------------------------------------------------------------
52
+ // Pool Config Updates
53
+ // -----------------------------------------------------------------------------
54
+ /**
55
+ * Update pool configuration.
56
+ */
57
+ export async function updatePoolConfig(params) {
58
+ const { program, admin, mintAddress, minDepositAmount, maxDepositAmount, minWithdrawAmount, maxWithdrawAmount, feeBps, feeErrorMarginBps, minWithdrawalFee, minSwapFee, swapFeeBps, } = params;
59
+ const { config } = getPoolPdas(program.programId, mintAddress);
60
+ await program.methods
61
+ .updatePoolConfig(mintAddress, minDepositAmount ? new BN(minDepositAmount.toString()) : null, maxDepositAmount ? new BN(maxDepositAmount.toString()) : null, minWithdrawAmount ? new BN(minWithdrawAmount.toString()) : null, maxWithdrawAmount ? new BN(maxWithdrawAmount.toString()) : null, feeBps != null ? new BN(feeBps) : null, minWithdrawalFee ? new BN(minWithdrawalFee.toString()) : null, feeErrorMarginBps != null ? new BN(feeErrorMarginBps) : null, minSwapFee ? new BN(minSwapFee.toString()) : null, swapFeeBps != null ? new BN(swapFeeBps) : null)
62
+ .accounts({
63
+ config,
64
+ admin: admin.publicKey,
65
+ })
66
+ .rpc();
67
+ }
68
+ /**
69
+ * Add a new Merkle tree to the pool.
70
+ * The treeId must equal the current num_trees value in the pool config.
71
+ */
72
+ export async function addMerkleTree(params) {
73
+ const { program, relayer, mintAddress, treeId } = params;
74
+ const { config } = getPoolPdas(program.programId, mintAddress);
75
+ const noteTree = getNoteTreePda(program.programId, mintAddress, treeId);
76
+ await program.methods
77
+ .addMerkleTree(mintAddress, treeId)
78
+ .accounts({
79
+ config,
80
+ noteTree,
81
+ relayer: relayer.publicKey,
82
+ systemProgram: SystemProgram.programId,
83
+ })
84
+ .signers([relayer])
85
+ .rpc();
86
+ }
87
+ /**
88
+ * Get the pool configuration account.
89
+ */
90
+ export async function getPoolConfig(program, mintAddress) {
91
+ const { config } = getPoolPdas(program.programId, mintAddress);
92
+ const account = await program.account.privacyConfig.fetch(config);
93
+ return {
94
+ bump: account.bump,
95
+ vaultBump: account.vaultBump,
96
+ admin: account.admin,
97
+ feeBps: account.feeBps,
98
+ feeErrorMarginBps: account.feeErrorMarginBps,
99
+ minWithdrawalFee: BigInt(account.minWithdrawalFee.toString()),
100
+ minSwapFee: account.minSwapFee != null ? BigInt(account.minSwapFee.toString()) : 0n,
101
+ swapFeeBps: account.swapFeeBps ?? 0,
102
+ totalTvl: BigInt(account.totalTvl.toString()),
103
+ mintAddress: account.mintAddress,
104
+ minDepositAmount: BigInt(account.minDepositAmount.toString()),
105
+ maxDepositAmount: BigInt(account.maxDepositAmount.toString()),
106
+ minWithdrawAmount: BigInt(account.minWithdrawAmount.toString()),
107
+ maxWithdrawAmount: BigInt(account.maxWithdrawAmount.toString()),
108
+ numRelayers: account.numRelayers,
109
+ relayers: account.relayers,
110
+ numTrees: account.numTrees,
111
+ nextTreeIndex: account.nextTreeIndex,
112
+ };
113
+ }
114
+ // -----------------------------------------------------------------------------
115
+ // Relayer Management
116
+ // -----------------------------------------------------------------------------
117
+ /**
118
+ * Add a relayer to the pool.
119
+ */
120
+ export async function addRelayer(params) {
121
+ const { program, admin, mintAddress, newRelayer } = params;
122
+ const { config } = getPoolPdas(program.programId, mintAddress);
123
+ await program.methods
124
+ .addRelayer(mintAddress, newRelayer)
125
+ .accounts({
126
+ config,
127
+ admin: admin.publicKey,
128
+ })
129
+ .rpc();
130
+ }
131
+ // -----------------------------------------------------------------------------
132
+ // Pause/Unpause
133
+ // -----------------------------------------------------------------------------
134
+ /**
135
+ * Set the paused state of a pool.
136
+ */
137
+ export async function setPaused(params) {
138
+ const { program, admin, mintAddress, paused } = params;
139
+ const { config } = getPoolPdas(program.programId, mintAddress);
140
+ await program.methods
141
+ .setPaused(mintAddress, paused)
142
+ .accounts({
143
+ config,
144
+ admin: admin.publicKey,
145
+ })
146
+ .rpc();
147
+ }
148
+ // -----------------------------------------------------------------------------
149
+ // Global Config
150
+ // -----------------------------------------------------------------------------
151
+ /**
152
+ * Update the global config.
153
+ * Currently takes no extra args — only admin verification.
154
+ */
155
+ export async function updateGlobalConfig(params) {
156
+ const { program, admin } = params;
157
+ const globalConfig = getGlobalConfigPda(program.programId);
158
+ await program.methods
159
+ .updateGlobalConfig()
160
+ .accounts({
161
+ globalConfig,
162
+ admin: admin.publicKey,
163
+ })
164
+ .rpc();
165
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Convert a Solana/Anchor transaction error into a user-friendly message.
3
+ * Maps privacy_pool program error codes (6000–6060) to readable strings.
4
+ * Mirrors relayer-server/src/controllers/transaction.helpers.ts `parseOnChainError`.
5
+ */
6
+ export declare function parseOnChainError(error: any): string;