@aztec/pxe 0.0.1-commit.f504929 → 0.0.1-commit.f5a9928

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