@aztec/pxe 0.0.1-commit.5daedc8 → 0.0.1-commit.6201a7b05

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 (435) hide show
  1. package/dest/bin/check_oracle_version.js +107 -17
  2. package/dest/block_synchronizer/block_stream_source.d.ts +10 -0
  3. package/dest/block_synchronizer/block_stream_source.d.ts.map +1 -0
  4. package/dest/block_synchronizer/block_stream_source.js +37 -0
  5. package/dest/block_synchronizer/block_synchronizer.d.ts +49 -0
  6. package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -0
  7. package/dest/block_synchronizer/block_synchronizer.js +173 -0
  8. package/dest/block_synchronizer/index.d.ts +2 -0
  9. package/dest/block_synchronizer/index.d.ts.map +1 -0
  10. package/dest/block_synchronizer/index.js +1 -0
  11. package/dest/config/index.d.ts +7 -5
  12. package/dest/config/index.d.ts.map +1 -1
  13. package/dest/config/index.js +12 -2
  14. package/dest/config/package_info.js +1 -1
  15. package/dest/contract_function_simulator/benchmarked_node.d.ts +9 -0
  16. package/dest/contract_function_simulator/benchmarked_node.d.ts.map +1 -0
  17. package/dest/contract_function_simulator/benchmarked_node.js +77 -0
  18. package/dest/contract_function_simulator/contract_function_simulator.d.ts +84 -24
  19. package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
  20. package/dest/contract_function_simulator/contract_function_simulator.js +252 -82
  21. package/dest/contract_function_simulator/ephemeral_array_service.d.ts +28 -0
  22. package/dest/contract_function_simulator/ephemeral_array_service.d.ts.map +1 -0
  23. package/dest/contract_function_simulator/ephemeral_array_service.js +78 -0
  24. package/dest/contract_function_simulator/execution_note_cache.d.ts +21 -11
  25. package/dest/contract_function_simulator/execution_note_cache.d.ts.map +1 -1
  26. package/dest/contract_function_simulator/execution_note_cache.js +49 -31
  27. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts +7 -7
  28. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts.map +1 -1
  29. package/dest/contract_function_simulator/execution_tagging_index_cache.js +19 -11
  30. package/dest/contract_function_simulator/hashed_values_cache.d.ts +2 -2
  31. package/dest/contract_function_simulator/hashed_values_cache.d.ts.map +1 -1
  32. package/dest/contract_function_simulator/index.d.ts +3 -2
  33. package/dest/contract_function_simulator/index.d.ts.map +1 -1
  34. package/dest/contract_function_simulator/index.js +2 -1
  35. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts +7 -8
  36. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts.map +1 -1
  37. package/dest/contract_function_simulator/noir-structs/event_validation_request.js +12 -11
  38. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts +6 -5
  39. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts.map +1 -1
  40. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.js +8 -7
  41. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts +3 -3
  42. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts.map +1 -1
  43. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.js +3 -5
  44. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts +7 -9
  45. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts.map +1 -1
  46. package/dest/contract_function_simulator/noir-structs/note_validation_request.js +10 -12
  47. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts +4 -10
  48. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts.map +1 -1
  49. package/dest/contract_function_simulator/noir-structs/utility_context.js +7 -18
  50. package/dest/contract_function_simulator/oracle/interfaces.d.ts +73 -50
  51. package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
  52. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.d.ts +9 -0
  53. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.d.ts.map +1 -0
  54. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.js +47 -0
  55. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts +4 -2
  56. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts.map +1 -1
  57. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.js +1 -1
  58. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts +11 -7
  59. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts.map +1 -1
  60. package/dest/contract_function_simulator/oracle/note_packing_utils.js +14 -10
  61. package/dest/contract_function_simulator/oracle/oracle.d.ts +75 -42
  62. package/dest/contract_function_simulator/oracle/oracle.d.ts.map +1 -1
  63. package/dest/contract_function_simulator/oracle/oracle.js +340 -120
  64. package/dest/contract_function_simulator/oracle/private_execution.d.ts +2 -27
  65. package/dest/contract_function_simulator/oracle/private_execution.d.ts.map +1 -1
  66. package/dest/contract_function_simulator/oracle/private_execution.js +6 -40
  67. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +72 -87
  68. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
  69. package/dest/contract_function_simulator/oracle/private_execution_oracle.js +153 -127
  70. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +168 -58
  71. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
  72. package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +403 -108
  73. package/dest/contract_function_simulator/pick_notes.d.ts +2 -2
  74. package/dest/contract_function_simulator/pick_notes.d.ts.map +1 -1
  75. package/dest/contract_function_simulator/pick_notes.js +21 -4
  76. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts +4 -4
  77. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts.map +1 -1
  78. package/dest/contract_function_simulator/proxied_contract_data_source.js +26 -5
  79. package/dest/contract_logging.d.ts +27 -0
  80. package/dest/contract_logging.d.ts.map +1 -0
  81. package/dest/contract_logging.js +38 -0
  82. package/dest/contract_sync/contract_sync_service.d.ts +44 -0
  83. package/dest/contract_sync/contract_sync_service.d.ts.map +1 -0
  84. package/dest/contract_sync/contract_sync_service.js +116 -0
  85. package/dest/contract_sync/helpers.d.ts +28 -0
  86. package/dest/contract_sync/helpers.d.ts.map +1 -0
  87. package/dest/contract_sync/helpers.js +60 -0
  88. package/dest/debug/pxe_debug_utils.d.ts +45 -0
  89. package/dest/debug/pxe_debug_utils.d.ts.map +1 -0
  90. package/dest/debug/pxe_debug_utils.js +48 -0
  91. package/dest/entrypoints/client/bundle/index.d.ts +3 -2
  92. package/dest/entrypoints/client/bundle/index.d.ts.map +1 -1
  93. package/dest/entrypoints/client/bundle/index.js +2 -1
  94. package/dest/entrypoints/client/bundle/utils.d.ts +2 -2
  95. package/dest/entrypoints/client/bundle/utils.d.ts.map +1 -1
  96. package/dest/entrypoints/client/bundle/utils.js +32 -9
  97. package/dest/entrypoints/client/lazy/index.d.ts +3 -2
  98. package/dest/entrypoints/client/lazy/index.d.ts.map +1 -1
  99. package/dest/entrypoints/client/lazy/index.js +2 -1
  100. package/dest/entrypoints/client/lazy/utils.d.ts +3 -3
  101. package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
  102. package/dest/entrypoints/client/lazy/utils.js +33 -10
  103. package/dest/entrypoints/pxe_creation_options.d.ts +9 -3
  104. package/dest/entrypoints/pxe_creation_options.d.ts.map +1 -1
  105. package/dest/entrypoints/pxe_creation_options.js +3 -1
  106. package/dest/entrypoints/server/index.d.ts +6 -3
  107. package/dest/entrypoints/server/index.d.ts.map +1 -1
  108. package/dest/entrypoints/server/index.js +5 -2
  109. package/dest/entrypoints/server/utils.d.ts +2 -2
  110. package/dest/entrypoints/server/utils.d.ts.map +1 -1
  111. package/dest/entrypoints/server/utils.js +39 -16
  112. package/dest/error_enriching.d.ts +4 -4
  113. package/dest/error_enriching.d.ts.map +1 -1
  114. package/dest/error_enriching.js +6 -6
  115. package/dest/events/event_service.d.ts +16 -0
  116. package/dest/events/event_service.d.ts.map +1 -0
  117. package/dest/events/event_service.js +65 -0
  118. package/dest/events/index.d.ts +2 -0
  119. package/dest/events/index.d.ts.map +1 -0
  120. package/dest/events/index.js +1 -0
  121. package/dest/events/private_event_filter_validator.d.ts +10 -0
  122. package/dest/events/private_event_filter_validator.d.ts.map +1 -0
  123. package/dest/events/private_event_filter_validator.js +53 -0
  124. package/dest/job_coordinator/job_coordinator.d.ts +75 -0
  125. package/dest/job_coordinator/job_coordinator.d.ts.map +1 -0
  126. package/dest/job_coordinator/job_coordinator.js +94 -0
  127. package/dest/logs/log_service.d.ts +28 -0
  128. package/dest/logs/log_service.d.ts.map +1 -0
  129. package/dest/logs/log_service.js +108 -0
  130. package/dest/messages/message_context_service.d.ts +17 -0
  131. package/dest/messages/message_context_service.d.ts.map +1 -0
  132. package/dest/messages/message_context_service.js +36 -0
  133. package/dest/notes/index.d.ts +2 -0
  134. package/dest/notes/index.d.ts.map +1 -0
  135. package/dest/notes/index.js +1 -0
  136. package/dest/notes/note_service.d.ts +48 -0
  137. package/dest/notes/note_service.d.ts.map +1 -0
  138. package/dest/notes/note_service.js +157 -0
  139. package/dest/notes_filter.d.ts +24 -0
  140. package/dest/notes_filter.d.ts.map +1 -0
  141. package/dest/notes_filter.js +4 -0
  142. package/dest/oracle_version.d.ts +4 -3
  143. package/dest/oracle_version.d.ts.map +1 -1
  144. package/dest/oracle_version.js +20 -9
  145. package/dest/private_kernel/hints/compute_tx_expiration_timestamp.d.ts +4 -0
  146. package/dest/private_kernel/hints/compute_tx_expiration_timestamp.d.ts.map +1 -0
  147. package/dest/private_kernel/hints/{compute_tx_include_by_timestamp.js → compute_tx_expiration_timestamp.js} +12 -12
  148. package/dest/private_kernel/hints/index.d.ts +3 -3
  149. package/dest/private_kernel/hints/index.d.ts.map +1 -1
  150. package/dest/private_kernel/hints/index.js +2 -2
  151. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts +29 -0
  152. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts.map +1 -0
  153. package/dest/private_kernel/hints/{build_private_kernel_reset_private_inputs.js → private_kernel_reset_private_inputs_builder.js} +141 -74
  154. package/dest/private_kernel/hints/test_utils.d.ts +122 -0
  155. package/dest/private_kernel/hints/test_utils.d.ts.map +1 -0
  156. package/dest/private_kernel/hints/test_utils.js +203 -0
  157. package/dest/private_kernel/private_kernel_execution_prover.d.ts +3 -2
  158. package/dest/private_kernel/private_kernel_execution_prover.d.ts.map +1 -1
  159. package/dest/private_kernel/private_kernel_execution_prover.js +28 -27
  160. package/dest/private_kernel/private_kernel_oracle.d.ts +27 -26
  161. package/dest/private_kernel/private_kernel_oracle.d.ts.map +1 -1
  162. package/dest/private_kernel/private_kernel_oracle.js +91 -2
  163. package/dest/pxe.d.ts +128 -103
  164. package/dest/pxe.d.ts.map +1 -1
  165. package/dest/pxe.js +318 -266
  166. package/dest/storage/address_store/address_store.d.ts +11 -0
  167. package/dest/storage/address_store/address_store.d.ts.map +1 -0
  168. package/dest/storage/{address_data_provider/address_data_provider.js → address_store/address_store.js} +13 -12
  169. package/dest/storage/address_store/index.d.ts +2 -0
  170. package/dest/storage/address_store/index.d.ts.map +1 -0
  171. package/dest/storage/address_store/index.js +1 -0
  172. package/dest/storage/anchor_block_store/anchor_block_store.d.ts +17 -0
  173. package/dest/storage/anchor_block_store/anchor_block_store.d.ts.map +1 -0
  174. package/dest/storage/anchor_block_store/anchor_block_store.js +26 -0
  175. package/dest/storage/{sync_data_provider → anchor_block_store}/index.d.ts +2 -2
  176. package/dest/storage/anchor_block_store/index.d.ts.map +1 -0
  177. package/dest/storage/anchor_block_store/index.js +1 -0
  178. package/dest/storage/capsule_store/capsule_service.d.ts +21 -0
  179. package/dest/storage/capsule_store/capsule_service.d.ts.map +1 -0
  180. package/dest/storage/capsule_store/capsule_service.js +50 -0
  181. package/dest/storage/capsule_store/capsule_store.d.ts +72 -0
  182. package/dest/storage/capsule_store/capsule_store.d.ts.map +1 -0
  183. package/dest/storage/capsule_store/capsule_store.js +261 -0
  184. package/dest/storage/capsule_store/index.d.ts +3 -0
  185. package/dest/storage/capsule_store/index.d.ts.map +1 -0
  186. package/dest/storage/capsule_store/index.js +2 -0
  187. package/dest/storage/contract_store/contract_store.d.ts +93 -0
  188. package/dest/storage/contract_store/contract_store.d.ts.map +1 -0
  189. package/dest/storage/contract_store/contract_store.js +311 -0
  190. package/dest/storage/contract_store/index.d.ts +2 -0
  191. package/dest/storage/contract_store/index.d.ts.map +1 -0
  192. package/dest/storage/contract_store/index.js +1 -0
  193. package/dest/storage/{contract_data_provider → contract_store}/private_functions_tree.d.ts +1 -1
  194. package/dest/storage/contract_store/private_functions_tree.d.ts.map +1 -0
  195. package/dest/storage/{contract_data_provider → contract_store}/private_functions_tree.js +1 -1
  196. package/dest/storage/index.d.ts +8 -8
  197. package/dest/storage/index.d.ts.map +1 -1
  198. package/dest/storage/index.js +7 -7
  199. package/dest/storage/metadata.d.ts +1 -1
  200. package/dest/storage/metadata.js +1 -1
  201. package/dest/storage/note_store/index.d.ts +3 -0
  202. package/dest/storage/note_store/index.d.ts.map +1 -0
  203. package/dest/storage/note_store/index.js +2 -0
  204. package/dest/storage/note_store/note_store.d.ts +83 -0
  205. package/dest/storage/note_store/note_store.d.ts.map +1 -0
  206. package/dest/storage/note_store/note_store.js +343 -0
  207. package/dest/storage/note_store/stored_note.d.ts +16 -0
  208. package/dest/storage/note_store/stored_note.d.ts.map +1 -0
  209. package/dest/storage/note_store/stored_note.js +43 -0
  210. package/dest/storage/private_event_store/private_event_store.d.ts +91 -0
  211. package/dest/storage/private_event_store/private_event_store.d.ts.map +1 -0
  212. package/dest/storage/private_event_store/private_event_store.js +276 -0
  213. package/dest/storage/private_event_store/stored_private_event.d.ts +23 -0
  214. package/dest/storage/private_event_store/stored_private_event.d.ts.map +1 -0
  215. package/dest/storage/private_event_store/stored_private_event.js +56 -0
  216. package/dest/storage/tagging_store/index.d.ts +4 -0
  217. package/dest/storage/tagging_store/index.d.ts.map +1 -0
  218. package/dest/storage/tagging_store/index.js +3 -0
  219. package/dest/storage/tagging_store/recipient_tagging_store.d.ts +28 -0
  220. package/dest/storage/tagging_store/recipient_tagging_store.d.ts.map +1 -0
  221. package/dest/storage/tagging_store/recipient_tagging_store.js +111 -0
  222. package/dest/storage/tagging_store/sender_address_book_store.d.ts +14 -0
  223. package/dest/storage/tagging_store/sender_address_book_store.d.ts.map +1 -0
  224. package/dest/storage/tagging_store/sender_address_book_store.js +36 -0
  225. package/dest/storage/tagging_store/sender_tagging_store.d.ts +78 -0
  226. package/dest/storage/tagging_store/sender_tagging_store.d.ts.map +1 -0
  227. package/dest/storage/tagging_store/sender_tagging_store.js +374 -0
  228. package/dest/tagging/constants.d.ts +2 -2
  229. package/dest/tagging/constants.d.ts.map +1 -1
  230. package/dest/tagging/constants.js +10 -2
  231. package/dest/tagging/get_all_logs_by_tags.d.ts +24 -0
  232. package/dest/tagging/get_all_logs_by_tags.d.ts.map +1 -0
  233. package/dest/tagging/get_all_logs_by_tags.js +60 -0
  234. package/dest/tagging/index.d.ts +17 -7
  235. package/dest/tagging/index.d.ts.map +1 -1
  236. package/dest/tagging/index.js +15 -5
  237. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts +14 -0
  238. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts.map +1 -0
  239. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +85 -0
  240. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts +12 -0
  241. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts.map +1 -0
  242. package/dest/tagging/recipient_sync/utils/find_highest_indexes.js +20 -0
  243. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts +14 -0
  244. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts.map +1 -0
  245. package/dest/tagging/recipient_sync/utils/load_logs_for_range.js +33 -0
  246. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts +17 -0
  247. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts.map +1 -0
  248. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.js +80 -0
  249. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts +12 -0
  250. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts.map +1 -0
  251. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.js +39 -0
  252. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts +19 -0
  253. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts.map +1 -0
  254. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.js +72 -0
  255. package/package.json +28 -19
  256. package/src/bin/check_oracle_version.ts +133 -22
  257. package/src/block_synchronizer/block_stream_source.ts +52 -0
  258. package/src/block_synchronizer/block_synchronizer.ts +200 -0
  259. package/src/block_synchronizer/index.ts +1 -0
  260. package/src/config/index.ts +12 -4
  261. package/src/config/package_info.ts +1 -1
  262. package/src/contract_function_simulator/benchmarked_node.ts +103 -0
  263. package/src/contract_function_simulator/contract_function_simulator.ts +424 -114
  264. package/src/contract_function_simulator/ephemeral_array_service.ts +110 -0
  265. package/src/contract_function_simulator/execution_note_cache.ts +51 -28
  266. package/src/contract_function_simulator/execution_tagging_index_cache.ts +19 -14
  267. package/src/contract_function_simulator/hashed_values_cache.ts +1 -1
  268. package/src/contract_function_simulator/index.ts +2 -1
  269. package/src/contract_function_simulator/noir-structs/event_validation_request.ts +15 -11
  270. package/src/contract_function_simulator/noir-structs/log_retrieval_request.ts +7 -6
  271. package/src/contract_function_simulator/noir-structs/log_retrieval_response.ts +3 -6
  272. package/src/contract_function_simulator/noir-structs/note_validation_request.ts +9 -12
  273. package/src/contract_function_simulator/noir-structs/utility_context.ts +6 -25
  274. package/src/contract_function_simulator/oracle/interfaces.ts +105 -62
  275. package/src/contract_function_simulator/oracle/legacy_oracle_mappings.ts +104 -0
  276. package/src/contract_function_simulator/oracle/message_load_oracle_inputs.ts +1 -1
  277. package/src/contract_function_simulator/oracle/note_packing_utils.ts +27 -13
  278. package/src/contract_function_simulator/oracle/oracle.ts +441 -163
  279. package/src/contract_function_simulator/oracle/private_execution.ts +6 -72
  280. package/src/contract_function_simulator/oracle/private_execution_oracle.ts +212 -174
  281. package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +677 -113
  282. package/src/contract_function_simulator/pick_notes.ts +23 -4
  283. package/src/contract_function_simulator/proxied_contract_data_source.ts +32 -8
  284. package/src/contract_logging.ts +52 -0
  285. package/src/contract_sync/contract_sync_service.ts +176 -0
  286. package/src/contract_sync/helpers.ts +98 -0
  287. package/src/debug/pxe_debug_utils.ts +93 -0
  288. package/src/entrypoints/client/bundle/index.ts +2 -1
  289. package/src/entrypoints/client/bundle/utils.ts +24 -18
  290. package/src/entrypoints/client/lazy/index.ts +2 -1
  291. package/src/entrypoints/client/lazy/utils.ts +25 -19
  292. package/src/entrypoints/pxe_creation_options.ts +13 -2
  293. package/src/entrypoints/server/index.ts +5 -2
  294. package/src/entrypoints/server/utils.ts +33 -42
  295. package/src/error_enriching.ts +7 -15
  296. package/src/events/event_service.ts +96 -0
  297. package/src/events/index.ts +1 -0
  298. package/src/events/private_event_filter_validator.ts +66 -0
  299. package/src/job_coordinator/job_coordinator.ts +150 -0
  300. package/src/logs/log_service.ts +192 -0
  301. package/src/messages/message_context_service.ts +44 -0
  302. package/src/notes/index.ts +1 -0
  303. package/src/notes/note_service.ts +206 -0
  304. package/src/notes_filter.ts +24 -0
  305. package/src/oracle_version.ts +20 -9
  306. package/src/private_kernel/hints/{compute_tx_include_by_timestamp.ts → compute_tx_expiration_timestamp.ts} +13 -13
  307. package/src/private_kernel/hints/index.ts +2 -2
  308. package/src/private_kernel/hints/{build_private_kernel_reset_private_inputs.ts → private_kernel_reset_private_inputs_builder.ts} +197 -139
  309. package/src/private_kernel/hints/test_utils.ts +325 -0
  310. package/src/private_kernel/private_kernel_execution_prover.ts +30 -31
  311. package/src/private_kernel/private_kernel_oracle.ts +118 -37
  312. package/src/pxe.ts +516 -364
  313. package/src/storage/{address_data_provider/address_data_provider.ts → address_store/address_store.ts} +16 -16
  314. package/src/storage/address_store/index.ts +1 -0
  315. package/src/storage/{sync_data_provider/sync_data_provider.ts → anchor_block_store/anchor_block_store.ts} +11 -12
  316. package/src/storage/anchor_block_store/index.ts +1 -0
  317. package/src/storage/capsule_store/capsule_service.ts +90 -0
  318. package/src/storage/capsule_store/capsule_store.ts +333 -0
  319. package/src/storage/capsule_store/index.ts +2 -0
  320. package/src/storage/contract_store/contract_store.ts +431 -0
  321. package/src/storage/contract_store/index.ts +1 -0
  322. package/src/storage/{contract_data_provider → contract_store}/private_functions_tree.ts +1 -1
  323. package/src/storage/index.ts +7 -7
  324. package/src/storage/metadata.ts +1 -1
  325. package/src/storage/note_store/index.ts +2 -0
  326. package/src/storage/note_store/note_store.ts +415 -0
  327. package/src/storage/note_store/stored_note.ts +48 -0
  328. package/src/storage/private_event_store/private_event_store.ts +388 -0
  329. package/src/storage/private_event_store/stored_private_event.ts +73 -0
  330. package/src/storage/tagging_store/index.ts +3 -0
  331. package/src/storage/tagging_store/recipient_tagging_store.ts +143 -0
  332. package/src/storage/tagging_store/sender_address_book_store.ts +48 -0
  333. package/src/storage/tagging_store/sender_tagging_store.ts +476 -0
  334. package/src/tagging/constants.ts +10 -2
  335. package/src/tagging/get_all_logs_by_tags.ts +92 -0
  336. package/src/tagging/index.ts +19 -6
  337. package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +130 -0
  338. package/src/tagging/recipient_sync/utils/find_highest_indexes.ts +34 -0
  339. package/src/tagging/recipient_sync/utils/load_logs_for_range.ts +44 -0
  340. package/src/tagging/sender_sync/sync_sender_tagging_indexes.ts +112 -0
  341. package/src/tagging/sender_sync/utils/get_status_change_of_pending.ts +51 -0
  342. package/src/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.ts +85 -0
  343. package/dest/contract_function_simulator/execution_data_provider.d.ts +0 -265
  344. package/dest/contract_function_simulator/execution_data_provider.d.ts.map +0 -1
  345. package/dest/contract_function_simulator/execution_data_provider.js +0 -14
  346. package/dest/contract_function_simulator/proxied_node.d.ts +0 -9
  347. package/dest/contract_function_simulator/proxied_node.d.ts.map +0 -1
  348. package/dest/contract_function_simulator/proxied_node.js +0 -27
  349. package/dest/contract_function_simulator/pxe_oracle_interface.d.ts +0 -122
  350. package/dest/contract_function_simulator/pxe_oracle_interface.d.ts.map +0 -1
  351. package/dest/contract_function_simulator/pxe_oracle_interface.js +0 -694
  352. package/dest/private_kernel/hints/build_private_kernel_reset_private_inputs.d.ts +0 -28
  353. package/dest/private_kernel/hints/build_private_kernel_reset_private_inputs.d.ts.map +0 -1
  354. package/dest/private_kernel/hints/compute_side_effect_uniqueness_hints.d.ts +0 -3
  355. package/dest/private_kernel/hints/compute_side_effect_uniqueness_hints.d.ts.map +0 -1
  356. package/dest/private_kernel/hints/compute_side_effect_uniqueness_hints.js +0 -48
  357. package/dest/private_kernel/hints/compute_tx_include_by_timestamp.d.ts +0 -4
  358. package/dest/private_kernel/hints/compute_tx_include_by_timestamp.d.ts.map +0 -1
  359. package/dest/private_kernel/private_kernel_oracle_impl.d.ts +0 -45
  360. package/dest/private_kernel/private_kernel_oracle_impl.d.ts.map +0 -1
  361. package/dest/private_kernel/private_kernel_oracle_impl.js +0 -86
  362. package/dest/storage/address_data_provider/address_data_provider.d.ts +0 -11
  363. package/dest/storage/address_data_provider/address_data_provider.d.ts.map +0 -1
  364. package/dest/storage/address_data_provider/index.d.ts +0 -2
  365. package/dest/storage/address_data_provider/index.d.ts.map +0 -1
  366. package/dest/storage/address_data_provider/index.js +0 -1
  367. package/dest/storage/capsule_data_provider/capsule_data_provider.d.ts +0 -25
  368. package/dest/storage/capsule_data_provider/capsule_data_provider.d.ts.map +0 -1
  369. package/dest/storage/capsule_data_provider/capsule_data_provider.js +0 -118
  370. package/dest/storage/capsule_data_provider/index.d.ts +0 -2
  371. package/dest/storage/capsule_data_provider/index.d.ts.map +0 -1
  372. package/dest/storage/capsule_data_provider/index.js +0 -1
  373. package/dest/storage/contract_data_provider/contract_data_provider.d.ts +0 -64
  374. package/dest/storage/contract_data_provider/contract_data_provider.d.ts.map +0 -1
  375. package/dest/storage/contract_data_provider/contract_data_provider.js +0 -193
  376. package/dest/storage/contract_data_provider/index.d.ts +0 -2
  377. package/dest/storage/contract_data_provider/index.d.ts.map +0 -1
  378. package/dest/storage/contract_data_provider/index.js +0 -1
  379. package/dest/storage/contract_data_provider/private_functions_tree.d.ts.map +0 -1
  380. package/dest/storage/note_data_provider/index.d.ts +0 -3
  381. package/dest/storage/note_data_provider/index.d.ts.map +0 -1
  382. package/dest/storage/note_data_provider/index.js +0 -2
  383. package/dest/storage/note_data_provider/note_data_provider.d.ts +0 -83
  384. package/dest/storage/note_data_provider/note_data_provider.d.ts.map +0 -1
  385. package/dest/storage/note_data_provider/note_data_provider.js +0 -311
  386. package/dest/storage/private_event_data_provider/private_event_data_provider.d.ts +0 -37
  387. package/dest/storage/private_event_data_provider/private_event_data_provider.d.ts.map +0 -1
  388. package/dest/storage/private_event_data_provider/private_event_data_provider.js +0 -105
  389. package/dest/storage/sync_data_provider/index.d.ts.map +0 -1
  390. package/dest/storage/sync_data_provider/index.js +0 -1
  391. package/dest/storage/sync_data_provider/sync_data_provider.d.ts +0 -10
  392. package/dest/storage/sync_data_provider/sync_data_provider.d.ts.map +0 -1
  393. package/dest/storage/sync_data_provider/sync_data_provider.js +0 -26
  394. package/dest/storage/tagging_data_provider/index.d.ts +0 -2
  395. package/dest/storage/tagging_data_provider/index.d.ts.map +0 -1
  396. package/dest/storage/tagging_data_provider/index.js +0 -1
  397. package/dest/storage/tagging_data_provider/tagging_data_provider.d.ts +0 -40
  398. package/dest/storage/tagging_data_provider/tagging_data_provider.d.ts.map +0 -1
  399. package/dest/storage/tagging_data_provider/tagging_data_provider.js +0 -89
  400. package/dest/synchronizer/index.d.ts +0 -2
  401. package/dest/synchronizer/index.d.ts.map +0 -1
  402. package/dest/synchronizer/index.js +0 -1
  403. package/dest/synchronizer/synchronizer.d.ts +0 -35
  404. package/dest/synchronizer/synchronizer.d.ts.map +0 -1
  405. package/dest/synchronizer/synchronizer.js +0 -101
  406. package/dest/tagging/siloed_tag.d.ts +0 -14
  407. package/dest/tagging/siloed_tag.d.ts.map +0 -1
  408. package/dest/tagging/siloed_tag.js +0 -20
  409. package/dest/tagging/tag.d.ts +0 -12
  410. package/dest/tagging/tag.d.ts.map +0 -1
  411. package/dest/tagging/tag.js +0 -17
  412. package/dest/tagging/utils.d.ts +0 -18
  413. package/dest/tagging/utils.d.ts.map +0 -1
  414. package/dest/tagging/utils.js +0 -24
  415. package/src/contract_function_simulator/execution_data_provider.ts +0 -333
  416. package/src/contract_function_simulator/proxied_node.ts +0 -33
  417. package/src/contract_function_simulator/pxe_oracle_interface.ts +0 -1008
  418. package/src/private_kernel/hints/compute_side_effect_uniqueness_hints.ts +0 -173
  419. package/src/private_kernel/private_kernel_oracle_impl.ts +0 -132
  420. package/src/storage/address_data_provider/index.ts +0 -1
  421. package/src/storage/capsule_data_provider/capsule_data_provider.ts +0 -147
  422. package/src/storage/capsule_data_provider/index.ts +0 -1
  423. package/src/storage/contract_data_provider/contract_data_provider.ts +0 -277
  424. package/src/storage/contract_data_provider/index.ts +0 -1
  425. package/src/storage/note_data_provider/index.ts +0 -2
  426. package/src/storage/note_data_provider/note_data_provider.ts +0 -399
  427. package/src/storage/private_event_data_provider/private_event_data_provider.ts +0 -143
  428. package/src/storage/sync_data_provider/index.ts +0 -1
  429. package/src/storage/tagging_data_provider/index.ts +0 -1
  430. package/src/storage/tagging_data_provider/tagging_data_provider.ts +0 -120
  431. package/src/synchronizer/index.ts +0 -1
  432. package/src/synchronizer/synchronizer.ts +0 -120
  433. package/src/tagging/siloed_tag.ts +0 -22
  434. package/src/tagging/tag.ts +0 -16
  435. package/src/tagging/utils.ts +0 -31
