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