@aztec/pxe 0.0.1-commit.343b43af6 → 0.0.1-commit.350e0a4d

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 (485) hide show
  1. package/dest/bin/check_oracle_version.js +45 -111
  2. package/dest/bin/index.d.ts +2 -0
  3. package/dest/bin/index.d.ts.map +1 -0
  4. package/dest/bin/index.js +1 -0
  5. package/dest/bin/oracle_version_helpers.d.ts +51 -0
  6. package/dest/bin/oracle_version_helpers.d.ts.map +1 -0
  7. package/dest/bin/oracle_version_helpers.js +254 -0
  8. package/dest/block_synchronizer/block_stream_source.d.ts +10 -0
  9. package/dest/block_synchronizer/block_stream_source.d.ts.map +1 -0
  10. package/dest/block_synchronizer/block_stream_source.js +37 -0
  11. package/dest/block_synchronizer/block_synchronizer.d.ts +23 -15
  12. package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -1
  13. package/dest/block_synchronizer/block_synchronizer.js +84 -28
  14. package/dest/config/index.d.ts +8 -1
  15. package/dest/config/index.d.ts.map +1 -1
  16. package/dest/config/index.js +13 -14
  17. package/dest/config/package_info.js +1 -1
  18. package/dest/contract/contract_class_service.d.ts +31 -0
  19. package/dest/contract/contract_class_service.d.ts.map +1 -0
  20. package/dest/contract/contract_class_service.js +68 -0
  21. package/dest/contract/contract_sync_service.d.ts +48 -0
  22. package/dest/contract/contract_sync_service.d.ts.map +1 -0
  23. package/dest/contract/contract_sync_service.js +116 -0
  24. package/dest/contract/helpers.d.ts +7 -0
  25. package/dest/contract/helpers.d.ts.map +1 -0
  26. package/dest/contract/helpers.js +20 -0
  27. package/dest/contract_function_simulator/anchored_contract_data.d.ts +36 -0
  28. package/dest/contract_function_simulator/anchored_contract_data.d.ts.map +1 -0
  29. package/dest/contract_function_simulator/anchored_contract_data.js +54 -0
  30. package/dest/contract_function_simulator/contract_function_simulator.d.ts +30 -18
  31. package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
  32. package/dest/contract_function_simulator/contract_function_simulator.js +106 -40
  33. package/dest/contract_function_simulator/ephemeral_array_service.d.ts +28 -0
  34. package/dest/contract_function_simulator/ephemeral_array_service.d.ts.map +1 -0
  35. package/dest/contract_function_simulator/ephemeral_array_service.js +78 -0
  36. package/dest/contract_function_simulator/execution_note_cache.d.ts +4 -10
  37. package/dest/contract_function_simulator/execution_note_cache.d.ts.map +1 -1
  38. package/dest/contract_function_simulator/execution_note_cache.js +8 -28
  39. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts +7 -11
  40. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts.map +1 -1
  41. package/dest/contract_function_simulator/execution_tagging_index_cache.js +19 -15
  42. package/dest/contract_function_simulator/index.d.ts +26 -5
  43. package/dest/contract_function_simulator/index.d.ts.map +1 -1
  44. package/dest/contract_function_simulator/index.js +12 -3
  45. package/dest/contract_function_simulator/noir-structs/bounded_vec.d.ts +29 -0
  46. package/dest/contract_function_simulator/noir-structs/bounded_vec.d.ts.map +1 -0
  47. package/dest/contract_function_simulator/noir-structs/bounded_vec.js +30 -0
  48. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.d.ts +9 -0
  49. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.d.ts.map +1 -0
  50. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.js +1 -0
  51. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.d.ts +7 -0
  52. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.d.ts.map +1 -0
  53. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.js +1 -0
  54. package/dest/contract_function_simulator/noir-structs/ephemeral_array.d.ts +37 -0
  55. package/dest/contract_function_simulator/noir-structs/ephemeral_array.d.ts.map +1 -0
  56. package/dest/contract_function_simulator/noir-structs/ephemeral_array.js +59 -0
  57. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts +5 -5
  58. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts.map +1 -1
  59. package/dest/contract_function_simulator/noir-structs/event_validation_request.js +7 -9
  60. package/dest/contract_function_simulator/noir-structs/fact.d.ts +16 -0
  61. package/dest/contract_function_simulator/noir-structs/fact.d.ts.map +1 -0
  62. package/dest/contract_function_simulator/noir-structs/fact.js +6 -0
  63. package/dest/contract_function_simulator/noir-structs/fact_collection.d.ts +27 -0
  64. package/dest/contract_function_simulator/noir-structs/fact_collection.d.ts.map +1 -0
  65. package/dest/contract_function_simulator/noir-structs/fact_collection.js +31 -0
  66. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts +19 -10
  67. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts.map +1 -1
  68. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.js +12 -24
  69. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts +11 -9
  70. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts.map +1 -1
  71. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.js +2 -61
  72. package/dest/contract_function_simulator/noir-structs/note_data.d.ts +27 -0
  73. package/dest/contract_function_simulator/noir-structs/note_data.d.ts.map +1 -0
  74. package/dest/contract_function_simulator/noir-structs/note_data.js +3 -0
  75. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts +5 -5
  76. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts.map +1 -1
  77. package/dest/contract_function_simulator/noir-structs/note_validation_request.js +8 -10
  78. package/dest/contract_function_simulator/noir-structs/option.d.ts +59 -0
  79. package/dest/contract_function_simulator/noir-structs/option.d.ts.map +1 -0
  80. package/dest/contract_function_simulator/noir-structs/option.js +67 -0
  81. package/dest/contract_function_simulator/noir-structs/origin_block.d.ts +11 -0
  82. package/dest/contract_function_simulator/noir-structs/origin_block.d.ts.map +1 -0
  83. package/dest/contract_function_simulator/noir-structs/origin_block.js +5 -0
  84. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.d.ts +11 -0
  85. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.d.ts.map +1 -0
  86. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.js +4 -0
  87. package/dest/contract_function_simulator/noir-structs/provided_secret.d.ts +8 -0
  88. package/dest/contract_function_simulator/noir-structs/provided_secret.d.ts.map +1 -0
  89. package/dest/contract_function_simulator/noir-structs/provided_secret.js +1 -0
  90. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.d.ts +28 -0
  91. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.d.ts.map +1 -0
  92. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.js +43 -0
  93. package/dest/contract_function_simulator/noir-structs/resolved_tx.d.ts +21 -0
  94. package/dest/contract_function_simulator/noir-structs/resolved_tx.d.ts.map +1 -0
  95. package/dest/contract_function_simulator/noir-structs/resolved_tx.js +50 -0
  96. package/dest/contract_function_simulator/noir-structs/tx_effect_data.d.ts +14 -0
  97. package/dest/contract_function_simulator/noir-structs/tx_effect_data.d.ts.map +1 -0
  98. package/dest/contract_function_simulator/noir-structs/tx_effect_data.js +5 -0
  99. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts +6 -11
  100. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts.map +1 -1
  101. package/dest/contract_function_simulator/noir-structs/utility_context.js +1 -20
  102. package/dest/contract_function_simulator/oracle/acir_callback.d.ts +21 -0
  103. package/dest/contract_function_simulator/oracle/acir_callback.d.ts.map +1 -0
  104. package/dest/contract_function_simulator/oracle/acir_callback.js +115 -0
  105. package/dest/contract_function_simulator/oracle/index.d.ts +2 -13
  106. package/dest/contract_function_simulator/oracle/index.d.ts.map +1 -1
  107. package/dest/contract_function_simulator/oracle/index.js +1 -1
  108. package/dest/contract_function_simulator/oracle/interfaces.d.ts +15 -101
  109. package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
  110. package/dest/contract_function_simulator/oracle/interfaces.js +2 -2
  111. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts +39 -0
  112. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts.map +1 -0
  113. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.js +74 -0
  114. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts +3 -14
  115. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts.map +1 -1
  116. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.js +1 -24
  117. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts +2 -2
  118. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts.map +1 -1
  119. package/dest/contract_function_simulator/oracle/note_packing_utils.js +2 -2
  120. package/dest/contract_function_simulator/oracle/oracle_registry.d.ts +136 -0
  121. package/dest/contract_function_simulator/oracle/oracle_registry.d.ts.map +1 -0
  122. package/dest/contract_function_simulator/oracle/oracle_registry.js +989 -0
  123. package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts +222 -0
  124. package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts.map +1 -0
  125. package/dest/contract_function_simulator/oracle/oracle_type_mappings.js +1243 -0
  126. package/dest/contract_function_simulator/oracle/private_execution.d.ts +1 -1
  127. package/dest/contract_function_simulator/oracle/private_execution.d.ts.map +1 -1
  128. package/dest/contract_function_simulator/oracle/private_execution.js +7 -6
  129. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +54 -55
  130. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
  131. package/dest/contract_function_simulator/oracle/private_execution_oracle.js +195 -77
  132. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +162 -73
  133. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
  134. package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +523 -149
  135. package/dest/contract_function_simulator/pick_notes.d.ts +1 -1
  136. package/dest/contract_function_simulator/pick_notes.d.ts.map +1 -1
  137. package/dest/contract_function_simulator/pick_notes.js +20 -3
  138. package/dest/contract_function_simulator/transient_array_service.d.ts +31 -0
  139. package/dest/contract_function_simulator/transient_array_service.d.ts.map +1 -0
  140. package/dest/contract_function_simulator/transient_array_service.js +62 -0
  141. package/dest/contract_logging.d.ts +9 -4
  142. package/dest/contract_logging.d.ts.map +1 -1
  143. package/dest/contract_logging.js +21 -6
  144. package/dest/debug/pxe_debug_utils.d.ts +4 -9
  145. package/dest/debug/pxe_debug_utils.d.ts.map +1 -1
  146. package/dest/debug/pxe_debug_utils.js +0 -6
  147. package/dest/entrypoints/client/bundle/index.d.ts +1 -2
  148. package/dest/entrypoints/client/bundle/index.d.ts.map +1 -1
  149. package/dest/entrypoints/client/bundle/index.js +0 -1
  150. package/dest/entrypoints/client/bundle/utils.d.ts +2 -2
  151. package/dest/entrypoints/client/bundle/utils.d.ts.map +1 -1
  152. package/dest/entrypoints/client/bundle/utils.js +20 -7
  153. package/dest/entrypoints/client/lazy/index.d.ts +1 -2
  154. package/dest/entrypoints/client/lazy/index.d.ts.map +1 -1
  155. package/dest/entrypoints/client/lazy/index.js +0 -1
  156. package/dest/entrypoints/client/lazy/utils.d.ts +2 -2
  157. package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
  158. package/dest/entrypoints/client/lazy/utils.js +20 -7
  159. package/dest/entrypoints/pxe_creation_options.d.ts +16 -2
  160. package/dest/entrypoints/pxe_creation_options.d.ts.map +1 -1
  161. package/dest/entrypoints/pxe_creation_options.js +3 -1
  162. package/dest/entrypoints/server/index.d.ts +6 -4
  163. package/dest/entrypoints/server/index.d.ts.map +1 -1
  164. package/dest/entrypoints/server/index.js +4 -3
  165. package/dest/entrypoints/server/utils.d.ts +4 -3
  166. package/dest/entrypoints/server/utils.d.ts.map +1 -1
  167. package/dest/entrypoints/server/utils.js +20 -6
  168. package/dest/error_enriching.d.ts +5 -3
  169. package/dest/error_enriching.d.ts.map +1 -1
  170. package/dest/error_enriching.js +13 -11
  171. package/dest/events/event_service.d.ts +15 -6
  172. package/dest/events/event_service.d.ts.map +1 -1
  173. package/dest/events/event_service.js +44 -11
  174. package/dest/events/private_event_filter_validator.d.ts +3 -2
  175. package/dest/events/private_event_filter_validator.d.ts.map +1 -1
  176. package/dest/events/private_event_filter_validator.js +15 -0
  177. package/dest/hooks/authorize_utility_call.d.ts +41 -0
  178. package/dest/hooks/authorize_utility_call.d.ts.map +1 -0
  179. package/dest/hooks/authorize_utility_call.js +4 -0
  180. package/dest/hooks/execution_hooks.d.ts +62 -0
  181. package/dest/hooks/execution_hooks.d.ts.map +1 -0
  182. package/dest/hooks/execution_hooks.js +9 -0
  183. package/dest/hooks/index.d.ts +5 -0
  184. package/dest/hooks/index.d.ts.map +1 -0
  185. package/dest/hooks/index.js +1 -0
  186. package/dest/hooks/resolve_custom_request.d.ts +23 -0
  187. package/dest/hooks/resolve_custom_request.d.ts.map +1 -0
  188. package/dest/hooks/resolve_custom_request.js +3 -0
  189. package/dest/hooks/resolve_tagging_secret_strategy.d.ts +48 -0
  190. package/dest/hooks/resolve_tagging_secret_strategy.d.ts.map +1 -0
  191. package/dest/hooks/resolve_tagging_secret_strategy.js +3 -0
  192. package/dest/logs/log_service.d.ts +13 -12
  193. package/dest/logs/log_service.d.ts.map +1 -1
  194. package/dest/logs/log_service.js +186 -81
  195. package/dest/messages/tx_resolver_service.d.ts +17 -0
  196. package/dest/messages/tx_resolver_service.d.ts.map +1 -0
  197. package/dest/messages/tx_resolver_service.js +55 -0
  198. package/dest/notes/note_service.d.ts +27 -6
  199. package/dest/notes/note_service.d.ts.map +1 -1
  200. package/dest/notes/note_service.js +80 -56
  201. package/dest/notes_filter.d.ts +2 -3
  202. package/dest/notes_filter.d.ts.map +1 -1
  203. package/dest/oracle_version.d.ts +4 -3
  204. package/dest/oracle_version.d.ts.map +1 -1
  205. package/dest/oracle_version.js +20 -10
  206. package/dest/private_kernel/batch_planner.d.ts +47 -0
  207. package/dest/private_kernel/batch_planner.d.ts.map +1 -0
  208. package/dest/private_kernel/batch_planner.js +104 -0
  209. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts +1 -1
  210. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts.map +1 -1
  211. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.js +7 -3
  212. package/dest/private_kernel/hints/test_utils.d.ts +1 -1
  213. package/dest/private_kernel/hints/test_utils.d.ts.map +1 -1
  214. package/dest/private_kernel/hints/test_utils.js +3 -4
  215. package/dest/private_kernel/private_kernel_execution_prover.d.ts +6 -2
  216. package/dest/private_kernel/private_kernel_execution_prover.d.ts.map +1 -1
  217. package/dest/private_kernel/private_kernel_execution_prover.js +203 -89
  218. package/dest/private_kernel/private_kernel_oracle.d.ts +12 -10
  219. package/dest/private_kernel/private_kernel_oracle.d.ts.map +1 -1
  220. package/dest/private_kernel/private_kernel_oracle.js +40 -26
  221. package/dest/pxe.d.ts +169 -54
  222. package/dest/pxe.d.ts.map +1 -1
  223. package/dest/pxe.js +348 -204
  224. package/dest/storage/allowed_scopes.d.ts +6 -0
  225. package/dest/storage/allowed_scopes.d.ts.map +1 -0
  226. package/dest/storage/allowed_scopes.js +7 -0
  227. package/dest/storage/anchor_block_store/anchor_block_store.d.ts +9 -6
  228. package/dest/storage/anchor_block_store/anchor_block_store.d.ts.map +1 -1
  229. package/dest/storage/anchor_block_store/anchor_block_store.js +9 -7
  230. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts +42 -0
  231. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts.map +1 -0
  232. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.js +93 -0
  233. package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts +15 -0
  234. package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts.map +1 -0
  235. package/dest/storage/backwards_compatibility_tests/schema_tests.js +647 -0
  236. package/dest/storage/backwards_compatibility_tests/store_spy.d.ts +19 -0
  237. package/dest/storage/backwards_compatibility_tests/store_spy.d.ts.map +1 -0
  238. package/dest/storage/backwards_compatibility_tests/store_spy.js +63 -0
  239. package/dest/storage/capsule_store/capsule_service.d.ts +21 -0
  240. package/dest/storage/capsule_store/capsule_service.d.ts.map +1 -0
  241. package/dest/storage/capsule_store/capsule_service.js +47 -0
  242. package/dest/storage/capsule_store/capsule_store.d.ts +9 -9
  243. package/dest/storage/capsule_store/capsule_store.d.ts.map +1 -1
  244. package/dest/storage/capsule_store/capsule_store.js +36 -28
  245. package/dest/storage/capsule_store/index.d.ts +2 -1
  246. package/dest/storage/capsule_store/index.d.ts.map +1 -1
  247. package/dest/storage/capsule_store/index.js +1 -0
  248. package/dest/storage/contract_store/contract_store.d.ts +27 -24
  249. package/dest/storage/contract_store/contract_store.d.ts.map +1 -1
  250. package/dest/storage/contract_store/contract_store.js +70 -98
  251. package/dest/storage/fact_store/fact_service.d.ts +22 -0
  252. package/dest/storage/fact_store/fact_service.d.ts.map +1 -0
  253. package/dest/storage/fact_store/fact_service.js +45 -0
  254. package/dest/storage/fact_store/fact_store.d.ts +95 -0
  255. package/dest/storage/fact_store/fact_store.d.ts.map +1 -0
  256. package/dest/storage/fact_store/fact_store.js +408 -0
  257. package/dest/storage/fact_store/fact_store_keys.d.ts +34 -0
  258. package/dest/storage/fact_store/fact_store_keys.d.ts.map +1 -0
  259. package/dest/storage/fact_store/fact_store_keys.js +50 -0
  260. package/dest/storage/fact_store/index.d.ts +6 -0
  261. package/dest/storage/fact_store/index.d.ts.map +1 -0
  262. package/dest/storage/fact_store/index.js +4 -0
  263. package/dest/storage/fact_store/origin_state.d.ts +57 -0
  264. package/dest/storage/fact_store/origin_state.d.ts.map +1 -0
  265. package/dest/storage/fact_store/origin_state.js +53 -0
  266. package/dest/storage/fact_store/stored_fact.d.ts +32 -0
  267. package/dest/storage/fact_store/stored_fact.d.ts.map +1 -0
  268. package/dest/storage/fact_store/stored_fact.js +64 -0
  269. package/dest/storage/index.d.ts +3 -2
  270. package/dest/storage/index.d.ts.map +1 -1
  271. package/dest/storage/index.js +2 -1
  272. package/dest/storage/metadata.d.ts +2 -2
  273. package/dest/storage/metadata.d.ts.map +1 -1
  274. package/dest/storage/metadata.js +1 -1
  275. package/dest/storage/note_store/note_store.d.ts +42 -33
  276. package/dest/storage/note_store/note_store.d.ts.map +1 -1
  277. package/dest/storage/note_store/note_store.js +199 -170
  278. package/dest/storage/note_store/stored_note.d.ts +3 -8
  279. package/dest/storage/note_store/stored_note.d.ts.map +1 -1
  280. package/dest/storage/note_store/stored_note.js +4 -20
  281. package/dest/storage/open_pxe_stores.d.ts +35 -0
  282. package/dest/storage/open_pxe_stores.d.ts.map +1 -0
  283. package/dest/storage/open_pxe_stores.js +29 -0
  284. package/dest/storage/private_event_store/private_event_store.d.ts +13 -16
  285. package/dest/storage/private_event_store/private_event_store.d.ts.map +1 -1
  286. package/dest/storage/private_event_store/private_event_store.js +43 -43
  287. package/dest/storage/private_event_store/stored_private_event.js +1 -1
  288. package/dest/storage/tagging_store/index.d.ts +2 -2
  289. package/dest/storage/tagging_store/index.d.ts.map +1 -1
  290. package/dest/storage/tagging_store/index.js +1 -1
  291. package/dest/storage/tagging_store/recipient_tagging_store.d.ts +6 -6
  292. package/dest/storage/tagging_store/recipient_tagging_store.d.ts.map +1 -1
  293. package/dest/storage/tagging_store/sender_tagging_store.d.ts +29 -28
  294. package/dest/storage/tagging_store/sender_tagging_store.d.ts.map +1 -1
  295. package/dest/storage/tagging_store/sender_tagging_store.js +141 -115
  296. package/dest/storage/tagging_store/tagging_secret_sources_store.d.ts +51 -0
  297. package/dest/storage/tagging_store/tagging_secret_sources_store.d.ts.map +1 -0
  298. package/dest/storage/tagging_store/tagging_secret_sources_store.js +105 -0
  299. package/dest/tagging/constants.d.ts +2 -2
  300. package/dest/tagging/constants.d.ts.map +1 -1
  301. package/dest/tagging/constants.js +5 -8
  302. package/dest/tagging/get_all_logs_by_tags.d.ts +34 -10
  303. package/dest/tagging/get_all_logs_by_tags.d.ts.map +1 -1
  304. package/dest/tagging/get_all_logs_by_tags.js +36 -37
  305. package/dest/tagging/index.d.ts +6 -5
  306. package/dest/tagging/index.d.ts.map +1 -1
  307. package/dest/tagging/index.js +4 -3
  308. package/dest/tagging/persist_sender_tagging_index_ranges.d.ts +29 -0
  309. package/dest/tagging/persist_sender_tagging_index_ranges.d.ts.map +1 -0
  310. package/dest/tagging/persist_sender_tagging_index_ranges.js +42 -0
  311. package/dest/tagging/recipient_sync/sync_tagged_private_logs.d.ts +69 -0
  312. package/dest/tagging/recipient_sync/sync_tagged_private_logs.d.ts.map +1 -0
  313. package/dest/tagging/recipient_sync/sync_tagged_private_logs.js +203 -0
  314. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts +3 -3
  315. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts.map +1 -1
  316. package/dest/tagging/reconcile_tagging_index_ranges.d.ts +36 -0
  317. package/dest/tagging/reconcile_tagging_index_ranges.d.ts.map +1 -0
  318. package/dest/tagging/reconcile_tagging_index_ranges.js +74 -0
  319. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts +4 -5
  320. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts.map +1 -1
  321. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.js +31 -10
  322. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts +13 -7
  323. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts.map +1 -1
  324. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.js +41 -10
  325. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts +5 -4
  326. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts.map +1 -1
  327. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.js +26 -13
  328. package/package.json +20 -17
  329. package/src/bin/check_oracle_version.ts +51 -133
  330. package/src/bin/index.ts +5 -0
  331. package/src/bin/oracle_version_helpers.ts +311 -0
  332. package/src/block_synchronizer/block_stream_source.ts +42 -0
  333. package/src/block_synchronizer/block_synchronizer.ts +102 -39
  334. package/src/config/index.ts +15 -8
  335. package/src/config/package_info.ts +1 -1
  336. package/src/contract/contract_class_service.ts +83 -0
  337. package/src/contract/contract_sync_service.ts +176 -0
  338. package/src/contract/helpers.ts +35 -0
  339. package/src/contract_function_simulator/anchored_contract_data.ts +74 -0
  340. package/src/contract_function_simulator/contract_function_simulator.ts +170 -56
  341. package/src/contract_function_simulator/ephemeral_array_service.ts +110 -0
  342. package/src/contract_function_simulator/execution_note_cache.ts +8 -29
  343. package/src/contract_function_simulator/execution_tagging_index_cache.ts +19 -18
  344. package/src/contract_function_simulator/index.ts +69 -4
  345. package/src/contract_function_simulator/noir-structs/bounded_vec.ts +43 -0
  346. package/src/contract_function_simulator/noir-structs/contract_class_log_data.ts +9 -0
  347. package/src/contract_function_simulator/noir-structs/embedded_curve_point.ts +4 -0
  348. package/src/contract_function_simulator/noir-structs/ephemeral_array.ts +66 -0
  349. package/src/contract_function_simulator/noir-structs/event_validation_request.ts +5 -7
  350. package/src/contract_function_simulator/noir-structs/fact.ts +13 -0
  351. package/src/contract_function_simulator/noir-structs/fact_collection.ts +64 -0
  352. package/src/contract_function_simulator/noir-structs/log_retrieval_request.ts +27 -20
  353. package/src/contract_function_simulator/noir-structs/log_retrieval_response.ts +14 -61
  354. package/src/contract_function_simulator/noir-structs/note_data.ts +27 -0
  355. package/src/contract_function_simulator/noir-structs/note_validation_request.ts +6 -8
  356. package/src/contract_function_simulator/noir-structs/option.ts +75 -0
  357. package/src/contract_function_simulator/noir-structs/origin_block.ts +8 -0
  358. package/src/contract_function_simulator/noir-structs/pending_tagged_log.ts +12 -0
  359. package/src/contract_function_simulator/noir-structs/provided_secret.ts +5 -0
  360. package/src/contract_function_simulator/noir-structs/resolved_tagging_strategy.ts +58 -0
  361. package/src/contract_function_simulator/noir-structs/resolved_tx.ts +53 -0
  362. package/src/contract_function_simulator/noir-structs/tx_effect_data.ts +15 -0
  363. package/src/contract_function_simulator/noir-structs/utility_context.ts +5 -17
  364. package/src/contract_function_simulator/oracle/acir_callback.ts +154 -0
  365. package/src/contract_function_simulator/oracle/index.ts +1 -15
  366. package/src/contract_function_simulator/oracle/interfaces.ts +11 -170
  367. package/src/contract_function_simulator/oracle/legacy_oracle_registry.ts +120 -0
  368. package/src/contract_function_simulator/oracle/message_load_oracle_inputs.ts +6 -21
  369. package/src/contract_function_simulator/oracle/note_packing_utils.ts +3 -3
  370. package/src/contract_function_simulator/oracle/oracle_registry.ts +689 -0
  371. package/src/contract_function_simulator/oracle/oracle_type_mappings.ts +964 -0
  372. package/src/contract_function_simulator/oracle/private_execution.ts +6 -7
  373. package/src/contract_function_simulator/oracle/private_execution_oracle.ts +241 -103
  374. package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +804 -238
  375. package/src/contract_function_simulator/pick_notes.ts +22 -3
  376. package/src/contract_function_simulator/transient_array_service.ts +91 -0
  377. package/src/contract_logging.ts +18 -5
  378. package/src/debug/pxe_debug_utils.ts +4 -12
  379. package/src/entrypoints/client/bundle/index.ts +0 -1
  380. package/src/entrypoints/client/bundle/utils.ts +19 -7
  381. package/src/entrypoints/client/lazy/index.ts +0 -1
  382. package/src/entrypoints/client/lazy/utils.ts +19 -7
  383. package/src/entrypoints/pxe_creation_options.ts +21 -1
  384. package/src/entrypoints/server/index.ts +6 -3
  385. package/src/entrypoints/server/utils.ts +24 -7
  386. package/src/error_enriching.ts +27 -11
  387. package/src/events/event_service.ts +69 -21
  388. package/src/events/private_event_filter_validator.ts +21 -1
  389. package/src/hooks/authorize_utility_call.ts +44 -0
  390. package/src/hooks/execution_hooks.ts +68 -0
  391. package/src/hooks/index.ts +12 -0
  392. package/src/hooks/resolve_custom_request.ts +24 -0
  393. package/src/hooks/resolve_tagging_secret_strategy.ts +57 -0
  394. package/src/logs/log_service.ts +224 -146
  395. package/src/messages/tx_resolver_service.ts +69 -0
  396. package/src/notes/note_service.ts +119 -85
  397. package/src/notes_filter.ts +1 -3
  398. package/src/oracle_version.ts +20 -10
  399. package/src/private_kernel/batch_planner.ts +168 -0
  400. package/src/private_kernel/hints/private_kernel_reset_private_inputs_builder.ts +12 -2
  401. package/src/private_kernel/hints/test_utils.ts +3 -10
  402. package/src/private_kernel/private_kernel_execution_prover.ts +335 -121
  403. package/src/private_kernel/private_kernel_oracle.ts +58 -29
  404. package/src/pxe.ts +563 -233
  405. package/src/storage/allowed_scopes.ts +14 -0
  406. package/src/storage/anchor_block_store/anchor_block_store.ts +9 -7
  407. package/src/storage/backwards_compatibility_tests/__snapshots__/AddressStore.json +22 -0
  408. package/src/storage/backwards_compatibility_tests/__snapshots__/AnchorBlockStore.json +3 -0
  409. package/src/storage/backwards_compatibility_tests/__snapshots__/CapsuleStore.json +16 -0
  410. package/src/storage/backwards_compatibility_tests/__snapshots__/ContractStore.json +28 -0
  411. package/src/storage/backwards_compatibility_tests/__snapshots__/FactStore.json +40 -0
  412. package/src/storage/backwards_compatibility_tests/__snapshots__/KeyStore.json +52 -0
  413. package/src/storage/backwards_compatibility_tests/__snapshots__/L2TipsKVStore.json +40 -0
  414. package/src/storage/backwards_compatibility_tests/__snapshots__/NoteStore.json +56 -0
  415. package/src/storage/backwards_compatibility_tests/__snapshots__/PrivateEventStore.json +44 -0
  416. package/src/storage/backwards_compatibility_tests/__snapshots__/RecipientTaggingStore.json +18 -0
  417. package/src/storage/backwards_compatibility_tests/__snapshots__/SenderTaggingStore.json +22 -0
  418. package/src/storage/backwards_compatibility_tests/__snapshots__/TaggingSecretSourcesStore.json +30 -0
  419. package/src/storage/backwards_compatibility_tests/__snapshots__/opened_stores.json +117 -0
  420. package/src/storage/backwards_compatibility_tests/kv_store_snapshot.ts +122 -0
  421. package/src/storage/backwards_compatibility_tests/schema_tests.ts +774 -0
  422. package/src/storage/backwards_compatibility_tests/store_spy.ts +73 -0
  423. package/src/storage/capsule_store/capsule_service.ts +85 -0
  424. package/src/storage/capsule_store/capsule_store.ts +44 -26
  425. package/src/storage/capsule_store/index.ts +1 -0
  426. package/src/storage/contract_store/contract_store.ts +96 -124
  427. package/src/storage/fact_store/fact_service.ts +69 -0
  428. package/src/storage/fact_store/fact_store.ts +487 -0
  429. package/src/storage/fact_store/fact_store_keys.ts +75 -0
  430. package/src/storage/fact_store/index.ts +14 -0
  431. package/src/storage/fact_store/origin_state.ts +75 -0
  432. package/src/storage/fact_store/stored_fact.ts +80 -0
  433. package/src/storage/index.ts +2 -1
  434. package/src/storage/metadata.ts +1 -1
  435. package/src/storage/note_store/note_store.ts +228 -192
  436. package/src/storage/note_store/stored_note.ts +5 -27
  437. package/src/storage/open_pxe_stores.ts +52 -0
  438. package/src/storage/private_event_store/private_event_store.ts +52 -54
  439. package/src/storage/private_event_store/stored_private_event.ts +1 -1
  440. package/src/storage/tagging_store/index.ts +1 -1
  441. package/src/storage/tagging_store/recipient_tagging_store.ts +5 -9
  442. package/src/storage/tagging_store/sender_tagging_store.ts +185 -138
  443. package/src/storage/tagging_store/tagging_secret_sources_store.ts +138 -0
  444. package/src/tagging/constants.ts +6 -8
  445. package/src/tagging/get_all_logs_by_tags.ts +78 -50
  446. package/src/tagging/index.ts +5 -4
  447. package/src/tagging/persist_sender_tagging_index_ranges.ts +57 -0
  448. package/src/tagging/recipient_sync/sync_tagged_private_logs.ts +301 -0
  449. package/src/tagging/recipient_sync/utils/find_highest_indexes.ts +2 -2
  450. package/src/tagging/reconcile_tagging_index_ranges.ts +102 -0
  451. package/src/tagging/sender_sync/sync_sender_tagging_indexes.ts +52 -12
  452. package/src/tagging/sender_sync/utils/get_status_change_of_pending.ts +44 -14
  453. package/src/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.ts +23 -14
  454. package/dest/access_scopes.d.ts +0 -9
  455. package/dest/access_scopes.d.ts.map +0 -1
  456. package/dest/access_scopes.js +0 -6
  457. package/dest/contract_function_simulator/oracle/oracle.d.ts +0 -59
  458. package/dest/contract_function_simulator/oracle/oracle.d.ts.map +0 -1
  459. package/dest/contract_function_simulator/oracle/oracle.js +0 -406
  460. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts +0 -6
  461. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts.map +0 -1
  462. package/dest/contract_function_simulator/proxied_contract_data_source.js +0 -80
  463. package/dest/contract_sync/contract_sync_service.d.ts +0 -43
  464. package/dest/contract_sync/contract_sync_service.d.ts.map +0 -1
  465. package/dest/contract_sync/contract_sync_service.js +0 -97
  466. package/dest/contract_sync/helpers.d.ts +0 -29
  467. package/dest/contract_sync/helpers.d.ts.map +0 -1
  468. package/dest/contract_sync/helpers.js +0 -55
  469. package/dest/storage/tagging_store/sender_address_book_store.d.ts +0 -14
  470. package/dest/storage/tagging_store/sender_address_book_store.d.ts.map +0 -1
  471. package/dest/storage/tagging_store/sender_address_book_store.js +0 -36
  472. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts +0 -14
  473. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts.map +0 -1
  474. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +0 -99
  475. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts +0 -14
  476. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts.map +0 -1
  477. package/dest/tagging/recipient_sync/utils/load_logs_for_range.js +0 -33
  478. package/src/access_scopes.ts +0 -9
  479. package/src/contract_function_simulator/oracle/oracle.ts +0 -637
  480. package/src/contract_function_simulator/proxied_contract_data_source.ts +0 -83
  481. package/src/contract_sync/contract_sync_service.ts +0 -152
  482. package/src/contract_sync/helpers.ts +0 -98
  483. package/src/storage/tagging_store/sender_address_book_store.ts +0 -48
  484. package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +0 -140
  485. package/src/tagging/recipient_sync/utils/load_logs_for_range.ts +0 -44
