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