@aztec/pxe 0.0.1-commit.3fd054f6 → 0.0.1-commit.431c48d

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 (557) hide show
  1. package/dest/bin/check_oracle_version.js +41 -112
  2. package/dest/bin/index.d.ts +2 -0
  3. package/dest/bin/index.d.ts.map +1 -0
  4. package/dest/bin/index.js +1 -0
  5. package/dest/bin/oracle_version_helpers.d.ts +34 -0
  6. package/dest/bin/oracle_version_helpers.d.ts.map +1 -0
  7. package/dest/bin/oracle_version_helpers.js +46 -0
  8. package/dest/block_synchronizer/block_stream_source.d.ts +10 -0
  9. package/dest/block_synchronizer/block_stream_source.d.ts.map +1 -0
  10. package/dest/block_synchronizer/block_stream_source.js +37 -0
  11. package/dest/block_synchronizer/block_synchronizer.d.ts +22 -16
  12. package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -1
  13. package/dest/block_synchronizer/block_synchronizer.js +71 -28
  14. package/dest/config/index.d.ts +22 -2
  15. package/dest/config/index.d.ts.map +1 -1
  16. package/dest/config/index.js +18 -14
  17. package/dest/config/package_info.js +1 -1
  18. package/dest/contract/contract_call_graph.d.ts +52 -0
  19. package/dest/contract/contract_call_graph.d.ts.map +1 -0
  20. package/dest/contract/contract_call_graph.js +91 -0
  21. package/dest/contract/contract_class_service.d.ts +24 -0
  22. package/dest/contract/contract_class_service.d.ts.map +1 -0
  23. package/dest/contract/contract_class_service.js +36 -0
  24. package/dest/contract/contract_sync_service.d.ts +83 -0
  25. package/dest/contract/contract_sync_service.d.ts.map +1 -0
  26. package/dest/contract/contract_sync_service.js +213 -0
  27. package/dest/contract/helpers.d.ts +7 -0
  28. package/dest/contract/helpers.d.ts.map +1 -0
  29. package/dest/contract/helpers.js +20 -0
  30. package/dest/contract/skip_sync_contracts.d.ts +11 -0
  31. package/dest/contract/skip_sync_contracts.d.ts.map +1 -0
  32. package/dest/contract/skip_sync_contracts.js +18 -0
  33. package/dest/contract_function_simulator/anchored_contract_data.d.ts +36 -0
  34. package/dest/contract_function_simulator/anchored_contract_data.d.ts.map +1 -0
  35. package/dest/contract_function_simulator/anchored_contract_data.js +54 -0
  36. package/dest/contract_function_simulator/contract_function_simulator.d.ts +27 -28
  37. package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
  38. package/dest/contract_function_simulator/contract_function_simulator.js +94 -68
  39. package/dest/contract_function_simulator/ephemeral_array_service.d.ts +28 -0
  40. package/dest/contract_function_simulator/ephemeral_array_service.d.ts.map +1 -0
  41. package/dest/contract_function_simulator/ephemeral_array_service.js +78 -0
  42. package/dest/contract_function_simulator/execution_note_cache.d.ts +4 -10
  43. package/dest/contract_function_simulator/execution_note_cache.d.ts.map +1 -1
  44. package/dest/contract_function_simulator/execution_note_cache.js +10 -29
  45. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts +5 -9
  46. package/dest/contract_function_simulator/execution_tagging_index_cache.d.ts.map +1 -1
  47. package/dest/contract_function_simulator/execution_tagging_index_cache.js +3 -7
  48. package/dest/contract_function_simulator/index.d.ts +26 -6
  49. package/dest/contract_function_simulator/index.d.ts.map +1 -1
  50. package/dest/contract_function_simulator/index.js +11 -4
  51. package/dest/contract_function_simulator/noir-structs/bounded_vec.d.ts +29 -0
  52. package/dest/contract_function_simulator/noir-structs/bounded_vec.d.ts.map +1 -0
  53. package/dest/contract_function_simulator/noir-structs/bounded_vec.js +30 -0
  54. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.d.ts +9 -0
  55. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.d.ts.map +1 -0
  56. package/dest/contract_function_simulator/noir-structs/contract_class_log_data.js +1 -0
  57. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.d.ts +7 -0
  58. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.d.ts.map +1 -0
  59. package/dest/contract_function_simulator/noir-structs/embedded_curve_point.js +1 -0
  60. package/dest/contract_function_simulator/noir-structs/ephemeral_array.d.ts +37 -0
  61. package/dest/contract_function_simulator/noir-structs/ephemeral_array.d.ts.map +1 -0
  62. package/dest/contract_function_simulator/noir-structs/ephemeral_array.js +59 -0
  63. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts +5 -5
  64. package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts.map +1 -1
  65. package/dest/contract_function_simulator/noir-structs/event_validation_request.js +7 -9
  66. package/dest/contract_function_simulator/noir-structs/fact.d.ts +16 -0
  67. package/dest/contract_function_simulator/noir-structs/fact.d.ts.map +1 -0
  68. package/dest/contract_function_simulator/noir-structs/fact.js +6 -0
  69. package/dest/contract_function_simulator/noir-structs/fact_collection.d.ts +27 -0
  70. package/dest/contract_function_simulator/noir-structs/fact_collection.d.ts.map +1 -0
  71. package/dest/contract_function_simulator/noir-structs/fact_collection.js +31 -0
  72. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts +19 -10
  73. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.d.ts.map +1 -1
  74. package/dest/contract_function_simulator/noir-structs/log_retrieval_request.js +12 -24
  75. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts +11 -9
  76. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.d.ts.map +1 -1
  77. package/dest/contract_function_simulator/noir-structs/log_retrieval_response.js +2 -61
  78. package/dest/contract_function_simulator/noir-structs/note_data.d.ts +27 -0
  79. package/dest/contract_function_simulator/noir-structs/note_data.d.ts.map +1 -0
  80. package/dest/contract_function_simulator/noir-structs/note_data.js +3 -0
  81. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts +5 -5
  82. package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts.map +1 -1
  83. package/dest/contract_function_simulator/noir-structs/note_validation_request.js +8 -10
  84. package/dest/contract_function_simulator/noir-structs/option.d.ts +59 -0
  85. package/dest/contract_function_simulator/noir-structs/option.d.ts.map +1 -0
  86. package/dest/contract_function_simulator/noir-structs/option.js +67 -0
  87. package/dest/contract_function_simulator/noir-structs/origin_block.d.ts +11 -0
  88. package/dest/contract_function_simulator/noir-structs/origin_block.d.ts.map +1 -0
  89. package/dest/contract_function_simulator/noir-structs/origin_block.js +5 -0
  90. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.d.ts +11 -0
  91. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.d.ts.map +1 -0
  92. package/dest/contract_function_simulator/noir-structs/pending_tagged_log.js +4 -0
  93. package/dest/contract_function_simulator/noir-structs/provided_secret.d.ts +8 -0
  94. package/dest/contract_function_simulator/noir-structs/provided_secret.d.ts.map +1 -0
  95. package/dest/contract_function_simulator/noir-structs/provided_secret.js +1 -0
  96. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.d.ts +28 -0
  97. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.d.ts.map +1 -0
  98. package/dest/contract_function_simulator/noir-structs/resolved_tagging_strategy.js +50 -0
  99. package/dest/contract_function_simulator/noir-structs/resolved_tx.d.ts +19 -0
  100. package/dest/contract_function_simulator/noir-structs/resolved_tx.d.ts.map +1 -0
  101. package/dest/contract_function_simulator/noir-structs/resolved_tx.js +9 -0
  102. package/dest/contract_function_simulator/noir-structs/tx_effect_data.d.ts +15 -0
  103. package/dest/contract_function_simulator/noir-structs/tx_effect_data.d.ts.map +1 -0
  104. package/dest/contract_function_simulator/noir-structs/tx_effect_data.js +5 -0
  105. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts +6 -11
  106. package/dest/contract_function_simulator/noir-structs/utility_context.d.ts.map +1 -1
  107. package/dest/contract_function_simulator/noir-structs/utility_context.js +1 -20
  108. package/dest/contract_function_simulator/oracle/acir_callback.d.ts +21 -0
  109. package/dest/contract_function_simulator/oracle/acir_callback.d.ts.map +1 -0
  110. package/dest/contract_function_simulator/oracle/acir_callback.js +115 -0
  111. package/dest/contract_function_simulator/oracle/index.d.ts +2 -13
  112. package/dest/contract_function_simulator/oracle/index.d.ts.map +1 -1
  113. package/dest/contract_function_simulator/oracle/index.js +1 -1
  114. package/dest/contract_function_simulator/oracle/interfaces.d.ts +15 -103
  115. package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
  116. package/dest/contract_function_simulator/oracle/interfaces.js +2 -2
  117. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts +39 -0
  118. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts.map +1 -0
  119. package/dest/contract_function_simulator/oracle/legacy_oracle_registry.js +107 -0
  120. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts +3 -14
  121. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts.map +1 -1
  122. package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.js +1 -24
  123. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts +2 -2
  124. package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts.map +1 -1
  125. package/dest/contract_function_simulator/oracle/note_packing_utils.js +2 -2
  126. package/dest/contract_function_simulator/oracle/oracle_registry.d.ts +139 -0
  127. package/dest/contract_function_simulator/oracle/oracle_registry.d.ts.map +1 -0
  128. package/dest/contract_function_simulator/oracle/oracle_registry.js +1016 -0
  129. package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts +274 -0
  130. package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts.map +1 -0
  131. package/dest/contract_function_simulator/oracle/oracle_type_mappings.js +1243 -0
  132. package/dest/contract_function_simulator/oracle/private_execution.d.ts +1 -1
  133. package/dest/contract_function_simulator/oracle/private_execution.d.ts.map +1 -1
  134. package/dest/contract_function_simulator/oracle/private_execution.js +3 -4
  135. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +52 -42
  136. package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
  137. package/dest/contract_function_simulator/oracle/private_execution_oracle.js +210 -66
  138. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +167 -80
  139. package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
  140. package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +651 -198
  141. package/dest/contract_function_simulator/pick_notes.d.ts +1 -1
  142. package/dest/contract_function_simulator/pick_notes.d.ts.map +1 -1
  143. package/dest/contract_function_simulator/pick_notes.js +20 -3
  144. package/dest/contract_function_simulator/transient_array_service.d.ts +31 -0
  145. package/dest/contract_function_simulator/transient_array_service.d.ts.map +1 -0
  146. package/dest/contract_function_simulator/transient_array_service.js +62 -0
  147. package/dest/contract_logging.d.ts +9 -4
  148. package/dest/contract_logging.d.ts.map +1 -1
  149. package/dest/contract_logging.js +21 -6
  150. package/dest/debug/pxe_debug_utils.d.ts +4 -9
  151. package/dest/debug/pxe_debug_utils.d.ts.map +1 -1
  152. package/dest/debug/pxe_debug_utils.js +9 -7
  153. package/dest/entrypoints/client/bundle/index.d.ts +2 -2
  154. package/dest/entrypoints/client/bundle/index.d.ts.map +1 -1
  155. package/dest/entrypoints/client/bundle/index.js +1 -1
  156. package/dest/entrypoints/client/bundle/utils.d.ts +2 -2
  157. package/dest/entrypoints/client/bundle/utils.d.ts.map +1 -1
  158. package/dest/entrypoints/client/bundle/utils.js +21 -8
  159. package/dest/entrypoints/client/lazy/index.d.ts +2 -2
  160. package/dest/entrypoints/client/lazy/index.d.ts.map +1 -1
  161. package/dest/entrypoints/client/lazy/index.js +1 -1
  162. package/dest/entrypoints/client/lazy/utils.d.ts +2 -2
  163. package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
  164. package/dest/entrypoints/client/lazy/utils.js +21 -8
  165. package/dest/entrypoints/client/store.d.ts +14 -0
  166. package/dest/entrypoints/client/store.d.ts.map +1 -0
  167. package/dest/entrypoints/client/store.js +42 -0
  168. package/dest/entrypoints/pxe_creation_options.d.ts +16 -2
  169. package/dest/entrypoints/pxe_creation_options.d.ts.map +1 -1
  170. package/dest/entrypoints/pxe_creation_options.js +3 -1
  171. package/dest/entrypoints/server/index.d.ts +7 -4
  172. package/dest/entrypoints/server/index.d.ts.map +1 -1
  173. package/dest/entrypoints/server/index.js +5 -3
  174. package/dest/entrypoints/server/store.d.ts +18 -0
  175. package/dest/entrypoints/server/store.d.ts.map +1 -0
  176. package/dest/entrypoints/server/store.js +28 -0
  177. package/dest/entrypoints/server/utils.d.ts +4 -3
  178. package/dest/entrypoints/server/utils.d.ts.map +1 -1
  179. package/dest/entrypoints/server/utils.js +22 -8
  180. package/dest/error_enriching.d.ts +5 -3
  181. package/dest/error_enriching.d.ts.map +1 -1
  182. package/dest/error_enriching.js +15 -12
  183. package/dest/events/event_service.d.ts +21 -5
  184. package/dest/events/event_service.d.ts.map +1 -1
  185. package/dest/events/event_service.js +51 -17
  186. package/dest/events/private_event_filter_validator.d.ts +3 -2
  187. package/dest/events/private_event_filter_validator.d.ts.map +1 -1
  188. package/dest/events/private_event_filter_validator.js +15 -0
  189. package/dest/hooks/authorize_utility_call.d.ts +41 -0
  190. package/dest/hooks/authorize_utility_call.d.ts.map +1 -0
  191. package/dest/hooks/authorize_utility_call.js +4 -0
  192. package/dest/hooks/execution_hooks.d.ts +62 -0
  193. package/dest/hooks/execution_hooks.d.ts.map +1 -0
  194. package/dest/hooks/execution_hooks.js +9 -0
  195. package/dest/hooks/index.d.ts +5 -0
  196. package/dest/hooks/index.d.ts.map +1 -0
  197. package/dest/hooks/index.js +2 -0
  198. package/dest/hooks/resolve_custom_request.d.ts +23 -0
  199. package/dest/hooks/resolve_custom_request.d.ts.map +1 -0
  200. package/dest/hooks/resolve_custom_request.js +3 -0
  201. package/dest/hooks/resolve_tagging_secret_strategy.d.ts +50 -0
  202. package/dest/hooks/resolve_tagging_secret_strategy.d.ts.map +1 -0
  203. package/dest/hooks/resolve_tagging_secret_strategy.js +3 -0
  204. package/dest/job_coordinator/job_coordinator.d.ts +10 -1
  205. package/dest/job_coordinator/job_coordinator.d.ts.map +1 -1
  206. package/dest/job_coordinator/job_coordinator.js +19 -0
  207. package/dest/logs/log_service.d.ts +21 -11
  208. package/dest/logs/log_service.d.ts.map +1 -1
  209. package/dest/logs/log_service.js +181 -82
  210. package/dest/messages/tx_resolver_service.d.ts +28 -0
  211. package/dest/messages/tx_resolver_service.d.ts.map +1 -0
  212. package/dest/messages/tx_resolver_service.js +62 -0
  213. package/dest/node/benchmarked_node.d.ts +20 -0
  214. package/dest/node/benchmarked_node.d.ts.map +1 -0
  215. package/dest/node/benchmarked_node.js +94 -0
  216. package/dest/node/caching_aztec_node.d.ts +24 -0
  217. package/dest/node/caching_aztec_node.d.ts.map +1 -0
  218. package/dest/node/caching_aztec_node.js +268 -0
  219. package/dest/notes/note_service.d.ts +34 -7
  220. package/dest/notes/note_service.d.ts.map +1 -1
  221. package/dest/notes/note_service.js +82 -57
  222. package/dest/notes_filter.d.ts +2 -3
  223. package/dest/notes_filter.d.ts.map +1 -1
  224. package/dest/oracle_version.d.ts +4 -3
  225. package/dest/oracle_version.d.ts.map +1 -1
  226. package/dest/oracle_version.js +20 -10
  227. package/dest/private_kernel/batch_planner.d.ts +47 -0
  228. package/dest/private_kernel/batch_planner.d.ts.map +1 -0
  229. package/dest/private_kernel/batch_planner.js +104 -0
  230. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts +1 -1
  231. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.d.ts.map +1 -1
  232. package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.js +10 -5
  233. package/dest/private_kernel/hints/test_utils.d.ts +1 -1
  234. package/dest/private_kernel/hints/test_utils.d.ts.map +1 -1
  235. package/dest/private_kernel/hints/test_utils.js +3 -4
  236. package/dest/private_kernel/private_kernel_execution_prover.d.ts +6 -2
  237. package/dest/private_kernel/private_kernel_execution_prover.d.ts.map +1 -1
  238. package/dest/private_kernel/private_kernel_execution_prover.js +160 -85
  239. package/dest/private_kernel/private_kernel_oracle.d.ts +12 -10
  240. package/dest/private_kernel/private_kernel_oracle.d.ts.map +1 -1
  241. package/dest/private_kernel/private_kernel_oracle.js +40 -26
  242. package/dest/pxe.d.ts +167 -55
  243. package/dest/pxe.d.ts.map +1 -1
  244. package/dest/pxe.js +394 -219
  245. package/dest/storage/address_store/address_store.d.ts +1 -1
  246. package/dest/storage/address_store/address_store.d.ts.map +1 -1
  247. package/dest/storage/address_store/address_store.js +2 -1
  248. package/dest/storage/allowed_scopes.d.ts +6 -0
  249. package/dest/storage/allowed_scopes.d.ts.map +1 -0
  250. package/dest/storage/allowed_scopes.js +7 -0
  251. package/dest/storage/anchor_block_store/anchor_block_store.d.ts +9 -6
  252. package/dest/storage/anchor_block_store/anchor_block_store.d.ts.map +1 -1
  253. package/dest/storage/anchor_block_store/anchor_block_store.js +9 -7
  254. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts +42 -0
  255. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts.map +1 -0
  256. package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.js +93 -0
  257. package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts +15 -0
  258. package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts.map +1 -0
  259. package/dest/storage/backwards_compatibility_tests/schema_tests.js +671 -0
  260. package/dest/storage/backwards_compatibility_tests/store_spy.d.ts +19 -0
  261. package/dest/storage/backwards_compatibility_tests/store_spy.d.ts.map +1 -0
  262. package/dest/storage/backwards_compatibility_tests/store_spy.js +63 -0
  263. package/dest/storage/capsule_store/capsule_service.d.ts +21 -0
  264. package/dest/storage/capsule_store/capsule_service.d.ts.map +1 -0
  265. package/dest/storage/capsule_store/capsule_service.js +47 -0
  266. package/dest/storage/capsule_store/capsule_store.d.ts +9 -9
  267. package/dest/storage/capsule_store/capsule_store.d.ts.map +1 -1
  268. package/dest/storage/capsule_store/capsule_store.js +37 -29
  269. package/dest/storage/capsule_store/index.d.ts +2 -1
  270. package/dest/storage/capsule_store/index.d.ts.map +1 -1
  271. package/dest/storage/capsule_store/index.js +1 -0
  272. package/dest/storage/contract_store/contract_store.d.ts +27 -24
  273. package/dest/storage/contract_store/contract_store.d.ts.map +1 -1
  274. package/dest/storage/contract_store/contract_store.js +72 -99
  275. package/dest/storage/contract_store/private_functions_tree.d.ts +1 -1
  276. package/dest/storage/contract_store/private_functions_tree.d.ts.map +1 -1
  277. package/dest/storage/contract_store/private_functions_tree.js +2 -1
  278. package/dest/storage/fact_store/fact_service.d.ts +22 -0
  279. package/dest/storage/fact_store/fact_service.d.ts.map +1 -0
  280. package/dest/storage/fact_store/fact_service.js +45 -0
  281. package/dest/storage/fact_store/fact_store.d.ts +95 -0
  282. package/dest/storage/fact_store/fact_store.d.ts.map +1 -0
  283. package/dest/storage/fact_store/fact_store.js +411 -0
  284. package/dest/storage/fact_store/fact_store_keys.d.ts +34 -0
  285. package/dest/storage/fact_store/fact_store_keys.d.ts.map +1 -0
  286. package/dest/storage/fact_store/fact_store_keys.js +50 -0
  287. package/dest/storage/fact_store/index.d.ts +6 -0
  288. package/dest/storage/fact_store/index.d.ts.map +1 -0
  289. package/dest/storage/fact_store/index.js +4 -0
  290. package/dest/storage/fact_store/origin_state.d.ts +59 -0
  291. package/dest/storage/fact_store/origin_state.d.ts.map +1 -0
  292. package/dest/storage/fact_store/origin_state.js +60 -0
  293. package/dest/storage/fact_store/stored_fact.d.ts +32 -0
  294. package/dest/storage/fact_store/stored_fact.d.ts.map +1 -0
  295. package/dest/storage/fact_store/stored_fact.js +64 -0
  296. package/dest/storage/index.d.ts +3 -2
  297. package/dest/storage/index.d.ts.map +1 -1
  298. package/dest/storage/index.js +2 -1
  299. package/dest/storage/metadata.d.ts +2 -2
  300. package/dest/storage/metadata.d.ts.map +1 -1
  301. package/dest/storage/metadata.js +1 -1
  302. package/dest/storage/note_store/note_store.d.ts +42 -33
  303. package/dest/storage/note_store/note_store.d.ts.map +1 -1
  304. package/dest/storage/note_store/note_store.js +202 -172
  305. package/dest/storage/note_store/stored_note.d.ts +3 -8
  306. package/dest/storage/note_store/stored_note.d.ts.map +1 -1
  307. package/dest/storage/note_store/stored_note.js +4 -20
  308. package/dest/storage/open_pxe_stores.d.ts +35 -0
  309. package/dest/storage/open_pxe_stores.d.ts.map +1 -0
  310. package/dest/storage/open_pxe_stores.js +29 -0
  311. package/dest/storage/private_event_store/private_event_store.d.ts +13 -16
  312. package/dest/storage/private_event_store/private_event_store.d.ts.map +1 -1
  313. package/dest/storage/private_event_store/private_event_store.js +48 -45
  314. package/dest/storage/private_event_store/stored_private_event.js +1 -1
  315. package/dest/storage/store_identity.d.ts +35 -0
  316. package/dest/storage/store_identity.d.ts.map +1 -0
  317. package/dest/storage/store_identity.js +44 -0
  318. package/dest/storage/tagging_store/index.d.ts +2 -2
  319. package/dest/storage/tagging_store/index.d.ts.map +1 -1
  320. package/dest/storage/tagging_store/index.js +1 -1
  321. package/dest/storage/tagging_store/recipient_tagging_store.d.ts +6 -6
  322. package/dest/storage/tagging_store/recipient_tagging_store.d.ts.map +1 -1
  323. package/dest/storage/tagging_store/sender_tagging_store.d.ts +44 -13
  324. package/dest/storage/tagging_store/sender_tagging_store.d.ts.map +1 -1
  325. package/dest/storage/tagging_store/sender_tagging_store.js +91 -36
  326. package/dest/storage/tagging_store/tagging_secret_sources_store.d.ts +51 -0
  327. package/dest/storage/tagging_store/tagging_secret_sources_store.d.ts.map +1 -0
  328. package/dest/storage/tagging_store/tagging_secret_sources_store.js +105 -0
  329. package/dest/tagging/constants.d.ts +11 -2
  330. package/dest/tagging/constants.d.ts.map +1 -1
  331. package/dest/tagging/constants.js +38 -10
  332. package/dest/tagging/get_all_logs_by_tags.d.ts +55 -10
  333. package/dest/tagging/get_all_logs_by_tags.d.ts.map +1 -1
  334. package/dest/tagging/get_all_logs_by_tags.js +55 -36
  335. package/dest/tagging/index.d.ts +7 -6
  336. package/dest/tagging/index.d.ts.map +1 -1
  337. package/dest/tagging/index.js +6 -5
  338. package/dest/tagging/persist_sender_tagging_index_ranges.d.ts +29 -0
  339. package/dest/tagging/persist_sender_tagging_index_ranges.d.ts.map +1 -0
  340. package/dest/tagging/persist_sender_tagging_index_ranges.js +42 -0
  341. package/dest/tagging/recipient_sync/sync_tagged_private_logs.d.ts +74 -0
  342. package/dest/tagging/recipient_sync/sync_tagged_private_logs.d.ts.map +1 -0
  343. package/dest/tagging/recipient_sync/sync_tagged_private_logs.js +235 -0
  344. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts +3 -3
  345. package/dest/tagging/recipient_sync/utils/find_highest_indexes.d.ts.map +1 -1
  346. package/dest/tagging/reconcile_tagging_index_ranges.d.ts +36 -0
  347. package/dest/tagging/reconcile_tagging_index_ranges.d.ts.map +1 -0
  348. package/dest/tagging/reconcile_tagging_index_ranges.js +74 -0
  349. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts +8 -6
  350. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts.map +1 -1
  351. package/dest/tagging/sender_sync/sync_sender_tagging_indexes.js +24 -27
  352. package/dest/tagging/sender_sync/utils/classify_pending_txs.d.ts +22 -0
  353. package/dest/tagging/sender_sync/utils/classify_pending_txs.d.ts.map +1 -0
  354. package/dest/tagging/sender_sync/utils/classify_pending_txs.js +62 -0
  355. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts +17 -7
  356. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts.map +1 -1
  357. package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.js +39 -37
  358. package/dest/tagging/sender_sync/utils/resolve_pending_txs.d.ts +29 -0
  359. package/dest/tagging/sender_sync/utils/resolve_pending_txs.d.ts.map +1 -0
  360. package/dest/tagging/sender_sync/utils/resolve_pending_txs.js +42 -0
  361. package/dest/tagging/sender_sync/utils/test_utils.d.ts +16 -0
  362. package/dest/tagging/sender_sync/utils/test_utils.d.ts.map +1 -0
  363. package/dest/tagging/sender_sync/utils/test_utils.js +24 -0
  364. package/dest/tagging/testing/tag_query_test_utils.d.ts +6 -0
  365. package/dest/tagging/testing/tag_query_test_utils.d.ts.map +1 -0
  366. package/dest/tagging/testing/tag_query_test_utils.js +10 -0
  367. package/package.json +20 -17
  368. package/src/bin/check_oracle_version.ts +46 -135
  369. package/src/bin/index.ts +1 -0
  370. package/src/bin/oracle_version_helpers.ts +54 -0
  371. package/src/block_synchronizer/block_stream_source.ts +42 -0
  372. package/src/block_synchronizer/block_synchronizer.ts +86 -40
  373. package/src/config/index.ts +40 -9
  374. package/src/config/package_info.ts +1 -1
  375. package/src/contract/contract_call_graph.ts +113 -0
  376. package/src/contract/contract_class_service.ts +45 -0
  377. package/src/contract/contract_sync_service.ts +342 -0
  378. package/src/contract/helpers.ts +35 -0
  379. package/src/contract/skip_sync_contracts.ts +23 -0
  380. package/src/contract_function_simulator/anchored_contract_data.ts +74 -0
  381. package/src/contract_function_simulator/contract_function_simulator.ts +148 -84
  382. package/src/contract_function_simulator/ephemeral_array_service.ts +110 -0
  383. package/src/contract_function_simulator/execution_note_cache.ts +10 -30
  384. package/src/contract_function_simulator/execution_tagging_index_cache.ts +5 -9
  385. package/src/contract_function_simulator/index.ts +89 -5
  386. package/src/contract_function_simulator/noir-structs/bounded_vec.ts +43 -0
  387. package/src/contract_function_simulator/noir-structs/contract_class_log_data.ts +9 -0
  388. package/src/contract_function_simulator/noir-structs/embedded_curve_point.ts +4 -0
  389. package/src/contract_function_simulator/noir-structs/ephemeral_array.ts +66 -0
  390. package/src/contract_function_simulator/noir-structs/event_validation_request.ts +5 -7
  391. package/src/contract_function_simulator/noir-structs/fact.ts +13 -0
  392. package/src/contract_function_simulator/noir-structs/fact_collection.ts +64 -0
  393. package/src/contract_function_simulator/noir-structs/log_retrieval_request.ts +27 -20
  394. package/src/contract_function_simulator/noir-structs/log_retrieval_response.ts +14 -61
  395. package/src/contract_function_simulator/noir-structs/note_data.ts +27 -0
  396. package/src/contract_function_simulator/noir-structs/note_validation_request.ts +6 -8
  397. package/src/contract_function_simulator/noir-structs/option.ts +75 -0
  398. package/src/contract_function_simulator/noir-structs/origin_block.ts +8 -0
  399. package/src/contract_function_simulator/noir-structs/pending_tagged_log.ts +12 -0
  400. package/src/contract_function_simulator/noir-structs/provided_secret.ts +5 -0
  401. package/src/contract_function_simulator/noir-structs/resolved_tagging_strategy.ts +66 -0
  402. package/src/contract_function_simulator/noir-structs/resolved_tx.ts +19 -0
  403. package/src/contract_function_simulator/noir-structs/tx_effect_data.ts +16 -0
  404. package/src/contract_function_simulator/noir-structs/utility_context.ts +5 -17
  405. package/src/contract_function_simulator/oracle/acir_callback.ts +154 -0
  406. package/src/contract_function_simulator/oracle/index.ts +1 -15
  407. package/src/contract_function_simulator/oracle/interfaces.ts +11 -176
  408. package/src/contract_function_simulator/oracle/legacy_oracle_registry.ts +147 -0
  409. package/src/contract_function_simulator/oracle/message_load_oracle_inputs.ts +6 -21
  410. package/src/contract_function_simulator/oracle/note_packing_utils.ts +3 -3
  411. package/src/contract_function_simulator/oracle/oracle_registry.ts +710 -0
  412. package/src/contract_function_simulator/oracle/oracle_type_mappings.ts +1052 -0
  413. package/src/contract_function_simulator/oracle/private_execution.ts +3 -4
  414. package/src/contract_function_simulator/oracle/private_execution_oracle.ts +257 -91
  415. package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +951 -317
  416. package/src/contract_function_simulator/pick_notes.ts +22 -3
  417. package/src/contract_function_simulator/transient_array_service.ts +91 -0
  418. package/src/contract_logging.ts +18 -5
  419. package/src/debug/pxe_debug_utils.ts +11 -18
  420. package/src/entrypoints/client/bundle/index.ts +1 -1
  421. package/src/entrypoints/client/bundle/utils.ts +26 -8
  422. package/src/entrypoints/client/lazy/index.ts +1 -1
  423. package/src/entrypoints/client/lazy/utils.ts +26 -8
  424. package/src/entrypoints/client/store.ts +54 -0
  425. package/src/entrypoints/pxe_creation_options.ts +21 -1
  426. package/src/entrypoints/server/index.ts +7 -3
  427. package/src/entrypoints/server/store.ts +47 -0
  428. package/src/entrypoints/server/utils.ts +39 -14
  429. package/src/error_enriching.ts +30 -13
  430. package/src/events/event_service.ts +85 -26
  431. package/src/events/private_event_filter_validator.ts +21 -1
  432. package/src/hooks/authorize_utility_call.ts +44 -0
  433. package/src/hooks/execution_hooks.ts +68 -0
  434. package/src/hooks/index.ts +13 -0
  435. package/src/hooks/resolve_custom_request.ts +24 -0
  436. package/src/hooks/resolve_tagging_secret_strategy.ts +60 -0
  437. package/src/job_coordinator/job_coordinator.ts +30 -0
  438. package/src/logs/log_service.ts +228 -147
  439. package/src/messages/tx_resolver_service.ts +81 -0
  440. package/src/node/benchmarked_node.ts +140 -0
  441. package/src/node/caching_aztec_node.ts +407 -0
  442. package/src/notes/note_service.ts +127 -86
  443. package/src/notes_filter.ts +1 -3
  444. package/src/oracle_version.ts +20 -10
  445. package/src/private_kernel/batch_planner.ts +169 -0
  446. package/src/private_kernel/hints/private_kernel_reset_private_inputs_builder.ts +15 -4
  447. package/src/private_kernel/hints/test_utils.ts +3 -10
  448. package/src/private_kernel/private_kernel_execution_prover.ts +246 -117
  449. package/src/private_kernel/private_kernel_oracle.ts +58 -29
  450. package/src/pxe.ts +586 -265
  451. package/src/storage/address_store/address_store.ts +2 -1
  452. package/src/storage/allowed_scopes.ts +14 -0
  453. package/src/storage/anchor_block_store/anchor_block_store.ts +9 -7
  454. package/src/storage/backwards_compatibility_tests/__snapshots__/AddressStore.json +22 -0
  455. package/src/storage/backwards_compatibility_tests/__snapshots__/AnchorBlockStore.json +3 -0
  456. package/src/storage/backwards_compatibility_tests/__snapshots__/CapsuleStore.json +16 -0
  457. package/src/storage/backwards_compatibility_tests/__snapshots__/ContractStore.json +28 -0
  458. package/src/storage/backwards_compatibility_tests/__snapshots__/FactStore.json +40 -0
  459. package/src/storage/backwards_compatibility_tests/__snapshots__/KeyStore.json +52 -0
  460. package/src/storage/backwards_compatibility_tests/__snapshots__/L2TipsKVStore.json +40 -0
  461. package/src/storage/backwards_compatibility_tests/__snapshots__/NoteStore.json +56 -0
  462. package/src/storage/backwards_compatibility_tests/__snapshots__/PrivateEventStore.json +44 -0
  463. package/src/storage/backwards_compatibility_tests/__snapshots__/RecipientTaggingStore.json +26 -0
  464. package/src/storage/backwards_compatibility_tests/__snapshots__/SenderTaggingStore.json +30 -0
  465. package/src/storage/backwards_compatibility_tests/__snapshots__/TaggingSecretSourcesStore.json +30 -0
  466. package/src/storage/backwards_compatibility_tests/__snapshots__/opened_stores.json +117 -0
  467. package/src/storage/backwards_compatibility_tests/kv_store_snapshot.ts +122 -0
  468. package/src/storage/backwards_compatibility_tests/schema_tests.ts +803 -0
  469. package/src/storage/backwards_compatibility_tests/store_spy.ts +73 -0
  470. package/src/storage/capsule_store/capsule_service.ts +85 -0
  471. package/src/storage/capsule_store/capsule_store.ts +45 -27
  472. package/src/storage/capsule_store/index.ts +1 -0
  473. package/src/storage/contract_store/contract_store.ts +98 -125
  474. package/src/storage/contract_store/private_functions_tree.ts +2 -1
  475. package/src/storage/fact_store/fact_service.ts +69 -0
  476. package/src/storage/fact_store/fact_store.ts +488 -0
  477. package/src/storage/fact_store/fact_store_keys.ts +75 -0
  478. package/src/storage/fact_store/index.ts +15 -0
  479. package/src/storage/fact_store/origin_state.ts +84 -0
  480. package/src/storage/fact_store/stored_fact.ts +80 -0
  481. package/src/storage/index.ts +2 -1
  482. package/src/storage/metadata.ts +1 -1
  483. package/src/storage/note_store/note_store.ts +233 -194
  484. package/src/storage/note_store/stored_note.ts +5 -27
  485. package/src/storage/open_pxe_stores.ts +52 -0
  486. package/src/storage/private_event_store/private_event_store.ts +55 -56
  487. package/src/storage/private_event_store/stored_private_event.ts +1 -1
  488. package/src/storage/store_identity.ts +72 -0
  489. package/src/storage/tagging_store/index.ts +1 -1
  490. package/src/storage/tagging_store/recipient_tagging_store.ts +5 -9
  491. package/src/storage/tagging_store/sender_tagging_store.ts +123 -50
  492. package/src/storage/tagging_store/tagging_secret_sources_store.ts +138 -0
  493. package/src/tagging/constants.ts +42 -10
  494. package/src/tagging/get_all_logs_by_tags.ts +115 -50
  495. package/src/tagging/index.ts +11 -5
  496. package/src/tagging/persist_sender_tagging_index_ranges.ts +57 -0
  497. package/src/tagging/recipient_sync/sync_tagged_private_logs.ts +356 -0
  498. package/src/tagging/recipient_sync/utils/find_highest_indexes.ts +2 -2
  499. package/src/tagging/reconcile_tagging_index_ranges.ts +102 -0
  500. package/src/tagging/sender_sync/sync_sender_tagging_indexes.ts +30 -38
  501. package/src/tagging/sender_sync/utils/classify_pending_txs.ts +92 -0
  502. package/src/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.ts +50 -44
  503. package/src/tagging/sender_sync/utils/resolve_pending_txs.ts +65 -0
  504. package/src/tagging/sender_sync/utils/test_utils.ts +46 -0
  505. package/src/tagging/testing/tag_query_test_utils.ts +11 -0
  506. package/dest/access_scopes.d.ts +0 -9
  507. package/dest/access_scopes.d.ts.map +0 -1
  508. package/dest/access_scopes.js +0 -6
  509. package/dest/contract_function_simulator/benchmarked_node.d.ts +0 -9
  510. package/dest/contract_function_simulator/benchmarked_node.d.ts.map +0 -1
  511. package/dest/contract_function_simulator/benchmarked_node.js +0 -77
  512. package/dest/contract_function_simulator/noir-structs/message_tx_context.d.ts +0 -16
  513. package/dest/contract_function_simulator/noir-structs/message_tx_context.d.ts.map +0 -1
  514. package/dest/contract_function_simulator/noir-structs/message_tx_context.js +0 -57
  515. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.d.ts +0 -9
  516. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.d.ts.map +0 -1
  517. package/dest/contract_function_simulator/oracle/legacy_oracle_mappings.js +0 -42
  518. package/dest/contract_function_simulator/oracle/oracle.d.ts +0 -61
  519. package/dest/contract_function_simulator/oracle/oracle.d.ts.map +0 -1
  520. package/dest/contract_function_simulator/oracle/oracle.js +0 -437
  521. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts +0 -6
  522. package/dest/contract_function_simulator/proxied_contract_data_source.d.ts.map +0 -1
  523. package/dest/contract_function_simulator/proxied_contract_data_source.js +0 -80
  524. package/dest/contract_sync/contract_sync_service.d.ts +0 -45
  525. package/dest/contract_sync/contract_sync_service.d.ts.map +0 -1
  526. package/dest/contract_sync/contract_sync_service.js +0 -114
  527. package/dest/contract_sync/helpers.d.ts +0 -29
  528. package/dest/contract_sync/helpers.d.ts.map +0 -1
  529. package/dest/contract_sync/helpers.js +0 -55
  530. package/dest/messages/message_context_service.d.ts +0 -17
  531. package/dest/messages/message_context_service.d.ts.map +0 -1
  532. package/dest/messages/message_context_service.js +0 -36
  533. package/dest/storage/tagging_store/sender_address_book_store.d.ts +0 -14
  534. package/dest/storage/tagging_store/sender_address_book_store.d.ts.map +0 -1
  535. package/dest/storage/tagging_store/sender_address_book_store.js +0 -36
  536. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts +0 -14
  537. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts.map +0 -1
  538. package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +0 -99
  539. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts +0 -14
  540. package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts.map +0 -1
  541. package/dest/tagging/recipient_sync/utils/load_logs_for_range.js +0 -33
  542. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts +0 -12
  543. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts.map +0 -1
  544. package/dest/tagging/sender_sync/utils/get_status_change_of_pending.js +0 -39
  545. package/src/access_scopes.ts +0 -9
  546. package/src/contract_function_simulator/benchmarked_node.ts +0 -103
  547. package/src/contract_function_simulator/noir-structs/message_tx_context.ts +0 -55
  548. package/src/contract_function_simulator/oracle/legacy_oracle_mappings.ts +0 -135
  549. package/src/contract_function_simulator/oracle/oracle.ts +0 -675
  550. package/src/contract_function_simulator/proxied_contract_data_source.ts +0 -83
  551. package/src/contract_sync/contract_sync_service.ts +0 -181
  552. package/src/contract_sync/helpers.ts +0 -98
  553. package/src/messages/message_context_service.ts +0 -45
  554. package/src/storage/tagging_store/sender_address_book_store.ts +0 -48
  555. package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +0 -140
  556. package/src/tagging/recipient_sync/utils/load_logs_for_range.ts +0 -44
  557. package/src/tagging/sender_sync/utils/get_status_change_of_pending.ts +0 -51