package/dest/pxe.js CHANGED
@@ -1,85 +1,97 @@
1
+ import { BlockNumber } from '@aztec/foundation/branded-types';
2
+ import { Point } from '@aztec/foundation/curves/grumpkin';
1
3
  import { createLogger } from '@aztec/foundation/log';
2
4
  import { SerialQueue } from '@aztec/foundation/queue';
3
5
  import { Timer } from '@aztec/foundation/timer';
4
- import { KeyStore } from '@aztec/key-store';
5
- import { L2TipsKVStore } from '@aztec/kv-store/stores';
6
6
  import { protocolContractNames } from '@aztec/protocol-contracts';
7
7
  import { FunctionType, decodeFunctionSignature } from '@aztec/stdlib/abi';
8
- import { computeContractAddressFromInstance, getContractClassFromArtifact } from '@aztec/stdlib/contract';
8
+ import { GENESIS_BLOCK_HEADER_HASH } from '@aztec/stdlib/block';
9
+ import { computeContractAddressFromInstance } from '@aztec/stdlib/contract';
9
10
  import { SimulationError } from '@aztec/stdlib/errors';
11
+ import { computeAddressSecret } from '@aztec/stdlib/keys';
12
+ import { deriveEcdhSharedSecretPoint } from '@aztec/stdlib/logs';
10
13
  import { PrivateSimulationResult, TxProfileResult, TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
11
14
  import { inspect } from 'util';
12
15
  import { BlockSynchronizer } from './block_synchronizer/index.js';
16
+ import { ContractClassService } from './contract/contract_class_service.js';
17
+ import { ContractSyncService } from './contract/contract_sync_service.js';
13
18
  import { BenchmarkedNodeFactory } from './contract_function_simulator/benchmarked_node.js';
14
19
  import { ContractFunctionSimulator, generateSimulatedProvingResult } from './contract_function_simulator/contract_function_simulator.js';
15
- import { ProxiedContractStoreFactory } from './contract_function_simulator/proxied_contract_data_source.js';
16
20
  import { displayDebugLogs } from './contract_logging.js';
17
- import { ContractSyncService } from './contract_sync/contract_sync_service.js';
18
- import { readCurrentClassId } from './contract_sync/helpers.js';
19
21
  import { PXEDebugUtils } from './debug/pxe_debug_utils.js';
20
22
  import { enrichPublicSimulationError, enrichSimulationError } from './error_enriching.js';
21
23
  import { PrivateEventFilterValidator } from './events/private_event_filter_validator.js';
22
24
  import { JobCoordinator } from './job_coordinator/job_coordinator.js';
25
+ import { TxResolverService } from './messages/tx_resolver_service.js';
23
26
  import { PrivateKernelExecutionProver } from './private_kernel/private_kernel_execution_prover.js';
24
27
  import { PrivateKernelOracle } from './private_kernel/private_kernel_oracle.js';
25
- import { AddressStore } from './storage/address_store/address_store.js';
26
- import { AnchorBlockStore } from './storage/anchor_block_store/anchor_block_store.js';
27
- import { CapsuleStore } from './storage/capsule_store/capsule_store.js';
28
- import { ContractStore } from './storage/contract_store/contract_store.js';
29
- import { NoteStore } from './storage/note_store/note_store.js';
30
- import { PrivateEventStore } from './storage/private_event_store/private_event_store.js';
31
- import { RecipientTaggingStore } from './storage/tagging_store/recipient_tagging_store.js';
32
- import { SenderAddressBookStore } from './storage/tagging_store/sender_address_book_store.js';
33
- import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store.js';
28
+ import { openPxeStores } from './storage/open_pxe_stores.js';
29
+ import { persistSenderTaggingIndexRangesForTx } from './tagging/index.js';
34
30
  /**
35
31
  * Private eXecution Environment (PXE) is a library used by wallets to simulate private phase of transactions and to
36
32
  * manage private state of users.
37
33
  */ export class PXE {
38
34
  node;
35
+ nodeDebug;
39
36
  db;
40
37
  blockStateSynchronizer;
41
38
  keyStore;
42
39
  contractStore;
43
40
  noteStore;
44
41
  capsuleStore;
42
+ factStore;
45
43
  anchorBlockStore;
46
44
  senderTaggingStore;
47
- senderAddressBookStore;
45
+ taggingSecretSourcesStore;
48
46
  recipientTaggingStore;
49
47
  addressStore;
50
48
  privateEventStore;
51
49
  contractSyncService;
50
+ contractClassService;
51
+ txResolver;
52
+ l2TipsStore;
52
53
  simulator;
53
54
  proverEnabled;
55
+ autoSync;
54
56
  proofCreator;
55
57
  protocolContractsProvider;
58
+ preloadedContractsProvider;
56
59
  log;
57
60
  jobQueue;
58
61
  jobCoordinator;
59
62
  debug;
60
- constructor(node, db, blockStateSynchronizer, keyStore, contractStore, noteStore, capsuleStore, anchorBlockStore, senderTaggingStore, senderAddressBookStore, recipientTaggingStore, addressStore, privateEventStore, contractSyncService, simulator, proverEnabled, proofCreator, protocolContractsProvider, log, jobQueue, jobCoordinator, debug){
63
+ hooks;
64
+ constructor(node, nodeDebug, db, blockStateSynchronizer, keyStore, contractStore, noteStore, capsuleStore, factStore, anchorBlockStore, senderTaggingStore, taggingSecretSourcesStore, recipientTaggingStore, addressStore, privateEventStore, contractSyncService, contractClassService, txResolver, l2TipsStore, simulator, proverEnabled, autoSync, proofCreator, protocolContractsProvider, preloadedContractsProvider, log, jobQueue, jobCoordinator, debug, hooks){
61
65
  this.node = node;
66
+ this.nodeDebug = nodeDebug;
62
67
  this.db = db;
63
68
  this.blockStateSynchronizer = blockStateSynchronizer;
64
69
  this.keyStore = keyStore;
65
70
  this.contractStore = contractStore;
66
71
  this.noteStore = noteStore;
67
72
  this.capsuleStore = capsuleStore;
73
+ this.factStore = factStore;
68
74
  this.anchorBlockStore = anchorBlockStore;
69
75
  this.senderTaggingStore = senderTaggingStore;
70
- this.senderAddressBookStore = senderAddressBookStore;
76
+ this.taggingSecretSourcesStore = taggingSecretSourcesStore;
71
77
  this.recipientTaggingStore = recipientTaggingStore;
72
78
  this.addressStore = addressStore;
73
79
  this.privateEventStore = privateEventStore;
74
80
  this.contractSyncService = contractSyncService;
81
+ this.contractClassService = contractClassService;
82
+ this.txResolver = txResolver;
83
+ this.l2TipsStore = l2TipsStore;
75
84
  this.simulator = simulator;
76
85
  this.proverEnabled = proverEnabled;
86
+ this.autoSync = autoSync;
77
87
  this.proofCreator = proofCreator;
78
88
  this.protocolContractsProvider = protocolContractsProvider;
89
+ this.preloadedContractsProvider = preloadedContractsProvider;
79
90
  this.log = log;
80
91
  this.jobQueue = jobQueue;
81
92
  this.jobCoordinator = jobCoordinator;
82
93
  this.debug = debug;
94
+ this.hooks = hooks;
83
95
  }
84
96
  /**
85
97
  * Creates an instance of a PXE by instantiating all the necessary data providers and services.
@@ -87,25 +99,24 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
87
99
  * can be contacted.
88
100
  *
89
101
  * @returns A promise that resolves PXE is ready to be used.
90
- */ static async create({ node, store, proofCreator, simulator, protocolContractsProvider, config, loggerOrSuffix }) {
102
+ */ static async create({ node, nodeDebug, store, proofCreator, simulator, protocolContractsProvider, preloadedContractsProvider, config, loggerOrSuffix, hooks }) {
91
103
  // Extract bindings from the logger, or use empty bindings if a string suffix is provided.
92
104
  const bindings = loggerOrSuffix && typeof loggerOrSuffix !== 'string' ? loggerOrSuffix.getBindings() : undefined;
93
105
  const log = !loggerOrSuffix || typeof loggerOrSuffix === 'string' ? createLogger(loggerOrSuffix ? `pxe:service:${loggerOrSuffix}` : `pxe:service`) : loggerOrSuffix;
94
106
  const info = await node.getNodeInfo();
107
+ // Source the genesis block hash from the node so PXE's L2BlockStream agrees with the node's
108
+ // archiver on the dynamic initial header hash. Without this the tip store would fall back to
109
+ // the static `GENESIS_BLOCK_HEADER_HASH` constant, which only matches deployments with the
110
+ // default empty genesis (timestamp 0, no prefilled public data) and diverges otherwise — the
111
+ // sync at block 0 would then get stuck in `areBlockHashesEqualAt` and abort. If the node does
112
+ // not return a genesis block (older node or test fixture) we fall back to the static constant.
113
+ const initialBlockHash = (await node.getBlock(BlockNumber.ZERO))?.hash ?? GENESIS_BLOCK_HEADER_HASH;
95
114
  const proverEnabled = config.proverEnabled !== undefined ? config.proverEnabled : info.realProofs;
96
- const addressStore = new AddressStore(store);
97
- const privateEventStore = new PrivateEventStore(store);
98
- const contractStore = new ContractStore(store);
99
- const noteStore = new NoteStore(store);
100
- const anchorBlockStore = new AnchorBlockStore(store);
101
- const senderTaggingStore = new SenderTaggingStore(store);
102
- const senderAddressBookStore = new SenderAddressBookStore(store);
103
- const recipientTaggingStore = new RecipientTaggingStore(store);
104
- const capsuleStore = new CapsuleStore(store);
105
- const keyStore = new KeyStore(store);
106
- const tipsStore = new L2TipsKVStore(store, 'pxe');
107
- const contractSyncService = new ContractSyncService(node, contractStore, noteStore, createLogger('pxe:contract_sync', bindings));
108
- const synchronizer = new BlockSynchronizer(node, store, anchorBlockStore, noteStore, privateEventStore, tipsStore, contractSyncService, config, bindings);
115
+ const { addressStore, privateEventStore, contractStore, noteStore, anchorBlockStore, senderTaggingStore, taggingSecretSourcesStore, recipientTaggingStore, capsuleStore, keyStore, l2TipsStore, factStore } = openPxeStores(store, initialBlockHash);
116
+ const contractClassService = new ContractClassService(node, contractStore);
117
+ const contractSyncService = new ContractSyncService(node, contractStore, contractClassService, noteStore, createLogger('pxe:contract_sync', bindings));
118
+ const txResolver = new TxResolverService(node);
119
+ const synchronizer = new BlockSynchronizer(node, store, anchorBlockStore, noteStore, privateEventStore, factStore, l2TipsStore, contractSyncService, contractClassService, config, bindings);
109
120
  const jobCoordinator = new JobCoordinator(store, bindings);
110
121
  jobCoordinator.registerStores([
111
122
  capsuleStore,
@@ -113,35 +124,60 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
113
124
  recipientTaggingStore,
114
125
  privateEventStore,
115
126
  noteStore,
127
+ factStore,
116
128
  contractSyncService
117
129
  ]);
118
130
  const debugUtils = new PXEDebugUtils(contractSyncService, noteStore, synchronizer, anchorBlockStore);
119
131
  const jobQueue = new SerialQueue();
120
- const pxe = new PXE(node, store, synchronizer, keyStore, contractStore, noteStore, capsuleStore, anchorBlockStore, senderTaggingStore, senderAddressBookStore, recipientTaggingStore, addressStore, privateEventStore, contractSyncService, simulator, proverEnabled, proofCreator, protocolContractsProvider, log, jobQueue, jobCoordinator, debugUtils);
132
+ const pxe = new PXE(node, nodeDebug, store, synchronizer, keyStore, contractStore, noteStore, capsuleStore, factStore, anchorBlockStore, senderTaggingStore, taggingSecretSourcesStore, recipientTaggingStore, addressStore, privateEventStore, contractSyncService, contractClassService, txResolver, l2TipsStore, simulator, proverEnabled, config.autoSync, proofCreator, protocolContractsProvider, preloadedContractsProvider, log, jobQueue, jobCoordinator, debugUtils, hooks);
121
133
  debugUtils.setPXEHelpers(pxe.#putInJobQueue.bind(pxe), pxe.#getSimulatorForTx.bind(pxe), pxe.#executeUtility.bind(pxe));
122
134
  pxe.jobQueue.start();
123
- await pxe.#registerProtocolContracts();
135
+ await Promise.all([
136
+ pxe.#registerProtocolContracts(),
137
+ pxe.#registerPreloadedContracts()
138
+ ]);
124
139
  log.info(`Started PXE connected to chain ${info.l1ChainId} version ${info.rollupVersion}`);
125
140
  return pxe;
126
141
  }
127
142
  // Internal methods
128
143
  #getSimulatorForTx(overrides) {
129
- const proxyContractStore = ProxiedContractStoreFactory.create(this.contractStore, overrides?.contracts);
130
144
  return new ContractFunctionSimulator({
131
- contractStore: proxyContractStore,
145
+ contractStore: this.contractStore,
146
+ contractClassService: this.contractClassService,
147
+ overrides: overrides?.contracts,
132
148
  noteStore: this.noteStore,
133
149
  keyStore: this.keyStore,
134
150
  addressStore: this.addressStore,
135
151
  aztecNode: BenchmarkedNodeFactory.create(this.node),
152
+ l2TipsStore: this.l2TipsStore,
136
153
  senderTaggingStore: this.senderTaggingStore,
137
154
  recipientTaggingStore: this.recipientTaggingStore,
138
- senderAddressBookStore: this.senderAddressBookStore,
155
+ taggingSecretSourcesStore: this.taggingSecretSourcesStore,
139
156
  capsuleStore: this.capsuleStore,
157
+ factStore: this.factStore,
140
158
  privateEventStore: this.privateEventStore,
141
159
  simulator: this.simulator,
142
- contractSyncService: this.contractSyncService
160
+ contractSyncService: this.contractSyncService,
161
+ txResolver: this.txResolver,
162
+ hooks: this.hooks
143
163
  });
144
164
  }
165
+ /** Best-effort debug function name for the class `address` runs at `anchorBlockHeader`. Used for log display only. */ async #getDebugFunctionName(address, selector, anchorBlockHeader) {
166
+ try {
167
+ const classId = await this.contractClassService.getCurrentClassId(address, anchorBlockHeader);
168
+ return classId ? await this.contractStore.getDebugFunctionName(classId, selector) : `${address}:${selector}`;
169
+ } catch {
170
+ return `${address}:${selector}`;
171
+ }
172
+ }
173
+ /** Best-effort debug contract name for the class `address` runs at `anchorBlockHeader`. Used for log display only. */ async #getDebugContractName(address, anchorBlockHeader) {
174
+ try {
175
+ const classId = await this.contractClassService.getCurrentClassId(address, anchorBlockHeader);
176
+ return classId ? await this.contractStore.getDebugContractName(classId) : undefined;
177
+ } catch {
178
+ return undefined;
179
+ }
180
+ }
145
181
  #contextualizeError(err, ...context) {
146
182
  let contextStr = '';
147
183
  if (context.length > 0) {
@@ -181,34 +217,46 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
181
217
  });
182
218
  }
