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