@@ -0,0 +1,325 @@
1
+ import {
2
+ MAX_KEY_VALIDATION_REQUESTS_PER_CALL,
3
+ MAX_KEY_VALIDATION_REQUESTS_PER_TX,
4
+ MAX_NOTE_HASHES_PER_CALL,
5
+ MAX_NOTE_HASHES_PER_TX,
6
+ MAX_NOTE_HASH_READ_REQUESTS_PER_CALL,
7
+ MAX_NOTE_HASH_READ_REQUESTS_PER_TX,
8
+ MAX_NULLIFIERS_PER_CALL,
9
+ MAX_NULLIFIERS_PER_TX,
10
+ MAX_NULLIFIER_READ_REQUESTS_PER_CALL,
11
+ MAX_NULLIFIER_READ_REQUESTS_PER_TX,
12
+ MAX_PRIVATE_LOGS_PER_CALL,
13
+ MAX_PRIVATE_LOGS_PER_TX,
14
+ } from '@aztec/constants';
15
+ import { makeTuple } from '@aztec/foundation/array';
16
+ import { Fr } from '@aztec/foundation/curves/bn254';
17
+ import { Point } from '@aztec/foundation/curves/grumpkin';
18
+ import type { Serializable } from '@aztec/foundation/serialize';
19
+ import { AztecAddress } from '@aztec/stdlib/aztec-address';
20
+ import {
21
+ ClaimedLengthArray,
22
+ KeyValidationRequest,
23
+ KeyValidationRequestAndSeparator,
24
+ NoteHash,
25
+ Nullifier,
26
+ PrivateCircuitPublicInputs,
27
+ PrivateKernelCircuitPublicInputs,
28
+ type PrivateKernelSimulateOutput,
29
+ ReadRequest,
30
+ ScopedKeyValidationRequestAndSeparator,
31
+ ScopedNoteHash,
32
+ ScopedNullifier,
33
+ ScopedReadRequest,
34
+ } from '@aztec/stdlib/kernel';
35
+ import { PrivateLogData, ScopedPrivateLogData } from '@aztec/stdlib/kernel';
36
+ import { PrivateLog } from '@aztec/stdlib/logs';
37
+ import { PrivateCallExecutionResult } from '@aztec/stdlib/tx';
38
+ import { VerificationKeyData } from '@aztec/stdlib/vks';
39
+
40
+ const DEFAULT_CONTRACT_ADDRESS = AztecAddress.fromBigInt(987654n);
41
+
42
+ /**
43
+ * Builds a ClaimedLengthArray from a list of items, padding to the required size.
44
+ */
45
+ function makeClaimed<T extends Serializable, N extends number>(items: T[], emptyFactory: { empty(): T }, maxSize: N) {
46
+ const padded = makeTuple(maxSize, i => items[i] ?? emptyFactory.empty());
47
+ return new ClaimedLengthArray<T, typeof maxSize>(padded, items.length);
48
+ }
49
+
50
+ /** Builder for PrivateKernelCircuitPublicInputs with fluent API for adding side effects. */
51
+ export class PrivateKernelCircuitPublicInputsBuilder {
52
+ private noteHashes: ScopedNoteHash[] = [];
53
+ private nullifiers: ScopedNullifier[] = [];
54
+ private noteHashReadRequests: ScopedReadRequest[] = [];
55
+ private nullifierReadRequests: ScopedReadRequest[] = [];
56
+ private keyValidationRequests: ScopedKeyValidationRequestAndSeparator[] = [];
57
+ private privateLogs: ScopedPrivateLogData[] = [];
58
+ private nextCounter: number;
59
+
60
+ constructor(
61
+ private contractAddress: AztecAddress = DEFAULT_CONTRACT_ADDRESS,
62
+ startCounter = 1,
63
+ ) {
64
+ this.nextCounter = startCounter;
65
+ }
66
+
67
+ private getCounter(sideEffectCounter?: number): number {
68
+ if (sideEffectCounter !== undefined) {
69
+ this.nextCounter = sideEffectCounter + 1;
70
+ return sideEffectCounter;
71
+ }
72
+ return this.nextCounter++;
73
+ }
74
+
75
+ /** Adds a note hash to the accumulated data. Defaults are generated randomly. */
76
+ addNoteHash(opts?: { value?: Fr; counter?: number; contractAddress?: AztecAddress }): this {
77
+ const value = opts?.value ?? Fr.random();
78
+ const counter = this.getCounter(opts?.counter);
79
+ const addr = opts?.contractAddress ?? this.contractAddress;
80
+ this.noteHashes.push(new NoteHash(value, counter).scope(addr));
81
+ return this;
82
+ }
83
+
84
+ /** Adds a nullifier to the accumulated data. Defaults are generated randomly. */
85
+ addNullifier(opts?: { value?: Fr; noteHash?: Fr; counter?: number; contractAddress?: AztecAddress }): this {
86
+ const value = opts?.value ?? Fr.random();
87
+ const noteHash = opts?.noteHash ?? Fr.ZERO;
88
+ const counter = this.getCounter(opts?.counter);
89
+ const addr = opts?.contractAddress ?? this.contractAddress;
90
+ this.nullifiers.push(new Nullifier(value, noteHash, counter).scope(addr));
91
+ return this;
92
+ }
93
+
94
+ /** Adds a pending note hash read request (non-empty contract address, can match a pending note hash). */
95
+ addPendingNoteHashReadRequest(opts?: { value?: Fr; counter?: number; contractAddress?: AztecAddress }): this {
96
+ const value = opts?.value ?? Fr.random();
97
+ const counter = this.getCounter(opts?.counter);
98
+ const addr = opts?.contractAddress ?? this.contractAddress;
99
+ this.noteHashReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), addr));
100
+ return this;
101
+ }
102
+
103
+ /** Adds a settled note hash read request (empty contract address, resolved against the note hash tree). */
104
+ addSettledNoteHashReadRequest(opts?: { value?: Fr; counter?: number }): this {
105
+ const value = opts?.value ?? Fr.random();
106
+ const counter = this.getCounter(opts?.counter);
107
+ this.noteHashReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), AztecAddress.ZERO));
108
+ return this;
109
+ }
110
+
111
+ /** Adds a pending nullifier read request (non-empty contract address, can match a pending nullifier). */
112
+ addPendingNullifierReadRequest(opts?: { value?: Fr; counter?: number; contractAddress?: AztecAddress }): this {
113
+ const value = opts?.value ?? Fr.random();
114
+ const counter = this.getCounter(opts?.counter);
115
+ const addr = opts?.contractAddress ?? this.contractAddress;
116
+ this.nullifierReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), addr));
117
+ return this;
118
+ }
119
+
120
+ /** Adds a settled nullifier read request (empty contract address, resolved against the nullifier tree). */
121
+ addSettledNullifierReadRequest(opts?: { value?: Fr; counter?: number }): this {
122
+ const value = opts?.value ?? Fr.random();
123
+ const counter = this.getCounter(opts?.counter);
124
+ this.nullifierReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), AztecAddress.ZERO));
125
+ return this;
126
+ }
127
+
128
+ /** Adds a key validation request to validation requests. */
129
+ addKeyValidationRequest(opts?: { contractAddress?: AztecAddress }): this {
130
+ const addr = opts?.contractAddress ?? this.contractAddress;
131
+ this.keyValidationRequests.push(
132
+ new ScopedKeyValidationRequestAndSeparator(
133
+ new KeyValidationRequestAndSeparator(
134
+ new KeyValidationRequest(new Point(Fr.random(), Fr.random(), false), Fr.random()),
135
+ Fr.random(),
136
+ ),
137
+ addr,
138
+ ),
139
+ );
140
+ return this;
141
+ }
142
+
143
+ /** Adds a private log to the accumulated data. Defaults are generated randomly. */
144
+ addPrivateLog(opts?: { noteHashCounter?: number; counter?: number; contractAddress?: AztecAddress }): this {
145
+ const noteHashCounter = opts?.noteHashCounter ?? 0;
146
+ const counter = this.getCounter(opts?.counter);
147
+ const addr = opts?.contractAddress ?? this.contractAddress;
148
+ this.privateLogs.push(
149
+ new ScopedPrivateLogData(new PrivateLogData(PrivateLog.empty(), noteHashCounter, counter), addr),
150
+ );
151
+ return this;
152
+ }
153
+
154
+ /** Builds the PrivateKernelCircuitPublicInputs with all added side effects. */
155
+ build(): PrivateKernelCircuitPublicInputs {
156
+ const publicInputs = PrivateKernelCircuitPublicInputs.empty();
157
+ publicInputs.end.noteHashes = makeClaimed(this.noteHashes, ScopedNoteHash, MAX_NOTE_HASHES_PER_TX);
158
+ publicInputs.end.nullifiers = makeClaimed(this.nullifiers, ScopedNullifier, MAX_NULLIFIERS_PER_TX);
159
+ publicInputs.end.privateLogs = makeClaimed(this.privateLogs, ScopedPrivateLogData, MAX_PRIVATE_LOGS_PER_TX);
160
+ publicInputs.validationRequests.noteHashReadRequests = makeClaimed(
161
+ this.noteHashReadRequests,
162
+ ScopedReadRequest,
163
+ MAX_NOTE_HASH_READ_REQUESTS_PER_TX,
164
+ );
165
+ publicInputs.validationRequests.nullifierReadRequests = makeClaimed(
166
+ this.nullifierReadRequests,
167
+ ScopedReadRequest,
168
+ MAX_NULLIFIER_READ_REQUESTS_PER_TX,
169
+ );
170
+ publicInputs.validationRequests.scopedKeyValidationRequestsAndSeparators = makeClaimed(
171
+ this.keyValidationRequests,
172
+ ScopedKeyValidationRequestAndSeparator,
173
+ MAX_KEY_VALIDATION_REQUESTS_PER_TX,
174
+ );
175
+ return publicInputs;
176
+ }
177
+ }
178
+
179
+ /** Builder for PrivateCircuitPublicInputs (call-level) with fluent API for adding side effects. */
180
+ export class PrivateCircuitPublicInputsBuilder {
181
+ private noteHashes: NoteHash[] = [];
182
+ private nullifiers: Nullifier[] = [];
183
+ private noteHashReadRequests: ScopedReadRequest[] = [];
184
+ private nullifierReadRequests: ScopedReadRequest[] = [];
185
+ private keyValidationRequests: KeyValidationRequestAndSeparator[] = [];
186
+ private privateLogs: PrivateLogData[] = [];
187
+ private nextCounter: number;
188
+
189
+ constructor(
190
+ private contractAddress: AztecAddress = DEFAULT_CONTRACT_ADDRESS,
191
+ startCounter = 1,
192
+ ) {
193
+ this.nextCounter = startCounter;
194
+ }
195
+
196
+ private getCounter(sideEffectCounter?: number): number {
197
+ if (sideEffectCounter !== undefined) {
198
+ this.nextCounter = sideEffectCounter + 1;
199
+ return sideEffectCounter;
200
+ }
201
+ return this.nextCounter++;
202
+ }
203
+
204
+ /** Adds a note hash. Defaults are generated randomly. */
205
+ addNoteHash(opts?: { value?: Fr; counter?: number }): this {
206
+ const value = opts?.value ?? Fr.random();
207
+ const counter = this.getCounter(opts?.counter);
208
+ this.noteHashes.push(new NoteHash(value, counter));
209
+ return this;
210
+ }
211
+
212
+ /** Adds a nullifier. Defaults are generated randomly. */
213
+ addNullifier(opts?: { value?: Fr; noteHash?: Fr; counter?: number }): this {
214
+ const value = opts?.value ?? Fr.random();
215
+ const noteHash = opts?.noteHash ?? Fr.ZERO;
216
+ const counter = this.getCounter(opts?.counter);
217
+ this.nullifiers.push(new Nullifier(value, noteHash, counter));
218
+ return this;
219
+ }
220
+
221
+ /** Adds a pending note hash read request (non-empty contract address, can match a pending note hash). */
222
+ addPendingNoteHashReadRequest(opts?: { value?: Fr; counter?: number }): this {
223
+ const value = opts?.value ?? Fr.random();
224
+ const counter = this.getCounter(opts?.counter);
225
+ this.noteHashReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), this.contractAddress));
226
+ return this;
227
+ }
228
+
229
+ /** Adds a settled note hash read request (empty contract address, resolved against the note hash tree). */
230
+ addSettledNoteHashReadRequest(opts?: { value?: Fr; counter?: number }): this {
231
+ const value = opts?.value ?? Fr.random();
232
+ const counter = this.getCounter(opts?.counter);
233
+ this.noteHashReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), AztecAddress.ZERO));
234
+ return this;
235
+ }
236
+
237
+ /** Adds a pending nullifier read request (non-empty contract address, can match a pending nullifier). */
238
+ addPendingNullifierReadRequest(opts?: { value?: Fr; counter?: number }): this {
239
+ const value = opts?.value ?? Fr.random();
240
+ const counter = this.getCounter(opts?.counter);
241
+ this.nullifierReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), this.contractAddress));
242
+ return this;
243
+ }
244
+
245
+ /** Adds a settled nullifier read request (empty contract address, resolved against the nullifier tree). */
246
+ addSettledNullifierReadRequest(opts?: { value?: Fr; counter?: number }): this {
247
+ const value = opts?.value ?? Fr.random();
248
+ const counter = this.getCounter(opts?.counter);
249
+ this.nullifierReadRequests.push(new ScopedReadRequest(new ReadRequest(value, counter), AztecAddress.ZERO));
250
+ return this;
251
+ }
252
+
253
+ /** Adds a key validation request. */
254
+ addKeyValidationRequest(): this {
255
+ this.keyValidationRequests.push(
256
+ new KeyValidationRequestAndSeparator(
257
+ new KeyValidationRequest(new Point(Fr.random(), Fr.random(), false), Fr.random()),
258
+ Fr.random(),
259
+ ),
260
+ );
261
+ return this;
262
+ }
263
+
264
+ /** Adds a private log. Defaults are generated randomly. */
265
+ addPrivateLog(opts?: { noteHashCounter?: number; counter?: number }): this {
266
+ const noteHashCounter = opts?.noteHashCounter ?? 0;
267
+ const counter = this.getCounter(opts?.counter);
268
+ this.privateLogs.push(new PrivateLogData(PrivateLog.empty(), noteHashCounter, counter));
269
+ return this;
270
+ }
271
+
272
+ /** Builds the PrivateCircuitPublicInputs with all added side effects. */
273
+ build(): PrivateCircuitPublicInputs {
274
+ const publicInputs = PrivateCircuitPublicInputs.empty();
275
+ publicInputs.callContext.contractAddress = this.contractAddress;
276
+ publicInputs.noteHashes = makeClaimed(this.noteHashes, NoteHash, MAX_NOTE_HASHES_PER_CALL);
277
+ publicInputs.nullifiers = makeClaimed(this.nullifiers, Nullifier, MAX_NULLIFIERS_PER_CALL);
278
+ publicInputs.privateLogs = makeClaimed(this.privateLogs, PrivateLogData, MAX_PRIVATE_LOGS_PER_CALL);
279
+ publicInputs.noteHashReadRequests = makeClaimed(
280
+ this.noteHashReadRequests,
281
+ ScopedReadRequest,
282
+ MAX_NOTE_HASH_READ_REQUESTS_PER_CALL,
283
+ );
284
+ publicInputs.nullifierReadRequests = makeClaimed(
285
+ this.nullifierReadRequests,
286
+ ScopedReadRequest,
287
+ MAX_NULLIFIER_READ_REQUESTS_PER_CALL,
288
+ );
289
+ publicInputs.keyValidationRequestsAndSeparators = makeClaimed(
290
+ this.keyValidationRequests,
291
+ KeyValidationRequestAndSeparator,
292
+ MAX_KEY_VALIDATION_REQUESTS_PER_CALL,
293
+ );
294
+ return publicInputs;
295
+ }
296
+ }
297
+
298
+ /** Wraps a PrivateKernelCircuitPublicInputs in a PrivateKernelSimulateOutput. */
299
+ export function makeKernelOutput(
300
+ publicInputs?: PrivateKernelCircuitPublicInputs,
301
+ ): PrivateKernelSimulateOutput<PrivateKernelCircuitPublicInputs> {
302
+ return {
303
+ publicInputs: publicInputs ?? PrivateKernelCircuitPublicInputs.empty(),
304
+ verificationKey: VerificationKeyData.empty(),
305
+ outputWitness: new Map(),
306
+ bytecode: Buffer.from([]),
307
+ };
308
+ }
309
+
310
+ /** Wraps a PrivateCircuitPublicInputs in a PrivateCallExecutionResult. */
311
+ export function makeExecutionResult(publicInputs?: PrivateCircuitPublicInputs): PrivateCallExecutionResult {
312
+ return new PrivateCallExecutionResult(
313
+ Buffer.alloc(0),
314
+ Buffer.alloc(0),
315
+ new Map(),
316
+ publicInputs ?? PrivateCircuitPublicInputs.empty(),
317
+ [],
318
+ new Map(),
319
+ [],
320
+ [],
321
+ [],
322
+ [],
323
+ [],
324
+ );
325
+ }
@@ -1,6 +1,6 @@
1
- import { vkAsFieldsMegaHonk } from '@aztec/foundation/crypto';
2
- import { Fr } from '@aztec/foundation/fields';
3
- import { createLogger } from '@aztec/foundation/log';
1
+ import { vkAsFieldsMegaHonk } from '@aztec/foundation/crypto/keys';
2
+ import { Fr } from '@aztec/foundation/curves/bn254';
3
+ import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
4
4
  import { pushTestData } from '@aztec/foundation/testing';