183
219
  async #registerProtocolContracts() {
184
- const registered = {};
185
- for (const name of protocolContractNames){
220
+ const registered = Object.fromEntries(await Promise.all(protocolContractNames.map(async (name)=>{
186
221
  const { address, instance, artifact } = await this.protocolContractsProvider.getProtocolContractArtifact(name);
187
222
  await this.contractStore.addContractArtifact(artifact);
188
223
  await this.contractStore.addContractInstance(instance);
189
- registered[name] = address.toString();
190
- }
224
+ return [
225
+ name,
226
+ address.toString()
227
+ ];
228
+ })));
191
229
  this.log.verbose(`Registered protocol contracts in pxe`, registered);
192
230
  }
231
+ async #registerPreloadedContracts() {
232
+ const contracts = await this.preloadedContractsProvider.getPreloadedContracts();
233
+ await Promise.all(contracts.map(async ({ instance, artifact })=>{
234
+ if (artifact) {
235
+ await this.registerContractClass(artifact);
236
+ }
237
+ await this.registerContract(instance);
238
+ }));
239
+ this.log.verbose(`Registered preloaded contracts in pxe`, {
240
+ contracts: contracts.map(({ instance })=>instance.address.toString())
241
+ });
242
+ }
193
243
  // Executes the entrypoint private function, as well as all nested private