@@ -1,7 +1,8 @@
1
- import { AVM_EMITNOTEHASH_BASE_L2_GAS, AVM_EMITNULLIFIER_BASE_L2_GAS, AVM_SENDL2TOL1MSG_BASE_L2_GAS, DA_GAS_PER_FIELD, FIXED_AVM_STARTUP_L2_GAS, L2_GAS_PER_CONTRACT_CLASS_LOG, L2_GAS_PER_L2_TO_L1_MSG, L2_GAS_PER_NOTE_HASH, L2_GAS_PER_NULLIFIER, L2_GAS_PER_PRIVATE_LOG, MAX_CONTRACT_CLASS_LOGS_PER_TX, MAX_ENQUEUED_CALLS_PER_TX, MAX_L2_TO_L1_MSGS_PER_TX, MAX_NOTE_HASHES_PER_TX, MAX_NOTE_HASH_READ_REQUESTS_PER_TX, MAX_NULLIFIERS_PER_TX, MAX_NULLIFIER_READ_REQUESTS_PER_TX, MAX_PRIVATE_LOGS_PER_TX, MAX_TX_LIFETIME, PRIVATE_TX_L2_GAS_OVERHEAD, PUBLIC_TX_L2_GAS_OVERHEAD, TX_DA_GAS_OVERHEAD } from '@aztec/constants';
1
+ import { AVM_EMITNOTEHASH_BASE_L2_GAS, AVM_EMITNULLIFIER_BASE_L2_GAS, AVM_SENDL2TOL1MSG_BASE_L2_GAS, DA_GAS_PER_FIELD, FIXED_AVM_STARTUP_L2_GAS, L2_GAS_PER_CONTRACT_CLASS_LOG, L2_GAS_PER_L2_TO_L1_MSG, L2_GAS_PER_NOTE_HASH, L2_GAS_PER_NULLIFIER, L2_GAS_PER_PRIVATE_LOG, MAX_CONTRACT_CLASS_LOGS_PER_TX, MAX_ENQUEUED_CALLS_PER_TX, MAX_L2_TO_L1_MSGS_PER_TX, MAX_NOTE_HASHES_PER_TX, MAX_NOTE_HASH_READ_REQUESTS_PER_TX, MAX_NULLIFIERS_PER_TX, MAX_NULLIFIER_READ_REQUESTS_PER_TX, MAX_PRIVATE_LOGS_PER_TX, MAX_TX_LIFETIME, PRIVATE_TX_L2_GAS_OVERHEAD, PUBLIC_DATA_WRITE_LENGTH, PUBLIC_TX_L2_GAS_OVERHEAD, TX_DA_GAS_OVERHEAD } from '@aztec/constants';
2
2
  import { arrayNonEmptyLength, padArrayEnd } from '@aztec/foundation/collection';
