@aztec/pxe 0.0.1-commit.993d52e → 0.0.1-commit.9a89641

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