194
244
  // functions that might arise.
195
- async #executePrivate(contractFunctionSimulator, txRequest, scopes, jobId) {
245
+ async #executePrivate({ contractFunctionSimulator, txRequest, anchorBlockHeader, scopes, jobId, senderForTags }) {
196
246
  const { origin: contractAddress, functionSelector } = txRequest;
197
247
  try {
198
- const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
199
248
  await this.contractSyncService.ensureContractSynced(contractAddress, functionSelector, (privateSyncCall, execScopes)=>this.#executeUtility(contractFunctionSimulator, privateSyncCall, [], execScopes, jobId), anchorBlockHeader, jobId, scopes);
200
249
  const result = await contractFunctionSimulator.run(txRequest, {
201
- contractAddress,
202
- selector: functionSelector,
203
250
  anchorBlockHeader,
204
251
  scopes,
205
- jobId
252
+ jobId,
253
+ senderForTags
206
254
  });
207
255
  this.log.debug(`Private simulation completed for ${contractAddress.toString()}:${functionSelector}`);
208
256
  return result;
209
257
  } catch (err) {
210
258
  if (err instanceof SimulationError) {
211
- await enrichSimulationError(err, this.contractStore, this.log);
259
+ await enrichSimulationError(err, this.contractStore, this.contractClassService, anchorBlockHeader, this.log);
212
260
  }
213
261
  throw err;
214
262
  }
@@ -225,10 +273,15 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
225
273
  */ async #executeUtility(contractFunctionSimulator, call, authWitnesses, scopes, jobId) {
226
274
  try {
227
275
  const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
228
- return contractFunctionSimulator.runUtility(call, authWitnesses ?? [], anchorBlockHeader, scopes, jobId);
276
+ const { result, offchainEffects } = await contractFunctionSimulator.runUtility(call, authWitnesses ?? [], anchorBlockHeader, scopes, jobId);
277
+ return {
278
+ result,
279
+ offchainEffects
280
+ };
229
281
  } catch (err) {
230
282
  if (err instanceof SimulationError) {
231
- await enrichSimulationError(err, this.contractStore, this.log);
283
+ const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
284
+ await enrichSimulationError(err, this.contractStore, this.contractClassService, anchorBlockHeader, this.log);
232
285
  }
233
286
  throw err;
234
287
  }
@@ -238,11 +291,11 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
238
291
  * This allows to catch public execution errors before submitting the transaction.
239
292
  * It can also be used for estimating gas in the future.
240
293
  * @param tx - The transaction to be simulated.
241
- */ async #simulatePublicCalls(tx, skipFeeEnforcement) {
294
+ */ async #simulatePublicCalls(tx, skipFeeEnforcement, overrides) {
242
295
  // Simulating public calls can throw if the TX fails in a phase that doesn't allow reverts (setup)
243
296
  // Or return as reverted if it fails in a phase that allows reverts (app logic, teardown)
244
297
  try {
245
- const result = await this.node.simulatePublicCalls(tx, skipFeeEnforcement);
298
+ const result = await this.node.simulatePublicCalls(tx, skipFeeEnforcement, overrides);
246
299
  if (result.revertReason) {
247
300
  throw result.revertReason;
248
301
  }
@@ -250,7 +303,8 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
250
303
  } catch (err) {
251
304
  if (err instanceof SimulationError) {
252
305
  try {
253
- await enrichPublicSimulationError(err, this.contractStore, this.log);
306
+ const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
307
+ await enrichPublicSimulationError(err, this.contractStore, this.contractClassService, anchorBlockHeader, this.log);
254
308
  } catch (enrichErr) {
255
309
  this.log.error(`Failed to enrich public simulation error: ${enrichErr}`);
256
310
  }
@@ -268,25 +322,41 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
268
322
  * @param privateExecutionResult - The result of the private execution
269
323
  * @param config - The configuration for the kernel execution prover.
270
324
  * @returns An object that contains the output of the kernel execution, including the ChonkProof if proving is enabled.
271
- */ async #prove(txExecutionRequest, proofCreator, privateExecutionResult, config) {
272
- const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
273
- const anchorBlockHash = await anchorBlockHeader.hash();
274
- const kernelOracle = new PrivateKernelOracle(this.contractStore, this.keyStore, this.node, anchorBlockHash);
325
+ */ async #prove(txExecutionRequest, proofCreator, privateExecutionResult, anchorBlockHeader, config) {
326
+ const kernelOracle = new PrivateKernelOracle(this.contractStore, this.contractClassService, this.keyStore, this.node, anchorBlockHeader);
275
327
  const kernelTraceProver = new PrivateKernelExecutionProver(kernelOracle, proofCreator, !this.proverEnabled, this.log.getBindings());
276
328
  this.log.debug(`Executing kernel trace prover (${JSON.stringify(config)})...`);
277
329
  return await kernelTraceProver.proveWithKernels(txExecutionRequest.toTxRequest(), privateExecutionResult, config);
278
330
  }
331
+ /**
332
+ * Syncs with the node only when `autoSync` is enabled.
333
+ * When `autoSync` is disabled, callers (typically a wallet) are
334
+ * responsible for invoking `pxe.sync()` at the right granularity.
335
+ */ async #maybeSync() {
336
+ if (this.autoSync) {
337
+ await this.blockStateSynchronizer.sync();
338
+ }
339
+ }
279
340
  // Public API
280
341
  /**
342
+ * Triggers a sync of PXE state with the node, regardless of the `autoSync` config flag. Use this to
343
+ * batch syncs across composite flows when `autoSync` is disabled (e.g. one sync per simulate+send
344
+ * instead of one per inner PXE call). Serialized through the job queue.
345
+ */ sync() {
346
+ return this.#putInJobQueue(()=>this.blockStateSynchronizer.sync());
347
+ }
348
+ /**
281
349
  * Returns the block header up to which the PXE has synced.
282
350
  * @returns The synced block header
283
351
  */ getSyncedBlockHeader() {
284
- return this.anchorBlockStore.getBlockHeader();
352
+ return this.#putInJobQueue(()=>{
353
+ return this.anchorBlockStore.getBlockHeader();
354
+ });
285
355
  }
