@aztec/pxe 0.0.1-commit.d431d1c → 0.0.1-commit.d58ff9d0

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