@aztec/pxe 0.0.1-commit.a89ec08 → 0.0.1-commit.aa0c64f
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 +39 -110
- package/dest/bin/index.d.ts +2 -0
- package/dest/bin/index.d.ts.map +1 -0
- package/dest/bin/index.js +1 -0
- package/dest/bin/oracle_version_helpers.d.ts +34 -0
- package/dest/bin/oracle_version_helpers.d.ts.map +1 -0
- package/dest/bin/oracle_version_helpers.js +46 -0
- package/dest/block_synchronizer/block_stream_source.d.ts +10 -0
- package/dest/block_synchronizer/block_stream_source.d.ts.map +1 -0
- package/dest/block_synchronizer/block_stream_source.js +37 -0
- package/dest/block_synchronizer/block_synchronizer.d.ts +23 -15
- package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -1
- package/dest/block_synchronizer/block_synchronizer.js +78 -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_sync → contract}/contract_sync_service.js +42 -42
- 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/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 +22 -18
- package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
- package/dest/contract_function_simulator/contract_function_simulator.js +80 -41
- 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 +3 -2
- 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 +4 -3
- 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 +18 -9
- 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 +10 -8
- 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 +1 -60
- 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 -2
- 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 +5 -4
- 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 -114
- package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/interfaces.js +2 -2
- package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts +39 -0
- package/dest/contract_function_simulator/oracle/legacy_oracle_registry.d.ts.map +1 -0
- package/dest/contract_function_simulator/oracle/legacy_oracle_registry.js +107 -0
- package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts +3 -14
- package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/message_load_oracle_inputs.js +1 -24
- package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts +2 -2
- package/dest/contract_function_simulator/oracle/note_packing_utils.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/note_packing_utils.js +2 -2
- package/dest/contract_function_simulator/oracle/oracle_registry.d.ts +139 -0
- package/dest/contract_function_simulator/oracle/oracle_registry.d.ts.map +1 -0
- package/dest/contract_function_simulator/oracle/oracle_registry.js +1016 -0
- package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts +274 -0
- package/dest/contract_function_simulator/oracle/oracle_type_mappings.d.ts.map +1 -0
- package/dest/contract_function_simulator/oracle/oracle_type_mappings.js +1243 -0
- package/dest/contract_function_simulator/oracle/private_execution.d.ts +1 -1
- package/dest/contract_function_simulator/oracle/private_execution.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/private_execution.js +2 -3
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +47 -36
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/private_execution_oracle.js +181 -63
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +126 -64
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +430 -195
- 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 +6 -0
- package/dest/contract_function_simulator/transient_array_service.d.ts +31 -0
- package/dest/contract_function_simulator/transient_array_service.d.ts.map +1 -0
- package/dest/contract_function_simulator/transient_array_service.js +62 -0
- package/dest/debug/pxe_debug_utils.d.ts +2 -7
- package/dest/debug/pxe_debug_utils.d.ts.map +1 -1
- package/dest/debug/pxe_debug_utils.js +0 -6
- package/dest/entrypoints/client/bundle/index.d.ts +2 -1
- package/dest/entrypoints/client/bundle/index.d.ts.map +1 -1
- package/dest/entrypoints/client/bundle/index.js +1 -0
- package/dest/entrypoints/client/bundle/utils.d.ts +1 -1
- package/dest/entrypoints/client/bundle/utils.d.ts.map +1 -1
- package/dest/entrypoints/client/bundle/utils.js +25 -6
- package/dest/entrypoints/client/lazy/index.d.ts +2 -1
- package/dest/entrypoints/client/lazy/index.d.ts.map +1 -1
- package/dest/entrypoints/client/lazy/index.js +1 -0
- package/dest/entrypoints/client/lazy/utils.d.ts +1 -1
- package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
- package/dest/entrypoints/client/lazy/utils.js +25 -6
- 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 +14 -2
- package/dest/entrypoints/pxe_creation_options.d.ts.map +1 -1
- package/dest/entrypoints/server/index.d.ts +6 -2
- package/dest/entrypoints/server/index.d.ts.map +1 -1
- package/dest/entrypoints/server/index.js +4 -1
- 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 +3 -2
- package/dest/entrypoints/server/utils.d.ts.map +1 -1
- package/dest/entrypoints/server/utils.js +26 -6
- 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 +13 -5
- package/dest/events/event_service.d.ts.map +1 -1
- package/dest/events/event_service.js +30 -9
- 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 +12 -9
- package/dest/logs/log_service.d.ts.map +1 -1
- package/dest/logs/log_service.js +186 -62
- 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 +60 -0
- package/dest/notes/note_service.d.ts +26 -4
- package/dest/notes/note_service.d.ts.map +1 -1
- package/dest/notes/note_service.js +81 -66
- package/dest/oracle_version.d.ts +3 -3
- package/dest/oracle_version.js +6 -6
- 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 +200 -83
- 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 +165 -52
- package/dest/pxe.d.ts.map +1 -1
- package/dest/pxe.js +337 -209
- 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 +8 -6
- package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts +42 -0
- package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.d.ts.map +1 -0
- package/dest/storage/backwards_compatibility_tests/kv_store_snapshot.js +93 -0
- package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts +15 -0
- package/dest/storage/backwards_compatibility_tests/schema_tests.d.ts.map +1 -0
- package/dest/storage/backwards_compatibility_tests/schema_tests.js +671 -0
- package/dest/storage/backwards_compatibility_tests/store_spy.d.ts +19 -0
- package/dest/storage/backwards_compatibility_tests/store_spy.d.ts.map +1 -0
- package/dest/storage/backwards_compatibility_tests/store_spy.js +63 -0
- package/dest/storage/capsule_store/capsule_service.d.ts +1 -1
- package/dest/storage/capsule_store/capsule_service.d.ts.map +1 -1
- package/dest/storage/capsule_store/capsule_service.js +6 -9
- package/dest/storage/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 +67 -97
- 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 +197 -168
- 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 +23 -7
- package/dest/storage/tagging_store/sender_tagging_store.d.ts.map +1 -1
- package/dest/storage/tagging_store/sender_tagging_store.js +51 -14
- 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 +3 -2
- package/dest/tagging/constants.d.ts.map +1 -1
- package/dest/tagging/constants.js +28 -10
- 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 +36 -37
- package/dest/tagging/index.d.ts +6 -5
- package/dest/tagging/index.d.ts.map +1 -1
- package/dest/tagging/index.js +5 -4
- 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 +238 -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 +4 -5
- package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts.map +1 -1
- package/dest/tagging/sender_sync/sync_sender_tagging_indexes.js +26 -14
- package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts +11 -6
- 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 +21 -0
- package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts +4 -4
- 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 +8 -4
- 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 +44 -133
- package/src/bin/index.ts +1 -0
- package/src/bin/oracle_version_helpers.ts +54 -0
- package/src/block_synchronizer/block_stream_source.ts +42 -0
- package/src/block_synchronizer/block_synchronizer.ts +96 -39
- 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_sync → contract}/contract_sync_service.ts +61 -61
- 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/aztec_node_read_cache.ts +89 -0
- package/src/contract_function_simulator/contract_function_simulator.ts +130 -53
- 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 +4 -3
- 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 +26 -19
- package/src/contract_function_simulator/noir-structs/log_retrieval_response.ts +13 -60
- package/src/contract_function_simulator/noir-structs/note_data.ts +27 -0
- package/src/contract_function_simulator/noir-structs/note_validation_request.ts +5 -4
- 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 -204
- package/src/contract_function_simulator/oracle/legacy_oracle_registry.ts +147 -0
- package/src/contract_function_simulator/oracle/message_load_oracle_inputs.ts +6 -21
- package/src/contract_function_simulator/oracle/note_packing_utils.ts +3 -3
- package/src/contract_function_simulator/oracle/oracle_registry.ts +710 -0
- package/src/contract_function_simulator/oracle/oracle_type_mappings.ts +1052 -0
- package/src/contract_function_simulator/oracle/private_execution.ts +2 -3
- package/src/contract_function_simulator/oracle/private_execution_oracle.ts +232 -83
- package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +676 -367
- package/src/contract_function_simulator/pick_notes.ts +8 -0
- package/src/contract_function_simulator/transient_array_service.ts +91 -0
- package/src/debug/pxe_debug_utils.ts +1 -9
- package/src/entrypoints/client/bundle/index.ts +1 -0
- package/src/entrypoints/client/bundle/utils.ts +30 -5
- package/src/entrypoints/client/lazy/index.ts +1 -0
- package/src/entrypoints/client/lazy/utils.ts +30 -5
- package/src/entrypoints/client/store.ts +54 -0
- package/src/entrypoints/pxe_creation_options.ts +14 -1
- package/src/entrypoints/server/index.ts +6 -1
- package/src/entrypoints/server/store.ts +47 -0
- package/src/entrypoints/server/utils.ts +43 -11
- package/src/error_enriching.ts +27 -11
- package/src/events/event_service.ts +54 -19
- 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 +220 -112
- package/src/messages/tx_resolver_service.ts +69 -0
- package/src/notes/note_service.ts +116 -92
- package/src/oracle_version.ts +6 -6
- 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 +333 -114
- package/src/private_kernel/private_kernel_oracle.ts +58 -29
- package/src/pxe.ts +529 -237
- package/src/storage/allowed_scopes.ts +14 -0
- package/src/storage/anchor_block_store/anchor_block_store.ts +8 -6
- package/src/storage/backwards_compatibility_tests/__snapshots__/AddressStore.json +22 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/AnchorBlockStore.json +3 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/CapsuleStore.json +16 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/ContractStore.json +28 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/FactStore.json +40 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/KeyStore.json +52 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/L2TipsKVStore.json +40 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/NoteStore.json +56 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/PrivateEventStore.json +44 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/RecipientTaggingStore.json +26 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/SenderTaggingStore.json +30 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/TaggingSecretSourcesStore.json +30 -0
- package/src/storage/backwards_compatibility_tests/__snapshots__/opened_stores.json +117 -0
- package/src/storage/backwards_compatibility_tests/kv_store_snapshot.ts +122 -0
- package/src/storage/backwards_compatibility_tests/schema_tests.ts +803 -0
- package/src/storage/backwards_compatibility_tests/store_spy.ts +73 -0
- package/src/storage/capsule_store/capsule_service.ts +8 -13
- package/src/storage/contract_store/contract_store.ts +90 -120
- 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 +226 -187
- 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 +68 -21
- package/src/storage/tagging_store/tagging_secret_sources_store.ts +138 -0
- package/src/tagging/constants.ts +30 -10
- package/src/tagging/get_all_logs_by_tags.ts +78 -50
- 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 +358 -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 +41 -19
- package/src/tagging/sender_sync/utils/get_status_change_of_pending.ts +23 -8
- package/src/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.ts +10 -7
- package/src/tagging/testing/tag_query_test_utils.ts +11 -0
- 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 -47
- package/dest/contract_function_simulator/oracle/oracle.d.ts +0 -91
- package/dest/contract_function_simulator/oracle/oracle.d.ts.map +0 -1
- package/dest/contract_function_simulator/oracle/oracle.js +0 -553
- 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 -83
- package/dest/contract_sync/contract_sync_service.d.ts +0 -44
- package/dest/contract_sync/contract_sync_service.d.ts.map +0 -1
- package/dest/contract_sync/helpers.d.ts +0 -28
- package/dest/contract_sync/helpers.d.ts.map +0 -1
- package/dest/contract_sync/helpers.js +0 -60
- package/dest/messages/message_context_service.d.ts +0 -17
- package/dest/messages/message_context_service.d.ts.map +0 -1
- package/dest/messages/message_context_service.js +0 -36
- package/dest/storage/tagging_store/sender_address_book_store.d.ts +0 -14
- package/dest/storage/tagging_store/sender_address_book_store.d.ts.map +0 -1
- package/dest/storage/tagging_store/sender_address_book_store.js +0 -36
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts +0 -14
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts.map +0 -1
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +0 -85
- 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/src/contract_function_simulator/oracle/legacy_oracle_mappings.ts +0 -104
- package/src/contract_function_simulator/oracle/oracle.ts +0 -861
- package/src/contract_function_simulator/proxied_contract_data_source.ts +0 -90
- package/src/contract_sync/helpers.ts +0 -98
- package/src/messages/message_context_service.ts +0 -44
- package/src/storage/tagging_store/sender_address_book_store.ts +0 -48
- package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +0 -128
- package/src/tagging/recipient_sync/utils/load_logs_for_range.ts +0 -44
|
@@ -1,861 +0,0 @@
|
|
|
1
|
-
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
2
|
-
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
|
-
import { Point } from '@aztec/foundation/curves/grumpkin';
|
|
4
|
-
import {
|
|
5
|
-
type ACIRCallback,
|
|
6
|
-
type ACVMField,
|
|
7
|
-
arrayOfArraysToBoundedVecOfArrays,
|
|
8
|
-
bufferToBoundedVec,
|
|
9
|
-
fromUintArray,
|
|
10
|
-
fromUintBoundedVec,
|
|
11
|
-
toACVMField,
|
|
12
|
-
} from '@aztec/simulator/client';
|
|
13
|
-
import { FunctionSelector, NoteSelector } from '@aztec/stdlib/abi';
|
|
14
|
-
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
15
|
-
import { BlockHash } from '@aztec/stdlib/block';
|
|
16
|
-
import { ContractClassLog, ContractClassLogFields } from '@aztec/stdlib/logs';
|
|
17
|
-
|
|
18
|
-
import { ORACLE_VERSION_MAJOR, ORACLE_VERSION_MINOR } from '../../oracle_version.js';
|
|
19
|
-
import type { IMiscOracle, IPrivateExecutionOracle, IUtilityExecutionOracle } from './interfaces.js';
|
|
20
|
-
import { buildLegacyOracleCallbacks } from './legacy_oracle_mappings.js';
|
|
21
|
-
import { packAsHintedNote } from './note_packing_utils.js';
|
|
22
|
-
|
|
23
|
-
export class UnavailableOracleError extends Error {
|
|
24
|
-
constructor(oracleName: string) {
|
|
25
|
-
super(`${oracleName} oracles not available with the current handler`);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* A data source that has all the apis required by Aztec.nr.
|
|
31
|
-
*
|
|
32
|
-
* ## Oracle naming conventions
|
|
33
|
-
*
|
|
34
|
-
* We try to keep oracle naming consistent, please see below the conventions we adhere to.
|
|
35
|
-
*
|
|
36
|
-
* Each oracle method name has the form `aztec_{scope}_{verb}{Object}`, where:
|
|
37
|
-
*
|
|
38
|
-
* - **Scope prefix** indicates the execution context required:
|
|
39
|
-
* - `aztec_prv_` — available only during private function execution.
|
|
40
|
-
* - `aztec_utl_` — available during both utility and private execution.
|
|
41
|
-
*
|
|
42
|
-
* - **Verb** signals the operation's semantics (verb-first, then object):
|
|
43
|
-
* - `get` — read / lookup / get data from oracle into contract.
|
|
44
|
-
* - `does`/`is`/`has` — predicate (returns boolean).
|
|
45
|
-
* - `emit`/`notify` — propagate data from contract to oracle.
|
|
46
|
-
* - `set` — contract driven oracle state mutation (capsules, execution cache, tagging, etc).
|
|
47
|
-
* - `call` — trigger nested execution (control flow).
|
|
48
|
-
* - `assert` — validate a condition, throw on failure.
|
|
49
|
-
* - Standalone verbs (`delete`, `copy`, `decrypt`, `log`, etc) are used when no generic verb fits.
|
|
50
|
-
*/
|
|
51
|
-
export class Oracle {
|
|
52
|
-
constructor(private handler: IMiscOracle | IUtilityExecutionOracle | IPrivateExecutionOracle) {}
|
|
53
|
-
|
|
54
|
-
private handlerAsMisc(): IMiscOracle {
|
|
55
|
-
if (!('isMisc' in this.handler)) {
|
|
56
|
-
throw new UnavailableOracleError('Misc');
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return this.handler;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
private handlerAsUtility(): IUtilityExecutionOracle {
|
|
63
|
-
if (!('isUtility' in this.handler)) {
|
|
64
|
-
throw new UnavailableOracleError('Utility');
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
return this.handler;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
private handlerAsPrivate(): IPrivateExecutionOracle {
|
|
71
|
-
if (!('isPrivate' in this.handler)) {
|
|
72
|
-
throw new UnavailableOracleError('Private');
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
return this.handler;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
toACIRCallback(): ACIRCallback {
|
|
79
|
-
const excludedProps = [
|
|
80
|
-
'handler',
|
|
81
|
-
'constructor',
|
|
82
|
-
'toACIRCallback',
|
|
83
|
-
'handlerAsMisc',
|
|
84
|
-
'handlerAsUtility',
|
|
85
|
-
'handlerAsPrivate',
|
|
86
|
-
] as const;
|
|
87
|
-
|
|
88
|
-
// Get all the oracle function names
|
|
89
|
-
const oracleNames = Object.getOwnPropertyNames(Oracle.prototype).filter(
|
|
90
|
-
name => !excludedProps.includes(name as (typeof excludedProps)[number]),
|
|
91
|
-
);
|
|
92
|
-
|
|
93
|
-
// Validate oracle names - these must be prefixed with either "aztec_prv_" or "aztec_utl_" to indicate their scope
|
|
94
|
-
// and must correspond to a function on the Oracle class.
|
|
95
|
-
oracleNames.forEach(name => {
|
|
96
|
-
if (!name.startsWith('aztec_prv_') && !name.startsWith('aztec_utl_')) {
|
|
97
|
-
throw new Error(
|
|
98
|
-
`Oracle function "${name}" must be prefixed with either "aztec_prv_" or "aztec_utl_" to indicate its scope`,
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
const method = this[name as keyof Omit<Oracle, (typeof excludedProps)[number]>];
|
|
103
|
-
if (typeof method !== 'function') {
|
|
104
|
-
throw new Error(`Oracle property "${name}" must be a function`);
|
|
105
|
-
}
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
// Build callback object and return it
|
|
109
|
-
const callback = oracleNames.reduce((acc, name) => {
|
|
110
|
-
const method = this[name as keyof Omit<Oracle, (typeof excludedProps)[number]>];
|
|
111
|
-
acc[name] = method.bind(this);
|
|
112
|
-
return acc;
|
|
113
|
-
}, {} as ACIRCallback);
|
|
114
|
-
|
|
115
|
-
const allCallbacks = { ...callback, ...buildLegacyOracleCallbacks(this) };
|
|
116
|
-
|
|
117
|
-
// Wrap in a Proxy to intercept access to missing oracle names and provide enhanced error messages when the
|
|
118
|
-
// contract's minor version is higher than the PXE's (i.e. the contract expects oracles that were added in a newer
|
|
119
|
-
// minor version).
|
|
120
|
-
const handler = this.handler;
|
|
121
|
-
return new Proxy(allCallbacks, {
|
|
122
|
-
get(target, prop: string) {
|
|
123
|
-
if (prop in target) {
|
|
124
|
-
return target[prop];
|
|
125
|
-
}
|
|
126
|
-
// Return a function that throws with an enhanced error message if applicable
|
|
127
|
-
return () => {
|
|
128
|
-
type NonOracleFunctionGetContractOracleVersion = {
|
|
129
|
-
nonOracleFunctionGetContractOracleVersion(): { major: number; minor: number } | undefined;
|
|
130
|
-
};
|
|
131
|
-
|
|
132
|
-
let contractVersion = undefined;
|
|
133
|
-
if ('nonOracleFunctionGetContractOracleVersion' in handler) {
|
|
134
|
-
contractVersion = (
|
|
135
|
-
handler as unknown as NonOracleFunctionGetContractOracleVersion
|
|
136
|
-
).nonOracleFunctionGetContractOracleVersion();
|
|
137
|
-
}
|
|
138
|
-
if (!contractVersion) {
|
|
139
|
-
throw new Error(
|
|
140
|
-
`Oracle '${prop}' not found and the contract's oracle version is unknown (the version check oracle ` +
|
|
141
|
-
`was not called before '${prop}'). This usually means the contract was not compiled with the ` +
|
|
142
|
-
`#[aztec] macro, which injects the version check as the first oracle call in every private/utility ` +
|
|
143
|
-
`external function. If you're using a custom entry point, ensure assert_compatible_oracle_version() ` +
|
|
144
|
-
`is called before any other oracle calls. See https://docs.aztec.network/errors/8`,
|
|
145
|
-
);
|
|
146
|
-
} else if (contractVersion.minor > ORACLE_VERSION_MINOR) {
|
|
147
|
-
throw new Error(
|
|
148
|
-
`Oracle '${prop}' not found.` +
|
|
149
|
-
` This usually means the contract requires a newer private execution environment than you have.` +
|
|
150
|
-
` Upgrade your private execution environment to a compatible version. The contract was compiled with` +
|
|
151
|
-
` Aztec.nr oracle version ${contractVersion.major}.${contractVersion.minor}, but this private` +
|
|
152
|
-
` execution environment only supports up to ${ORACLE_VERSION_MAJOR}.${ORACLE_VERSION_MINOR}.` +
|
|
153
|
-
` See https://docs.aztec.network/errors/8`,
|
|
154
|
-
);
|
|
155
|
-
} else {
|
|
156
|
-
throw new Error(
|
|
157
|
-
`Oracle '${prop}' not found.` +
|
|
158
|
-
` The contract's oracle version (${contractVersion.major}.${contractVersion.minor}) is compatible` +
|
|
159
|
-
` with this private execution environment (${ORACLE_VERSION_MAJOR}.${ORACLE_VERSION_MINOR}), so all` +
|
|
160
|
-
` standard oracles should be available. This could mean the contract was compiled against a modified` +
|
|
161
|
-
` version of Aztec.nr, or that it references an oracle that does not exist.` +
|
|
162
|
-
` See https://docs.aztec.network/errors/8`,
|
|
163
|
-
);
|
|
164
|
-
}
|
|
165
|
-
};
|
|
166
|
-
},
|
|
167
|
-
});
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
// eslint-disable-next-line camelcase
|
|
171
|
-
aztec_utl_assertCompatibleOracleVersionV2([major]: ACVMField[], [minor]: ACVMField[]) {
|
|
172
|
-
this.handlerAsMisc().assertCompatibleOracleVersion(
|
|
173
|
-
Fr.fromString(major).toNumber(),
|
|
174
|
-
Fr.fromString(minor).toNumber(),
|
|
175
|
-
);
|
|
176
|
-
return Promise.resolve([]);
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
// eslint-disable-next-line camelcase
|
|
180
|
-
aztec_utl_getRandomField(): Promise<ACVMField[]> {
|
|
181
|
-
const val = this.handlerAsMisc().getRandomField();
|
|
182
|
-
return Promise.resolve([toACVMField(val)]);
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
// eslint-disable-next-line camelcase
|
|
186
|
-
aztec_prv_setHashPreimage(values: ACVMField[], [hash]: ACVMField[]): Promise<ACVMField[]> {
|
|
187
|
-
this.handlerAsPrivate().setHashPreimage(values.map(Fr.fromString), Fr.fromString(hash));
|
|
188
|
-
return Promise.resolve([]);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
// eslint-disable-next-line camelcase
|
|
192
|
-
async aztec_prv_getHashPreimage([returnsHash]: ACVMField[]): Promise<ACVMField[][]> {
|
|
193
|
-
const values = await this.handlerAsPrivate().getHashPreimage(Fr.fromString(returnsHash));
|
|
194
|
-
return [values.map(toACVMField)];
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
// eslint-disable-next-line camelcase
|
|
198
|
-
aztec_utl_getUtilityContext(): Promise<(ACVMField | ACVMField[])[]> {
|
|
199
|
-
const context = this.handlerAsUtility().getUtilityContext();
|
|
200
|
-
return Promise.resolve(context.toNoirRepresentation());
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
// eslint-disable-next-line camelcase
|
|
204
|
-
async aztec_utl_getKeyValidationRequest([pkMHash]: ACVMField[]): Promise<ACVMField[]> {
|
|
205
|
-
const keyValidationRequest = await this.handlerAsUtility().getKeyValidationRequest(Fr.fromString(pkMHash));
|
|
206
|
-
|
|
207
|
-
return keyValidationRequest.toFields().map(toACVMField);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
// eslint-disable-next-line camelcase
|
|
211
|
-
async aztec_utl_getContractInstance([address]: ACVMField[]): Promise<ACVMField[]> {
|
|
212
|
-
const instance = await this.handlerAsUtility().getContractInstance(AztecAddress.fromField(Fr.fromString(address)));
|
|
213
|
-
|
|
214
|
-
return [
|
|
215
|
-
instance.salt,
|
|
216
|
-
instance.deployer,
|
|
217
|
-
instance.currentContractClassId,
|
|
218
|
-
instance.initializationHash,
|
|
219
|
-
...instance.publicKeys.toFields(),
|
|
220
|
-
].map(toACVMField);
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// eslint-disable-next-line camelcase
|
|
224
|
-
async aztec_utl_getNoteHashMembershipWitness(
|
|
225
|
-
[anchorBlockHash]: ACVMField[],
|
|
226
|
-
[noteHash]: ACVMField[],
|
|
227
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
228
|
-
const parsedAnchorBlockHash = BlockHash.fromString(anchorBlockHash);
|
|
229
|
-
const parsedNoteHash = Fr.fromString(noteHash);
|
|
230
|
-
|
|
231
|
-
const witness = await this.handlerAsUtility().getNoteHashMembershipWitness(parsedAnchorBlockHash, parsedNoteHash);
|
|
232
|
-
if (!witness) {
|
|
233
|
-
throw new Error(
|
|
234
|
-
`Note hash ${noteHash} not found in the note hash tree at anchor block hash ${parsedAnchorBlockHash.toString()}.`,
|
|
235
|
-
);
|
|
236
|
-
}
|
|
237
|
-
return witness.toNoirRepresentation();
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
// eslint-disable-next-line camelcase
|
|
241
|
-
async aztec_utl_getBlockHashMembershipWitness(
|
|
242
|
-
[anchorBlockHash]: ACVMField[],
|
|
243
|
-
[blockHash]: ACVMField[],
|
|
244
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
245
|
-
const parsedAnchorBlockHash = BlockHash.fromString(anchorBlockHash);
|
|
246
|
-
const parsedBlockHash = BlockHash.fromString(blockHash);
|
|
247
|
-
|
|
248
|
-
const witness = await this.handlerAsUtility().getBlockHashMembershipWitness(parsedAnchorBlockHash, parsedBlockHash);
|
|
249
|
-
if (!witness) {
|
|
250
|
-
throw new Error(
|
|
251
|
-
`Block hash ${parsedBlockHash.toString()} not found in the archive tree at anchor block ${parsedAnchorBlockHash.toString()}.`,
|
|
252
|
-
);
|
|
253
|
-
}
|
|
254
|
-
return witness.toNoirRepresentation();
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
// eslint-disable-next-line camelcase
|
|
258
|
-
async aztec_utl_getNullifierMembershipWitness(
|
|
259
|
-
[blockHash]: ACVMField[],
|
|
260
|
-
[nullifier]: ACVMField[], // nullifier, we try to find the witness for (to prove inclusion)
|
|
261
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
262
|
-
const parsedBlockHash = BlockHash.fromString(blockHash);
|
|
263
|
-
const parsedNullifier = Fr.fromString(nullifier);
|
|
264
|
-
|
|
265
|
-
const witness = await this.handlerAsUtility().getNullifierMembershipWitness(parsedBlockHash, parsedNullifier);
|
|
266
|
-
if (!witness) {
|
|
267
|
-
throw new Error(
|
|
268
|
-
`Nullifier witness not found for nullifier ${parsedNullifier} at block hash ${parsedBlockHash.toString()}.`,
|
|
269
|
-
);
|
|
270
|
-
}
|
|
271
|
-
return witness.toNoirRepresentation();
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
// eslint-disable-next-line camelcase
|
|
275
|
-
async aztec_utl_getLowNullifierMembershipWitness(
|
|
276
|
-
[blockHash]: ACVMField[],
|
|
277
|
-
[nullifier]: ACVMField[], // nullifier, we try to find the low nullifier witness for (to prove non-inclusion)
|
|
278
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
279
|
-
const parsedBlockHash = BlockHash.fromString(blockHash);
|
|
280
|
-
const parsedNullifier = Fr.fromString(nullifier);
|
|
281
|
-
|
|
282
|
-
const witness = await this.handlerAsUtility().getLowNullifierMembershipWitness(parsedBlockHash, parsedNullifier);
|
|
283
|
-
if (!witness) {
|
|
284
|
-
throw new Error(
|
|
285
|
-
`Low nullifier witness not found for nullifier ${parsedNullifier} at block hash ${parsedBlockHash.toString()}.`,
|
|
286
|
-
);
|
|
287
|
-
}
|
|
288
|
-
return witness.toNoirRepresentation();
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
// eslint-disable-next-line camelcase
|
|
292
|
-
async aztec_utl_getPublicDataWitness(
|
|
293
|
-
[blockHash]: ACVMField[],
|
|
294
|
-
[leafSlot]: ACVMField[],
|
|
295
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
296
|
-
const parsedBlockHash = BlockHash.fromString(blockHash);
|
|
297
|
-
const parsedLeafSlot = Fr.fromString(leafSlot);
|
|
298
|
-
|
|
299
|
-
const witness = await this.handlerAsUtility().getPublicDataWitness(parsedBlockHash, parsedLeafSlot);
|
|
300
|
-
if (!witness) {
|
|
301
|
-
throw new Error(
|
|
302
|
-
`Public data witness not found for slot ${parsedLeafSlot} at block hash ${parsedBlockHash.toString()}.`,
|
|
303
|
-
);
|
|
304
|
-
}
|
|
305
|
-
return witness.toNoirRepresentation();
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
// eslint-disable-next-line camelcase
|
|
309
|
-
async aztec_utl_getBlockHeader([blockNumber]: ACVMField[]): Promise<ACVMField[]> {
|
|
310
|
-
const parsedBlockNumber = Fr.fromString(blockNumber).toNumber();
|
|
311
|
-
|
|
312
|
-
const header = await this.handlerAsUtility().getBlockHeader(BlockNumber(parsedBlockNumber));
|
|
313
|
-
if (!header) {
|
|
314
|
-
throw new Error(`Block header not found for block ${parsedBlockNumber}.`);
|
|
315
|
-
}
|
|
316
|
-
return header.toFields().map(toACVMField);
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
// eslint-disable-next-line camelcase
|
|
320
|
-
async aztec_utl_getAuthWitness([messageHash]: ACVMField[]): Promise<ACVMField[][]> {
|
|
321
|
-
const messageHashField = Fr.fromString(messageHash);
|
|
322
|
-
const witness = await this.handlerAsUtility().getAuthWitness(messageHashField);
|
|
323
|
-
if (!witness) {
|
|
324
|
-
throw new Error(`Unknown auth witness for message hash ${messageHashField}`);
|
|
325
|
-
}
|
|
326
|
-
return [witness.map(toACVMField)];
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
// eslint-disable-next-line camelcase
|
|
330
|
-
async aztec_utl_getPublicKeysAndPartialAddress([address]: ACVMField[]): Promise<(ACVMField | ACVMField[])[]> {
|
|
331
|
-
const parsedAddress = AztecAddress.fromField(Fr.fromString(address));
|
|
332
|
-
const result = await this.handlerAsUtility().getPublicKeysAndPartialAddress(parsedAddress);
|
|
333
|
-
|
|
334
|
-
// We are going to return a Noir Option struct to represent the possibility of null values. Options are a struct
|
|
335
|
-
// with two fields: `some` (a boolean) and `value` (a field array in this case).
|
|
336
|
-
if (result === undefined) {
|
|
337
|
-
// No data was found so we set `some` to 0 and pad `value` with zeros get the correct return size.
|
|
338
|
-
return [toACVMField(0), Array(13).fill(toACVMField(0))];
|
|
339
|
-
} else {
|
|
340
|
-
// Data was found so we set `some` to 1 and return it along with `value`.
|
|
341
|
-
return [toACVMField(1), [...result.publicKeys.toFields(), result.partialAddress].map(toACVMField)];
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
// eslint-disable-next-line camelcase
|
|
346
|
-
async aztec_utl_getNotes(
|
|
347
|
-
[ownerSome]: ACVMField[],
|
|
348
|
-
[ownerValue]: ACVMField[],
|
|
349
|
-
[storageSlot]: ACVMField[],
|
|
350
|
-
[numSelects]: ACVMField[],
|
|
351
|
-
selectByIndexes: ACVMField[],
|
|
352
|
-
selectByOffsets: ACVMField[],
|
|
353
|
-
selectByLengths: ACVMField[],
|
|
354
|
-
selectValues: ACVMField[],
|
|
355
|
-
selectComparators: ACVMField[],
|
|
356
|
-
sortByIndexes: ACVMField[],
|
|
357
|
-
sortByOffsets: ACVMField[],
|
|
358
|
-
sortByLengths: ACVMField[],
|
|
359
|
-
sortOrder: ACVMField[],
|
|
360
|
-
[limit]: ACVMField[],
|
|
361
|
-
[offset]: ACVMField[],
|
|
362
|
-
[status]: ACVMField[],
|
|
363
|
-
[maxNotes]: ACVMField[],
|
|
364
|
-
[packedHintedNoteLength]: ACVMField[],
|
|
365
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
366
|
-
// Parse Option<AztecAddress>: ownerSome is 0 for None, 1 for Some
|
|
367
|
-
const owner = Fr.fromString(ownerSome).toNumber() === 1 ? AztecAddress.fromString(ownerValue) : undefined;
|
|
368
|
-
const noteDatas = await this.handlerAsUtility().getNotes(
|
|
369
|
-
owner,
|
|
370
|
-
Fr.fromString(storageSlot),
|
|
371
|
-
+numSelects,
|
|
372
|
-
selectByIndexes.map(s => +s),
|
|
373
|
-
selectByOffsets.map(s => +s),
|
|
374
|
-
selectByLengths.map(s => +s),
|
|
375
|
-
selectValues.map(Fr.fromString),
|
|
376
|
-
selectComparators.map(s => +s),
|
|
377
|
-
sortByIndexes.map(s => +s),
|
|
378
|
-
sortByOffsets.map(s => +s),
|
|
379
|
-
sortByLengths.map(s => +s),
|
|
380
|
-
sortOrder.map(s => +s),
|
|
381
|
-
+limit,
|
|
382
|
-
+offset,
|
|
383
|
-
+status,
|
|
384
|
-
);
|
|
385
|
-
|
|
386
|
-
const returnDataAsArrayOfPackedHintedNotes = noteDatas.map(noteData =>
|
|
387
|
-
packAsHintedNote({
|
|
388
|
-
contractAddress: noteData.contractAddress,
|
|
389
|
-
owner: noteData.owner,
|
|
390
|
-
randomness: noteData.randomness,
|
|
391
|
-
storageSlot: noteData.storageSlot,
|
|
392
|
-
noteNonce: noteData.noteNonce,
|
|
393
|
-
isPending: noteData.isPending,
|
|
394
|
-
note: noteData.note,
|
|
395
|
-
}),
|
|
396
|
-
);
|
|
397
|
-
|
|
398
|
-
// Now we convert each sub-array to an array of ACVMField
|
|
399
|
-
const returnDataAsArrayOfACVMFieldArrays = returnDataAsArrayOfPackedHintedNotes.map(subArray =>
|
|
400
|
-
subArray.map(toACVMField),
|
|
401
|
-
);
|
|
402
|
-
|
|
403
|
-
// At last we convert the array of arrays to a bounded vec of arrays
|
|
404
|
-
return arrayOfArraysToBoundedVecOfArrays(returnDataAsArrayOfACVMFieldArrays, +maxNotes, +packedHintedNoteLength);
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
// eslint-disable-next-line camelcase
|
|
408
|
-
aztec_prv_notifyCreatedNote(
|
|
409
|
-
[owner]: ACVMField[],
|
|
410
|
-
[storageSlot]: ACVMField[],
|
|
411
|
-
[randomness]: ACVMField[],
|
|
412
|
-
[noteTypeId]: ACVMField[],
|
|
413
|
-
note: ACVMField[],
|
|
414
|
-
[noteHash]: ACVMField[],
|
|
415
|
-
[counter]: ACVMField[],
|
|
416
|
-
): Promise<ACVMField[]> {
|
|
417
|
-
this.handlerAsPrivate().notifyCreatedNote(
|
|
418
|
-
AztecAddress.fromString(owner),
|
|
419
|
-
Fr.fromString(storageSlot),
|
|
420
|
-
Fr.fromString(randomness),
|
|
421
|
-
NoteSelector.fromField(Fr.fromString(noteTypeId)),
|
|
422
|
-
note.map(Fr.fromString),
|
|
423
|
-
Fr.fromString(noteHash),
|
|
424
|
-
+counter,
|
|
425
|
-
);
|
|
426
|
-
return Promise.resolve([]);
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
// eslint-disable-next-line camelcase
|
|
430
|
-
async aztec_prv_notifyNullifiedNote(
|
|
431
|
-
[innerNullifier]: ACVMField[],
|
|
432
|
-
[noteHash]: ACVMField[],
|
|
433
|
-
[counter]: ACVMField[],
|
|
434
|
-
): Promise<ACVMField[]> {
|
|
435
|
-
await this.handlerAsPrivate().notifyNullifiedNote(Fr.fromString(innerNullifier), Fr.fromString(noteHash), +counter);
|
|
436
|
-
return [];
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
// eslint-disable-next-line camelcase
|
|
440
|
-
async aztec_prv_notifyCreatedNullifier([innerNullifier]: ACVMField[]): Promise<ACVMField[]> {
|
|
441
|
-
await this.handlerAsPrivate().notifyCreatedNullifier(Fr.fromString(innerNullifier));
|
|
442
|
-
return [];
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
// eslint-disable-next-line camelcase
|
|
446
|
-
async aztec_prv_isNullifierPending(
|
|
447
|
-
[innerNullifier]: ACVMField[],
|
|
448
|
-
[contractAddress]: ACVMField[],
|
|
449
|
-
): Promise<ACVMField[]> {
|
|
450
|
-
const isPending = await this.handlerAsPrivate().isNullifierPending(
|
|
451
|
-
Fr.fromString(innerNullifier),
|
|
452
|
-
AztecAddress.fromString(contractAddress),
|
|
453
|
-
);
|
|
454
|
-
return [toACVMField(isPending)];
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
// eslint-disable-next-line camelcase
|
|
458
|
-
async aztec_utl_doesNullifierExist([innerNullifier]: ACVMField[]): Promise<ACVMField[]> {
|
|
459
|
-
const exists = await this.handlerAsUtility().doesNullifierExist(Fr.fromString(innerNullifier));
|
|
460
|
-
return [toACVMField(exists)];
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
// eslint-disable-next-line camelcase
|
|
464
|
-
async aztec_utl_getL1ToL2MembershipWitness(
|
|
465
|
-
[contractAddress]: ACVMField[],
|
|
466
|
-
[messageHash]: ACVMField[],
|
|
467
|
-
[secret]: ACVMField[],
|
|
468
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
469
|
-
const message = await this.handlerAsUtility().getL1ToL2MembershipWitness(
|
|
470
|
-
AztecAddress.fromString(contractAddress),
|
|
471
|
-
Fr.fromString(messageHash),
|
|
472
|
-
Fr.fromString(secret),
|
|
473
|
-
);
|
|
474
|
-
return message.toNoirRepresentation();
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
// eslint-disable-next-line camelcase
|
|
478
|
-
async aztec_utl_getFromPublicStorage(
|
|
479
|
-
[blockHash]: ACVMField[],
|
|
480
|
-
[contractAddress]: ACVMField[],
|
|
481
|
-
[startStorageSlot]: ACVMField[],
|
|
482
|
-
[numberOfElements]: ACVMField[],
|
|
483
|
-
): Promise<ACVMField[][]> {
|
|
484
|
-
const values = await this.handlerAsUtility().getFromPublicStorage(
|
|
485
|
-
BlockHash.fromString(blockHash),
|
|
486
|
-
new AztecAddress(Fr.fromString(contractAddress)),
|
|
487
|
-
Fr.fromString(startStorageSlot),
|
|
488
|
-
+numberOfElements,
|
|
489
|
-
);
|
|
490
|
-
return [values.map(toACVMField)];
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
// eslint-disable-next-line camelcase
|
|
494
|
-
aztec_prv_notifyCreatedContractClassLog(
|
|
495
|
-
[contractAddress]: ACVMField[],
|
|
496
|
-
message: ACVMField[],
|
|
497
|
-
[length]: ACVMField[],
|
|
498
|
-
[counter]: ACVMField[],
|
|
499
|
-
): Promise<ACVMField[]> {
|
|
500
|
-
const logFields = new ContractClassLogFields(message.map(Fr.fromString));
|
|
501
|
-
const log = new ContractClassLog(new AztecAddress(Fr.fromString(contractAddress)), logFields, +length);
|
|
502
|
-
|
|
503
|
-
this.handlerAsPrivate().notifyCreatedContractClassLog(log, +counter);
|
|
504
|
-
return Promise.resolve([]);
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
// eslint-disable-next-line camelcase
|
|
508
|
-
async aztec_utl_log(
|
|
509
|
-
level: ACVMField[],
|
|
510
|
-
message: ACVMField[],
|
|
511
|
-
_ignoredFieldsSize: ACVMField[],
|
|
512
|
-
fields: ACVMField[],
|
|
513
|
-
): Promise<ACVMField[]> {
|
|
514
|
-
const levelFr = Fr.fromString(level[0]);
|
|
515
|
-
const messageStr = message.map(acvmField => String.fromCharCode(Fr.fromString(acvmField).toNumber())).join('');
|
|
516
|
-
const fieldsFr = fields.map(Fr.fromString);
|
|
517
|
-
await this.handlerAsMisc().log(levelFr.toNumber(), messageStr, fieldsFr);
|
|
518
|
-
return [];
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
// This function's name is directly hardcoded in `circuit_recorder.ts`. Don't forget to update it there if you
|
|
522
|
-
// change the name here.
|
|
523
|
-
// eslint-disable-next-line camelcase
|
|
524
|
-
async aztec_prv_callPrivateFunction(
|
|
525
|
-
[contractAddress]: ACVMField[],
|
|
526
|
-
[functionSelector]: ACVMField[],
|
|
527
|
-
[argsHash]: ACVMField[],
|
|
528
|
-
[sideEffectCounter]: ACVMField[],
|
|
529
|
-
[isStaticCall]: ACVMField[],
|
|
530
|
-
): Promise<ACVMField[][]> {
|
|
531
|
-
const { endSideEffectCounter, returnsHash } = await this.handlerAsPrivate().callPrivateFunction(
|
|
532
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
533
|
-
FunctionSelector.fromField(Fr.fromString(functionSelector)),
|
|
534
|
-
Fr.fromString(argsHash),
|
|
535
|
-
Fr.fromString(sideEffectCounter).toNumber(),
|
|
536
|
-
Fr.fromString(isStaticCall).toBool(),
|
|
537
|
-
);
|
|
538
|
-
return [[endSideEffectCounter, returnsHash].map(toACVMField)];
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
// eslint-disable-next-line camelcase
|
|
542
|
-
async aztec_prv_assertValidPublicCalldata([calldataHash]: ACVMField[]): Promise<ACVMField[]> {
|
|
543
|
-
await this.handlerAsPrivate().assertValidPublicCalldata(Fr.fromString(calldataHash));
|
|
544
|
-
return [];
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
// eslint-disable-next-line camelcase
|
|
548
|
-
async aztec_prv_notifyRevertiblePhaseStart([minRevertibleSideEffectCounter]: ACVMField[]): Promise<ACVMField[]> {
|
|
549
|
-
await this.handlerAsPrivate().notifyRevertiblePhaseStart(Fr.fromString(minRevertibleSideEffectCounter).toNumber());
|
|
550
|
-
return Promise.resolve([]);
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
// eslint-disable-next-line camelcase
|
|
554
|
-
async aztec_prv_isExecutionInRevertiblePhase([sideEffectCounter]: ACVMField[]): Promise<ACVMField[]> {
|
|
555
|
-
const isRevertible = await this.handlerAsPrivate().isExecutionInRevertiblePhase(
|
|
556
|
-
Fr.fromString(sideEffectCounter).toNumber(),
|
|
557
|
-
);
|
|
558
|
-
return Promise.resolve([toACVMField(isRevertible)]);
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
// eslint-disable-next-line camelcase
|
|
562
|
-
async aztec_prv_getNextAppTagAsSender([sender]: ACVMField[], [recipient]: ACVMField[]): Promise<ACVMField[]> {
|
|
563
|
-
const tag = await this.handlerAsPrivate().getNextAppTagAsSender(
|
|
564
|
-
AztecAddress.fromString(sender),
|
|
565
|
-
AztecAddress.fromString(recipient),
|
|
566
|
-
);
|
|
567
|
-
return [toACVMField(tag.value)];
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
// eslint-disable-next-line camelcase
|
|
571
|
-
async aztec_utl_getPendingTaggedLogs(
|
|
572
|
-
[pendingTaggedLogArrayBaseSlot]: ACVMField[],
|
|
573
|
-
[scope]: ACVMField[],
|
|
574
|
-
): Promise<ACVMField[]> {
|
|
575
|
-
await this.handlerAsUtility().getPendingTaggedLogs(
|
|
576
|
-
Fr.fromString(pendingTaggedLogArrayBaseSlot),
|
|
577
|
-
AztecAddress.fromString(scope),
|
|
578
|
-
);
|
|
579
|
-
return [];
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
// eslint-disable-next-line camelcase
|
|
583
|
-
async aztec_utl_getPendingTaggedLogs_v2([scope]: ACVMField[]): Promise<ACVMField[]> {
|
|
584
|
-
const slot = await this.handlerAsUtility().getPendingTaggedLogsV2(AztecAddress.fromString(scope));
|
|
585
|
-
return [toACVMField(slot)];
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
// eslint-disable-next-line camelcase
|
|
589
|
-
async aztec_utl_validateAndStoreEnqueuedNotesAndEvents(
|
|
590
|
-
[contractAddress]: ACVMField[],
|
|
591
|
-
[noteValidationRequestsArrayBaseSlot]: ACVMField[],
|
|
592
|
-
[eventValidationRequestsArrayBaseSlot]: ACVMField[],
|
|
593
|
-
[maxNotePackedLen]: ACVMField[],
|
|
594
|
-
[maxEventSerializedLen]: ACVMField[],
|
|
595
|
-
[scope]: ACVMField[],
|
|
596
|
-
): Promise<ACVMField[]> {
|
|
597
|
-
await this.handlerAsUtility().validateAndStoreEnqueuedNotesAndEvents(
|
|
598
|
-
AztecAddress.fromString(contractAddress),
|
|
599
|
-
Fr.fromString(noteValidationRequestsArrayBaseSlot),
|
|
600
|
-
Fr.fromString(eventValidationRequestsArrayBaseSlot),
|
|
601
|
-
Fr.fromString(maxNotePackedLen).toNumber(),
|
|
602
|
-
Fr.fromString(maxEventSerializedLen).toNumber(),
|
|
603
|
-
AztecAddress.fromString(scope),
|
|
604
|
-
);
|
|
605
|
-
|
|
606
|
-
return [];
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
// eslint-disable-next-line camelcase
|
|
610
|
-
async aztec_utl_validateAndStoreEnqueuedNotesAndEvents_v2(
|
|
611
|
-
[noteValidationRequestsArrayBaseSlot]: ACVMField[],
|
|
612
|
-
[eventValidationRequestsArrayBaseSlot]: ACVMField[],
|
|
613
|
-
[maxNotePackedLen]: ACVMField[],
|
|
614
|
-
[maxEventSerializedLen]: ACVMField[],
|
|
615
|
-
[scope]: ACVMField[],
|
|
616
|
-
): Promise<ACVMField[]> {
|
|
617
|
-
await this.handlerAsUtility().validateAndStoreEnqueuedNotesAndEventsV2(
|
|
618
|
-
Fr.fromString(noteValidationRequestsArrayBaseSlot),
|
|
619
|
-
Fr.fromString(eventValidationRequestsArrayBaseSlot),
|
|
620
|
-
Fr.fromString(maxNotePackedLen).toNumber(),
|
|
621
|
-
Fr.fromString(maxEventSerializedLen).toNumber(),
|
|
622
|
-
AztecAddress.fromString(scope),
|
|
623
|
-
);
|
|
624
|
-
return [];
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
// eslint-disable-next-line camelcase
|
|
628
|
-
async aztec_utl_getLogsByTag(
|
|
629
|
-
[contractAddress]: ACVMField[],
|
|
630
|
-
[logRetrievalRequestsArrayBaseSlot]: ACVMField[],
|
|
631
|
-
[logRetrievalResponsesArrayBaseSlot]: ACVMField[],
|
|
632
|
-
[scope]: ACVMField[],
|
|
633
|
-
): Promise<ACVMField[]> {
|
|
634
|
-
await this.handlerAsUtility().getLogsByTag(
|
|
635
|
-
AztecAddress.fromString(contractAddress),
|
|
636
|
-
Fr.fromString(logRetrievalRequestsArrayBaseSlot),
|
|
637
|
-
Fr.fromString(logRetrievalResponsesArrayBaseSlot),
|
|
638
|
-
AztecAddress.fromString(scope),
|
|
639
|
-
);
|
|
640
|
-
return [];
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
// eslint-disable-next-line camelcase
|
|
644
|
-
async aztec_utl_getMessageContextsByTxHash(
|
|
645
|
-
[contractAddress]: ACVMField[],
|
|
646
|
-
[messageContextRequestsArrayBaseSlot]: ACVMField[],
|
|
647
|
-
[messageContextResponsesArrayBaseSlot]: ACVMField[],
|
|
648
|
-
[scope]: ACVMField[],
|
|
649
|
-
): Promise<ACVMField[]> {
|
|
650
|
-
await this.handlerAsUtility().getMessageContextsByTxHash(
|
|
651
|
-
AztecAddress.fromString(contractAddress),
|
|
652
|
-
Fr.fromString(messageContextRequestsArrayBaseSlot),
|
|
653
|
-
Fr.fromString(messageContextResponsesArrayBaseSlot),
|
|
654
|
-
AztecAddress.fromString(scope),
|
|
655
|
-
);
|
|
656
|
-
return [];
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
// eslint-disable-next-line camelcase
|
|
660
|
-
async aztec_utl_getLogsByTag_v2([requestArrayBaseSlot]: ACVMField[]): Promise<ACVMField[]> {
|
|
661
|
-
const responseSlot = await this.handlerAsUtility().getLogsByTagV2(Fr.fromString(requestArrayBaseSlot));
|
|
662
|
-
return [toACVMField(responseSlot)];
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
// eslint-disable-next-line camelcase
|
|
666
|
-
async aztec_utl_getMessageContextsByTxHash_v2([requestArrayBaseSlot]: ACVMField[]): Promise<ACVMField[]> {
|
|
667
|
-
const responseSlot = await this.handlerAsUtility().getMessageContextsByTxHashV2(
|
|
668
|
-
Fr.fromString(requestArrayBaseSlot),
|
|
669
|
-
);
|
|
670
|
-
return [toACVMField(responseSlot)];
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
// eslint-disable-next-line camelcase
|
|
674
|
-
aztec_utl_setCapsule(
|
|
675
|
-
[contractAddress]: ACVMField[],
|
|
676
|
-
[slot]: ACVMField[],
|
|
677
|
-
capsule: ACVMField[],
|
|
678
|
-
[scope]: ACVMField[],
|
|
679
|
-
): Promise<ACVMField[]> {
|
|
680
|
-
this.handlerAsUtility().setCapsule(
|
|
681
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
682
|
-
Fr.fromString(slot),
|
|
683
|
-
capsule.map(Fr.fromString),
|
|
684
|
-
AztecAddress.fromField(Fr.fromString(scope)),
|
|
685
|
-
);
|
|
686
|
-
return Promise.resolve([]);
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
// eslint-disable-next-line camelcase
|
|
690
|
-
async aztec_utl_getCapsule(
|
|
691
|
-
[contractAddress]: ACVMField[],
|
|
692
|
-
[slot]: ACVMField[],
|
|
693
|
-
[tSize]: ACVMField[],
|
|
694
|
-
[scope]: ACVMField[],
|
|
695
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
696
|
-
const values = await this.handlerAsUtility().getCapsule(
|
|
697
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
698
|
-
Fr.fromString(slot),
|
|
699
|
-
AztecAddress.fromField(Fr.fromString(scope)),
|
|
700
|
-
);
|
|
701
|
-
|
|
702
|
-
// We are going to return a Noir Option struct to represent the possibility of null values. Options are a struct
|
|
703
|
-
// with two fields: `some` (a boolean) and `value` (a field array in this case).
|
|
704
|
-
if (values === null) {
|
|
705
|
-
// No data was found so we set `some` to 0 and pad `value` with zeros get the correct return size.
|
|
706
|
-
return [toACVMField(0), Array(Fr.fromString(tSize).toNumber()).fill(toACVMField(0))];
|
|
707
|
-
} else {
|
|
708
|
-
// Data was found so we set `some` to 1 and return it along with `value`.
|
|
709
|
-
return [toACVMField(1), values.map(toACVMField)];
|
|
710
|
-
}
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
// eslint-disable-next-line camelcase
|
|
714
|
-
aztec_utl_deleteCapsule(
|
|
715
|
-
[contractAddress]: ACVMField[],
|
|
716
|
-
[slot]: ACVMField[],
|
|
717
|
-
[scope]: ACVMField[],
|
|
718
|
-
): Promise<ACVMField[]> {
|
|
719
|
-
this.handlerAsUtility().deleteCapsule(
|
|
720
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
721
|
-
Fr.fromString(slot),
|
|
722
|
-
AztecAddress.fromField(Fr.fromString(scope)),
|
|
723
|
-
);
|
|
724
|
-
return Promise.resolve([]);
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
// eslint-disable-next-line camelcase
|
|
728
|
-
async aztec_utl_copyCapsule(
|
|
729
|
-
[contractAddress]: ACVMField[],
|
|
730
|
-
[srcSlot]: ACVMField[],
|
|
731
|
-
[dstSlot]: ACVMField[],
|
|
732
|
-
[numEntries]: ACVMField[],
|
|
733
|
-
[scope]: ACVMField[],
|
|
734
|
-
): Promise<ACVMField[]> {
|
|
735
|
-
await this.handlerAsUtility().copyCapsule(
|
|
736
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
737
|
-
Fr.fromString(srcSlot),
|
|
738
|
-
Fr.fromString(dstSlot),
|
|
739
|
-
Fr.fromString(numEntries).toNumber(),
|
|
740
|
-
AztecAddress.fromField(Fr.fromString(scope)),
|
|
741
|
-
);
|
|
742
|
-
return [];
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
// eslint-disable-next-line camelcase
|
|
746
|
-
aztec_utl_pushEphemeral([slot]: ACVMField[], elements: ACVMField[]): Promise<ACVMField[]> {
|
|
747
|
-
const newLen = this.handlerAsUtility().pushEphemeral(Fr.fromString(slot), elements.map(Fr.fromString));
|
|
748
|
-
return Promise.resolve([toACVMField(newLen)]);
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
// eslint-disable-next-line camelcase
|
|
752
|
-
aztec_utl_popEphemeral([slot]: ACVMField[]): Promise<ACVMField[][]> {
|
|
753
|
-
const element = this.handlerAsUtility().popEphemeral(Fr.fromString(slot));
|
|
754
|
-
return Promise.resolve([element.map(toACVMField)]);
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
// eslint-disable-next-line camelcase
|
|
758
|
-
aztec_utl_getEphemeral([slot]: ACVMField[], [index]: ACVMField[]): Promise<ACVMField[][]> {
|
|
759
|
-
const element = this.handlerAsUtility().getEphemeral(Fr.fromString(slot), Fr.fromString(index).toNumber());
|
|
760
|
-
return Promise.resolve([element.map(toACVMField)]);
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
// eslint-disable-next-line camelcase
|
|
764
|
-
aztec_utl_setEphemeral([slot]: ACVMField[], [index]: ACVMField[], elements: ACVMField[]): Promise<ACVMField[]> {
|
|
765
|
-
this.handlerAsUtility().setEphemeral(
|
|
766
|
-
Fr.fromString(slot),
|
|
767
|
-
Fr.fromString(index).toNumber(),
|
|
768
|
-
elements.map(Fr.fromString),
|
|
769
|
-
);
|
|
770
|
-
return Promise.resolve([]);
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
// eslint-disable-next-line camelcase
|
|
774
|
-
aztec_utl_getEphemeralLen([slot]: ACVMField[]): Promise<ACVMField[]> {
|
|
775
|
-
const len = this.handlerAsUtility().getEphemeralLen(Fr.fromString(slot));
|
|
776
|
-
return Promise.resolve([toACVMField(len)]);
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
// eslint-disable-next-line camelcase
|
|
780
|
-
aztec_utl_removeEphemeral([slot]: ACVMField[], [index]: ACVMField[]): Promise<ACVMField[]> {
|
|
781
|
-
this.handlerAsUtility().removeEphemeral(Fr.fromString(slot), Fr.fromString(index).toNumber());
|
|
782
|
-
return Promise.resolve([]);
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
// eslint-disable-next-line camelcase
|
|
786
|
-
aztec_utl_clearEphemeral([slot]: ACVMField[]): Promise<ACVMField[]> {
|
|
787
|
-
this.handlerAsUtility().clearEphemeral(Fr.fromString(slot));
|
|
788
|
-
return Promise.resolve([]);
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
// eslint-disable-next-line camelcase
|
|
792
|
-
async aztec_utl_decryptAes128(
|
|
793
|
-
ciphertextBVecStorage: ACVMField[],
|
|
794
|
-
[ciphertextLength]: ACVMField[],
|
|
795
|
-
iv: ACVMField[],
|
|
796
|
-
symKey: ACVMField[],
|
|
797
|
-
): Promise<(ACVMField | ACVMField[])[]> {
|
|
798
|
-
const ciphertext = fromUintBoundedVec(ciphertextBVecStorage, ciphertextLength, 8);
|
|
799
|
-
const ivBuffer = fromUintArray(iv, 8);
|
|
800
|
-
const symKeyBuffer = fromUintArray(symKey, 8);
|
|
801
|
-
|
|
802
|
-
// Noir Option<BoundedVec> is encoded as [is_some: Field, storage: Field[], length: Field].
|
|
803
|
-
try {
|
|
804
|
-
const plaintext = await this.handlerAsUtility().decryptAes128(ciphertext, ivBuffer, symKeyBuffer);
|
|
805
|
-
const [storage, length] = bufferToBoundedVec(plaintext, ciphertextBVecStorage.length);
|
|
806
|
-
return [toACVMField(1), storage, length];
|
|
807
|
-
} catch {
|
|
808
|
-
const zeroStorage = Array(ciphertextBVecStorage.length).fill(toACVMField(0));
|
|
809
|
-
return [toACVMField(0), zeroStorage, toACVMField(0)];
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
// eslint-disable-next-line camelcase
|
|
814
|
-
async aztec_utl_getSharedSecret(
|
|
815
|
-
[address]: ACVMField[],
|
|
816
|
-
[ephPKField0]: ACVMField[],
|
|
817
|
-
[ephPKField1]: ACVMField[],
|
|
818
|
-
[ephPKField2]: ACVMField[],
|
|
819
|
-
[contractAddress]: ACVMField[],
|
|
820
|
-
): Promise<ACVMField[]> {
|
|
821
|
-
const secret = await this.handlerAsUtility().getSharedSecret(
|
|
822
|
-
AztecAddress.fromField(Fr.fromString(address)),
|
|
823
|
-
Point.fromFields([ephPKField0, ephPKField1, ephPKField2].map(Fr.fromString)),
|
|
824
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
825
|
-
);
|
|
826
|
-
return [toACVMField(secret)];
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
// eslint-disable-next-line camelcase
|
|
830
|
-
aztec_utl_setContractSyncCacheInvalid(
|
|
831
|
-
[contractAddress]: ACVMField[],
|
|
832
|
-
scopes: ACVMField[],
|
|
833
|
-
[scopeCount]: ACVMField[],
|
|
834
|
-
): Promise<ACVMField[]> {
|
|
835
|
-
const scopeAddresses = scopes.slice(0, +scopeCount).map(s => AztecAddress.fromField(Fr.fromString(s)));
|
|
836
|
-
this.handlerAsUtility().setContractSyncCacheInvalid(
|
|
837
|
-
AztecAddress.fromField(Fr.fromString(contractAddress)),
|
|
838
|
-
scopeAddresses,
|
|
839
|
-
);
|
|
840
|
-
return Promise.resolve([]);
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
// eslint-disable-next-line camelcase
|
|
844
|
-
async aztec_utl_emitOffchainEffect(data: ACVMField[]) {
|
|
845
|
-
await this.handlerAsUtility().emitOffchainEffect(data.map(Fr.fromString));
|
|
846
|
-
return [];
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
// eslint-disable-next-line camelcase
|
|
850
|
-
async aztec_prv_getSenderForTags(): Promise<ACVMField[]> {
|
|
851
|
-
const sender = await this.handlerAsPrivate().getSenderForTags();
|
|
852
|
-
// Return [1, address] for Some(address), [0, 0] for None
|
|
853
|
-
return sender ? [toACVMField(1n), toACVMField(sender)] : [toACVMField(0n), toACVMField(0n)];
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
// eslint-disable-next-line camelcase
|
|
857
|
-
async aztec_prv_setSenderForTags([senderForTags]: ACVMField[]): Promise<ACVMField[]> {
|
|
858
|
-
await this.handlerAsPrivate().setSenderForTags(AztecAddress.fromField(Fr.fromString(senderForTags)));
|
|
859
|
-
return [];
|
|
860
|
-
}
|
|
861
|
-
}
|