3
3
  import { Fr } from '@aztec/foundation/curves/bn254';
4
4
  import { createLogger } from '@aztec/foundation/log';
5
+ import { allToCompletion } from '@aztec/foundation/promise';
5
6
  import { Timer } from '@aztec/foundation/timer';
6
7
  import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
7
8
  import { protocolContractsHash } from '@aztec/protocol-contracts';
@@ -14,68 +15,90 @@ import { ClaimedLengthArray, PartialPrivateTailPublicInputsForPublic, PartialPri
14
15
  import { PrivateLog } from '@aztec/stdlib/logs';
15
16
  import { ScopedL2ToL1Message } from '@aztec/stdlib/messaging';
16
17
  import { ChonkProof } from '@aztec/stdlib/proofs';
18
+ import { MerkleTreeId } from '@aztec/stdlib/trees';
17
19
  import { CallContext, HashedValues, PrivateExecutionResult, TxConstantData, collectNested, collectNoteHashNullifierCounterMap, getFinalMinRevertibleSideEffectCounter } from '@aztec/stdlib/tx';
20
+ import { CapsuleService } from '../storage/capsule_store/capsule_service.js';
21
+ import { FactService } from '../storage/fact_store/index.js';
22
+ import { AnchoredContractData } from './anchored_contract_data.js';
18
23
  import { ExecutionNoteCache } from './execution_note_cache.js';
19
24
  import { ExecutionTaggingIndexCache } from './execution_tagging_index_cache.js';
20
25
  import { HashedValuesCache } from './hashed_values_cache.js';
21
- import { Oracle } from './oracle/oracle.js';
26
+ import { buildACIRCallback } from './oracle/acir_callback.js';
22
27
  import { executePrivateFunction } from './oracle/private_execution.js';
23
28
  import { PrivateExecutionOracle } from './oracle/private_execution_oracle.js';
24
29
  import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
30
+ import { TransientArrayService } from './transient_array_service.js';
25
31
  /**
26
32
  * The contract function simulator.
27
33
  */ export class ContractFunctionSimulator {
28
34
  log;
29
35
  contractStore;
36
+ contractClassService;
37
+ overrides;
30
38
  noteStore;
31
39
  keyStore;
32
40
  addressStore;
33
41
  aztecNode;
42
+ l2TipsStore;
34
43
  senderTaggingStore;
35
44
  recipientTaggingStore;
36
- senderAddressBookStore;
45
+ taggingSecretSourcesStore;
37
46
  capsuleStore;
47
+ factStore;
38
48
  privateEventStore;
39
49
  simulator;
40
50
  contractSyncService;
41
- messageContextService;
51
+ txResolver;
52
+ hooks;
42
53
  constructor(args){
43
54
  this.contractStore = args.contractStore;
55
+ this.contractClassService = args.contractClassService;
56
+ this.overrides = args.overrides;
44
57
  this.noteStore = args.noteStore;
45
58
  this.keyStore = args.keyStore;
46
59
  this.addressStore = args.addressStore;
47
60
  this.aztecNode = args.aztecNode;
61
+ this.l2TipsStore = args.l2TipsStore;
48
62
  this.senderTaggingStore = args.senderTaggingStore;
49
63
  this.recipientTaggingStore = args.recipientTaggingStore;
50
- this.senderAddressBookStore = args.senderAddressBookStore;
64
+ this.taggingSecretSourcesStore = args.taggingSecretSourcesStore;
51
65
  this.capsuleStore = args.capsuleStore;
66
+ this.factStore = args.factStore;
52
67
  this.privateEventStore = args.privateEventStore;
53
68
  this.simulator = args.simulator;
54
69
  this.contractSyncService = args.contractSyncService;
55
- this.messageContextService = args.messageContextService;
70
+ this.txResolver = args.txResolver;
71
+ this.hooks = args.hooks;
56
72
  this.log = createLogger('simulator');
57
73
  }
58
74
  /**
59
75
  * Runs a private function.
60
76
  * @param request - The transaction request.
61
- */ async run(request, { contractAddress, selector, msgSender = AztecAddress.fromField(Fr.MAX_FIELD_VALUE), anchorBlockHeader, senderForTags, scopes, jobId }) {
77
+ */ async run(request, { msgSender = AztecAddress.NULL_MSG_SENDER, anchorBlockHeader, senderForTags, scopes, jobId }) {
62
78
  const simulatorSetupTimer = new Timer();
63
- const entryPointArtifact = await this.contractStore.getFunctionArtifactWithDebugMetadata(contractAddress, selector);
79
+ const contractAddress = request.origin;
80
+ const anchoredContractData = new AnchoredContractData(this.contractStore, this.contractClassService, anchorBlockHeader, this.overrides);
81
+ const entryPointArtifact = await anchoredContractData.getFunctionArtifactWithDebugMetadata(contractAddress, request.functionSelector);
82
+ if (!entryPointArtifact) {
83
+ throw new Error(`Cannot run function ${request.functionSelector} on ${contractAddress}: the contract is not registered. ` + `Register it via wallet.registerContract(...).`);
84
+ }
64
85
  if (entryPointArtifact.functionType !== FunctionType.PRIVATE) {
65
86
  throw new Error(`Cannot run ${entryPointArtifact.functionType} function as private`);
66
87
  }
67
- if (request.origin !== contractAddress) {
68
- this.log.warn(`Request origin does not match contract address in simulation. Request origin: ${request.origin}, contract address: ${contractAddress}`);
69
- }
70
88
  // reserve the first side effect for the tx hash (inserted by the private kernel)
71
89
  const startSideEffectCounter = 2;
72
90
  const callContext = new CallContext(msgSender, contractAddress, await FunctionSelector.fromNameAndParameters(entryPointArtifact.name, entryPointArtifact.parameters), entryPointArtifact.isStatic);
73
91
  const protocolNullifier = await computeProtocolNullifier(await request.toTxRequest().hash());
74
92
  const noteCache = new ExecutionNoteCache(protocolNullifier);
75
93
  const taggingIndexCache = new ExecutionTaggingIndexCache();
94
+ // One shared transient store for the whole execution tree rooted at this transaction. Threaded into every child
95
+ // private oracle and inherited by nested utility frames, so that frames of the same contract see each other's
96
+ // transient arrays, then discarded when run() returns.
97
+ const transientArrayService = new TransientArrayService();
76
98
  const privateExecutionOracle = new PrivateExecutionOracle({
77
99
  argsHash: request.firstCallArgsHash,
78
100
  txContext: request.txContext,
101
+ txRequestSalt: request.salt,
79
102
  callContext,
80
103
  anchorBlockHeader,
81
104
  utilityExecutor: async (call, execScopes)=>{
@@ -86,24 +109,28 @@ import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
86
109
  executionCache: HashedValuesCache.create(request.argsOfCalls),
87
110
  noteCache,
88
111
  taggingIndexCache,
89
- contractStore: this.contractStore,
112
+ anchoredContractData,
90
113
  noteStore: this.noteStore,
91
114
  keyStore: this.keyStore,
92
115
  addressStore: this.addressStore,
93
116
  aztecNode: this.aztecNode,
94
117
  senderTaggingStore: this.senderTaggingStore,
95
118
  recipientTaggingStore: this.recipientTaggingStore,
96
- senderAddressBookStore: this.senderAddressBookStore,
97
- capsuleStore: this.capsuleStore,
119
+ taggingSecretSourcesStore: this.taggingSecretSourcesStore,
120
+ capsuleService: new CapsuleService(this.capsuleStore, scopes),
121
+ factService: new FactService(this.factStore, scopes),
98
122
  privateEventStore: this.privateEventStore,
99
- messageContextService: this.messageContextService,
123
+ txResolver: this.txResolver,
100
124
  contractSyncService: this.contractSyncService,
101
125
  jobId,
102
126
  totalPublicCalldataCount: 0,
103
127
  sideEffectCounter: startSideEffectCounter,
104
128
  scopes,
105
129
  senderForTags,
106
- simulator: this.simulator
130
+ simulator: this.simulator,
131
+ l2TipsStore: this.l2TipsStore,
132
+ hooks: this.hooks,
133
+ transientArrayService
107
134
  });
108
135
  const setupTime = simulatorSetupTimer.ms();
109
136
  try {
@@ -113,15 +140,14 @@ import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
113
140
  // within executionResult.nestedExecutionResults).
114
141
  const executionResult = await executePrivateFunction(this.simulator, privateExecutionOracle, entryPointArtifact, contractAddress, request.functionSelector);
115
142
  const simulatorTeardownTimer = new Timer();
116
- noteCache.finish();
117
- const firstNullifierHint = noteCache.getNonceGenerator();
143
+ const firstNullifier = noteCache.getNonceGenerator();
118
144
  const publicCallRequests = collectNested([
119
145
  executionResult
120
146
  ], (r)=>r.publicInputs.publicCallRequests.getActiveItems().map((r)=>r.inner).concat(r.publicInputs.publicTeardownCallRequest.isEmpty() ? [] : [
121
147
  r.publicInputs.publicTeardownCallRequest
122
148
  ]));
123
- const publicFunctionsCalldata = await Promise.all(publicCallRequests.map(async (r)=>{
124
- const calldata = await privateExecutionOracle.loadFromExecutionCache(r.calldataHash);
149
+ const publicFunctionsCalldata = await allToCompletion(publicCallRequests.map(async (r)=>{
150
+ const calldata = await privateExecutionOracle.getHashPreimage(r.calldataHash);
125
151
  return new HashedValues(calldata, r.calldataHash);
126
152
  }));
127
153
  const teardownTime = simulatorTeardownTimer.ms();
@@ -130,45 +156,59 @@ import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
130
156
  executionResult.profileResult.timings.witgen += setupTime + teardownTime;
131
157
  }
132
158
  // Not to be confused with a PrivateCallExecutionResult. This is a superset
133
- // of the PrivateCallExecutionResult, containing also firstNullifierHint
159
+ // of the PrivateCallExecutionResult, containing also firstNullifier
134
160
  // and publicFunctionsCalldata.
135
- return new PrivateExecutionResult(executionResult, firstNullifierHint, publicFunctionsCalldata);
161
+ return new PrivateExecutionResult(executionResult, firstNullifier, publicFunctionsCalldata);
136
162
  } catch (err) {
137
163
  throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during private execution'));
138
164
  }
139
165
  }
140
- // docs:start:execute_utility_function
141
166
  /**
142
167
  * Runs a utility function.
143
168
  * @param call - The function call to execute.
144
- * @param authwits - Authentication witnesses required for the function call.
145
- * @param anchorBlockHeader - The block header to use as base state for this run.
146
- * @param scopes - Optional array of account addresses whose notes can be accessed in this call. Defaults to all
147
- * accounts if not specified.
148
169
  * @returns A return value of the utility function in a form as returned by the simulator (Noir fields)
149
170
  */ async runUtility(call, authwits, anchorBlockHeader, scopes, jobId) {
150
- const entryPointArtifact = await this.contractStore.getFunctionArtifactWithDebugMetadata(call.to, call.selector);
171
+ const anchoredContractData = new AnchoredContractData(this.contractStore, this.contractClassService, anchorBlockHeader, this.overrides);
172
+ const entryPointArtifact = await anchoredContractData.getFunctionArtifactWithDebugMetadata(call.to, call.selector);
173
+ if (!entryPointArtifact) {
174
+ throw new Error(`Cannot run function ${call.selector} on ${call.to}: the contract is not registered. ` + `Register it via wallet.registerContract(...).`);
175
+ }
151
176
  if (entryPointArtifact.functionType !== FunctionType.UTILITY) {
152
177
  throw new Error(`Cannot run ${entryPointArtifact.functionType} function as utility`);
153
178
  }
179
+ const utilityExecutor = async (syncCall, execScopes)=>{
180
+ await this.runUtility(syncCall, [], anchorBlockHeader, execScopes, jobId);
181
+ };
154
182
  const oracle = new UtilityExecutionOracle({
155
- contractAddress: call.to,
183
+ callContext: CallContext.from({
184
+ msgSender: AztecAddress.NULL_MSG_SENDER,
185
+ contractAddress: call.to,
186
+ functionSelector: call.selector,
187
+ isStaticCall: true
188
+ }),
156
189
  authWitnesses: authwits,
157
190
  capsules: [],
158
191
  anchorBlockHeader,
159
- contractStore: this.contractStore,
192
+ anchoredContractData,
160
193
  noteStore: this.noteStore,
161
194
  keyStore: this.keyStore,
162
195
  addressStore: this.addressStore,
163
196
  aztecNode: this.aztecNode,
164
197
  recipientTaggingStore: this.recipientTaggingStore,
165
- senderAddressBookStore: this.senderAddressBookStore,
166
- capsuleStore: this.capsuleStore,
198
+ taggingSecretSourcesStore: this.taggingSecretSourcesStore,
199
+ capsuleService: new CapsuleService(this.capsuleStore, scopes),
200
+ factService: new FactService(this.factStore, scopes),
167
201
  privateEventStore: this.privateEventStore,
168
- messageContextService: this.messageContextService,
202
+ txResolver: this.txResolver,
169
203
  contractSyncService: this.contractSyncService,
204
+ l2TipsStore: this.l2TipsStore,
170
205
  jobId,
171
- scopes
206
+ scopes,
207
+ simulator: this.simulator,
208
+ hooks: this.hooks,
209
+ utilityExecutor,
210
+ // Execution-tree root (top-level utility run or contract sync): own store; nested frames inherit it.
211
+ transientArrayService: new TransientArrayService()
172
212
  });
173
213
  try {
174
214
  this.log.verbose(`Executing utility function ${entryPointArtifact.name}`, {
@@ -176,7 +216,7 @@ import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
176
216
  selector: call.selector
177
217
  });
178
218
  const initialWitness = toACVMWitness(0, call.args);
179
- const acirExecutionResult = await this.simulator.executeUserCircuit(initialWitness, entryPointArtifact, new Oracle(oracle).toACIRCallback()).catch((err)=>{
219
+ const acirExecutionResult = await this.simulator.executeUserCircuit(initialWitness, entryPointArtifact, buildACIRCallback(oracle)).catch((err)=>{
180
220
  err.message = resolveAssertionMessageFromError(err, entryPointArtifact);
181
221
  throw new ExecutionError(err.message, {
182
222
  contractAddress: call.to,
@@ -194,24 +234,6 @@ import { UtilityExecutionOracle } from './oracle/utility_execution_oracle.js';
194
234
  throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during private execution'));
195
235
  }
196
236
  }
197
- // docs:end:execute_utility_function
198
- /**
199
- * Returns the execution statistics collected during the simulator run.
200
- * @returns The execution statistics.
201
- */ getStats() {
202
- const nodeRPCCalls = typeof this.aztecNode.getStats === 'function' ? this.aztecNode.getStats() : {
203
- perMethod: {},
204
- roundTrips: {
205
- roundTrips: 0,
206
- totalBlockingTime: 0,
207
- roundTripDurations: [],
208
- roundTripMethods: []
209
- }
210
- };
211
- return {
212
- nodeRPCCalls
213
- };
214
- }
215
237
  }
216
238
  class OrderedSideEffect {
217
239
  sideEffect;
@@ -270,7 +292,7 @@ class OrderedSideEffect {
270
292
  }
271
293
  scopedNoteHashes.push(...execution.publicInputs.noteHashes.getActiveItems().filter((nh)=>!nh.isEmpty()).map((nh)=>nh.scope(contractAddress)));
272
294
  scopedNullifiers.push(...execution.publicInputs.nullifiers.getActiveItems().map((n)=>n.scope(contractAddress)));
273
- taggedPrivateLogs.push(...await Promise.all(execution.publicInputs.privateLogs.getActiveItems().map(async (metadata)=>{
295
+ taggedPrivateLogs.push(...await allToCompletion(execution.publicInputs.privateLogs.getActiveItems().map(async (metadata)=>{
274
296
  metadata.log.fields[0] = await computeSiloedPrivateLogFirstField(contractAddress, metadata.log.fields[0]);
275
297
  return new OrderedSideEffect(metadata, metadata.counter);
276
298
  })));
@@ -300,8 +322,8 @@ class OrderedSideEffect {
300
322
  const scopedNullifiersCLA = new ClaimedLengthArray(padArrayEnd(scopedNullifiers, ScopedNullifier.empty(), MAX_NULLIFIERS_PER_TX), scopedNullifiers.length);
301
323
  const { filteredNoteHashes, filteredNullifiers, filteredPrivateLogs } = squashTransientSideEffects(taggedPrivateLogs, scopedNoteHashesCLA, scopedNullifiersCLA, noteHashNullifierCounterMap, minRevertibleSideEffectCounter);
302
324
  await verifyReadRequests(node, await privateExecutionResult.entrypoint.publicInputs.anchorBlockHeader.hash(), noteHashReadRequests, nullifierReadRequests, scopedNoteHashesCLA, scopedNullifiersCLA);
303
- const siloedNoteHashes = await Promise.all(filteredNoteHashes.sort((a, b)=>a.counter - b.counter).map(async (nh)=>new OrderedSideEffect(await siloNoteHash(nh.contractAddress, nh.value), nh.counter)));
304
- const siloedNullifiers = await Promise.all(filteredNullifiers.sort((a, b)=>a.counter - b.counter).map(async (n)=>new OrderedSideEffect(await siloNullifier(n.contractAddress, n.value), n.counter)));
325
+ const siloedNoteHashes = await allToCompletion(filteredNoteHashes.sort((a, b)=>a.counter - b.counter).map(async (nh)=>new OrderedSideEffect(await siloNoteHash(nh.contractAddress, nh.value), nh.counter)));
326
+ const siloedNullifiers = await allToCompletion(filteredNullifiers.sort((a, b)=>a.counter - b.counter).map(async (n)=>new OrderedSideEffect(await siloNullifier(n.contractAddress, n.value), n.counter)));
305
327
  const constantData = new TxConstantData(privateExecutionResult.entrypoint.publicInputs.anchorBlockHeader, privateExecutionResult.entrypoint.publicInputs.txContext, getVKTreeRoot(), protocolContractsHash);
306
328
  const hasPublicCalls = privateExecutionResult.publicFunctionCalldata.length !== 0;
307
329
  let inputsForRollup;
@@ -311,16 +333,16 @@ class OrderedSideEffect {
311
333
  const getEffect = (orderedSideEffect)=>orderedSideEffect.sideEffect;
312
334
  const isPrivateOnlyTx = privateExecutionResult.publicFunctionCalldata.length === 0;
313
335
  const [nonRevertibleNullifiers, revertibleNullifiers] = splitOrderedSideEffects(siloedNullifiers, minRevertibleSideEffectCounter);
336
+ // The protocol nullifier is the nonce generator and the tx's first nullifier. It is injected by the
337
+ // init kernel (at counter 1, index 0) rather than emitted by any private call, so it is absent from
338
+ // the executed nullifiers above. Mirror the kernel here by prepending it as the first non-revertible
339
+ // nullifier.
314
340
  const nonceGenerator = privateExecutionResult.firstNullifier;
315
- if (nonRevertibleNullifiers.length === 0) {
316
- nonRevertibleNullifiers.push(nonceGenerator);
317
- } else if (!nonRevertibleNullifiers[0].equals(nonceGenerator)) {
318
- throw new Error('The first non revertible nullifier should be equal to the nonce generator. This is a bug!');
319
- }
341
+ nonRevertibleNullifiers.unshift(nonceGenerator);
320
342
  if (isPrivateOnlyTx) {
321
343
  // We must make the note hashes unique by using the
322
344
  // nonce generator and their index in the tx.
323
- const uniqueNoteHashes = await Promise.all(siloedNoteHashes.map(async (orderedSideEffect, i)=>{
345
+ const uniqueNoteHashes = await allToCompletion(siloedNoteHashes.map(async (orderedSideEffect, i)=>{
324
346
  const siloedNoteHash = orderedSideEffect.sideEffect;
325
347
  const nonce = await computeNoteHashNonce(nonceGenerator, i);
326
348
  const uniqueNoteHash = await computeUniqueNoteHash(nonce, siloedNoteHash);
@@ -331,7 +353,7 @@ class OrderedSideEffect {
331
353
  inputsForRollup = new PartialPrivateTailPublicInputsForRollup(accumulatedDataForRollup);
332
354
  } else {
333
355
  const [nonRevertibleNoteHashes, revertibleNoteHashes] = splitOrderedSideEffects(siloedNoteHashes, minRevertibleSideEffectCounter);
334
- const nonRevertibleUniqueNoteHashes = await Promise.all(nonRevertibleNoteHashes.map(async (noteHash, i)=>{
356
+ const nonRevertibleUniqueNoteHashes = await allToCompletion(nonRevertibleNoteHashes.map(async (noteHash, i)=>{
335
357
  const nonce = await computeNoteHashNonce(nonceGenerator, i);
336
358
  return await computeUniqueNoteHash(nonce, noteHash);
337
359
  }));
@@ -401,17 +423,17 @@ class OrderedSideEffect {
401
423
  });
402
424
  }
403
425
  }
404
- const [noteHashWitnesses, nullifierWitnesses] = await Promise.all([
405
- Promise.all(settledNoteHashReads.map(({ value })=>node.getNoteHashMembershipWitness(anchorBlockHash, value))),
406
- Promise.all(settledNullifierReads.map(({ value })=>node.getNullifierMembershipWitness(anchorBlockHash, value)))
426
+ const [noteHashResults, nullifierResults] = await allToCompletion([
427
+ settledNoteHashReads.length > 0 ? node.findLeavesIndexes(anchorBlockHash, MerkleTreeId.NOTE_HASH_TREE, settledNoteHashReads.map(({ value })=>value)) : [],
428
+ settledNullifierReads.length > 0 ? node.findLeavesIndexes(anchorBlockHash, MerkleTreeId.NULLIFIER_TREE, settledNullifierReads.map(({ value })=>value)) : []
407
429
  ]);
408
430
  for(let i = 0; i < settledNoteHashReads.length; i++){
409
- if (!noteHashWitnesses[i]) {
431
+ if (!noteHashResults[i]) {
410
432
  throw new Error(`Note hash read request at index ${settledNoteHashReads[i].index} is reading an unknown note hash: ${settledNoteHashReads[i].value}`);
411
433
  }
412
434
  }
413
435
  for(let i = 0; i < settledNullifierReads.length; i++){
414
- if (!nullifierWitnesses[i]) {
436
+ if (!nullifierResults[i]) {
415
437
  throw new Error(`Nullifier read request at index ${settledNullifierReads[i].index} is reading an unknown nullifier: ${settledNullifierReads[i].value}`);
416
438
  }
417
439
  }
@@ -454,6 +476,10 @@ function meterGasUsed(data, isPrivateOnlyTx) {
454
476
  // Every contract class log emits its contract address as an additional field
455
477
  meteredDAFields += data.contractClassLogsHashes.reduce((acc, log)=>!log.isEmpty() ? acc + log.logHash.length + 1 : acc, 0);
456
478
  meteredL2Gas += numContractClassLogs * L2_GAS_PER_CONTRACT_CLASS_LOG;
479
+ if (isPrivateOnlyTx) {
480
+ // The public data write that the private tx base rollup always performs to update the fee payer's balance.
481
+ meteredDAFields += PUBLIC_DATA_WRITE_LENGTH;
482
+ }
457
483
  const meteredDAGas = meteredDAFields * DA_GAS_PER_FIELD;
458
484
  if (data.publicCallRequests) {
459
485
  const dataForPublic = data;
@@ -0,0 +1,28 @@
1
+ import { Fr } from '@aztec/foundation/curves/bn254';
2
+ /** In-memory store for ephemeral arrays scoped to a single contract call frame. */
3
+ export declare class EphemeralArrayService {
4
+ #private;
5
+ /** Returns all elements in the array, or an empty array if uninitialized. */
6
+ readArrayAt(slot: Fr): Fr[][];
7
+ /** Returns the number of elements in the array at the given slot. */
8
+ len(slot: Fr): number;
9
+ /** Appends an element to the array and returns the new length. */
10
+ push(slot: Fr, elements: Fr[]): number;
11
+ /** Removes and returns the last element. Throws if empty. */
12
+ pop(slot: Fr): Fr[];
13
+ /** Returns the element at the given index. Throws if out of bounds. */
14
+ get(slot: Fr, index: number): Fr[];
15
+ /** Overwrites the element at the given index. Throws if out of bounds. */
16
+ set(slot: Fr, index: number, value: Fr[]): void;
17
+ /** Removes the element at the given index, shifting subsequent elements backward. Throws if out of bounds. */
18
+ remove(slot: Fr, index: number): void;
19
+ /** Removes all elements from the array. */
20
+ clear(slot: Fr): void;
21
+ /** Allocates a fresh, unused slot for a new ephemeral array. */
22
+ allocateSlot(): Fr;
23
+ /** Creates a new ephemeral array pre-populated with the given elements and returns its slot. */
24
+ newArray(elements: Fr[][]): Fr;
25
+ /** Copies `count` elements from the source array to the destination array (overwrites destination). */
26
+ copy(srcSlot: Fr, dstSlot: Fr, count: number): void;
27
+ }
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXBoZW1lcmFsX2FycmF5X3NlcnZpY2UuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb250cmFjdF9mdW5jdGlvbl9zaW11bGF0b3IvZXBoZW1lcmFsX2FycmF5X3NlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRXBELG1GQUFtRjtBQUNuRixxQkFBYSxxQkFBcUI7O0lBT2hDLDZFQUE2RTtJQUM3RSxXQUFXLENBQUMsSUFBSSxFQUFFLEVBQUUsR0FBRyxFQUFFLEVBQUUsRUFBRSxDQUU1QjtJQU1ELHFFQUFxRTtJQUNyRSxHQUFHLENBQUMsSUFBSSxFQUFFLEVBQUUsR0FBRyxNQUFNLENBRXBCO0lBRUQsa0VBQWtFO0lBQ2xFLElBQUksQ0FBQyxJQUFJLEVBQUUsRUFBRSxFQUFFLFFBQVEsRUFBRSxFQUFFLEVBQUUsR0FBRyxNQUFNLENBS3JDO0lBRUQsNkRBQTZEO0lBQzdELEdBQUcsQ0FBQyxJQUFJLEVBQUUsRUFBRSxHQUFHLEVBQUUsRUFBRSxDQVFsQjtJQUVELHVFQUF1RTtJQUN2RSxHQUFHLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxLQUFLLEVBQUUsTUFBTSxHQUFHLEVBQUUsRUFBRSxDQVFqQztJQUVELDBFQUEwRTtJQUMxRSxHQUFHLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsR0FBRyxJQUFJLENBUTlDO0lBRUQsOEdBQThHO0lBQzlHLE1BQU0sQ0FBQyxJQUFJLEVBQUUsRUFBRSxFQUFFLEtBQUssRUFBRSxNQUFNLEdBQUcsSUFBSSxDQVFwQztJQUVELDJDQUEyQztJQUMzQyxLQUFLLENBQUMsSUFBSSxFQUFFLEVBQUUsR0FBRyxJQUFJLENBRXBCO0lBRUQsZ0VBQWdFO0lBQ2hFLFlBQVksSUFBSSxFQUFFLENBTWpCO0lBRUQsZ0dBQWdHO0lBQ2hHLFFBQVEsQ0FBQyxRQUFRLEVBQUUsRUFBRSxFQUFFLEVBQUUsR0FBRyxFQUFFLENBSTdCO0lBRUQsdUdBQXVHO0lBQ3ZHLElBQUksQ0FBQyxPQUFPLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLE1BQU0sR0FBRyxJQUFJLENBVWxEO0NBQ0YifQ==
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ephemeral_array_service.d.ts","sourceRoot":"","sources":["../../src/contract_function_simulator/ephemeral_array_service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AAEpD,mFAAmF;AACnF,qBAAa,qBAAqB;;IAOhC,6EAA6E;IAC7E,WAAW,CAAC,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAE5B;IAMD,qEAAqE;IACrE,GAAG,CAAC,IAAI,EAAE,EAAE,GAAG,MAAM,CAEpB;IAED,kEAAkE;IAClE,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,GAAG,MAAM,CAKrC;IAED,6DAA6D;IAC7D,GAAG,CAAC,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,CAQlB;IAED,uEAAuE;IACvE,GAAG,CAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE,CAQjC;IAED,0EAA0E;IAC1E,GAAG,CAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,IAAI,CAQ9C;IAED,8GAA8G;IAC9G,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAQpC;IAED,2CAA2C;IAC3C,KAAK,CAAC,IAAI,EAAE,EAAE,GAAG,IAAI,CAEpB;IAED,gEAAgE;IAChE,YAAY,IAAI,EAAE,CAMjB;IAED,gGAAgG;IAChG,QAAQ,CAAC,QAAQ,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,CAI7B;IAED,uGAAuG;IACvG,IAAI,CAAC,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAUlD;CACF"}
@@ -0,0 +1,78 @@
1
+ import { Fr } from '@aztec/foundation/curves/bn254';
2
+ /** In-memory store for ephemeral arrays scoped to a single contract call frame. */ export class EphemeralArrayService {
3
+ /**
4
+ * Maps a slot to the elements of the array stored at that slot. Each element is a serialized representation of
5
+ * the original type.
6
+ */ #arrays = new Map();
7
+ /** Returns all elements in the array, or an empty array if uninitialized. */ readArrayAt(slot) {
8
+ return this.#arrays.get(slot.toString()) ?? [];
9
+ }
10
+ #setArray(slot, array) {
11
+ this.#arrays.set(slot.toString(), array);
12
+ }
13
+ /** Returns the number of elements in the array at the given slot. */ len(slot) {
14
+ return this.readArrayAt(slot).length;
15
+ }
16
+ /** Appends an element to the array and returns the new length. */ push(slot, elements) {
17
+ const array = this.readArrayAt(slot);
18
+ array.push(elements);
19
+ this.#setArray(slot, array);
20
+ return array.length;
21
+ }
22
+ /** Removes and returns the last element. Throws if empty. */ pop(slot) {
23
+ const array = this.readArrayAt(slot);
24
+ if (array.length === 0) {
25
+ throw new Error(`Ephemeral array at slot ${slot} is empty`);
26
+ }
27
+ const element = array.pop();
28
+ this.#setArray(slot, array);
29
+ return element;
30
+ }
31
+ /** Returns the element at the given index. Throws if out of bounds. */ get(slot, index) {
32
+ const array = this.readArrayAt(slot);
33
+ if (index < 0 || index >= array.length) {
34
+ throw new Error(`Ephemeral array index ${index} out of bounds for array of length ${array.length} at slot ${slot}`);
35
+ }
36
+ return array[index];
37
+ }
38
+ /** Overwrites the element at the given index. Throws if out of bounds. */ set(slot, index, value) {
39
+ const array = this.readArrayAt(slot);
40
+ if (index < 0 || index >= array.length) {
41
+ throw new Error(`Ephemeral array index ${index} out of bounds for array of length ${array.length} at slot ${slot}`);
42
+ }
43
+ array[index] = value;
44
+ }
45
+ /** Removes the element at the given index, shifting subsequent elements backward. Throws if out of bounds. */ remove(slot, index) {
46
+ const array = this.readArrayAt(slot);
47
+ if (index < 0 || index >= array.length) {
48
+ throw new Error(`Ephemeral array index ${index} out of bounds for array of length ${array.length} at slot ${slot}`);
49
+ }
50
+ array.splice(index, 1);
51
+ }
52
+ /** Removes all elements from the array. */ clear(slot) {
53
+ this.#arrays.delete(slot.toString());
54
+ }
55
+ /** Allocates a fresh, unused slot for a new ephemeral array. */ allocateSlot() {
56
+ let slot;
57
+ do {
58
+ slot = Fr.random();
59
+ }while (this.#arrays.has(slot.toString()))
60
+ return slot;
61
+ }
62
+ /** Creates a new ephemeral array pre-populated with the given elements and returns its slot. */ newArray(elements) {
63
+ const slot = this.allocateSlot();
64
+ this.#setArray(slot, elements);
65
+ return slot;
66
+ }
67
+ /** Copies `count` elements from the source array to the destination array (overwrites destination). */ copy(srcSlot, dstSlot, count) {
68
+ const srcArray = this.readArrayAt(srcSlot);
69
+ if (count > srcArray.length) {
70
+ throw new Error(`Cannot copy ${count} elements from ephemeral array of length ${srcArray.length} at slot ${srcSlot}`);
71
+ }
72
+ // Deep copy the elements to avoid aliasing
73
+ const copied = srcArray.slice(0, count).map((el)=>[
74
+ ...el
75
+ ]);
76
+ this.#setArray(dstSlot, copied);
77
+ }
78
+ }
@@ -1,6 +1,6 @@
1
1
  import { Fr } from '@aztec/foundation/curves/bn254';
2
2
  import type { AztecAddress } from '@aztec/stdlib/aztec-address';
3
- import type { NoteData } from './oracle/interfaces.js';
3
+ import type { NoteData } from './noir-structs/note_data.js';
4
4
  interface PendingNote {
5
5
  note: NoteData;
6
6
  counter: number;
@@ -36,11 +36,6 @@ export declare class ExecutionNoteCache {
36
36
  */
37
37
  private minRevertibleSideEffectCounter;
38
38
  private inRevertiblePhase;
39
- /**
40
- * Whether the protocol nullifier was used for nonce generation.
41
- * We don't need to use the protocol nullifier if a non-revertible nullifier is emitted.
42
- */
43
- private usedProtocolNullifierForNonces;
44
39
  constructor(protocolNullifier: Fr);
45
40
  /**
46
41
  * Enters the revertible phase of the transaction.
@@ -48,7 +43,6 @@ export declare class ExecutionNoteCache {
48
43
  */
49
44
  setMinRevertibleSideEffectCounter(minRevertibleSideEffectCounter: number): Promise<void>;
50
45
  isSideEffectCounterRevertible(sideEffectCounter: number): boolean;
51
- finish(): void;
52
46
  /**
53
47
  * Add a new note to cache.
54
48
  * @param note - New note created during execution.
@@ -94,11 +88,11 @@ export declare class ExecutionNoteCache {
94
88
  */
95
89
  getEmittedNullifiers(): Fr[];
96
90
  /**
97
- * @returns All nullifiers emitted by private calls in this transaction. If the protocol nullifier was used as the
98
- * nonce generator, it is injected as the first nullifier.
91
+ * @returns All nullifiers of the transaction: the protocol nullifier (the kernel-injected first nullifier),
92
+ * followed by those emitted by private calls.
99
93
  */
100
94
  getAllNullifiers(): Fr[];
101
95
  getNonceGenerator(): Fr;
102
96
  }
103
97
  export {};
104
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0aW9uX25vdGVfY2FjaGUuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb250cmFjdF9mdW5jdGlvbl9zaW11bGF0b3IvZXhlY3V0aW9uX25vdGVfY2FjaGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3BELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBR2hFLE9BQU8sS0FBSyxFQUFFLFFBQVEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBRXZELFVBQVUsV0FBVztJQUNuQixJQUFJLEVBQUUsUUFBUSxDQUFDO0lBQ2YsT0FBTyxFQUFFLE1BQU0sQ0FBQztJQUNoQixzQkFBc0IsRUFBRSxFQUFFLENBQUM7Q0FDNUI7QUFFRDs7R0FFRztBQUNILHFCQUFhLGtCQUFrQjs7SUFvQ2pCLE9BQU8sQ0FBQyxRQUFRLENBQUMsaUJBQWlCO0lBbkM5Qzs7O09BR0c7SUFDSCxPQUFPLENBQUMsS0FBSyxDQUFxQjtJQUNsQzs7T0FFRztJQUNILE9BQU8sQ0FBQyxPQUFPLENBQXlDO0lBRXhEOzs7O09BSUc7SUFDSCxPQUFPLENBQUMsWUFBWSxDQUF1QztJQUUzRDs7T0FFRztJQUNILE9BQU8sQ0FBQyxpQkFBaUIsQ0FBMEI7SUFFbkQ7O09BRUc7SUFDSCxPQUFPLENBQUMsOEJBQThCLENBQUs7SUFFM0MsT0FBTyxDQUFDLGlCQUFpQixDQUFTO0lBRWxDOzs7T0FHRztJQUNILE9BQU8sQ0FBQyw4QkFBOEIsQ0FBc0I7SUFFNUQsWUFBNkIsaUJBQWlCLEVBQUUsRUFBRSxFQUFJO0lBRXREOzs7T0FHRztJQUNVLGlDQUFpQyxDQUFDLDhCQUE4QixFQUFFLE1BQU0saUJBc0NwRjtJQUVNLDZCQUE2QixDQUFDLGlCQUFpQixFQUFFLE1BQU0sR0FBRyxPQUFPLENBS3ZFO0lBRU0sTUFBTSxTQU1aO0lBRUQ7OztPQUdHO0lBQ0ksVUFBVSxDQUFDLElBQUksRUFBRSxRQUFRLEVBQUUsT0FBTyxFQUFFLE1BQU0sUUFTaEQ7SUFFRDs7Ozs7O09BTUc7SUFDVSxXQUFXLENBQUMsZUFBZSxFQUFFLFlBQVksRUFBRSxjQUFjLEVBQUUsRUFBRSxFQUFFLFFBQVEsRUFBRSxFQUFFLCtCQXlCdkY7SUFFRDs7OztPQUlHO0lBQ1UsZ0JBQWdCLENBQUMsZUFBZSxFQUFFLFlBQVksRUFBRSxjQUFjLEVBQUUsRUFBRSxpQkFHOUU7SUFFRDs7Ozs7O1FBTUk7SUFDRyxRQUFRLENBQUMsZUFBZSxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsWUFBWSxHQUFHLFNBQVMsRUFBRSxXQUFXLEVBQUUsRUFBRSxjQU05RjtJQUVEOzs7OztRQUtJO0lBQ0csZUFBZSxDQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUUsUUFBUSxFQUFFLEVBQUUsV0FHakU7SUFFRDs7O09BR0c7SUFDSSxhQUFhLENBQUMsZUFBZSxFQUFFLFlBQVksR0FBRyxHQUFHLENBQUMsTUFBTSxDQUFDLENBRS9EO0lBVUQsV0FBVyxJQUFJLFdBQVcsRUFBRSxDQUUzQjtJQUVEOztPQUVHO0lBQ0gsb0JBQW9CLElBQUksRUFBRSxFQUFFLENBRTNCO0lBRUQ7OztPQUdHO0lBQ0gsZ0JBQWdCLElBQUksRUFBRSxFQUFFLENBTXZCO0lBRUQsaUJBQWlCLElBQUksRUFBRSxDQUV0QjtDQWFGIn0=
98
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0aW9uX25vdGVfY2FjaGUuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb250cmFjdF9mdW5jdGlvbl9zaW11bGF0b3IvZXhlY3V0aW9uX25vdGVfY2FjaGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRXBELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBR2hFLE9BQU8sS0FBSyxFQUFFLFFBQVEsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTVELFVBQVUsV0FBVztJQUNuQixJQUFJLEVBQUUsUUFBUSxDQUFDO0lBQ2YsT0FBTyxFQUFFLE1BQU0sQ0FBQztJQUNoQixzQkFBc0IsRUFBRSxFQUFFLENBQUM7Q0FDNUI7QUFFRDs7R0FFRztBQUNILHFCQUFhLGtCQUFrQjs7SUE4QmpCLE9BQU8sQ0FBQyxRQUFRLENBQUMsaUJBQWlCO0lBN0I5Qzs7O09BR0c7SUFDSCxPQUFPLENBQUMsS0FBSyxDQUFxQjtJQUNsQzs7T0FFRztJQUNILE9BQU8sQ0FBQyxPQUFPLENBQXlDO0lBRXhEOzs7O09BSUc7SUFDSCxPQUFPLENBQUMsWUFBWSxDQUF1QztJQUUzRDs7T0FFRztJQUNILE9BQU8sQ0FBQyxpQkFBaUIsQ0FBMEI7SUFFbkQ7O09BRUc7SUFDSCxPQUFPLENBQUMsOEJBQThCLENBQUs7SUFFM0MsT0FBTyxDQUFDLGlCQUFpQixDQUFTO0lBRWxDLFlBQTZCLGlCQUFpQixFQUFFLEVBQUUsRUFBSTtJQUV0RDs7O09BR0c7SUFDVSxpQ0FBaUMsQ0FBQyw4QkFBOEIsRUFBRSxNQUFNLGlCQW1DcEY7SUFFTSw2QkFBNkIsQ0FBQyxpQkFBaUIsRUFBRSxNQUFNLEdBQUcsT0FBTyxDQUt2RTtJQUVEOzs7T0FHRztJQUNJLFVBQVUsQ0FBQyxJQUFJLEVBQUUsUUFBUSxFQUFFLE9BQU8sRUFBRSxNQUFNLFFBU2hEO0lBRUQ7Ozs7OztPQU1HO0lBQ1UsV0FBVyxDQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLEVBQUUsRUFBRSxRQUFRLEVBQUUsRUFBRSwrQkF5QnZGO0lBRUQ7Ozs7T0FJRztJQUNVLGdCQUFnQixDQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLEVBQUUsaUJBRzlFO0lBRUQ7Ozs7OztRQU1JO0lBQ0csUUFBUSxDQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLFlBQVksR0FBRyxTQUFTLEVBQUUsV0FBVyxFQUFFLEVBQUUsY0FNOUY7SUFFRDs7Ozs7UUFLSTtJQUNHLGVBQWUsQ0FBQyxlQUFlLEVBQUUsWUFBWSxFQUFFLFFBQVEsRUFBRSxFQUFFLFdBR2pFO0lBRUQ7OztPQUdHO0lBQ0ksYUFBYSxDQUFDLGVBQWUsRUFBRSxZQUFZLEdBQUcsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUUvRDtJQVVELFdBQVcsSUFBSSxXQUFXLEVBQUUsQ0FFM0I7SUFFRDs7T0FFRztJQUNILG9CQUFvQixJQUFJLEVBQUUsRUFBRSxDQUUzQjtJQUVEOzs7T0FHRztJQUNILGdCQUFnQixJQUFJLEVBQUUsRUFBRSxDQUV2QjtJQUVELGlCQUFpQixJQUFJLEVBQUUsQ0FFdEI7Q0FhRiJ9
@@ -1 +1 @@
1
- {"version":3,"file":"execution_note_cache.d.ts","sourceRoot":"","sources":["../../src/contract_function_simulator/execution_note_cache.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAGhE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAEvD,UAAU,WAAW;IACnB,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,sBAAsB,EAAE,EAAE,CAAC;CAC5B;AAED;;GAEG;AACH,qBAAa,kBAAkB;;IAoCjB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAnC9C;;;OAGG;IACH,OAAO,CAAC,KAAK,CAAqB;IAClC;;OAEG;IACH,OAAO,CAAC,OAAO,CAAyC;IAExD;;;;OAIG;IACH,OAAO,CAAC,YAAY,CAAuC;IAE3D;;OAEG;IACH,OAAO,CAAC,iBAAiB,CAA0B;IAEnD;;OAEG;IACH,OAAO,CAAC,8BAA8B,CAAK;IAE3C,OAAO,CAAC,iBAAiB,CAAS;IAElC;;;OAGG;IACH,OAAO,CAAC,8BAA8B,CAAsB;IAE5D,YAA6B,iBAAiB,EAAE,EAAE,EAAI;IAEtD;;;OAGG;IACU,iCAAiC,CAAC,8BAA8B,EAAE,MAAM,iBAsCpF;IAEM,6BAA6B,CAAC,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAKvE;IAEM,MAAM,SAMZ;IAED;;;OAGG;IACI,UAAU,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,QAShD;IAED;;;;;;OAMG;IACU,WAAW,CAAC,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,+BAyBvF;IAED;;;;OAIG;IACU,gBAAgB,CAAC,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,iBAG9E;IAED;;;;;;QAMI;IACG,QAAQ,CAAC,eAAe,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,GAAG,SAAS,EAAE,WAAW,EAAE,EAAE,cAM9F;IAED;;;;;QAKI;IACG,eAAe,CAAC,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,WAGjE;IAED;;;OAGG;IACI,aAAa,CAAC,eAAe,EAAE,YAAY,GAAG,GAAG,CAAC,MAAM,CAAC,CAE/D;IAUD,WAAW,IAAI,WAAW,EAAE,CAE3B;IAED;;OAEG;IACH,oBAAoB,IAAI,EAAE,EAAE,CAE3B;IAED;;;OAGG;IACH,gBAAgB,IAAI,EAAE,EAAE,CAMvB;IAED,iBAAiB,IAAI,EAAE,CAEtB;CAaF"}
1
+ {"version":3,"file":"execution_note_cache.d.ts","sourceRoot":"","sources":["../../src/contract_function_simulator/execution_note_cache.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AAEpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAGhE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAE5D,UAAU,WAAW;IACnB,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,sBAAsB,EAAE,EAAE,CAAC;CAC5B;AAED;;GAEG;AACH,qBAAa,kBAAkB;;IA8BjB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IA7B9C;;;OAGG;IACH,OAAO,CAAC,KAAK,CAAqB;IAClC;;OAEG;IACH,OAAO,CAAC,OAAO,CAAyC;IAExD;;;;OAIG;IACH,OAAO,CAAC,YAAY,CAAuC;IAE3D;;OAEG;IACH,OAAO,CAAC,iBAAiB,CAA0B;IAEnD;;OAEG;IACH,OAAO,CAAC,8BAA8B,CAAK;IAE3C,OAAO,CAAC,iBAAiB,CAAS;IAElC,YAA6B,iBAAiB,EAAE,EAAE,EAAI;IAEtD;;;OAGG;IACU,iCAAiC,CAAC,8BAA8B,EAAE,MAAM,iBAmCpF;IAEM,6BAA6B,CAAC,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAKvE;IAED;;;OAGG;IACI,UAAU,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,QAShD;IAED;;;;;;OAMG;IACU,WAAW,CAAC,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,+BAyBvF;IAED;;;;OAIG;IACU,gBAAgB,CAAC,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,iBAG9E;IAED;;;;;;QAMI;IACG,QAAQ,CAAC,eAAe,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,GAAG,SAAS,EAAE,WAAW,EAAE,EAAE,cAM9F;IAED;;;;;QAKI;IACG,eAAe,CAAC,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,EAAE,WAGjE;IAED;;;OAGG;IACI,aAAa,CAAC,eAAe,EAAE,YAAY,GAAG,GAAG,CAAC,MAAM,CAAC,CAE/D;IAUD,WAAW,IAAI,WAAW,EAAE,CAE3B;IAED;;OAEG;IACH,oBAAoB,IAAI,EAAE,EAAE,CAE3B;IAED;;;OAGG;IACH,gBAAgB,IAAI,EAAE,EAAE,CAEvB;IAED,iBAAiB,IAAI,EAAE,CAEtB;CAaF"}
@@ -1,4 +1,5 @@
1
1
  import { Fr } from '@aztec/foundation/curves/bn254';
2
+ import { allToCompletion } from '@aztec/foundation/promise';
2
3
  import { computeNoteHashNonce, computeUniqueNoteHash, siloNoteHash, siloNullifier } from '@aztec/stdlib/hash';
3
4
  /**
4
5
  * Data that's accessible by all the function calls in an execution.
@@ -23,10 +24,6 @@ import { computeNoteHashNonce, computeUniqueNoteHash, siloNoteHash, siloNullifie
23
24
  * The counter that separates non-revertible side effects (which persist even if the tx reverts) from revertible ones.
24
25
  */ minRevertibleSideEffectCounter;
25
26
  inRevertiblePhase;
26
- /**
27
- * Whether the protocol nullifier was used for nonce generation.
28
- * We don't need to use the protocol nullifier if a non-revertible nullifier is emitted.
29
- */ usedProtocolNullifierForNonces;
30
27
  constructor(protocolNullifier){
31
28
  this.protocolNullifier = protocolNullifier;
32
29
  this.notes = [];
@@ -45,17 +42,14 @@ import { computeNoteHashNonce, computeUniqueNoteHash, siloNoteHash, siloNullifie
45
42
  }
46
43
  this.inRevertiblePhase = true;
47
44
  this.minRevertibleSideEffectCounter = minRevertibleSideEffectCounter;
48
- const nullifiers = this.getEmittedNullifiers();
49
- // If there are no nullifiers emitted by private calls so far, we use the protocol nullifier as the nonce generator.
50
- // Note: There could still be nullifiers emitted after the counter is set, but those nullifiers are revertible, so
51
- // we don't want to use them as the nonce generator.
52
- this.usedProtocolNullifierForNonces = nullifiers.length === 0;
53
- const nonceGenerator = this.usedProtocolNullifierForNonces ? this.protocolNullifier : new Fr(nullifiers[0]);
45
+ // The protocol nullifier is always the tx's first nullifier (injected by the kernel init), so it is the
46
+ // nonce generator for every note hash.
47
+ const nonceGenerator = this.protocolNullifier;
54
48
  // The existing pending notes are all non-revertible.
55
49
  // They cannot be squashed by nullifiers emitted after minRevertibleSideEffectCounter is set.
56
50
  // Their indexes in the tx are known at this point and won't change. So we can assign a nonce to each one of them.
57
51
  // The nonces will be used to create the "unique" note hashes.
58
- const updatedNotes = await Promise.all(this.notes.map(async ({ note, counter }, i)=>{
52
+ const updatedNotes = await allToCompletion(this.notes.map(async ({ note, counter }, i)=>{
59
53
  const noteNonce = await computeNoteHashNonce(nonceGenerator, i);
60
54
  const uniqueNoteHash = await computeUniqueNoteHash(noteNonce, await siloNoteHash(note.contractAddress, note.noteHash));
61
55
  return {
@@ -78,13 +72,6 @@ import { computeNoteHashNonce, computeUniqueNoteHash, siloNoteHash, siloNullifie
78
72
  }
79
73
  return sideEffectCounter >= this.minRevertibleSideEffectCounter;
80
74
  }
81
- finish() {
82
- // If we never entered the revertible phase, and there are no nullifiers emitted, we need to use the protocol
83
- // nullifier as the nonce generator.
84
- if (!this.inRevertiblePhase) {
85
- this.usedProtocolNullifierForNonces = this.getEmittedNullifiers().length === 0;
86
- }
87
- }
88
75
  /**
89
76
  * Add a new note to cache.
90
77
  * @param note - New note created during execution.
@@ -179,22 +166,16 @@ import { computeNoteHashNonce, computeUniqueNoteHash, siloNoteHash, siloNullifie
179
166
  ].map((n)=>new Fr(n));
180
167
  }
181
168
  /**
182
- * @returns All nullifiers emitted by private calls in this transaction. If the protocol nullifier was used as the
183
- * nonce generator, it is injected as the first nullifier.
169
+ * @returns All nullifiers of the transaction: the protocol nullifier (the kernel-injected first nullifier),
170
+ * followed by those emitted by private calls.
184
171
  */ getAllNullifiers() {
185
- if (this.usedProtocolNullifierForNonces === undefined) {
186
- throw new Error('usedProtocolNullifierForNonces is not set yet. Call finish() to complete the transaction.');
187
- }
188
- const allNullifiers = this.getEmittedNullifiers();
189
172
  return [
190
- ...this.usedProtocolNullifierForNonces ? [
191
- this.protocolNullifier
192
- ] : [],
193
- ...allNullifiers
173
+ this.protocolNullifier,
174
+ ...this.getEmittedNullifiers()
194
175
  ];
195
176
  }
196
177
  getNonceGenerator() {
197
- return this.getAllNullifiers()[0];
178
+ return this.protocolNullifier;
198
179
  }
199
180
  #recordNullifier(contractAddress, siloedNullifier) {
200
181
  const nullifiers = this.getNullifiers(contractAddress);
@@ -1,16 +1,12 @@
1
- import { ExtendedDirectionalAppTaggingSecret, type TaggingIndexRange } from '@aztec/stdlib/logs';
2
- /**
3
- * A map that stores the tagging index range for a given extended directional app tagging secret.
4
- * Note: The directional app tagging secret is unique for a (sender, recipient, contract) tuple while the direction
5
- * of sender -> recipient matters.
6
- */
1
+ import { AppTaggingSecret, type TaggingIndexRange } from '@aztec/stdlib/logs';
2
+ /** A map that stores the tagging index range for a given app tagging secret. */
7
3
  export declare class ExecutionTaggingIndexCache {
8
4
  private taggingIndexMap;
9
- getLastUsedIndex(secret: ExtendedDirectionalAppTaggingSecret): number | undefined;
10
- setLastUsedIndex(secret: ExtendedDirectionalAppTaggingSecret, index: number): void;
5
+ getLastUsedIndex(secret: AppTaggingSecret): number | undefined;
6
+ setLastUsedIndex(secret: AppTaggingSecret, index: number): void;
11
7
  /**
12
8
  * Returns the tagging index ranges that were used in this execution (and that need to be stored in the db).
13
9
  */
14
10
  getUsedTaggingIndexRanges(): TaggingIndexRange[];
15
11
  }
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0aW9uX3RhZ2dpbmdfaW5kZXhfY2FjaGUuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb250cmFjdF9mdW5jdGlvbl9zaW11bGF0b3IvZXhlY3V0aW9uX3RhZ2dpbmdfaW5kZXhfY2FjaGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLG1DQUFtQyxFQUFFLEtBQUssaUJBQWlCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUVqRzs7OztHQUlHO0FBQ0gscUJBQWEsMEJBQTBCO0lBQ3JDLE9BQU8sQ0FBQyxlQUFlLENBQXlFO0lBRXpGLGdCQUFnQixDQUFDLE1BQU0sRUFBRSxtQ0FBbUMsR0FBRyxNQUFNLEdBQUcsU0FBUyxDQUV2RjtJQUVNLGdCQUFnQixDQUFDLE1BQU0sRUFBRSxtQ0FBbUMsRUFBRSxLQUFLLEVBQUUsTUFBTSxRQVVqRjtJQUVEOztPQUVHO0lBQ0kseUJBQXlCLElBQUksaUJBQWlCLEVBQUUsQ0FNdEQ7Q0FDRiJ9
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhlY3V0aW9uX3RhZ2dpbmdfaW5kZXhfY2FjaGUuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb250cmFjdF9mdW5jdGlvbl9zaW11bGF0b3IvZXhlY3V0aW9uX3RhZ2dpbmdfaW5kZXhfY2FjaGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLEtBQUssaUJBQWlCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUU5RSxnRkFBZ0Y7QUFDaEYscUJBQWEsMEJBQTBCO0lBQ3JDLE9BQU8sQ0FBQyxlQUFlLENBQXlFO0lBRXpGLGdCQUFnQixDQUFDLE1BQU0sRUFBRSxnQkFBZ0IsR0FBRyxNQUFNLEdBQUcsU0FBUyxDQUVwRTtJQUVNLGdCQUFnQixDQUFDLE1BQU0sRUFBRSxnQkFBZ0IsRUFBRSxLQUFLLEVBQUUsTUFBTSxRQVU5RDtJQUVEOztPQUVHO0lBQ0kseUJBQXlCLElBQUksaUJBQWlCLEVBQUUsQ0FNdEQ7Q0FDRiJ9