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