286
356
  /**
287
- * Returns the contract instance for a given address, if it's registered in the PXE.
357
+ * Returns the address preimage of the contract instance at a given address, if it's registered in the PXE.
288
358
  * @param address - The contract address.
289
- * @returns The contract instance if found, undefined otherwise.
359
+ * @returns The contract instance address preimage if found, undefined otherwise.
290
360
  */ getContractInstance(address) {
291
361
  return this.contractStore.getContractInstance(address);
292
362
  }
@@ -298,18 +368,22 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
298
368
  return await this.contractStore.getContractArtifact(id);
299
369
  }
300
370
  /**
301
- * Registers a user account in PXE given its master encryption private key.
302
- * Once a new account is registered, the PXE will trial-decrypt all published notes on
303
- * the chain and store those that correspond to the registered account. Will do nothing if the
304
- * account is already registered.
371
+ * Registers a user account in PXE.
372
+ *
373
+ * PXE holds the account's four privacy secret keys but only the *public* message-signing and fallback keys: their
374
+ * secret keys are withheld, since PXE is not trusted to hold them.
375
+ *
376
+ * Does nothing if the account is already registered.
377
+ *
378
+ * The four privacy secret keys can be retrieved later with {@link getAccountSecretKeys}.
305
379
  *
306
- * @param secretKey - Secret key of the corresponding user master public key.
380
+ * @param keys - The account's privacy keys: four secret keys plus the message-signing and fallback public keys.
307
381
  * @param partialAddress - The partial address of the account contract corresponding to the account being registered.
308
382
  * @returns The complete address of the account.
309
- */ async registerAccount(secretKey, partialAddress) {
383
+ */ async registerAccount(keys, partialAddress) {
310
384
  const accounts = await this.keyStore.getAccounts();
311
- const accountCompleteAddress = await this.keyStore.addAccount(secretKey, partialAddress);
312
- if (accounts.includes(accountCompleteAddress.address)) {
385
+ const accountCompleteAddress = await this.keyStore.addAccount(keys, partialAddress);
386
+ if (accounts.some((a)=>a.equals(accountCompleteAddress.address))) {
313
387
  this.log.info(`Account:\n "${accountCompleteAddress.address.toString()}"\n already registered.`);
314
388
  return accountCompleteAddress;
315
389
  } else {
@@ -320,44 +394,141 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
320
394
  return accountCompleteAddress;
321
395
  }
322
396
  /**
323
- * Registers a sender in this PXE.
397
+ * Retrieves the four privacy secret keys PXE holds for a registered account (nullifier-hiding, incoming-viewing,
398
+ * outgoing-viewing, tagging).
324
399
  *
325
- * After registering a new sender, the PXE will sync private logs that are tagged with this sender's address.
326
- * Will do nothing if the address is already registered.
400
+ * These do NOT grant control over an account's assets, e.g. they are insufficient to impersonate the account or to
401
+ * spend notes, but they _do_ guard the account's privacy. Parties that have knowledge of these keys can decrypt all
402
+ * messages sent to the account, discover all of their on-chain activity, including notes, events, etc.
327
403
  *
328
- * @param sender - Address of the sender to register.
329
- * @returns The address of the sender.
330
- * TODO: It's strange that we return the address here and I (benesjan) think we should drop the return value.
331
- */ async registerSender(sender) {
332
- const accounts = await this.keyStore.getAccounts();
333
- if (accounts.includes(sender)) {
334
- this.log.info(`Sender:\n "${sender.toString()}"\n already registered.`);
335
- return sender;
404
+ * Security is paramount when handling these keys, which should itself be a very rare occurrence. Other than exporting
405
+ * and then importing an account into a separate PXE/wallet, there is typically no need for a wallet to ever access
406
+ * these keys. Applications should NEVER be given access to them.
407
+ *
408
+ * @throws If the account is not registered.
409
+ */ getAccountSecretKeys(account) {
410
+ return this.keyStore.getAccountSecretKeys(account);
411
+ }
412
+ /**
413
+ * Registers a source from which this PXE derives the tagging secrets it scans for to discover incoming private logs.
414
+ * See {@link TaggingSecretSource} for the meaning of each variant. Does nothing if the source is already registered.
415
+ *
416
+ * After a new source is added we clear the cache tracking which contracts have finished syncing, so every contract
417
+ * re-syncs against the new source's logs (whose notes/events could belong to any contract). Already-discovered
418
+ * notes/events are not discarded.
419
+ */ async registerTaggingSecretSource(source) {
420
+ let wasAdded;
421
+ switch(source.kind){
422
+ case 'address-derived':
423
+ wasAdded = await this.#registerSender(source.sender);
424
+ break;
425
+ case 'arbitrary-secret':
426
+ wasAdded = await this.#registerSharedSecret(source.recipient, 'arbitrary-secret', source.secret);
427
+ break;
428
+ case 'handshake':
429
+ wasAdded = await this.#registerSharedSecret(source.recipient, 'handshake', await this.#deriveHandshakeSecret(source.recipient, source.ephPk));
430
+ break;
431
+ default:
432
+ {
433
+ const _ = source;
434
+ throw new Error('Unhandled tagging secret source kind');
435
+ }
336
436
  }
337
- const wasAdded = await this.senderAddressBookStore.addSender(sender);
338
437
  if (wasAdded) {
339
- this.log.info(`Added sender:\n ${sender.toString()}`);
340
- } else {
341
- this.log.info(`Sender:\n "${sender.toString()}"\n already registered.`);
438
+ // Queued to avoid wiping while a job is in flight.
439
+ await this.#putInJobQueue(()=>Promise.resolve(this.contractSyncService.wipe()));
342
440
  }
343
- return sender;
344
441
  }
345
442
  /**
346
- * Retrieves senders registered in this PXE.
347
- * @returns Senders registered in this PXE.
348
- */ getSenders() {
349
- return this.senderAddressBookStore.getSenders();
443
+ * Removes a previously registered tagging secret source, identified by its registered form (see
444
+ * {@link getTaggingSecretSources}). Does nothing if it was not registered.
445
+ */ async removeTaggingSecretSource(source) {
446
+ switch(source.kind){
447
+ case 'address-derived':
448
+ {
449
+ const { sender } = source;
450
+ const wasRemoved = await this.taggingSecretSourcesStore.removeSender(sender);
451
+ this.log.info(wasRemoved ? `Removed sender:\n ${sender.toString()}` : `Sender:\n "${sender.toString()}"\n not registered in PXE.`);
452
+ break;
453
+ }
454
+ case 'arbitrary-secret':
455
+ case 'handshake':
456
+ {
457
+ const { kind, recipient, secret } = source;
458
+ const wasRemoved = await this.taggingSecretSourcesStore.removeSharedSecret(recipient, kind, secret);
459
+ this.log.info(wasRemoved ? `Removed ${kind} shared secret for recipient:\n ${recipient.toString()}` : `No ${kind} shared secret registered for recipient:\n ${recipient.toString()}`);
460
+ break;
461
+ }
462
+ default:
463
+ {
464
+ const _ = source;
465
+ throw new Error('Unhandled tagging secret source kind');
466
+ }
467
+ }
468
+ }
469
+ async getTaggingSecretSources(filter) {
470
+ const [senders, secrets] = await Promise.all([
471
+ this.taggingSecretSourcesStore.getSenders(),
472
+ this.taggingSecretSourcesStore.getAllSharedSecrets()
473
+ ]);
474
+ const sources = [
475
+ ...senders.map((sender)=>({
476
+ kind: 'address-derived',
477
+ sender
478
+ })),
479
+ ...secrets.map(({ recipient, kind, secret })=>({
480
+ kind,
481
+ recipient,
482
+ secret
483
+ }))
484
+ ];
485
+ return filter?.kind ? sources.filter((source)=>source.kind === filter.kind) : sources;
486
+ }
487
+ /** Registers a sender, skipping addresses that belong to a local account. Returns whether it was newly added. */ async #registerSender(address) {
488
+ if (!await address.isValid()) {
489
+ throw new Error(`Address ${address} is not valid: it does not correspond to a point on the Grumpkin curve. Cannot register it as a sender.`);
490
+ }
491
+ const accounts = await this.keyStore.getAccounts();
492
+ if (accounts.some((a)=>a.equals(address))) {
493
+ this.log.info(`Sender:\n "${address.toString()}"\n already registered.`);
494
+ return false;
495
+ }
496
+ const wasAdded = await this.taggingSecretSourcesStore.addSender(address);
497
+ this.log.info(wasAdded ? `Added sender:\n ${address.toString()}` : `Sender:\n "${address.toString()}"\n already registered.`);
498
+ return wasAdded;
350
499
  }
351
500
  /**
352
- * Removes a sender registered in this PXE.
353
- * @param sender - The address of the sender to remove.
354
- */ async removeSender(sender) {
355
- const wasRemoved = await this.senderAddressBookStore.removeSender(sender);
356
- if (wasRemoved) {
357
- this.log.info(`Removed sender:\n ${sender.toString()}`);
358
- } else {
359
- this.log.info(`Sender:\n "${sender.toString()}"\n not registered in PXE.`);
501
+ * Derives the shared secret of a handshake from its ephemeral public key: `S = addressSecret(recipient) * ephPk`,
502
+ * the same derivation the recipient-side scan uses for handshakes discovered onchain. The ephemeral key is
503
+ * reconstructed from its x-coordinate with a positive y, matching how the protocol generates it.
504
+ *
505
+ * @throws If `ephPk` is not the x-coordinate of a Grumpkin curve point, or if `recipient` is not an account of
506
+ * this PXE, since the derivation needs its keys.
507
+ */ async #deriveHandshakeSecret(recipient, ephPk) {
508
+ let ephPkPoint;
509
+ try {
510
+ ephPkPoint = await Point.fromXAndSign(ephPk, true);
511
+ } catch {
512
+ throw new Error(`Ephemeral public key x-coordinate ${ephPk} does not correspond to a Grumpkin curve point.`);
513
+ }
514
+ const completeAddress = await this.addressStore.getCompleteAddress(recipient);
515
+ if (!completeAddress || !await this.keyStore.hasAccount(recipient)) {
516
+ throw new Error(`Recipient ${recipient} is not an account of this PXE. A handshake's shared secret can only be derived for an account whose keys are held.`);
517
+ }
518
+ const ivskM = await this.keyStore.getMasterIncomingViewingSecretKey(recipient);
519
+ const addressSecret = await computeAddressSecret(await completeAddress.getPreaddress(), ivskM);
520
+ return deriveEcdhSharedSecretPoint(addressSecret, ephPkPoint);
521
+ }
522
+ /** Registers a resolved shared secret scoped to a recipient. Returns whether it was newly added. */ async #registerSharedSecret(recipient, kind, secret) {
523
+ if (!await recipient.isValid()) {
524
+ throw new Error(`Recipient ${recipient} is not valid: it does not correspond to a point on the Grumpkin curve. Cannot register a shared secret for it.`);
525
+ }
526
+ if (secret.isZero() || !secret.isOnCurve()) {
527
+ throw new Error(`Shared secret ${secret} is not a valid non-zero point on the Grumpkin curve.`);
360
528
  }
529
+ const wasAdded = await this.taggingSecretSourcesStore.addSharedSecret(recipient, kind, secret);
530
+ this.log.info(wasAdded ? `Added ${kind} shared secret for recipient:\n ${recipient.toString()}` : `${kind} shared secret already registered for recipient:\n ${recipient.toString()}`);
531
+ return wasAdded;
361
532
  }
362
533
  /**
363
534
  * Retrieves the user accounts registered on this PXE.
@@ -375,72 +546,34 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
375
546
  * @param artifact - The build artifact for the contract class.
376
547
  */ async registerContractClass(artifact) {
377
548
  const contractClassId = await this.contractStore.addContractArtifact(artifact);
549
+ // Publishing the artifact's public function signatures to the node is part of "registering a class", so that
550
+ // node-side debugging works regardless of which entrypoint (registerContractClass or registerContract) was used.
551
+ const publicFunctionSignatures = artifact.functions.filter((fn)=>fn.functionType === FunctionType.PUBLIC).map((fn)=>decodeFunctionSignature(fn.name, fn.parameters));
552
+ if (publicFunctionSignatures.length > 0) {
553
+ await this.nodeDebug?.registerContractFunctionSignatures(publicFunctionSignatures);
554
+ }
378
555
  this.log.info(`Added contract class ${artifact.name} with id ${contractClassId}`);
379
556
  }
380
557
  /**
381
- * Adds deployed contracts to the PXE. Deployed contract information is used to access the
382
- * contract code when simulating local transactions. This is automatically called by aztec.js when
383
- * deploying a contract. Dapps that wish to interact with contracts already deployed should register
384
- * these contracts in their users' PXE through this method.
558
+ * Registers a deployed contract instance so its private state can be synced and its functions simulated. The
559
+ * artifact for the class the instance runs must be registered separately via {@link registerContractClass}, before
560
+ * or after this call; registration performs no validation, so a missing or mismatched artifact only surfaces when
561
+ * the contract is later simulated. This is automatically called by aztec.js when deploying a contract.
385
562
  *
386
- * @param contract - A contract instance to register, with an optional artifact which can be omitted if the contract class has already been registered.
387
- */ async registerContract(contract) {
388
- const { instance } = contract;
389
- let { artifact } = contract;
390
- if (artifact) {
391
- // If the user provides an artifact, validate it against the expected class id and register it
392
- const contractClass = await getContractClassFromArtifact(artifact);
393
- if (!contractClass.id.equals(instance.currentContractClassId)) {
394
- throw new Error(`Artifact does not match expected class id (computed ${contractClass.id} but instance refers to ${instance.currentContractClassId})`);
395
- }
396
- const computedAddress = await computeContractAddressFromInstance(instance);
397
- if (!computedAddress.equals(instance.address)) {
398
- throw new Error('Added a contract in which the address does not match the contract instance.');
399
- }
400
- await this.contractStore.addContractArtifact(artifact, contractClass);
401
- const publicFunctionSignatures = artifact.functions.filter((fn)=>fn.functionType === FunctionType.PUBLIC).map((fn)=>decodeFunctionSignature(fn.name, fn.parameters));
402
- await this.node.registerContractFunctionSignatures(publicFunctionSignatures);
403
- } else {
404
- // Otherwise, make sure there is an artifact already registered for that class id
405
- artifact = await this.contractStore.getContractArtifact(instance.currentContractClassId);
406
- if (!artifact) {
407
- throw new Error(`Artifact not found when registering an instance. Contract class: ${instance.currentContractClassId}.`);
408
- }
409
- }
410
- await this.contractStore.addContractInstance(instance);
411
- this.log.info(`Added contract ${artifact.name} at ${instance.address.toString()} with class ${instance.currentContractClassId}`);
412
- }
413
- /**
414
- * Updates a deployed contract in the PXE. This is used to update the contract artifact when
415
- * an update has happened, so the new code can be used in the simulation of local transactions.
416
- * This is called by aztec.js when instantiating a contract in a given address with a mismatching artifact.
417
- * @param contractAddress - The address of the contract to update.
418
- * @param artifact - The updated artifact for the contract.
419
- * @throws If the artifact's contract class is not found in the PXE or if the contract class is different from
420
- * the current one (current one from the point of view of the node to which the PXE is connected).
421
- */ updateContract(contractAddress, artifact) {
422
- // We disable concurrently updating contracts to avoid concurrently syncing with the node, or changing a contract's
423
- // class while we're simulating it.
563
+ * @param instance - The address preimage of the contract instance to register. The address is derived from it.
564
+ * @returns The address of the registered instance.
565
+ */ registerContract(instance) {
566
+ // Run inside the job queue so we can't race a concurrent simulation while writing the instance to the store.
424
567
  return this.#putInJobQueue(async ()=>{
425
- const currentInstance = await this.contractStore.getContractInstance(contractAddress);
426
- if (!currentInstance) {
427
- throw new Error(`Instance not found when updating a contract. Contract address: ${contractAddress}.`);
428
- }
429
- const contractClass = await getContractClassFromArtifact(artifact);
430
- await this.blockStateSynchronizer.sync();
431
- const header = await this.anchorBlockStore.getBlockHeader();
432
- const currentClassId = await readCurrentClassId(contractAddress, currentInstance, this.node, header);
433
- if (!contractClass.id.equals(currentClassId)) {
434
- throw new Error('Could not update contract to a class different from the current one.');
435
- }
436
- const publicFunctionSignatures = artifact.functions.filter((fn)=>fn.functionType === FunctionType.PUBLIC).map((fn)=>decodeFunctionSignature(fn.name, fn.parameters));
437
- await this.node.registerContractFunctionSignatures(publicFunctionSignatures);
438
- currentInstance.currentContractClassId = contractClass.id;
439
- await Promise.all([
440
- this.contractStore.addContractArtifact(artifact, contractClass),
441
- this.contractStore.addContractInstance(currentInstance)
442
- ]);
443
- this.log.info(`Updated contract ${artifact.name} at ${contractAddress.toString()} to class ${contractClass.id}`);
568
+ const address = await computeContractAddressFromInstance(instance);
569
+ await this.contractStore.addContractInstance({
570
+ ...instance,
571
+ address
572
+ });
573
+ this.log.info(`Added contract at ${address}`, {
574
+ address
575
+ });
576
+ return address;
444
577
  });
445
578
  }
446
579
  /**
@@ -458,7 +591,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
458
591
  * @returns A result containing the proof and public inputs of the tail circuit.
459
592
  * @throws If contract code not found, or public simulation reverts.
460
593
  * Also throws if simulatePublic is true and public simulation reverts.
461
- */ proveTx(txRequest, scopes) {
594
+ */ proveTx(txRequest, { scopes, senderForTags }) {
462
595
  let privateExecutionResult;
463
596
  // We disable proving concurrently mostly out of caution, since it accesses some of our stores. Proving is so
464
597
  // computationally demanding that it'd be rare for someone to try to do it concurrently regardless.
@@ -466,11 +599,19 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
466
599
  const totalTimer = new Timer();
467
600
  try {
468
601
  const syncTimer = new Timer();
469
- await this.blockStateSynchronizer.sync();
602
+ await this.#maybeSync();
603
+ const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
470
604
  const syncTime = syncTimer.ms();
471
605
  const contractFunctionSimulator = this.#getSimulatorForTx();
472
- privateExecutionResult = await this.#executePrivate(contractFunctionSimulator, txRequest, scopes, jobId);
473
- const { publicInputs, chonkProof, executionSteps, timings: { proving } = {} } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, {
606
+ privateExecutionResult = await this.#executePrivate({
607
+ contractFunctionSimulator,
608
+ txRequest,
609
+ anchorBlockHeader,
610
+ scopes,
611
+ jobId,
612
+ senderForTags
613
+ });
614
+ const { publicInputs, chonkProof, executionSteps, timings: { proving } = {} } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, anchorBlockHeader, {
474
615
  simulate: false,
475
616
  skipFeeEnforcement: false,
476
617
  profileMode: 'none'
@@ -495,22 +636,13 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
495
636
  timings,
496
637
  nodeRPCCalls: contractFunctionSimulator?.getStats().nodeRPCCalls
497
638
  });
498
- // While not strictly necessary to store tagging cache contents in the DB since we sync tagging indexes from
499
- // chain before sending new logs, the sync can only see logs already included in blocks. If we send another
500
- // transaction before this one is included in a block from this PXE, and that transaction contains a log with
501
- // a tag derived from the same secret, we would reuse the tag and the transactions would be linked. Hence
502
- // storing the tags here prevents linkage of txs sent from the same PXE.
503
- const preTagsUsedInTheTx = privateExecutionResult.entrypoint.preTags;
504
- if (preTagsUsedInTheTx.length > 0) {
505
- // TODO(benesjan): The following is an expensive operation. Figure out a way to avoid it.
506
- const txHash = (await txProvingResult.toTx()).txHash;
507
- await this.senderTaggingStore.storePendingIndexes(preTagsUsedInTheTx, txHash, jobId);
508
- this.log.debug(`Stored used pre-tags as sender for the tx`, {
509
- preTagsUsedInTheTx
510
- });
511
- } else {
512
- this.log.debug(`No pre-tags used in the tx`);
513
- }
639
+ // We keep track of which tagging indices we've used in this tx so that we don't repeat them in future txs
640
+ // (which would link them) without having to rely on this tx being mined (and us seeing the indices being used
641
+ // onchain).
642
+ // Note that this must happen _after_ proving as it requires the proof's public inputs, from which the kernels
643
+ // may have removed some logs due to note-nullifier squashing - this may lead to range of tagging indices we've
644
+ // actually used to being reduced.
645
+ await persistSenderTaggingIndexRangesForTx(this.senderTaggingStore, privateExecutionResult.entrypoint.taggingIndexRanges, publicInputs, ()=>txProvingResult.getTxHash(), jobId, this.log);
514
646
  return txProvingResult;
515
647
  } catch (err) {
516
648
  throw this.#contextualizeError(err, inspect(txRequest), inspect(privateExecutionResult));
@@ -522,7 +654,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
522
654
  * @param txRequest - An authenticated tx request ready for simulation.
523
655
  * @returns A trace of the program execution with gate counts.
524
656
  * @throws If the code for the functions executed in this transaction have not been made available via `addContracts`.
525
- */ profileTx(txRequest, { profileMode, skipProofGeneration = true, scopes }) {
657
+ */ profileTx(txRequest, { profileMode, skipProofGeneration = true, scopes, senderForTags }) {
526
658
  // We disable concurrent profiles for consistency with simulateTx.
527
659
  return this.#putInJobQueue(async (jobId)=>{
528
660
  const totalTimer = new Timer();
@@ -537,11 +669,19 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
537
669
  };
538
670
  this.log.info(`Profiling transaction execution request to ${txRequest.functionSelector} at ${txRequest.origin}`, txInfo);
539
671
  const syncTimer = new Timer();
540
- await this.blockStateSynchronizer.sync();
672
+ await this.#maybeSync();
673
+ const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
541
674
  const syncTime = syncTimer.ms();
542
675
  const contractFunctionSimulator = this.#getSimulatorForTx();
543
- const privateExecutionResult = await this.#executePrivate(contractFunctionSimulator, txRequest, scopes, jobId);
544
- const { executionSteps, timings: { proving } = {} } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, {
676
+ const privateExecutionResult = await this.#executePrivate({
677
+ contractFunctionSimulator,
678
+ txRequest,
679
+ anchorBlockHeader,
680
+ scopes,
681
+ jobId,
682
+ senderForTags
683
+ });
684
+ const { executionSteps, timings: { proving } = {} } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, anchorBlockHeader, {
545
685
  simulate: skipProofGeneration,
546
686
  skipFeeEnforcement: false,
547
687
  profileMode
@@ -591,7 +731,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
591
731
  * Also throws if simulatePublic is true and public simulation reverts.
592
732
  *
593
733
  * TODO(#7456) Prevent msgSender being defined here for the first call
594
- */ simulateTx(txRequest, { simulatePublic, skipTxValidation = false, skipFeeEnforcement = false, overrides, scopes }) {
734
+ */ simulateTx(txRequest, { simulatePublic, skipTxValidation = false, skipFeeEnforcement = false, skipKernels = true, overrides, scopes, senderForTags }) {
595
735
  // We disable concurrent simulations since those might execute oracles which read and write to the PXE stores (e.g.
596
736
  // to the capsules), and we need to prevent concurrent runs from interfering with one another (e.g. attempting to
597
737
  // delete the same read value, or reading values that another simulation is currently modifying).
@@ -608,28 +748,29 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
608
748
  };
609
749
  this.log.info(`Simulating transaction execution request to ${txRequest.functionSelector} at ${txRequest.origin}`, txInfo);
610
750
  const syncTimer = new Timer();
611
- await this.blockStateSynchronizer.sync();
751
+ await this.#maybeSync();
752
+ const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
612
753
  const syncTime = syncTimer.ms();
613
- const contractFunctionSimulator = this.#getSimulatorForTx(overrides);
614
- // Temporary: in case there are overrides, we have to skip the kernels or validations
615
- // will fail. Consider handing control to the user/wallet on whether they want to run them
616
- // or not.
617
- const overriddenContracts = overrides?.contracts ? new Set(Object.keys(overrides.contracts)) : undefined;
618
- const hasOverriddenContracts = overriddenContracts !== undefined && overriddenContracts.size > 0;
619
- const skipKernels = hasOverriddenContracts;
620
- // Set overridden contracts on the sync service so it knows to skip syncing them
621
- if (hasOverriddenContracts) {
622
- this.contractSyncService.setOverriddenContracts(jobId, overriddenContracts);
754
+ if (overrides?.contracts && Object.keys(overrides.contracts).length > 0 && !skipKernels) {
755
+ throw new Error('Simulating with overridden contracts is not compatible with kernel execution. Please set skipKernels to true when simulating with overridden contracts.');
623
756
  }
757
+ const contractFunctionSimulator = this.#getSimulatorForTx(overrides);
624
758
  // Execution of private functions only; no proving, and no kernel logic.
625
- const privateExecutionResult = await this.#executePrivate(contractFunctionSimulator, txRequest, scopes, jobId);
759
+ const privateExecutionResult = await this.#executePrivate({
760
+ contractFunctionSimulator,
761
+ txRequest,
762
+ anchorBlockHeader,
763
+ scopes,
764
+ jobId,
765
+ senderForTags
766
+ });
626
767
  let publicInputs;
627
768
  let executionSteps = [];
628
769
  if (skipKernels) {
629
- ({ publicInputs, executionSteps } = await generateSimulatedProvingResult(privateExecutionResult, (addr, sel)=>this.contractStore.getDebugFunctionName(addr, sel), this.node));
770
+ ({ publicInputs, executionSteps } = await generateSimulatedProvingResult(privateExecutionResult, (addr, sel)=>this.#getDebugFunctionName(addr, sel, anchorBlockHeader), this.node));
630
771
  } else {
631
772
  // Kernel logic, plus proving of all private functions and kernels.
632
- ({ publicInputs, executionSteps } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, {
773
+ ({ publicInputs, executionSteps } = await this.#prove(txRequest, this.proofCreator, privateExecutionResult, anchorBlockHeader, {
633
774
  simulate: true,
634
775
  skipFeeEnforcement,
635
776
  profileMode: 'none'
@@ -641,10 +782,10 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
641
782
  let publicOutput;
642
783
  if (simulatePublic && publicInputs.forPublic) {
643
784
  const publicSimulationTimer = new Timer();
644
- publicOutput = await this.#simulatePublicCalls(simulatedTx, skipFeeEnforcement);
785
+ publicOutput = await this.#simulatePublicCalls(simulatedTx, skipFeeEnforcement, overrides);
645
786
  publicSimulationTime = publicSimulationTimer.ms();
646
787
  if (publicOutput?.debugLogs?.length) {
647
- await displayDebugLogs(publicOutput.debugLogs, (addr)=>this.contractStore.getDebugContractName(addr));
788
+ await displayDebugLogs(publicOutput.debugLogs, (addr)=>this.#getDebugContractName(addr, anchorBlockHeader));
648
789
  }
649
790
  }
650
791
  let validationTime;
@@ -690,7 +831,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
690
831
  nodeRPCCalls: simulatorStats.nodeRPCCalls
691
832
  });
692
833
  } catch (err) {
693
- throw this.#contextualizeError(err, inspect(txRequest), `simulatePublic=${simulatePublic}`, `skipTxValidation=${skipTxValidation}`, `scopes=${scopes === 'ALL_SCOPES' ? scopes : scopes.map((s)=>s.toString()).join(', ')}`);
834
+ throw this.#contextualizeError(err, inspect(txRequest), `simulatePublic=${simulatePublic}`, `skipTxValidation=${skipTxValidation}`, `scopes=${scopes.map((s)=>s.toString()).join(', ')}`);
694
835
  }
695
836
  });
696
837
  }
@@ -698,7 +839,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
698
839
  * Executes a contract utility function.
699
840
  * @param call - The function call containing the function details, arguments, and target contract address.
700
841
  */ executeUtility(call, { authwits, scopes } = {
701
- scopes: 'ALL_SCOPES'
842
+ scopes: []
702
843
  }) {
703
844
  // We disable concurrent executions since those might execute oracles which read and write to the PXE stores (e.g.
704
845
  // to the capsules), and we need to prevent concurrent runs from interfering with one another (e.g. attempting to
@@ -707,13 +848,13 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
707
848
  try {
708
849
  const totalTimer = new Timer();
709
850
  const syncTimer = new Timer();
710
- await this.blockStateSynchronizer.sync();
851
+ await this.#maybeSync();
711
852
  const syncTime = syncTimer.ms();
712
853
  const functionTimer = new Timer();
713
854
  const contractFunctionSimulator = this.#getSimulatorForTx();
714
855
  const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
715
856
  await this.contractSyncService.ensureContractSynced(call.to, call.selector, (privateSyncCall, execScopes)=>this.#executeUtility(contractFunctionSimulator, privateSyncCall, [], execScopes, jobId), anchorBlockHeader, jobId, scopes);
716
- const executionResult = await this.#executeUtility(contractFunctionSimulator, call, authwits ?? [], scopes, jobId);
857
+ const { result: executionResult, offchainEffects } = await this.#executeUtility(contractFunctionSimulator, call, authwits ?? [], scopes, jobId);
717
858
  const functionTime = functionTimer.ms();
718
859
  const totalTime = totalTimer.ms();
719
860
  const perFunction = [
@@ -731,6 +872,8 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
731
872
  const simulationStats = contractFunctionSimulator.getStats();
732
873
  return {
733
874
  result: executionResult,
875
+ offchainEffects,
876
+ anchorBlockTimestamp: anchorBlockHeader.globalVariables.timestamp,
734
877
  stats: {
735
878
  timings,
736
879
  nodeRPCCalls: simulationStats.nodeRPCCalls
@@ -739,7 +882,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
739
882
  } catch (err) {
740
883
  const { to, name, args } = call;
741
884
  const stringifiedArgs = args.map((arg)=>arg.toString()).join(', ');
742
- throw this.#contextualizeError(err, `executeUtility ${to}:${name}(${stringifiedArgs})`, `scopes=${scopes === 'ALL_SCOPES' ? scopes : scopes.map((s)=>s.toString()).join(', ')}`);
885
+ throw this.#contextualizeError(err, `executeUtility ${to}:${name}(${stringifiedArgs})`, `scopes=${scopes.map((s)=>s.toString()).join(', ')}`);
743
886
  }
744
887
  });
745
888
  }
@@ -758,7 +901,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
758
901
  */ async getPrivateEvents(eventSelector, filter) {
759
902
  let anchorBlockNumber;
760
903
  await this.#putInJobQueue(async (jobId)=>{
761
- await this.blockStateSynchronizer.sync();
904
+ await this.#maybeSync();
762
905
  const anchorBlockHeader = await this.anchorBlockStore.getBlockHeader();
763
906
  anchorBlockNumber = anchorBlockHeader.getBlockNumber();
764
907
  const contractFunctionSimulator = this.#getSimulatorForTx();
@@ -773,6 +916,7 @@ import { SenderTaggingStore } from './storage/tagging_store/sender_tagging_store
773
916
  * Stops the PXE's job queue and closes the backing store.
774
917
  */ async stop() {
775
918
  await this.jobQueue.end();
919
+ await this.blockStateSynchronizer.stop();
776
920
  await this.db.close();
777
921
  }
778
922
  }