5
5
  import { Timer } from '@aztec/foundation/timer';
6
6
  import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
@@ -28,14 +28,13 @@ import {
28
28
  type PrivateCallExecutionResult,
29
29
  type PrivateExecutionResult,
30
30
  TxRequest,
31
- collectNoteHashLeafIndexMap,
32
31
  collectNoteHashNullifierCounterMap,
33
32
  getFinalMinRevertibleSideEffectCounter,
34
33
  } from '@aztec/stdlib/tx';
35
34
  import { VerificationKeyAsFields, VerificationKeyData, VkData } from '@aztec/stdlib/vks';
36
35
 
37
- import { PrivateKernelResetPrivateInputsBuilder } from './hints/build_private_kernel_reset_private_inputs.js';
38
- import { computeSideEffectUniquenessHints } from './hints/compute_side_effect_uniqueness_hints.js';
36
+ import { computeTxExpirationTimestamp } from './hints/compute_tx_expiration_timestamp.js';
37
+ import { PrivateKernelResetPrivateInputsBuilder } from './hints/private_kernel_reset_private_inputs_builder.js';
39
38
  import type { PrivateKernelOracle } from './private_kernel_oracle.js';
40
39
 
41
40
  const NULL_SIMULATE_OUTPUT: PrivateKernelSimulateOutput<PrivateKernelCircuitPublicInputs> = {
@@ -58,13 +57,16 @@ export interface PrivateKernelExecutionProverConfig {
58
57
  * inform state tree updates.
59
58
  */
60
59
  export class PrivateKernelExecutionProver {
61
- private log = createLogger('pxe:private-kernel-execution-prover');
60
+ private log: Logger;
62
61
 
63
62
  constructor(
64
63
  private oracle: PrivateKernelOracle,
65
64
  private proofCreator: PrivateKernelProver,
66
65
  private fakeProofs = false,
67
- ) {}
66
+ bindings?: LoggerBindings,
67
+ ) {
68
+ this.log = createLogger('pxe:private-kernel-execution-prover', bindings);
69
+ }
68
70
 
69
71
  /**
70
72
  * Generate a proof for a given transaction request and execution result.
@@ -102,7 +104,6 @@ export class PrivateKernelExecutionProver {
102
104
 
103
105
  const executionSteps: PrivateExecutionStep[] = [];
104
106
 
105
- const noteHashLeafIndexMap = collectNoteHashLeafIndexMap(executionResult);
106
107
  const noteHashNullifierCounterMap = collectNoteHashNullifierCounterMap(executionResult);
107
108
  const minRevertibleSideEffectCounter = getFinalMinRevertibleSideEffectCounter(executionResult);
108
109
  const splitCounter = isPrivateOnlyTx ? 0 : minRevertibleSideEffectCounter;
@@ -116,8 +117,9 @@ export class PrivateKernelExecutionProver {
116
117
  splitCounter,
117
118
  );
118
119
  while (resetBuilder.needsReset()) {
120
+ // Inner reset: without siloing.
119
121
  const witgenTimer = new Timer();
120
- const privateInputs = await resetBuilder.build(this.oracle, noteHashLeafIndexMap);
122
+ const privateInputs = await resetBuilder.build(this.oracle);
121
123
  output = generateWitnesses
122
124
  ? await this.proofCreator.generateResetOutput(privateInputs)
123
125
  : await this.proofCreator.simulateReset(privateInputs);
@@ -216,16 +218,24 @@ export class PrivateKernelExecutionProver {
216
218
  firstIteration = false;
217
219
  }
218
220
 
219
- // Reset.
220
- let resetBuilder = new PrivateKernelResetPrivateInputsBuilder(
221
+ // Final reset: include siloing of note hashes, nullifiers and private logs.
222
+ const finalResetBuilder = new PrivateKernelResetPrivateInputsBuilder(
221
223
  output,
222
224
  [],
223
225
  noteHashNullifierCounterMap,
224
226
  splitCounter,
225
227
  );
226
- while (resetBuilder.needsReset()) {
228
+ if (!finalResetBuilder.needsReset()) {
229
+ // The final reset must be performed exactly once, because each tx has at least one nullifier that requires
230
+ // siloing, and siloing cannot be done multiple times.
231
+ // While, in theory, it might be possible to silo note hashes first and then run another reset to silo nullifiers
232
+ // and/or private logs, we currently don't have standalone dimensions for the arrays that require siloing. As a
233
+ // result, all necessary siloing must be done together in a single reset.
234
+ // Refer to the possible combinations of dimensions in private_kernel_reset_config.json.
235
+ throw new Error('Nothing to reset for the final reset.');
236
+ } else {
227
237
  const witgenTimer = new Timer();
228
- const privateInputs = await resetBuilder.build(this.oracle, noteHashLeafIndexMap);
238
+ const privateInputs = await finalResetBuilder.build(this.oracle);
229
239
  output = generateWitnesses
230
240
  ? await this.proofCreator.generateResetOutput(privateInputs)
231
241
  : await this.proofCreator.simulateReset(privateInputs);
@@ -239,8 +249,6 @@ export class PrivateKernelExecutionProver {
239
249
  witgen: witgenTimer.ms(),
240
250
  },
241
251
  });
242
-
243
- resetBuilder = new PrivateKernelResetPrivateInputsBuilder(output, [], noteHashNullifierCounterMap, splitCounter);
244
252
  }
245
253
 
246
254
  if (output.publicInputs.feePayer.isZero() && skipFeeEnforcement) {
@@ -260,20 +268,14 @@ export class PrivateKernelExecutionProver {
260
268
  // TODO: Enable padding once we better understand the final amounts to pad to.
261
269
  const paddedSideEffectAmounts = PaddedSideEffectAmounts.empty();
262
270
 
263
- // Use the aggregated includeByTimestamp set throughout the tx execution.
264
- // TODO: Call `computeTxIncludeByTimestamp` to round the value down and reduce precision, improving privacy.
265
- const includeByTimestampUpperBound = previousKernelData.publicInputs.includeByTimestamp;
266
- const anchorBlockTimestamp = previousKernelData.publicInputs.constants.anchorBlockHeader.globalVariables.timestamp;
267
- if (includeByTimestampUpperBound <= anchorBlockTimestamp) {
268
- throw new Error(
269
- `Include-by timestamp must be greater than the anchor block timestamp. Anchor block timestamp: ${anchorBlockTimestamp}. Include-by timestamp: ${includeByTimestampUpperBound}.`,
270
- );
271
- }
271
+ // Round the aggregated expirationTimestamp down to reduce precision and avoid leaking which private
272
+ // functions were called via their exact expiration offsets.
273
+ const expirationTimestampUpperBound = computeTxExpirationTimestamp(previousKernelData.publicInputs);
272
274
 
273
275
  const privateInputs = new PrivateKernelTailCircuitPrivateInputs(
274
276
  previousKernelData,
275
277
  paddedSideEffectAmounts,
276
- includeByTimestampUpperBound,
278
+ expirationTimestampUpperBound,
277
279
  );
278
280
 
279
281
  const witgenTimer = new Timer();
@@ -291,8 +293,8 @@ export class PrivateKernelExecutionProver {
291
293
  },
292
294
  });
293
295
 
294
- // Hiding circuit is only executed if we are generating witnesses.
295
- // For simulation, we can end with the tail, since the hiding circuit will simply return the same tail output.
296
+ // Hiding kernel is only executed if we are generating witnesses.
297
+ // For simulation, we can end with the tail, since the Hiding kernel will simply return the same tail output.
296
298
  if (generateWitnesses) {
297
299
  const previousKernelVkData = await this.getVkData(tailOutput.verificationKey);
298
300
 
@@ -417,8 +419,6 @@ export class PrivateKernelExecutionProver {
417
419
 
418
420
  const updatedClassIdHints = await this.oracle.getUpdatedClassIdHints(contractAddress);
419
421
 
420
- const sideEffectUniquenessHints = computeSideEffectUniquenessHints(publicInputs);
421
-
422
422
  return PrivateCallData.from({
423
423
  publicInputs,
424
424
  vk,
@@ -430,7 +430,6 @@ export class PrivateKernelExecutionProver {
430
430
  functionLeafMembershipWitness,
431
431
  updatedClassIdHints,
432
432
  }),
433
- sideEffectUniquenessHints,
434
433
  });
435
434
  }
436
435
  }
@@ -1,71 +1,152 @@
1
- import { FUNCTION_TREE_HEIGHT, NOTE_HASH_TREE_HEIGHT, VK_TREE_HEIGHT } from '@aztec/constants';
2
- import type { Fr, GrumpkinScalar, Point } from '@aztec/foundation/fields';
1
+ import { FUNCTION_TREE_HEIGHT, NOTE_HASH_TREE_HEIGHT, PUBLIC_DATA_TREE_HEIGHT, VK_TREE_HEIGHT } from '@aztec/constants';
2
+ import type { Fr } from '@aztec/foundation/curves/bn254';
3
+ import type { GrumpkinScalar, Point } from '@aztec/foundation/curves/grumpkin';
3
4
  import { MembershipWitness } from '@aztec/foundation/trees';
5
+ import type { KeyStore } from '@aztec/key-store';
6
+ import { getVKIndex, getVKSiblingPath } from '@aztec/noir-protocol-circuits-types/vk-tree';
7
+ import { ProtocolContractAddress } from '@aztec/protocol-contracts';
4
8
  import type { FunctionSelector } from '@aztec/stdlib/abi';
5
9
  import type { AztecAddress } from '@aztec/stdlib/aztec-address';
10
+ import { type ContractInstanceWithAddress, computeSaltedInitializationHash } from '@aztec/stdlib/contract';
11
+ import { DelayedPublicMutableValues, DelayedPublicMutableValuesWithHash } from '@aztec/stdlib/delayed-public-mutable';
12
+ import { computePublicDataTreeLeafSlot } from '@aztec/stdlib/hash';
13
+ import type { AztecNode } from '@aztec/stdlib/interfaces/client';
6
14
  import { UpdatedClassIdHints } from '@aztec/stdlib/kernel';
7
- import type { PublicKeys } from '@aztec/stdlib/keys';
8
15
  import type { NullifierMembershipWitness } from '@aztec/stdlib/trees';
16
+ import type { BlockHeader } from '@aztec/stdlib/tx';
9
17
  import type { VerificationKeyAsFields } from '@aztec/stdlib/vks';
10
18
 
19
+ import type { ContractStore } from '../storage/contract_store/contract_store.js';
20
+
11
21
  /**
12
22
  * Provides functionality needed by the private kernel for interacting with our state trees.
13
- * This is either PrivateKernelOracleImpl, or a mocked test implementation.
14
23
  */
15
- export interface PrivateKernelOracle {
24
+ export class PrivateKernelOracle {
25
+ constructor(
26
+ private contractStore: ContractStore,
27
+ private keyStore: KeyStore,
28
+ private node: AztecNode,
29
+ private blockHeader: BlockHeader,
30
+ ) {}
31
+
16
32
  /** Retrieves the preimage of a contract address from the registered contract instances db. */
17
- getContractAddressPreimage(address: AztecAddress): Promise<{
18
- saltedInitializationHash: Fr;
19
- publicKeys: PublicKeys;
20
- currentContractClassId: Fr;
21
- originalContractClassId: Fr;
22
- }>;
33
+ public async getContractAddressPreimage(
34
+ address: AztecAddress,
35
+ ): Promise<ContractInstanceWithAddress & { saltedInitializationHash: Fr }> {
36
+ const instance = await this.contractStore.getContractInstance(address);
37
+ if (!instance) {
38
+ throw new Error(`Contract instance not found when getting address preimage. Contract address: ${address}.`);
39
+ }
40
+ return {
41
+ saltedInitializationHash: await computeSaltedInitializationHash(instance),
42
+ ...instance,
43
+ };
44
+ }
23
45
 
24
46
  /** Retrieves the preimage of a contract class id from the contract classes db. */
25
- getContractClassIdPreimage(
26
- contractClassId: Fr,
27
- ): Promise<{ artifactHash: Fr; publicBytecodeCommitment: Fr; privateFunctionsRoot: Fr }>;
47
+ public async getContractClassIdPreimage(contractClassId: Fr) {
48
+ const contractClass = await this.contractStore.getContractClassWithPreimage(contractClassId);
49
+ if (!contractClass) {
50
+ throw new Error(`Contract class not found when getting class id preimage. Class id: ${contractClassId}.`);
51
+ }
52
+ return {
53
+ artifactHash: contractClass.artifactHash,
54
+ privateFunctionsRoot: contractClass.privateFunctionsRoot,
55
+ publicBytecodeCommitment: contractClass.publicBytecodeCommitment,
56
+ };
57
+ }
28
58
 
29
- /**
30
- * Returns a membership witness with the sibling path and leaf index in our private functions tree.
31
- */
32
- getFunctionMembershipWitness(
59
+ /** Returns a membership witness with the sibling path and leaf index in our private functions tree. */
60
+ public async getFunctionMembershipWitness(
33
61
  contractClassId: Fr,
34
62
  selector: FunctionSelector,
35
- ): Promise<MembershipWitness<typeof FUNCTION_TREE_HEIGHT>>;
63
+ ): Promise<MembershipWitness<typeof FUNCTION_TREE_HEIGHT>> {
64
+ const membershipWitness = await this.contractStore.getFunctionMembershipWitness(contractClassId, selector);
65
+ if (!membershipWitness) {
66
+ throw new Error(
67
+ `Membership witness not found for contract class id ${contractClassId} and selector ${selector}.`,
68
+ );
69
+ }
70
+ return membershipWitness;
71
+ }
36
72
 
37
73
  /**
38
74
  * Returns a membership witness with the sibling path and leaf index in our protocol VK indexed merkle tree.
39
75
  * Used to validate the previous kernel's verification key.
40
76
  */
41
- getVkMembershipWitness(vk: VerificationKeyAsFields): Promise<MembershipWitness<typeof VK_TREE_HEIGHT>>;
77
+ public getVkMembershipWitness(vk: VerificationKeyAsFields): Promise<MembershipWitness<typeof VK_TREE_HEIGHT>> {
78
+ const leafIndex = getVKIndex(vk);
79
+ return Promise.resolve(new MembershipWitness(VK_TREE_HEIGHT, BigInt(leafIndex), getVKSiblingPath(leafIndex)));
80
+ }
42
81
 
43
- /**
44
- * Returns a membership witness with the sibling path and leaf index in our private function indexed merkle tree.
45
- */ getNoteHashMembershipWitness(leafIndex: bigint): Promise<MembershipWitness<typeof NOTE_HASH_TREE_HEIGHT>>;
82
+ /** Returns a membership witness with the sibling path and leaf index in our note hash tree. */
83
+ async getNoteHashMembershipWitness(
84
+ noteHash: Fr,
85
+ ): Promise<MembershipWitness<typeof NOTE_HASH_TREE_HEIGHT> | undefined> {
86
+ return this.node.getNoteHashMembershipWitness(await this.blockHeader.hash(), noteHash);
87
+ }
46
88
 
47
- /**
48
- * Returns a membership witness with the sibling path and leaf index in our nullifier indexed merkle tree.
49
- */
50
- getNullifierMembershipWitness(nullifier: Fr): Promise<NullifierMembershipWitness | undefined>;
51
- /**
52
- * Returns the root of our note hash merkle tree.
53
- */
54
- getNoteHashTreeRoot(): Promise<Fr>;
89
+ /** Returns a membership witness with the sibling path and leaf index in our nullifier indexed merkle tree. */
90
+ async getNullifierMembershipWitness(nullifier: Fr): Promise<NullifierMembershipWitness | undefined> {
91
+ return this.node.getNullifierMembershipWitness(await this.blockHeader.hash(), nullifier);
92
+ }
93
+
94
+ /** Returns the root of our note hash merkle tree. */
95
+ getNoteHashTreeRoot(): Fr {
96
+ return this.blockHeader.state.partial.noteHashTree.root;
97
+ }
55
98
 
56
99
  /**
57
100
  * Retrieves the sk_m corresponding to the pk_m.
58
101
  * @throws If the provided public key is not associated with any of the registered accounts.
59
- * @param pkM - The master public key to get secret key for.
102
+ * @param masterPublicKey - The master public key to get secret key for.
60
103
  * @returns A Promise that resolves to sk_m.
61
104
  * @dev Used when feeding the sk_m to the kernel circuit for keys verification.
62
105
  */
63
- getMasterSecretKey(masterPublicKey: Point): Promise<GrumpkinScalar>;
106
+ public getMasterSecretKey(masterPublicKey: Point): Promise<GrumpkinScalar> {
107
+ return this.keyStore.getMasterSecretKey(masterPublicKey);
108
+ }
64
109
 
65
110
  /** Use debug data to get the function name corresponding to a selector. */
66
- getDebugFunctionName(contractAddress: AztecAddress, selector: FunctionSelector): Promise<string | undefined>;
111
+ public getDebugFunctionName(contractAddress: AztecAddress, selector: FunctionSelector): Promise<string | undefined> {
112
+ return this.contractStore.getDebugFunctionName(contractAddress, selector);
113
+ }
114
+
115
+ /**
116
+ * Returns a membership witness and leaf index to our public data indexed merkle tree,
117
+ * along with an associated DelayedPublicMutable containing the class ID to update.
118
+ */
119
+ public async getUpdatedClassIdHints(contractAddress: AztecAddress): Promise<UpdatedClassIdHints> {
120
+ const { delayedPublicMutableSlot, delayedPublicMutableHashSlot } =
121
+ await DelayedPublicMutableValuesWithHash.getContractUpdateSlots(contractAddress);
122
+
123
+ const hashLeafSlot = await computePublicDataTreeLeafSlot(
124
+ ProtocolContractAddress.ContractInstanceRegistry,
125
+ delayedPublicMutableHashSlot,
126
+ );
127
+ const blockHash = await this.blockHeader.hash();
128
+
129
+ const updatedClassIdWitness = await this.node.getPublicDataWitness(blockHash, hashLeafSlot);
130
+
131
+ if (!updatedClassIdWitness) {
132
+ throw new Error(`No public data tree witness found for ${hashLeafSlot}`);
133
+ }
134
+
135
+ const readStorage = (storageSlot: Fr) =>
136
+ this.node.getPublicStorageAt(blockHash, ProtocolContractAddress.ContractInstanceRegistry, storageSlot);
137
+ const delayedPublicMutableValues = await DelayedPublicMutableValues.readFromTree(
138
+ delayedPublicMutableSlot,
139
+ readStorage,
140
+ );
67
141
 
68
- /** Returns a membership witness and leaf index to our public data indexed merkle tree,
69
- * along with an associated DelayedPublicMutable containing the class ID to update. */
70
- getUpdatedClassIdHints(contractAddress: AztecAddress): Promise<UpdatedClassIdHints>;
142
+ return new UpdatedClassIdHints(
143
+ new MembershipWitness(
144
+ PUBLIC_DATA_TREE_HEIGHT,
145
+ updatedClassIdWitness.index,
146
+ updatedClassIdWitness.siblingPath.toTuple(),
147
+ ),
148
+ updatedClassIdWitness.leafPreimage,
149
+ delayedPublicMutableValues,
150
+ );
151
+ }
71
152
  }