@aztec/stdlib 5.0.0-private.20260319 → 5.0.0-rc.1
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/abi/abi.d.ts +142 -1081
- package/dest/abi/abi.d.ts.map +1 -1
- package/dest/abi/abi.js +41 -18
- package/dest/abi/authorization_selector.d.ts +4 -7
- package/dest/abi/authorization_selector.d.ts.map +1 -1
- package/dest/abi/buffer.d.ts +14 -4
- package/dest/abi/buffer.d.ts.map +1 -1
- package/dest/abi/buffer.js +25 -4
- package/dest/abi/contract_artifact.d.ts +14 -1
- package/dest/abi/contract_artifact.d.ts.map +1 -1
- package/dest/abi/contract_artifact.js +31 -7
- package/dest/abi/decoder.d.ts +5 -44
- package/dest/abi/decoder.d.ts.map +1 -1
- package/dest/abi/decoder.js +12 -67
- package/dest/abi/encoder.d.ts +1 -1
- package/dest/abi/encoder.d.ts.map +1 -1
- package/dest/abi/encoder.js +32 -6
- package/dest/abi/event_selector.d.ts +4 -7
- package/dest/abi/event_selector.d.ts.map +1 -1
- package/dest/abi/function_call.d.ts +7 -25
- package/dest/abi/function_call.d.ts.map +1 -1
- package/dest/abi/function_selector.d.ts +3 -6
- package/dest/abi/function_selector.d.ts.map +1 -1
- package/dest/abi/function_selector.js +2 -4
- package/dest/abi/function_signature_decoder.d.ts +43 -0
- package/dest/abi/function_signature_decoder.d.ts.map +1 -0
- package/dest/abi/function_signature_decoder.js +66 -0
- package/dest/abi/index.d.ts +2 -1
- package/dest/abi/index.d.ts.map +1 -1
- package/dest/abi/index.js +1 -0
- package/dest/abi/note_selector.d.ts +4 -7
- package/dest/abi/note_selector.d.ts.map +1 -1
- package/dest/abi/note_selector.js +1 -3
- package/dest/abi/selector.d.ts +2 -2
- package/dest/abi/selector.d.ts.map +1 -1
- package/dest/abi/selector.js +1 -1
- package/dest/abi/utils.d.ts +1 -1
- package/dest/abi/utils.d.ts.map +1 -1
- package/dest/abi/utils.js +1 -1
- package/dest/auth_witness/auth_witness.d.ts +2 -2
- package/dest/auth_witness/auth_witness.d.ts.map +1 -1
- package/dest/avm/avm.d.ts +1756 -10463
- package/dest/avm/avm.d.ts.map +1 -1
- package/dest/avm/avm.js +6 -3
- package/dest/avm/avm_accumulated_data.d.ts +22 -86
- package/dest/avm/avm_accumulated_data.d.ts.map +1 -1
- package/dest/avm/avm_circuit_public_inputs.d.ts +180 -932
- package/dest/avm/avm_circuit_public_inputs.d.ts.map +1 -1
- package/dest/avm/avm_proving_request.d.ts +653 -5446
- package/dest/avm/avm_proving_request.d.ts.map +1 -1
- package/dest/avm/message_pack.js +12 -3
- package/dest/avm/public_data_write.d.ts +6 -12
- package/dest/avm/public_data_write.d.ts.map +1 -1
- package/dest/avm/revert_code.d.ts +5 -21
- package/dest/avm/revert_code.d.ts.map +1 -1
- package/dest/avm/revert_code.js +12 -30
- package/dest/aztec-address/index.d.ts +8 -8
- package/dest/aztec-address/index.d.ts.map +1 -1
- package/dest/aztec-address/index.js +9 -6
- package/dest/block/attestation_info.d.ts +3 -2
- package/dest/block/attestation_info.d.ts.map +1 -1
- package/dest/block/attestation_info.js +7 -5
- package/dest/block/block_data.d.ts +13 -38
- package/dest/block/block_data.d.ts.map +1 -1
- package/dest/block/block_data.js +2 -2
- package/dest/block/block_hash.d.ts +11 -10
- package/dest/block/block_hash.d.ts.map +1 -1
- package/dest/block/block_hash.js +10 -9
- package/dest/block/block_parameter.d.ts +37 -4
- package/dest/block/block_parameter.d.ts.map +1 -1
- package/dest/block/block_parameter.js +53 -2
- package/dest/block/in_block.d.ts +5 -24
- package/dest/block/in_block.d.ts.map +1 -1
- package/dest/block/index.d.ts +1 -2
- package/dest/block/index.d.ts.map +1 -1
- package/dest/block/index.js +0 -1
- package/dest/block/l2_block.d.ts +13 -41
- package/dest/block/l2_block.d.ts.map +1 -1
- package/dest/block/l2_block_info.d.ts +10 -29
- package/dest/block/l2_block_info.d.ts.map +1 -1
- package/dest/block/l2_block_info.js +6 -5
- package/dest/block/l2_block_source.d.ts +216 -357
- package/dest/block/l2_block_source.d.ts.map +1 -1
- package/dest/block/l2_block_source.js +67 -1
- package/dest/block/l2_block_stream/interfaces.d.ts +46 -7
- package/dest/block/l2_block_stream/interfaces.d.ts.map +1 -1
- package/dest/block/l2_block_stream/l2_block_stream.d.ts +2 -2
- package/dest/block/l2_block_stream/l2_block_stream.d.ts.map +1 -1
- package/dest/block/l2_block_stream/l2_block_stream.js +57 -21
- package/dest/block/l2_block_stream/l2_tips_memory_store.d.ts +8 -12
- package/dest/block/l2_block_stream/l2_tips_memory_store.d.ts.map +1 -1
- package/dest/block/l2_block_stream/l2_tips_memory_store.js +11 -32
- package/dest/block/l2_block_stream/l2_tips_store_base.d.ts +12 -18
- package/dest/block/l2_block_stream/l2_tips_store_base.d.ts.map +1 -1
- package/dest/block/l2_block_stream/l2_tips_store_base.js +66 -40
- package/dest/block/proposal/attestations_and_signers.d.ts +19 -30
- package/dest/block/proposal/attestations_and_signers.d.ts.map +1 -1
- package/dest/block/proposal/attestations_and_signers.js +26 -18
- package/dest/block/proposal/committee_attestation.d.ts +6 -12
- package/dest/block/proposal/committee_attestation.d.ts.map +1 -1
- package/dest/block/test/l2_tips_store_test_suite.d.ts +1 -1
- package/dest/block/test/l2_tips_store_test_suite.d.ts.map +1 -1
- package/dest/block/test/l2_tips_store_test_suite.js +202 -33
- package/dest/checkpoint/checkpoint.d.ts +30 -96
- package/dest/checkpoint/checkpoint.d.ts.map +1 -1
- package/dest/checkpoint/checkpoint.js +11 -3
- package/dest/checkpoint/checkpoint_data.d.ts +68 -91
- package/dest/checkpoint/checkpoint_data.d.ts.map +1 -1
- package/dest/checkpoint/checkpoint_data.js +12 -0
- package/dest/checkpoint/checkpoint_info.d.ts +7 -23
- package/dest/checkpoint/checkpoint_info.d.ts.map +1 -1
- package/dest/checkpoint/checkpoint_reexecution_tracker.d.ts +60 -0
- package/dest/checkpoint/checkpoint_reexecution_tracker.d.ts.map +1 -0
- package/dest/checkpoint/checkpoint_reexecution_tracker.js +108 -0
- package/dest/checkpoint/digest.d.ts +18 -0
- package/dest/checkpoint/digest.d.ts.map +1 -0
- package/dest/checkpoint/digest.js +12 -0
- package/dest/checkpoint/index.d.ts +4 -1
- package/dest/checkpoint/index.d.ts.map +1 -1
- package/dest/checkpoint/index.js +3 -0
- package/dest/checkpoint/previous_checkpoint_out_hashes.d.ts +33 -0
- package/dest/checkpoint/previous_checkpoint_out_hashes.d.ts.map +1 -0
- package/dest/checkpoint/previous_checkpoint_out_hashes.js +45 -0
- package/dest/checkpoint/published_checkpoint.d.ts +42 -194
- package/dest/checkpoint/published_checkpoint.d.ts.map +1 -1
- package/dest/checkpoint/validate.d.ts +11 -3
- package/dest/checkpoint/validate.d.ts.map +1 -1
- package/dest/checkpoint/validate.js +9 -6
- package/dest/config/chain-config.d.ts +4 -9
- package/dest/config/chain-config.d.ts.map +1 -1
- package/dest/config/chain-config.js +13 -12
- package/dest/config/index.d.ts +2 -2
- package/dest/config/index.d.ts.map +1 -1
- package/dest/config/index.js +1 -1
- package/dest/config/network-consensus-config.d.ts +72 -0
- package/dest/config/network-consensus-config.d.ts.map +1 -0
- package/dest/config/network-consensus-config.js +231 -0
- package/dest/config/sequencer-config.d.ts +7 -3
- package/dest/config/sequencer-config.d.ts.map +1 -1
- package/dest/config/sequencer-config.js +38 -5
- package/dest/contract/complete_address.d.ts +3 -2
- package/dest/contract/complete_address.d.ts.map +1 -1
- package/dest/contract/complete_address.js +6 -2
- package/dest/contract/contract_address.d.ts +5 -5
- package/dest/contract/contract_address.d.ts.map +1 -1
- package/dest/contract/contract_address.js +5 -4
- package/dest/contract/contract_deployment_data.d.ts +15 -61
- package/dest/contract/contract_deployment_data.d.ts.map +1 -1
- package/dest/contract/contract_instance.d.ts +4 -2
- package/dest/contract/contract_instance.d.ts.map +1 -1
- package/dest/contract/contract_instance.js +10 -3
- package/dest/contract/index.d.ts +1 -3
- package/dest/contract/index.d.ts.map +1 -1
- package/dest/contract/index.js +0 -2
- package/dest/contract/interfaces/contract_class.d.ts +17 -241
- package/dest/contract/interfaces/contract_class.d.ts.map +1 -1
- package/dest/contract/interfaces/contract_class.js +1 -28
- package/dest/contract/interfaces/contract_instance.d.ts +41 -95
- package/dest/contract/interfaces/contract_instance.d.ts.map +1 -1
- package/dest/contract/interfaces/contract_instance.js +4 -2
- package/dest/contract/interfaces/contract_instance_update.d.ts +6 -26
- package/dest/contract/interfaces/contract_instance_update.d.ts.map +1 -1
- package/dest/contract/interfaces/node-info.d.ts +11 -1
- package/dest/contract/interfaces/node-info.d.ts.map +1 -1
- package/dest/contract/interfaces/node-info.js +7 -1
- package/dest/contract/interfaces/protocol_contract_addresses.d.ts +2 -12
- package/dest/contract/interfaces/protocol_contract_addresses.d.ts.map +1 -1
- package/dest/contract/private_function.d.ts +1 -1
- package/dest/contract/private_function.d.ts.map +1 -1
- package/dest/contract/private_function.js +2 -4
- package/dest/database-version/database_version.d.ts +5 -11
- package/dest/database-version/database_version.d.ts.map +1 -1
- package/dest/database-version/version_manager.d.ts +6 -2
- package/dest/database-version/version_manager.d.ts.map +1 -1
- package/dest/database-version/version_manager.js +12 -1
- package/dest/deserialization/index.d.ts +35 -3
- package/dest/deserialization/index.d.ts.map +1 -1
- package/dest/deserialization/index.js +32 -1
- package/dest/epoch-helpers/index.d.ts +10 -22
- package/dest/epoch-helpers/index.d.ts.map +1 -1
- package/dest/epoch-helpers/index.js +12 -0
- package/dest/file-store/factory.d.ts +4 -3
- package/dest/file-store/factory.d.ts.map +1 -1
- package/dest/file-store/factory.js +2 -2
- package/dest/file-store/http.d.ts +9 -2
- package/dest/file-store/http.d.ts.map +1 -1
- package/dest/file-store/http.js +20 -9
- package/dest/file-store/index.d.ts +2 -1
- package/dest/file-store/index.d.ts.map +1 -1
- package/dest/gas/fee_math.d.ts +49 -0
- package/dest/gas/fee_math.d.ts.map +1 -0
- package/dest/gas/fee_math.js +80 -0
- package/dest/gas/gas.d.ts +9 -14
- package/dest/gas/gas.d.ts.map +1 -1
- package/dest/gas/gas.js +6 -3
- package/dest/gas/gas_fees.d.ts +13 -14
- package/dest/gas/gas_fees.d.ts.map +1 -1
- package/dest/gas/gas_fees.js +17 -4
- package/dest/gas/gas_settings.d.ts +60 -86
- package/dest/gas/gas_settings.d.ts.map +1 -1
- package/dest/gas/gas_settings.js +49 -9
- package/dest/gas/index.d.ts +3 -1
- package/dest/gas/index.d.ts.map +1 -1
- package/dest/gas/index.js +2 -0
- package/dest/gas/tx_gas_limits.d.ts +72 -0
- package/dest/gas/tx_gas_limits.d.ts.map +1 -0
- package/dest/gas/tx_gas_limits.js +85 -0
- package/dest/ha-signing/config.d.ts +11 -75
- package/dest/ha-signing/config.d.ts.map +1 -1
- package/dest/ha-signing/config.js +9 -18
- package/dest/ha-signing/index.d.ts +2 -2
- package/dest/ha-signing/index.d.ts.map +1 -1
- package/dest/ha-signing/index.js +1 -1
- package/dest/ha-signing/local_config.d.ts +3 -34
- package/dest/ha-signing/local_config.d.ts.map +1 -1
- package/dest/ha-signing/local_config.js +2 -2
- package/dest/ha-signing/types.d.ts +37 -32
- package/dest/ha-signing/types.d.ts.map +1 -1
- package/dest/ha-signing/types.js +13 -6
- package/dest/hash/hash.d.ts +19 -1
- package/dest/hash/hash.d.ts.map +1 -1
- package/dest/hash/hash.js +39 -2
- package/dest/interfaces/allowed_element.d.ts +4 -28
- package/dest/interfaces/allowed_element.d.ts.map +1 -1
- package/dest/interfaces/api_limit.d.ts +1 -1
- package/dest/interfaces/api_limit.js +1 -1
- package/dest/interfaces/archiver.d.ts +20 -32
- package/dest/interfaces/archiver.d.ts.map +1 -1
- package/dest/interfaces/archiver.js +215 -70
- package/dest/interfaces/aztec-node-admin.d.ts +71 -305
- package/dest/interfaces/aztec-node-admin.d.ts.map +1 -1
- package/dest/interfaces/aztec-node-admin.js +60 -17
- package/dest/interfaces/aztec-node-debug.d.ts +34 -0
- package/dest/interfaces/aztec-node-debug.d.ts.map +1 -0
- package/dest/interfaces/aztec-node-debug.js +29 -0
- package/dest/interfaces/aztec-node.d.ts +156 -112
- package/dest/interfaces/aztec-node.d.ts.map +1 -1
- package/dest/interfaces/aztec-node.js +354 -71
- package/dest/interfaces/block-builder.d.ts +5 -1
- package/dest/interfaces/block-builder.d.ts.map +1 -1
- package/dest/interfaces/block_response.d.ts +90 -0
- package/dest/interfaces/block_response.d.ts.map +1 -0
- package/dest/interfaces/block_response.js +30 -0
- package/dest/interfaces/chain_tips.d.ts +50 -0
- package/dest/interfaces/chain_tips.d.ts.map +1 -0
- package/dest/interfaces/chain_tips.js +11 -0
- package/dest/interfaces/checkpoint_parameter.d.ts +14 -0
- package/dest/interfaces/checkpoint_parameter.d.ts.map +1 -0
- package/dest/interfaces/checkpoint_parameter.js +18 -0
- package/dest/interfaces/checkpoint_response.d.ts +122 -0
- package/dest/interfaces/checkpoint_response.d.ts.map +1 -0
- package/dest/interfaces/checkpoint_response.js +26 -0
- package/dest/interfaces/client.d.ts +9 -2
- package/dest/interfaces/client.d.ts.map +1 -1
- package/dest/interfaces/client.js +7 -1
- package/dest/interfaces/configs.d.ts +63 -134
- package/dest/interfaces/configs.d.ts.map +1 -1
- package/dest/interfaces/configs.js +13 -2
- package/dest/interfaces/get_tx_by_hash_options.d.ts +9 -0
- package/dest/interfaces/get_tx_by_hash_options.d.ts.map +1 -0
- package/dest/interfaces/get_tx_by_hash_options.js +4 -0
- package/dest/interfaces/l1_publish_info.d.ts +29 -0
- package/dest/interfaces/l1_publish_info.d.ts.map +1 -0
- package/dest/interfaces/l1_publish_info.js +26 -0
- package/dest/interfaces/l2_logs_source.d.ts +14 -36
- package/dest/interfaces/l2_logs_source.d.ts.map +1 -1
- package/dest/interfaces/l2_logs_source.js +5 -0
- package/dest/interfaces/merkle_tree_operations.d.ts +4 -3
- package/dest/interfaces/merkle_tree_operations.d.ts.map +1 -1
- package/dest/interfaces/p2p-bootstrap.js +8 -2
- package/dest/interfaces/p2p.d.ts +46 -7
- package/dest/interfaces/p2p.d.ts.map +1 -1
- package/dest/interfaces/p2p.js +41 -6
- package/dest/interfaces/private_kernel_prover.d.ts +62 -2
- package/dest/interfaces/private_kernel_prover.d.ts.map +1 -1
- package/dest/interfaces/prover-agent.d.ts +5 -23
- package/dest/interfaces/prover-agent.d.ts.map +1 -1
- package/dest/interfaces/prover-agent.js +4 -1
- package/dest/interfaces/prover-client.d.ts +7 -29
- package/dest/interfaces/prover-client.d.ts.map +1 -1
- package/dest/interfaces/prover-client.js +0 -3
- package/dest/interfaces/prover-node.d.ts +8 -3
- package/dest/interfaces/prover-node.d.ts.map +1 -1
- package/dest/interfaces/prover-node.js +30 -14
- package/dest/interfaces/proving-job-source.js +24 -4
- package/dest/interfaces/proving-job.d.ts +763 -5814
- package/dest/interfaces/proving-job.d.ts.map +1 -1
- package/dest/interfaces/proving-job.js +1 -1
- package/dest/interfaces/public_storage_override.d.ts +22 -0
- package/dest/interfaces/public_storage_override.d.ts.map +1 -0
- package/dest/interfaces/public_storage_override.js +7 -0
- package/dest/interfaces/server.d.ts +6 -2
- package/dest/interfaces/server.d.ts.map +1 -1
- package/dest/interfaces/server.js +5 -1
- package/dest/interfaces/slasher.d.ts +25 -65
- package/dest/interfaces/slasher.d.ts.map +1 -1
- package/dest/interfaces/slasher.js +8 -4
- package/dest/interfaces/tx_provider.d.ts +6 -1
- package/dest/interfaces/tx_provider.d.ts.map +1 -1
- package/dest/interfaces/validator.d.ts +55 -248
- package/dest/interfaces/validator.d.ts.map +1 -1
- package/dest/interfaces/validator.js +8 -2
- package/dest/interfaces/world_state.d.ts +2 -2
- package/dest/interfaces/world_state.d.ts.map +1 -1
- package/dest/kernel/hints/key_validation_request.d.ts +12 -8
- package/dest/kernel/hints/key_validation_request.d.ts.map +1 -1
- package/dest/kernel/hints/key_validation_request.js +20 -18
- package/dest/kernel/index.d.ts +5 -1
- package/dest/kernel/index.d.ts.map +1 -1
- package/dest/kernel/index.js +4 -0
- package/dest/kernel/log_hash.d.ts +6 -2
- package/dest/kernel/log_hash.d.ts.map +1 -1
- package/dest/kernel/log_hash.js +21 -9
- package/dest/kernel/private_circuit_public_inputs.d.ts +2 -2
- package/dest/kernel/private_circuit_public_inputs.d.ts.map +1 -1
- package/dest/kernel/private_kernel_circuit_public_inputs.d.ts +2 -2
- package/dest/kernel/private_kernel_circuit_public_inputs.d.ts.map +1 -1
- package/dest/kernel/private_kernel_init_2_circuit_private_inputs.d.ts +23 -0
- package/dest/kernel/private_kernel_init_2_circuit_private_inputs.d.ts.map +1 -0
- package/dest/kernel/private_kernel_init_2_circuit_private_inputs.js +35 -0
- package/dest/kernel/private_kernel_init_3_circuit_private_inputs.d.ts +24 -0
- package/dest/kernel/private_kernel_init_3_circuit_private_inputs.d.ts.map +1 -0
- package/dest/kernel/private_kernel_init_3_circuit_private_inputs.js +37 -0
- package/dest/kernel/private_kernel_inner_2_circuit_private_inputs.d.ts +16 -0
- package/dest/kernel/private_kernel_inner_2_circuit_private_inputs.d.ts.map +1 -0
- package/dest/kernel/private_kernel_inner_2_circuit_private_inputs.js +23 -0
- package/dest/kernel/private_kernel_inner_3_circuit_private_inputs.d.ts +17 -0
- package/dest/kernel/private_kernel_inner_3_circuit_private_inputs.d.ts.map +1 -0
- package/dest/kernel/private_kernel_inner_3_circuit_private_inputs.js +25 -0
- package/dest/kernel/private_kernel_prover_output.d.ts +3 -29
- package/dest/kernel/private_kernel_prover_output.d.ts.map +1 -1
- package/dest/kernel/private_kernel_tail_circuit_public_inputs.d.ts +9 -6
- package/dest/kernel/private_kernel_tail_circuit_public_inputs.d.ts.map +1 -1
- package/dest/kernel/private_kernel_tail_circuit_public_inputs.js +22 -7
- package/dest/kernel/private_to_avm_accumulated_data.d.ts +25 -69
- package/dest/kernel/private_to_avm_accumulated_data.d.ts.map +1 -1
- package/dest/kernel/private_to_avm_accumulated_data.js +11 -5
- package/dest/kernel/private_to_public_accumulated_data.d.ts +4 -3
- package/dest/kernel/private_to_public_accumulated_data.d.ts.map +1 -1
- package/dest/kernel/private_to_public_accumulated_data.js +6 -3
- package/dest/kernel/private_to_public_kernel_circuit_public_inputs.d.ts +5 -4
- package/dest/kernel/private_to_public_kernel_circuit_public_inputs.d.ts.map +1 -1
- package/dest/kernel/private_to_public_kernel_circuit_public_inputs.js +7 -3
- package/dest/kernel/private_to_rollup_accumulated_data.d.ts +5 -4
- package/dest/kernel/private_to_rollup_accumulated_data.d.ts.map +1 -1
- package/dest/kernel/private_to_rollup_accumulated_data.js +6 -3
- package/dest/kernel/private_to_rollup_kernel_circuit_public_inputs.d.ts +5 -4
- package/dest/kernel/private_to_rollup_kernel_circuit_public_inputs.d.ts.map +1 -1
- package/dest/kernel/private_to_rollup_kernel_circuit_public_inputs.js +7 -3
- package/dest/kernel/public_call_request.d.ts +15 -30
- package/dest/kernel/public_call_request.d.ts.map +1 -1
- package/dest/kernel/public_call_request.js +16 -7
- package/dest/keys/derivation.d.ts +6 -2
- package/dest/keys/derivation.d.ts.map +1 -1
- package/dest/keys/derivation.js +16 -6
- package/dest/keys/public_key.d.ts +22 -3
- package/dest/keys/public_key.d.ts.map +1 -1
- package/dest/keys/public_key.js +20 -1
- package/dest/keys/public_keys.d.ts +55 -82
- package/dest/keys/public_keys.d.ts.map +1 -1
- package/dest/keys/public_keys.js +102 -74
- package/dest/kv-store/config.d.ts +3 -6
- package/dest/kv-store/config.d.ts.map +1 -1
- package/dest/kv-store/config.js +2 -7
- package/dest/l1-contracts/index.d.ts +2 -2
- package/dest/l1-contracts/index.d.ts.map +1 -1
- package/dest/l1-contracts/index.js +1 -1
- package/dest/logs/app_tagging_secret.d.ts +46 -0
- package/dest/logs/app_tagging_secret.d.ts.map +1 -0
- package/dest/logs/app_tagging_secret.js +109 -0
- package/dest/logs/app_tagging_secret_kind.d.ts +7 -0
- package/dest/logs/app_tagging_secret_kind.d.ts.map +1 -0
- package/dest/logs/app_tagging_secret_kind.js +17 -0
- package/dest/logs/contract_class_log.d.ts +16 -34
- package/dest/logs/contract_class_log.d.ts.map +1 -1
- package/dest/logs/contract_class_log.js +11 -9
- package/dest/logs/index.d.ts +7 -7
- package/dest/logs/index.d.ts.map +1 -1
- package/dest/logs/index.js +6 -6
- package/dest/logs/log_cursor.d.ts +51 -0
- package/dest/logs/log_cursor.d.ts.map +1 -0
- package/dest/logs/log_cursor.js +82 -0
- package/dest/logs/log_result.d.ts +54 -0
- package/dest/logs/log_result.d.ts.map +1 -0
- package/dest/logs/log_result.js +56 -0
- package/dest/logs/logs_query.d.ts +82 -0
- package/dest/logs/logs_query.d.ts.map +1 -0
- package/dest/logs/logs_query.js +50 -0
- package/dest/logs/message_context.d.ts +6 -8
- package/dest/logs/message_context.d.ts.map +1 -1
- package/dest/logs/message_context.js +27 -9
- package/dest/logs/pending_tagged_log.d.ts +2 -3
- package/dest/logs/pending_tagged_log.d.ts.map +1 -1
- package/dest/logs/pending_tagged_log.js +2 -2
- package/dest/logs/pre_tag.d.ts +11 -24
- package/dest/logs/pre_tag.d.ts.map +1 -1
- package/dest/logs/pre_tag.js +2 -2
- package/dest/logs/private_log.d.ts +7 -12
- package/dest/logs/private_log.d.ts.map +1 -1
- package/dest/logs/private_log.js +6 -3
- package/dest/logs/query_all_logs_by_tags.d.ts +24 -0
- package/dest/logs/query_all_logs_by_tags.d.ts.map +1 -0
- package/dest/logs/query_all_logs_by_tags.js +64 -0
- package/dest/logs/shared_secret_derivation.d.ts +11 -10
- package/dest/logs/shared_secret_derivation.d.ts.map +1 -1
- package/dest/logs/shared_secret_derivation.js +15 -9
- package/dest/logs/siloed_tag.d.ts +8 -7
- package/dest/logs/siloed_tag.d.ts.map +1 -1
- package/dest/logs/siloed_tag.js +13 -3
- package/dest/logs/tag.d.ts +5 -6
- package/dest/logs/tag.d.ts.map +1 -1
- package/dest/logs/tag.js +4 -0
- package/dest/logs/tagging_index_range.d.ts +13 -31
- package/dest/logs/tagging_index_range.d.ts.map +1 -1
- package/dest/logs/tagging_index_range.js +2 -2
- package/dest/messaging/append_l1_to_l2_messages.d.ts +9 -0
- package/dest/messaging/append_l1_to_l2_messages.d.ts.map +1 -0
- package/dest/messaging/append_l1_to_l2_messages.js +12 -0
- package/dest/messaging/index.d.ts +2 -1
- package/dest/messaging/index.d.ts.map +1 -1
- package/dest/messaging/index.js +1 -0
- package/dest/messaging/l1_to_l2_message.d.ts +3 -2
- package/dest/messaging/l1_to_l2_message.d.ts.map +1 -1
- package/dest/messaging/l1_to_l2_message.js +11 -13
- package/dest/messaging/l2_to_l1_membership.d.ts +43 -6
- package/dest/messaging/l2_to_l1_membership.d.ts.map +1 -1
- package/dest/messaging/l2_to_l1_membership.js +72 -12
- package/dest/messaging/l2_to_l1_message.d.ts +38 -112
- package/dest/messaging/l2_to_l1_message.d.ts.map +1 -1
- package/dest/messaging/l2_to_l1_message.js +21 -12
- package/dest/noir/index.d.ts +3 -1
- package/dest/noir/index.d.ts.map +1 -1
- package/dest/note/note.d.ts +2 -2
- package/dest/note/note.d.ts.map +1 -1
- package/dest/note/note_dao.d.ts +1 -1
- package/dest/note/note_dao.d.ts.map +1 -1
- package/dest/note/note_dao.js +1 -4
- package/dest/p2p/block_proposal.d.ts +31 -14
- package/dest/p2p/block_proposal.d.ts.map +1 -1
- package/dest/p2p/block_proposal.js +57 -39
- package/dest/p2p/checkpoint_attestation.d.ts +15 -9
- package/dest/p2p/checkpoint_attestation.d.ts.map +1 -1
- package/dest/p2p/checkpoint_attestation.js +23 -24
- package/dest/p2p/checkpoint_proposal.d.ts +35 -16
- package/dest/p2p/checkpoint_proposal.d.ts.map +1 -1
- package/dest/p2p/checkpoint_proposal.js +59 -51
- package/dest/p2p/consensus_payload.d.ts +26 -20
- package/dest/p2p/consensus_payload.d.ts.map +1 -1
- package/dest/p2p/consensus_payload.js +38 -19
- package/dest/p2p/gossipable.d.ts +4 -4
- package/dest/p2p/gossipable.d.ts.map +1 -1
- package/dest/p2p/signature_utils.d.ts +28 -19
- package/dest/p2p/signature_utils.d.ts.map +1 -1
- package/dest/p2p/signature_utils.js +118 -21
- package/dest/p2p/signed_txs.d.ts +15 -13
- package/dest/p2p/signed_txs.d.ts.map +1 -1
- package/dest/p2p/signed_txs.js +26 -24
- package/dest/parity/parity_base_private_inputs.d.ts +8 -4
- package/dest/parity/parity_base_private_inputs.d.ts.map +1 -1
- package/dest/parity/parity_base_private_inputs.js +7 -5
- package/dest/parity/parity_public_inputs.d.ts +8 -4
- package/dest/parity/parity_public_inputs.d.ts.map +1 -1
- package/dest/parity/parity_public_inputs.js +6 -3
- package/dest/parity/parity_root_private_inputs.d.ts +2 -2
- package/dest/parity/parity_root_private_inputs.d.ts.map +1 -1
- package/dest/proofs/chonk_proof.d.ts +57 -7
- package/dest/proofs/chonk_proof.d.ts.map +1 -1
- package/dest/proofs/chonk_proof.js +112 -15
- package/dest/proofs/recursive_proof.d.ts +2 -2
- package/dest/proofs/recursive_proof.d.ts.map +1 -1
- package/dest/rollup/block_headers_hash.d.ts +1 -1
- package/dest/rollup/block_headers_hash.d.ts.map +1 -1
- package/dest/rollup/block_headers_hash.js +8 -2
- package/dest/rollup/block_merge_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/block_merge_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/block_rollup_public_inputs.d.ts +12 -2
- package/dest/rollup/block_rollup_public_inputs.d.ts.map +1 -1
- package/dest/rollup/block_rollup_public_inputs.js +12 -0
- package/dest/rollup/block_root_rollup_private_inputs.d.ts +6 -6
- package/dest/rollup/block_root_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/checkpoint_merge_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/checkpoint_merge_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/checkpoint_rollup_public_inputs.d.ts +9 -2
- package/dest/rollup/checkpoint_rollup_public_inputs.d.ts.map +1 -1
- package/dest/rollup/checkpoint_rollup_public_inputs.js +9 -0
- package/dest/rollup/checkpoint_root_rollup_private_inputs.d.ts +5 -5
- package/dest/rollup/checkpoint_root_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/private_tx_base_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/private_tx_base_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/public_chonk_verifier_private_inputs.d.ts +2 -2
- package/dest/rollup/public_chonk_verifier_private_inputs.d.ts.map +1 -1
- package/dest/rollup/public_chonk_verifier_public_inputs.d.ts +2 -2
- package/dest/rollup/public_chonk_verifier_public_inputs.d.ts.map +1 -1
- package/dest/rollup/public_tx_base_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/public_tx_base_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/root_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/root_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/root_rollup_public_inputs.d.ts +2 -2
- package/dest/rollup/root_rollup_public_inputs.d.ts.map +1 -1
- package/dest/rollup/tx_merge_rollup_private_inputs.d.ts +2 -2
- package/dest/rollup/tx_merge_rollup_private_inputs.d.ts.map +1 -1
- package/dest/rollup/tx_rollup_public_inputs.d.ts +2 -2
- package/dest/rollup/tx_rollup_public_inputs.d.ts.map +1 -1
- package/dest/schemas/schemas.d.ts +32 -78
- package/dest/schemas/schemas.d.ts.map +1 -1
- package/dest/schemas/schemas.js +2 -2
- package/dest/slashing/helpers.d.ts +2 -2
- package/dest/slashing/helpers.d.ts.map +1 -1
- package/dest/slashing/helpers.js +10 -7
- package/dest/slashing/index.d.ts +2 -3
- package/dest/slashing/index.d.ts.map +1 -1
- package/dest/slashing/index.js +1 -2
- package/dest/slashing/serialization.d.ts +2 -6
- package/dest/slashing/serialization.d.ts.map +1 -1
- package/dest/slashing/serialization.js +0 -60
- package/dest/slashing/types.d.ts +18 -112
- package/dest/slashing/types.d.ts.map +1 -1
- package/dest/slashing/types.js +16 -24
- package/dest/slashing/{tally.d.ts → votes.d.ts} +1 -1
- package/dest/slashing/{tally.d.ts.map → votes.d.ts.map} +1 -1
- package/dest/slashing/{tally.js → votes.js} +1 -1
- package/dest/snapshots/types.d.ts +15 -78
- package/dest/snapshots/types.d.ts.map +1 -1
- package/dest/stats/stats.d.ts +2 -2
- package/dest/stats/stats.d.ts.map +1 -1
- package/dest/tests/factories.d.ts +25 -32
- package/dest/tests/factories.d.ts.map +1 -1
- package/dest/tests/factories.js +85 -82
- package/dest/tests/mocks.d.ts +8 -5
- package/dest/tests/mocks.d.ts.map +1 -1
- package/dest/tests/mocks.js +45 -56
- package/dest/timetable/budgets.d.ts +57 -0
- package/dest/timetable/budgets.d.ts.map +1 -0
- package/dest/timetable/budgets.js +56 -0
- package/dest/timetable/build_proposer_timetable.d.ts +21 -0
- package/dest/timetable/build_proposer_timetable.d.ts.map +1 -0
- package/dest/timetable/build_proposer_timetable.js +17 -0
- package/dest/timetable/consensus_timetable.d.ts +70 -0
- package/dest/timetable/consensus_timetable.d.ts.map +1 -0
- package/dest/timetable/consensus_timetable.js +89 -0
- package/dest/timetable/index.d.ts +5 -37
- package/dest/timetable/index.d.ts.map +1 -1
- package/dest/timetable/index.js +4 -39
- package/dest/timetable/proposer_timetable.d.ts +106 -0
- package/dest/timetable/proposer_timetable.d.ts.map +1 -0
- package/dest/timetable/proposer_timetable.js +132 -0
- package/dest/trees/append_only_tree_snapshot.d.ts +9 -14
- package/dest/trees/append_only_tree_snapshot.d.ts.map +1 -1
- package/dest/trees/append_only_tree_snapshot.js +6 -3
- package/dest/trees/nullifier_leaf.d.ts +19 -42
- package/dest/trees/nullifier_leaf.d.ts.map +1 -1
- package/dest/trees/nullifier_leaf.js +3 -0
- package/dest/trees/nullifier_membership_witness.d.ts +16 -59
- package/dest/trees/nullifier_membership_witness.d.ts.map +1 -1
- package/dest/trees/nullifier_membership_witness.js +2 -14
- package/dest/trees/public_data_leaf.d.ts +21 -53
- package/dest/trees/public_data_leaf.d.ts.map +1 -1
- package/dest/trees/public_data_witness.d.ts +16 -58
- package/dest/trees/public_data_witness.d.ts.map +1 -1
- package/dest/tx/block_header.d.ts +5 -4
- package/dest/tx/block_header.d.ts.map +1 -1
- package/dest/tx/block_header.js +7 -4
- package/dest/tx/call_context.d.ts +4 -14
- package/dest/tx/call_context.d.ts.map +1 -1
- package/dest/tx/capsule.d.ts +7 -3
- package/dest/tx/capsule.d.ts.map +1 -1
- package/dest/tx/capsule.js +9 -3
- package/dest/tx/fee_provider.d.ts +10 -0
- package/dest/tx/fee_provider.d.ts.map +1 -0
- package/dest/tx/fee_provider.js +1 -0
- package/dest/tx/function_data.d.ts +4 -10
- package/dest/tx/function_data.d.ts.map +1 -1
- package/dest/tx/global_variable_builder.d.ts +3 -4
- package/dest/tx/global_variable_builder.d.ts.map +1 -1
- package/dest/tx/global_variables.d.ts +16 -49
- package/dest/tx/global_variables.d.ts.map +1 -1
- package/dest/tx/global_variables.js +8 -12
- package/dest/tx/hashed_values.d.ts +4 -3
- package/dest/tx/hashed_values.d.ts.map +1 -1
- package/dest/tx/hashed_values.js +6 -3
- package/dest/tx/in_tx.d.ts +5 -17
- package/dest/tx/in_tx.d.ts.map +1 -1
- package/dest/tx/index.d.ts +2 -1
- package/dest/tx/index.d.ts.map +1 -1
- package/dest/tx/index.js +1 -0
- package/dest/tx/indexed_tx_effect.d.ts +8 -19
- package/dest/tx/indexed_tx_effect.d.ts.map +1 -1
- package/dest/tx/indexed_tx_effect.js +9 -6
- package/dest/tx/partial_state_reference.d.ts +22 -65
- package/dest/tx/partial_state_reference.d.ts.map +1 -1
- package/dest/tx/partial_state_reference.js +6 -3
- package/dest/tx/private_execution_result.d.ts +6 -16
- package/dest/tx/private_execution_result.d.ts.map +1 -1
- package/dest/tx/profiling.d.ts +54 -352
- package/dest/tx/profiling.d.ts.map +1 -1
- package/dest/tx/profiling.js +4 -4
- package/dest/tx/protocol_contracts.d.ts +5 -9
- package/dest/tx/protocol_contracts.d.ts.map +1 -1
- package/dest/tx/proven_tx.d.ts +30 -74
- package/dest/tx/proven_tx.d.ts.map +1 -1
- package/dest/tx/proven_tx.js +6 -0
- package/dest/tx/public_call_request_with_calldata.d.ts +4 -3
- package/dest/tx/public_call_request_with_calldata.d.ts.map +1 -1
- package/dest/tx/public_call_request_with_calldata.js +6 -3
- package/dest/tx/simulated_tx.d.ts +64 -1143
- package/dest/tx/simulated_tx.d.ts.map +1 -1
- package/dest/tx/simulated_tx.js +13 -11
- package/dest/tx/state_reference.d.ts +30 -117
- package/dest/tx/state_reference.d.ts.map +1 -1
- package/dest/tx/state_reference.js +6 -4
- package/dest/tx/tree_snapshots.d.ts +27 -84
- package/dest/tx/tree_snapshots.d.ts.map +1 -1
- package/dest/tx/tree_snapshots.js +6 -4
- package/dest/tx/tx.d.ts +22 -13
- package/dest/tx/tx.d.ts.map +1 -1
- package/dest/tx/tx.js +44 -22
- package/dest/tx/tx_constant_data.d.ts +4 -3
- package/dest/tx/tx_constant_data.d.ts.map +1 -1
- package/dest/tx/tx_constant_data.js +6 -3
- package/dest/tx/tx_context.d.ts +32 -131
- package/dest/tx/tx_context.d.ts.map +1 -1
- package/dest/tx/tx_context.js +6 -6
- package/dest/tx/tx_hash.d.ts +6 -4
- package/dest/tx/tx_hash.d.ts.map +1 -1
- package/dest/tx/tx_hash.js +13 -5
- package/dest/tx/tx_receipt.d.ts +144 -63
- package/dest/tx/tx_receipt.d.ts.map +1 -1
- package/dest/tx/tx_receipt.js +143 -60
- package/dest/tx/validator/error_texts.d.ts +6 -2
- package/dest/tx/validator/error_texts.d.ts.map +1 -1
- package/dest/tx/validator/error_texts.js +7 -1
- package/dest/tx/validator/tx_validator.d.ts +5 -27
- package/dest/tx/validator/tx_validator.d.ts.map +1 -1
- package/dest/tx/validator/tx_validator.js +0 -4
- package/dest/types/shared.d.ts +4 -12
- package/dest/types/shared.d.ts.map +1 -1
- package/dest/types/shared.js +6 -12
- package/dest/update-checker/dev_version.d.ts +3 -0
- package/dest/update-checker/dev_version.d.ts.map +1 -0
- package/dest/update-checker/dev_version.js +1 -0
- package/dest/update-checker/index.d.ts +2 -1
- package/dest/update-checker/index.d.ts.map +1 -1
- package/dest/update-checker/index.js +1 -0
- package/dest/update-checker/package_version.d.ts +6 -3
- package/dest/update-checker/package_version.d.ts.map +1 -1
- package/dest/update-checker/package_version.js +8 -19
- package/dest/validators/schemas.d.ts +147 -614
- package/dest/validators/schemas.d.ts.map +1 -1
- package/dest/validators/schemas.js +6 -4
- package/dest/validators/types.d.ts +20 -3
- package/dest/validators/types.d.ts.map +1 -1
- package/dest/versioning/versioning.js +1 -1
- package/dest/vks/verification_key.d.ts +4 -139
- package/dest/vks/verification_key.d.ts.map +1 -1
- package/dest/vks/verification_key.js +5 -126
- package/dest/world-state/genesis_data.d.ts +13 -0
- package/dest/world-state/genesis_data.d.ts.map +1 -0
- package/dest/world-state/genesis_data.js +7 -0
- package/dest/world-state/index.d.ts +2 -1
- package/dest/world-state/index.d.ts.map +1 -1
- package/dest/world-state/index.js +1 -0
- package/dest/world-state/world_state_revision.d.ts +15 -26
- package/dest/world-state/world_state_revision.d.ts.map +1 -1
- package/dest/world-state/world_state_revision.js +7 -1
- package/package.json +12 -11
- package/src/abi/abi.ts +78 -21
- package/src/abi/authorization_selector.ts +2 -8
- package/src/abi/buffer.ts +25 -4
- package/src/abi/contract_artifact.ts +30 -6
- package/src/abi/decoder.ts +23 -78
- package/src/abi/encoder.ts +42 -6
- package/src/abi/event_selector.ts +2 -8
- package/src/abi/function_selector.ts +4 -13
- package/src/abi/function_signature_decoder.ts +77 -0
- package/src/abi/index.ts +1 -0
- package/src/abi/note_selector.ts +3 -12
- package/src/abi/selector.ts +1 -1
- package/src/abi/utils.ts +6 -4
- package/src/avm/avm.ts +5 -0
- package/src/avm/message_pack.ts +12 -3
- package/src/avm/revert_code.ts +19 -39
- package/src/aztec-address/index.ts +15 -12
- package/src/block/attestation_info.ts +11 -11
- package/src/block/block_data.ts +3 -4
- package/src/block/block_hash.ts +21 -14
- package/src/block/block_parameter.ts +72 -4
- package/src/block/index.ts +0 -1
- package/src/block/l2_block_info.ts +8 -6
- package/src/block/l2_block_source.ts +216 -147
- package/src/block/l2_block_stream/interfaces.ts +42 -6
- package/src/block/l2_block_stream/l2_block_stream.ts +60 -31
- package/src/block/l2_block_stream/l2_tips_memory_store.ts +17 -41
- package/src/block/l2_block_stream/l2_tips_store_base.ts +64 -60
- package/src/block/proposal/attestations_and_signers.ts +32 -17
- package/src/block/test/l2_tips_store_test_suite.ts +198 -18
- package/src/checkpoint/checkpoint.ts +13 -3
- package/src/checkpoint/checkpoint_data.ts +44 -4
- package/src/checkpoint/checkpoint_reexecution_tracker.ts +167 -0
- package/src/checkpoint/digest.ts +28 -0
- package/src/checkpoint/index.ts +3 -0
- package/src/checkpoint/previous_checkpoint_out_hashes.ts +61 -0
- package/src/checkpoint/validate.ts +16 -6
- package/src/config/chain-config.ts +13 -16
- package/src/config/index.ts +1 -1
- package/src/config/network-consensus-config.ts +302 -0
- package/src/config/sequencer-config.ts +68 -9
- package/src/contract/complete_address.ts +7 -3
- package/src/contract/contract_address.ts +6 -6
- package/src/contract/contract_instance.ts +11 -2
- package/src/contract/index.ts +0 -2
- package/src/contract/interfaces/contract_class.ts +2 -82
- package/src/contract/interfaces/contract_instance.ts +6 -2
- package/src/contract/interfaces/node-info.ts +11 -0
- package/src/contract/private_function.ts +3 -1
- package/src/database-version/version_manager.ts +17 -0
- package/src/deserialization/index.ts +35 -2
- package/src/epoch-helpers/index.ts +24 -0
- package/src/file-store/factory.ts +13 -4
- package/src/file-store/http.ts +29 -10
- package/src/file-store/index.ts +1 -0
- package/src/gas/README.md +123 -0
- package/src/gas/fee_math.ts +120 -0
- package/src/gas/gas.ts +8 -3
- package/src/gas/gas_fees.ts +26 -13
- package/src/gas/gas_settings.ts +63 -15
- package/src/gas/index.ts +2 -0
- package/src/gas/tx_gas_limits.ts +123 -0
- package/src/ha-signing/config.ts +14 -18
- package/src/ha-signing/index.ts +3 -1
- package/src/ha-signing/local_config.ts +2 -2
- package/src/ha-signing/types.ts +48 -34
- package/src/hash/hash.ts +34 -2
- package/src/interfaces/api_limit.ts +1 -1
- package/src/interfaces/archiver.ts +88 -93
- package/src/interfaces/aztec-node-admin.ts +36 -21
- package/src/interfaces/aztec-node-debug.ts +55 -0
- package/src/interfaces/aztec-node.ts +389 -259
- package/src/interfaces/block-builder.ts +4 -0
- package/src/interfaces/block_response.ts +92 -0
- package/src/interfaces/chain_tips.ts +24 -0
- package/src/interfaces/checkpoint_parameter.ts +20 -0
- package/src/interfaces/checkpoint_response.ts +84 -0
- package/src/interfaces/client.ts +8 -1
- package/src/interfaces/configs.ts +64 -7
- package/src/interfaces/get_tx_by_hash_options.ts +14 -0
- package/src/interfaces/l1_publish_info.ts +40 -0
- package/src/interfaces/l2_logs_source.ts +13 -42
- package/src/interfaces/merkle_tree_operations.ts +3 -2
- package/src/interfaces/p2p-bootstrap.ts +2 -2
- package/src/interfaces/p2p.ts +59 -19
- package/src/interfaces/private_kernel_prover.ts +88 -0
- package/src/interfaces/prover-agent.ts +1 -1
- package/src/interfaces/prover-client.ts +3 -8
- package/src/interfaces/prover-node.ts +19 -12
- package/src/interfaces/proving-job-source.ts +4 -4
- package/src/interfaces/proving-job.ts +3 -3
- package/src/interfaces/public_storage_override.ts +26 -0
- package/src/interfaces/server.ts +5 -1
- package/src/interfaces/slasher.ts +17 -10
- package/src/interfaces/tx_provider.ts +6 -0
- package/src/interfaces/validator.ts +45 -15
- package/src/interfaces/world_state.ts +1 -1
- package/src/kernel/hints/key_validation_request.ts +18 -16
- package/src/kernel/index.ts +4 -0
- package/src/kernel/log_hash.ts +29 -9
- package/src/kernel/private_kernel_init_2_circuit_private_inputs.ts +49 -0
- package/src/kernel/private_kernel_init_3_circuit_private_inputs.ts +52 -0
- package/src/kernel/private_kernel_inner_2_circuit_private_inputs.ts +29 -0
- package/src/kernel/private_kernel_inner_3_circuit_private_inputs.ts +31 -0
- package/src/kernel/private_kernel_tail_circuit_public_inputs.ts +29 -14
- package/src/kernel/private_to_avm_accumulated_data.ts +16 -5
- package/src/kernel/private_to_public_accumulated_data.ts +9 -3
- package/src/kernel/private_to_public_kernel_circuit_public_inputs.ts +10 -4
- package/src/kernel/private_to_rollup_accumulated_data.ts +8 -3
- package/src/kernel/private_to_rollup_kernel_circuit_public_inputs.ts +9 -9
- package/src/kernel/public_call_request.ts +22 -7
- package/src/keys/derivation.ts +21 -9
- package/src/keys/public_key.ts +26 -2
- package/src/keys/public_keys.ts +124 -110
- package/src/kv-store/config.ts +3 -10
- package/src/l1-contracts/index.ts +1 -1
- package/src/logs/app_tagging_secret.ts +137 -0
- package/src/logs/app_tagging_secret_kind.ts +21 -0
- package/src/logs/contract_class_log.ts +15 -5
- package/src/logs/index.ts +6 -6
- package/src/logs/log_cursor.ts +110 -0
- package/src/logs/log_result.ts +104 -0
- package/src/logs/logs_query.ts +138 -0
- package/src/logs/message_context.ts +22 -8
- package/src/logs/pending_tagged_log.ts +1 -3
- package/src/logs/pre_tag.ts +3 -6
- package/src/logs/private_log.ts +9 -3
- package/src/logs/query_all_logs_by_tags.ts +98 -0
- package/src/logs/shared_secret_derivation.ts +21 -10
- package/src/logs/siloed_tag.ts +20 -11
- package/src/logs/tag.ts +8 -8
- package/src/logs/tagging_index_range.ts +4 -10
- package/src/messaging/append_l1_to_l2_messages.ts +21 -0
- package/src/messaging/index.ts +1 -0
- package/src/messaging/l1_to_l2_message.ts +12 -9
- package/src/messaging/l2_to_l1_membership.ts +108 -19
- package/src/messaging/l2_to_l1_message.ts +29 -9
- package/src/noir/index.ts +2 -0
- package/src/note/note_dao.ts +1 -4
- package/src/p2p/block_proposal.ts +111 -36
- package/src/p2p/checkpoint_attestation.ts +27 -31
- package/src/p2p/checkpoint_proposal.ts +128 -73
- package/src/p2p/consensus_payload.ts +59 -28
- package/src/p2p/gossipable.ts +4 -4
- package/src/p2p/signature_utils.ts +110 -25
- package/src/p2p/signed_txs.ts +46 -28
- package/src/parity/parity_base_private_inputs.ts +10 -4
- package/src/parity/parity_public_inputs.ts +9 -2
- package/src/proofs/chonk_proof.ts +132 -12
- package/src/rollup/block_headers_hash.ts +11 -2
- package/src/rollup/block_rollup_public_inputs.ts +13 -0
- package/src/rollup/checkpoint_rollup_public_inputs.ts +10 -0
- package/src/schemas/schemas.ts +6 -1
- package/src/slashing/helpers.ts +13 -9
- package/src/slashing/index.ts +1 -2
- package/src/slashing/serialization.ts +1 -81
- package/src/slashing/types.ts +24 -49
- package/src/slashing/{tally.ts → votes.ts} +1 -1
- package/src/stats/stats.ts +4 -0
- package/src/tests/factories.ts +109 -111
- package/src/tests/mocks.ts +72 -71
- package/src/timetable/README.md +609 -0
- package/src/timetable/budgets.ts +87 -0
- package/src/timetable/build_proposer_timetable.ts +42 -0
- package/src/timetable/consensus_timetable.ts +126 -0
- package/src/timetable/index.ts +4 -66
- package/src/timetable/proposer_timetable.ts +190 -0
- package/src/timetable/timetable-example.svg +108 -0
- package/src/trees/append_only_tree_snapshot.ts +8 -3
- package/src/trees/nullifier_leaf.ts +4 -0
- package/src/trees/nullifier_membership_witness.ts +2 -12
- package/src/tx/block_header.ts +10 -5
- package/src/tx/capsule.ts +10 -2
- package/src/tx/fee_provider.ts +10 -0
- package/src/tx/global_variable_builder.ts +2 -3
- package/src/tx/global_variables.ts +10 -18
- package/src/tx/hashed_values.ts +8 -3
- package/src/tx/index.ts +1 -0
- package/src/tx/indexed_tx_effect.ts +18 -6
- package/src/tx/partial_state_reference.ts +8 -3
- package/src/tx/profiling.ts +4 -4
- package/src/tx/proven_tx.ts +6 -0
- package/src/tx/public_call_request_with_calldata.ts +8 -3
- package/src/tx/simulated_tx.ts +22 -21
- package/src/tx/state_reference.ts +9 -4
- package/src/tx/tree_snapshots.ts +9 -4
- package/src/tx/tx.ts +60 -24
- package/src/tx/tx_constant_data.ts +8 -3
- package/src/tx/tx_context.ts +8 -3
- package/src/tx/tx_hash.ts +20 -5
- package/src/tx/tx_receipt.ts +265 -85
- package/src/tx/validator/error_texts.ts +10 -1
- package/src/tx/validator/tx_validator.ts +1 -5
- package/src/types/shared.ts +8 -13
- package/src/update-checker/dev_version.ts +2 -0
- package/src/update-checker/index.ts +1 -0
- package/src/update-checker/package_version.ts +10 -23
- package/src/validators/schemas.ts +6 -4
- package/src/validators/types.ts +21 -2
- package/src/versioning/versioning.ts +1 -1
- package/src/vks/verification_key.ts +5 -184
- package/src/world-state/genesis_data.ts +27 -0
- package/src/world-state/index.ts +1 -0
- package/src/world-state/world_state_revision.ts +9 -1
- package/dest/abi/mocked_keys.d.ts +0 -2
- package/dest/abi/mocked_keys.d.ts.map +0 -1
- package/dest/abi/mocked_keys.js +0 -1
- package/dest/block/checkpointed_l2_block.d.ts +0 -150
- package/dest/block/checkpointed_l2_block.d.ts.map +0 -1
- package/dest/block/checkpointed_l2_block.js +0 -46
- package/dest/config/pipelining-config.d.ts +0 -19
- package/dest/config/pipelining-config.d.ts.map +0 -1
- package/dest/config/pipelining-config.js +0 -18
- package/dest/contract/private_function_membership_proof.d.ts +0 -32
- package/dest/contract/private_function_membership_proof.d.ts.map +0 -1
- package/dest/contract/private_function_membership_proof.js +0 -124
- package/dest/contract/utility_function_membership_proof.d.ts +0 -27
- package/dest/contract/utility_function_membership_proof.d.ts.map +0 -1
- package/dest/contract/utility_function_membership_proof.js +0 -87
- package/dest/interfaces/epoch-prover.d.ts +0 -57
- package/dest/interfaces/epoch-prover.d.ts.map +0 -1
- package/dest/interfaces/epoch-prover.js +0 -1
- package/dest/interfaces/get_logs_response.d.ts +0 -97
- package/dest/interfaces/get_logs_response.d.ts.map +0 -1
- package/dest/interfaces/get_logs_response.js +0 -12
- package/dest/l1-contracts/slash_factory.d.ts +0 -45
- package/dest/l1-contracts/slash_factory.d.ts.map +0 -1
- package/dest/l1-contracts/slash_factory.js +0 -158
- package/dest/logs/extended_contract_class_log.d.ts +0 -51
- package/dest/logs/extended_contract_class_log.d.ts.map +0 -1
- package/dest/logs/extended_contract_class_log.js +0 -67
- package/dest/logs/extended_directional_app_tagging_secret.d.ts +0 -47
- package/dest/logs/extended_directional_app_tagging_secret.d.ts.map +0 -1
- package/dest/logs/extended_directional_app_tagging_secret.js +0 -72
- package/dest/logs/extended_public_log.d.ts +0 -106
- package/dest/logs/extended_public_log.d.ts.map +0 -1
- package/dest/logs/extended_public_log.js +0 -73
- package/dest/logs/log_filter.d.ts +0 -25
- package/dest/logs/log_filter.d.ts.map +0 -1
- package/dest/logs/log_filter.js +0 -12
- package/dest/logs/log_id.d.ts +0 -85
- package/dest/logs/log_id.d.ts.map +0 -1
- package/dest/logs/log_id.js +0 -94
- package/dest/logs/tx_scoped_l2_log.d.ts +0 -51
- package/dest/logs/tx_scoped_l2_log.d.ts.map +0 -1
- package/dest/logs/tx_scoped_l2_log.js +0 -77
- package/dest/slashing/empire.d.ts +0 -31
- package/dest/slashing/empire.d.ts.map +0 -1
- package/dest/slashing/empire.js +0 -87
- package/src/abi/mocked_keys.ts +0 -2
- package/src/block/checkpointed_l2_block.ts +0 -70
- package/src/config/pipelining-config.ts +0 -31
- package/src/contract/private_function_membership_proof.ts +0 -167
- package/src/contract/utility_function_membership_proof.ts +0 -118
- package/src/interfaces/epoch-prover.ts +0 -72
- package/src/interfaces/get_logs_response.ts +0 -35
- package/src/l1-contracts/slash_factory.ts +0 -180
- package/src/logs/extended_contract_class_log.ts +0 -87
- package/src/logs/extended_directional_app_tagging_secret.ts +0 -87
- package/src/logs/extended_public_log.ts +0 -94
- package/src/logs/log_filter.ts +0 -36
- package/src/logs/log_id.ts +0 -125
- package/src/logs/tx_scoped_l2_log.ts +0 -114
- package/src/slashing/empire.ts +0 -104
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ZodFor } from '@aztec/foundation/schemas';
|
|
2
2
|
import type { FieldsOf } from '@aztec/foundation/types';
|
|
3
3
|
import { z } from 'zod';
|
|
4
|
-
import { type ContractArtifact } from '../abi/abi.js';
|
|
5
4
|
import { type ContractInstanceWithAddress } from '../contract/interfaces/contract_instance.js';
|
|
6
5
|
import type { GasUsed } from '../gas/gas_used.js';
|
|
6
|
+
import { type PublicStorageOverride } from '../interfaces/public_storage_override.js';
|
|
7
7
|
import { PrivateKernelTailCircuitPublicInputs } from '../kernel/private_kernel_tail_circuit_public_inputs.js';
|
|
8
8
|
import type { OffchainEffect } from './offchain_effect.js';
|
|
9
9
|
import { PrivateExecutionResult } from './private_execution_result.js';
|
|
@@ -12,1182 +12,103 @@ import { NestedProcessReturnValues, PublicSimulationOutput } from './public_simu
|
|
|
12
12
|
import { Tx } from './tx.js';
|
|
13
13
|
export type ContractOverrides = Record<string, {
|
|
14
14
|
instance: ContractInstanceWithAddress;
|
|
15
|
-
artifact: ContractArtifact;
|
|
16
15
|
}>;
|
|
17
16
|
export declare class SimulationOverrides {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
publicStorage?: PublicStorageOverride[];
|
|
18
|
+
contracts?: ContractOverrides;
|
|
19
|
+
constructor(args?: {
|
|
20
|
+
publicStorage?: PublicStorageOverride[];
|
|
21
|
+
contracts?: ContractOverrides;
|
|
22
|
+
});
|
|
23
|
+
static get schema(): z.ZodPipe<z.ZodObject<{
|
|
24
|
+
publicStorage: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
25
|
+
contract: ZodFor<import("../aztec-address/index.js").AztecAddress>;
|
|
26
|
+
slot: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
27
|
+
value: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
28
|
+
}, z.core.$strip>>>>, z.ZodTransform<{
|
|
29
|
+
contract: import("../aztec-address/index.js").AztecAddress;
|
|
30
|
+
slot: import("@aztec/foundation/schemas").Fr;
|
|
31
|
+
value: import("@aztec/foundation/schemas").Fr;
|
|
32
|
+
}[] | undefined, {
|
|
33
|
+
contract: import("../aztec-address/index.js").AztecAddress;
|
|
34
|
+
slot: import("@aztec/foundation/schemas").Fr;
|
|
35
|
+
value: import("@aztec/foundation/schemas").Fr;
|
|
36
|
+
}[] | null | undefined>>;
|
|
37
|
+
contracts: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22
38
|
instance: z.ZodIntersection<z.ZodObject<{
|
|
23
|
-
version: z.ZodLiteral<
|
|
39
|
+
version: z.ZodLiteral<2>;
|
|
24
40
|
salt: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
25
41
|
deployer: ZodFor<import("../aztec-address/index.js").AztecAddress>;
|
|
26
42
|
currentContractClassId: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
27
43
|
originalContractClassId: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
28
44
|
initializationHash: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
version: 1;
|
|
45
|
+
immutablesHash: ZodFor<import("@aztec/foundation/schemas").Fr>;
|
|
46
|
+
publicKeys: z.ZodPipe<z.ZodObject<{
|
|
47
|
+
npkMHash: z.ZodType<import("@aztec/foundation/schemas").Fr, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Fr, string>>;
|
|
48
|
+
ivpkM: z.ZodType<import("@aztec/foundation/schemas").Point, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Point, string>>;
|
|
49
|
+
ovpkMHash: z.ZodType<import("@aztec/foundation/schemas").Fr, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Fr, string>>;
|
|
50
|
+
tpkMHash: z.ZodType<import("@aztec/foundation/schemas").Fr, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Fr, string>>;
|
|
51
|
+
mspkMHash: z.ZodType<import("@aztec/foundation/schemas").Fr, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Fr, string>>;
|
|
52
|
+
fbpkMHash: z.ZodType<import("@aztec/foundation/schemas").Fr, string, z.core.$ZodTypeInternals<import("@aztec/foundation/schemas").Fr, string>>;
|
|
53
|
+
}, z.core.$strip>, z.ZodTransform<import("../keys/public_keys.js").PublicKeys, {
|
|
54
|
+
npkMHash: import("@aztec/foundation/schemas").Fr;
|
|
55
|
+
ivpkM: import("@aztec/foundation/schemas").Point;
|
|
56
|
+
ovpkMHash: import("@aztec/foundation/schemas").Fr;
|
|
57
|
+
tpkMHash: import("@aztec/foundation/schemas").Fr;
|
|
58
|
+
mspkMHash: import("@aztec/foundation/schemas").Fr;
|
|
59
|
+
fbpkMHash: import("@aztec/foundation/schemas").Fr;
|
|
60
|
+
}>>;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
address: ZodFor<import("../aztec-address/index.js").AztecAddress>;
|
|
63
|
+
}, z.core.$strip>>;
|
|
64
|
+
}, z.core.$strip>>>>, z.ZodTransform<Record<string, {
|
|
65
|
+
instance: {
|
|
66
|
+
version: 2;
|
|
52
67
|
salt: import("@aztec/foundation/schemas").Fr;
|
|
53
68
|
deployer: import("../aztec-address/index.js").AztecAddress;
|
|
54
69
|
currentContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
55
70
|
originalContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
56
71
|
initializationHash: import("@aztec/foundation/schemas").Fr;
|
|
72
|
+
immutablesHash: import("@aztec/foundation/schemas").Fr;
|
|
57
73
|
publicKeys: import("../keys/public_keys.js").PublicKeys;
|
|
58
|
-
}
|
|
59
|
-
version: 1;
|
|
60
|
-
salt?: any;
|
|
61
|
-
deployer?: any;
|
|
62
|
-
currentContractClassId?: any;
|
|
63
|
-
originalContractClassId?: any;
|
|
64
|
-
initializationHash?: any;
|
|
65
|
-
publicKeys: {
|
|
66
|
-
masterNullifierPublicKey: string;
|
|
67
|
-
masterIncomingViewingPublicKey: string;
|
|
68
|
-
masterOutgoingViewingPublicKey: string;
|
|
69
|
-
masterTaggingPublicKey: string;
|
|
70
|
-
};
|
|
71
|
-
}>, z.ZodObject<{
|
|
72
|
-
address: ZodFor<import("../aztec-address/index.js").AztecAddress>;
|
|
73
|
-
}, "strip", z.ZodTypeAny, {
|
|
74
|
+
} & {
|
|
74
75
|
address: import("../aztec-address/index.js").AztecAddress;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
}>>;
|
|
78
|
-
artifact: z.ZodObject<{
|
|
79
|
-
name: z.ZodString;
|
|
80
|
-
functions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
81
|
-
name: z.ZodString;
|
|
82
|
-
functionType: z.ZodNativeEnum<typeof import("../abi/abi.js").FunctionType>;
|
|
83
|
-
isOnlySelf: z.ZodBoolean;
|
|
84
|
-
isStatic: z.ZodBoolean;
|
|
85
|
-
isInitializer: z.ZodBoolean;
|
|
86
|
-
parameters: z.ZodArray<z.ZodObject<{
|
|
87
|
-
name: z.ZodString;
|
|
88
|
-
type: z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>;
|
|
89
|
-
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
90
|
-
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
name: string;
|
|
92
|
-
type: import("../abi/abi.js").AbiType;
|
|
93
|
-
visibility: "databus" | "private" | "public";
|
|
94
|
-
}, {
|
|
95
|
-
name: string;
|
|
96
|
-
type: import("../abi/abi.js").AbiType;
|
|
97
|
-
visibility: "databus" | "private" | "public";
|
|
98
|
-
}>, "many">;
|
|
99
|
-
returnTypes: z.ZodArray<z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>, "many">;
|
|
100
|
-
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
101
|
-
error_kind: z.ZodLiteral<"string">;
|
|
102
|
-
string: z.ZodString;
|
|
103
|
-
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
error_kind: "string";
|
|
105
|
-
string: string;
|
|
106
|
-
}, {
|
|
107
|
-
error_kind: "string";
|
|
108
|
-
string: string;
|
|
109
|
-
}>, z.ZodObject<{
|
|
110
|
-
error_kind: z.ZodLiteral<"fmtstring">;
|
|
111
|
-
length: z.ZodNumber;
|
|
112
|
-
item_types: z.ZodArray<z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>, "many">;
|
|
113
|
-
}, "strip", z.ZodTypeAny, {
|
|
114
|
-
error_kind: "fmtstring";
|
|
115
|
-
length: number;
|
|
116
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
117
|
-
}, {
|
|
118
|
-
error_kind: "fmtstring";
|
|
119
|
-
length: number;
|
|
120
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
121
|
-
}>, z.ZodIntersection<z.ZodObject<{
|
|
122
|
-
error_kind: z.ZodLiteral<"custom">;
|
|
123
|
-
}, "strip", z.ZodTypeAny, {
|
|
124
|
-
error_kind: "custom";
|
|
125
|
-
}, {
|
|
126
|
-
error_kind: "custom";
|
|
127
|
-
}>, z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>>]>>>;
|
|
128
|
-
}, "strip", z.ZodTypeAny, {
|
|
129
|
-
name: string;
|
|
130
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
131
|
-
isOnlySelf: boolean;
|
|
132
|
-
isStatic: boolean;
|
|
133
|
-
isInitializer: boolean;
|
|
134
|
-
parameters: {
|
|
135
|
-
name: string;
|
|
136
|
-
type: import("../abi/abi.js").AbiType;
|
|
137
|
-
visibility: "databus" | "private" | "public";
|
|
138
|
-
}[];
|
|
139
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
140
|
-
errorTypes: Record<string, {
|
|
141
|
-
error_kind: "string";
|
|
142
|
-
string: string;
|
|
143
|
-
} | {
|
|
144
|
-
error_kind: "fmtstring";
|
|
145
|
-
length: number;
|
|
146
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
147
|
-
} | ({
|
|
148
|
-
error_kind: "custom";
|
|
149
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
150
|
-
}, {
|
|
151
|
-
name: string;
|
|
152
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
153
|
-
isOnlySelf: boolean;
|
|
154
|
-
isStatic: boolean;
|
|
155
|
-
isInitializer: boolean;
|
|
156
|
-
parameters: {
|
|
157
|
-
name: string;
|
|
158
|
-
type: import("../abi/abi.js").AbiType;
|
|
159
|
-
visibility: "databus" | "private" | "public";
|
|
160
|
-
}[];
|
|
161
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
162
|
-
errorTypes: Record<string, {
|
|
163
|
-
error_kind: "string";
|
|
164
|
-
string: string;
|
|
165
|
-
} | {
|
|
166
|
-
error_kind: "fmtstring";
|
|
167
|
-
length: number;
|
|
168
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
169
|
-
} | ({
|
|
170
|
-
error_kind: "custom";
|
|
171
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
172
|
-
}>, z.ZodObject<{
|
|
173
|
-
bytecode: ZodFor<Buffer<ArrayBufferLike>>;
|
|
174
|
-
verificationKey: z.ZodOptional<z.ZodString>;
|
|
175
|
-
debugSymbols: z.ZodString;
|
|
176
|
-
debug: z.ZodOptional<z.ZodObject<{
|
|
177
|
-
debugSymbols: z.ZodObject<{
|
|
178
|
-
location_tree: z.ZodObject<{
|
|
179
|
-
locations: z.ZodArray<z.ZodObject<{
|
|
180
|
-
parent: z.ZodNullable<z.ZodNumber>;
|
|
181
|
-
value: z.ZodObject<{
|
|
182
|
-
span: z.ZodObject<{
|
|
183
|
-
start: z.ZodNumber;
|
|
184
|
-
end: z.ZodNumber;
|
|
185
|
-
}, "strip", z.ZodTypeAny, {
|
|
186
|
-
start: number;
|
|
187
|
-
end: number;
|
|
188
|
-
}, {
|
|
189
|
-
start: number;
|
|
190
|
-
end: number;
|
|
191
|
-
}>;
|
|
192
|
-
file: z.ZodNumber;
|
|
193
|
-
}, "strip", z.ZodTypeAny, {
|
|
194
|
-
span: {
|
|
195
|
-
start: number;
|
|
196
|
-
end: number;
|
|
197
|
-
};
|
|
198
|
-
file: number;
|
|
199
|
-
}, {
|
|
200
|
-
span: {
|
|
201
|
-
start: number;
|
|
202
|
-
end: number;
|
|
203
|
-
};
|
|
204
|
-
file: number;
|
|
205
|
-
}>;
|
|
206
|
-
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
parent: number | null;
|
|
208
|
-
value: {
|
|
209
|
-
span: {
|
|
210
|
-
start: number;
|
|
211
|
-
end: number;
|
|
212
|
-
};
|
|
213
|
-
file: number;
|
|
214
|
-
};
|
|
215
|
-
}, {
|
|
216
|
-
parent: number | null;
|
|
217
|
-
value: {
|
|
218
|
-
span: {
|
|
219
|
-
start: number;
|
|
220
|
-
end: number;
|
|
221
|
-
};
|
|
222
|
-
file: number;
|
|
223
|
-
};
|
|
224
|
-
}>, "many">;
|
|
225
|
-
}, "strip", z.ZodTypeAny, {
|
|
226
|
-
locations: {
|
|
227
|
-
parent: number | null;
|
|
228
|
-
value: {
|
|
229
|
-
span: {
|
|
230
|
-
start: number;
|
|
231
|
-
end: number;
|
|
232
|
-
};
|
|
233
|
-
file: number;
|
|
234
|
-
};
|
|
235
|
-
}[];
|
|
236
|
-
}, {
|
|
237
|
-
locations: {
|
|
238
|
-
parent: number | null;
|
|
239
|
-
value: {
|
|
240
|
-
span: {
|
|
241
|
-
start: number;
|
|
242
|
-
end: number;
|
|
243
|
-
};
|
|
244
|
-
file: number;
|
|
245
|
-
};
|
|
246
|
-
}[];
|
|
247
|
-
}>;
|
|
248
|
-
acir_locations: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
249
|
-
brillig_locations: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
250
|
-
}, "strip", z.ZodTypeAny, {
|
|
251
|
-
location_tree: {
|
|
252
|
-
locations: {
|
|
253
|
-
parent: number | null;
|
|
254
|
-
value: {
|
|
255
|
-
span: {
|
|
256
|
-
start: number;
|
|
257
|
-
end: number;
|
|
258
|
-
};
|
|
259
|
-
file: number;
|
|
260
|
-
};
|
|
261
|
-
}[];
|
|
262
|
-
};
|
|
263
|
-
acir_locations: Record<string, number>;
|
|
264
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
265
|
-
}, {
|
|
266
|
-
location_tree: {
|
|
267
|
-
locations: {
|
|
268
|
-
parent: number | null;
|
|
269
|
-
value: {
|
|
270
|
-
span: {
|
|
271
|
-
start: number;
|
|
272
|
-
end: number;
|
|
273
|
-
};
|
|
274
|
-
file: number;
|
|
275
|
-
};
|
|
276
|
-
}[];
|
|
277
|
-
};
|
|
278
|
-
acir_locations: Record<string, number>;
|
|
279
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
280
|
-
}>;
|
|
281
|
-
files: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
282
|
-
source: z.ZodString;
|
|
283
|
-
path: z.ZodString;
|
|
284
|
-
}, "strip", z.ZodTypeAny, {
|
|
285
|
-
source: string;
|
|
286
|
-
path: string;
|
|
287
|
-
}, {
|
|
288
|
-
source: string;
|
|
289
|
-
path: string;
|
|
290
|
-
}>>;
|
|
291
|
-
}, "strip", z.ZodTypeAny, {
|
|
292
|
-
debugSymbols: {
|
|
293
|
-
location_tree: {
|
|
294
|
-
locations: {
|
|
295
|
-
parent: number | null;
|
|
296
|
-
value: {
|
|
297
|
-
span: {
|
|
298
|
-
start: number;
|
|
299
|
-
end: number;
|
|
300
|
-
};
|
|
301
|
-
file: number;
|
|
302
|
-
};
|
|
303
|
-
}[];
|
|
304
|
-
};
|
|
305
|
-
acir_locations: Record<string, number>;
|
|
306
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
307
|
-
};
|
|
308
|
-
files: Record<string, {
|
|
309
|
-
source: string;
|
|
310
|
-
path: string;
|
|
311
|
-
}>;
|
|
312
|
-
}, {
|
|
313
|
-
debugSymbols: {
|
|
314
|
-
location_tree: {
|
|
315
|
-
locations: {
|
|
316
|
-
parent: number | null;
|
|
317
|
-
value: {
|
|
318
|
-
span: {
|
|
319
|
-
start: number;
|
|
320
|
-
end: number;
|
|
321
|
-
};
|
|
322
|
-
file: number;
|
|
323
|
-
};
|
|
324
|
-
}[];
|
|
325
|
-
};
|
|
326
|
-
acir_locations: Record<string, number>;
|
|
327
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
328
|
-
};
|
|
329
|
-
files: Record<string, {
|
|
330
|
-
source: string;
|
|
331
|
-
path: string;
|
|
332
|
-
}>;
|
|
333
|
-
}>>;
|
|
334
|
-
}, "strip", z.ZodTypeAny, {
|
|
335
|
-
bytecode: Buffer<ArrayBufferLike>;
|
|
336
|
-
verificationKey?: string | undefined;
|
|
337
|
-
debugSymbols: string;
|
|
338
|
-
debug?: {
|
|
339
|
-
debugSymbols: {
|
|
340
|
-
location_tree: {
|
|
341
|
-
locations: {
|
|
342
|
-
parent: number | null;
|
|
343
|
-
value: {
|
|
344
|
-
span: {
|
|
345
|
-
start: number;
|
|
346
|
-
end: number;
|
|
347
|
-
};
|
|
348
|
-
file: number;
|
|
349
|
-
};
|
|
350
|
-
}[];
|
|
351
|
-
};
|
|
352
|
-
acir_locations: Record<string, number>;
|
|
353
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
354
|
-
};
|
|
355
|
-
files: Record<string, {
|
|
356
|
-
source: string;
|
|
357
|
-
path: string;
|
|
358
|
-
}>;
|
|
359
|
-
} | undefined;
|
|
360
|
-
}, {
|
|
361
|
-
bytecode?: any;
|
|
362
|
-
verificationKey?: string | undefined;
|
|
363
|
-
debugSymbols: string;
|
|
364
|
-
debug?: {
|
|
365
|
-
debugSymbols: {
|
|
366
|
-
location_tree: {
|
|
367
|
-
locations: {
|
|
368
|
-
parent: number | null;
|
|
369
|
-
value: {
|
|
370
|
-
span: {
|
|
371
|
-
start: number;
|
|
372
|
-
end: number;
|
|
373
|
-
};
|
|
374
|
-
file: number;
|
|
375
|
-
};
|
|
376
|
-
}[];
|
|
377
|
-
};
|
|
378
|
-
acir_locations: Record<string, number>;
|
|
379
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
380
|
-
};
|
|
381
|
-
files: Record<string, {
|
|
382
|
-
source: string;
|
|
383
|
-
path: string;
|
|
384
|
-
}>;
|
|
385
|
-
} | undefined;
|
|
386
|
-
}>>, "many">;
|
|
387
|
-
nonDispatchPublicFunctions: z.ZodArray<z.ZodObject<{
|
|
388
|
-
name: z.ZodString;
|
|
389
|
-
functionType: z.ZodNativeEnum<typeof import("../abi/abi.js").FunctionType>;
|
|
390
|
-
isOnlySelf: z.ZodBoolean;
|
|
391
|
-
isStatic: z.ZodBoolean;
|
|
392
|
-
isInitializer: z.ZodBoolean;
|
|
393
|
-
parameters: z.ZodArray<z.ZodObject<{
|
|
394
|
-
name: z.ZodString;
|
|
395
|
-
type: z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>;
|
|
396
|
-
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
397
|
-
}, "strip", z.ZodTypeAny, {
|
|
398
|
-
name: string;
|
|
399
|
-
type: import("../abi/abi.js").AbiType;
|
|
400
|
-
visibility: "databus" | "private" | "public";
|
|
401
|
-
}, {
|
|
402
|
-
name: string;
|
|
403
|
-
type: import("../abi/abi.js").AbiType;
|
|
404
|
-
visibility: "databus" | "private" | "public";
|
|
405
|
-
}>, "many">;
|
|
406
|
-
returnTypes: z.ZodArray<z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>, "many">;
|
|
407
|
-
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
408
|
-
error_kind: z.ZodLiteral<"string">;
|
|
409
|
-
string: z.ZodString;
|
|
410
|
-
}, "strip", z.ZodTypeAny, {
|
|
411
|
-
error_kind: "string";
|
|
412
|
-
string: string;
|
|
413
|
-
}, {
|
|
414
|
-
error_kind: "string";
|
|
415
|
-
string: string;
|
|
416
|
-
}>, z.ZodObject<{
|
|
417
|
-
error_kind: z.ZodLiteral<"fmtstring">;
|
|
418
|
-
length: z.ZodNumber;
|
|
419
|
-
item_types: z.ZodArray<z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>, "many">;
|
|
420
|
-
}, "strip", z.ZodTypeAny, {
|
|
421
|
-
error_kind: "fmtstring";
|
|
422
|
-
length: number;
|
|
423
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
424
|
-
}, {
|
|
425
|
-
error_kind: "fmtstring";
|
|
426
|
-
length: number;
|
|
427
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
428
|
-
}>, z.ZodIntersection<z.ZodObject<{
|
|
429
|
-
error_kind: z.ZodLiteral<"custom">;
|
|
430
|
-
}, "strip", z.ZodTypeAny, {
|
|
431
|
-
error_kind: "custom";
|
|
432
|
-
}, {
|
|
433
|
-
error_kind: "custom";
|
|
434
|
-
}>, z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>>]>>>;
|
|
435
|
-
}, "strip", z.ZodTypeAny, {
|
|
436
|
-
name: string;
|
|
437
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
438
|
-
isOnlySelf: boolean;
|
|
439
|
-
isStatic: boolean;
|
|
440
|
-
isInitializer: boolean;
|
|
441
|
-
parameters: {
|
|
442
|
-
name: string;
|
|
443
|
-
type: import("../abi/abi.js").AbiType;
|
|
444
|
-
visibility: "databus" | "private" | "public";
|
|
445
|
-
}[];
|
|
446
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
447
|
-
errorTypes: Record<string, {
|
|
448
|
-
error_kind: "string";
|
|
449
|
-
string: string;
|
|
450
|
-
} | {
|
|
451
|
-
error_kind: "fmtstring";
|
|
452
|
-
length: number;
|
|
453
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
454
|
-
} | ({
|
|
455
|
-
error_kind: "custom";
|
|
456
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
457
|
-
}, {
|
|
458
|
-
name: string;
|
|
459
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
460
|
-
isOnlySelf: boolean;
|
|
461
|
-
isStatic: boolean;
|
|
462
|
-
isInitializer: boolean;
|
|
463
|
-
parameters: {
|
|
464
|
-
name: string;
|
|
465
|
-
type: import("../abi/abi.js").AbiType;
|
|
466
|
-
visibility: "databus" | "private" | "public";
|
|
467
|
-
}[];
|
|
468
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
469
|
-
errorTypes: Record<string, {
|
|
470
|
-
error_kind: "string";
|
|
471
|
-
string: string;
|
|
472
|
-
} | {
|
|
473
|
-
error_kind: "fmtstring";
|
|
474
|
-
length: number;
|
|
475
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
476
|
-
} | ({
|
|
477
|
-
error_kind: "custom";
|
|
478
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
479
|
-
}>, "many">;
|
|
480
|
-
outputs: z.ZodObject<{
|
|
481
|
-
structs: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("../abi/abi.js").AbiType, z.ZodTypeDef, import("../abi/abi.js").AbiType>, "many">>, Record<string, import("../abi/abi.js").AbiType[]>, Record<string, import("../abi/abi.js").AbiType[]>>;
|
|
482
|
-
globals: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("../abi/abi.js").AbiValue, z.ZodTypeDef, import("../abi/abi.js").AbiValue>, "many">>;
|
|
483
|
-
}, "strip", z.ZodTypeAny, {
|
|
484
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
485
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
486
|
-
}, {
|
|
487
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
488
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
489
|
-
}>;
|
|
490
|
-
storageLayout: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
491
|
-
slot: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
492
|
-
}, "strip", z.ZodTypeAny, {
|
|
493
|
-
slot: import("@aztec/foundation/schemas").Fr;
|
|
494
|
-
}, {
|
|
495
|
-
slot: string;
|
|
496
|
-
}>>;
|
|
497
|
-
fileMap: z.ZodRecord<z.ZodNumber, z.ZodObject<{
|
|
498
|
-
source: z.ZodString;
|
|
499
|
-
path: z.ZodString;
|
|
500
|
-
}, "strip", z.ZodTypeAny, {
|
|
501
|
-
source: string;
|
|
502
|
-
path: string;
|
|
503
|
-
}, {
|
|
504
|
-
source: string;
|
|
505
|
-
path: string;
|
|
506
|
-
}>>;
|
|
507
|
-
}, "strip", z.ZodTypeAny, {
|
|
508
|
-
name: string;
|
|
509
|
-
functions: ({
|
|
510
|
-
name: string;
|
|
511
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
512
|
-
isOnlySelf: boolean;
|
|
513
|
-
isStatic: boolean;
|
|
514
|
-
isInitializer: boolean;
|
|
515
|
-
parameters: {
|
|
516
|
-
name: string;
|
|
517
|
-
type: import("../abi/abi.js").AbiType;
|
|
518
|
-
visibility: "databus" | "private" | "public";
|
|
519
|
-
}[];
|
|
520
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
521
|
-
errorTypes: Record<string, {
|
|
522
|
-
error_kind: "string";
|
|
523
|
-
string: string;
|
|
524
|
-
} | {
|
|
525
|
-
error_kind: "fmtstring";
|
|
526
|
-
length: number;
|
|
527
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
528
|
-
} | ({
|
|
529
|
-
error_kind: "custom";
|
|
530
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
531
|
-
} & {
|
|
532
|
-
bytecode: Buffer<ArrayBufferLike>;
|
|
533
|
-
verificationKey?: string | undefined;
|
|
534
|
-
debugSymbols: string;
|
|
535
|
-
debug?: {
|
|
536
|
-
debugSymbols: {
|
|
537
|
-
location_tree: {
|
|
538
|
-
locations: {
|
|
539
|
-
parent: number | null;
|
|
540
|
-
value: {
|
|
541
|
-
span: {
|
|
542
|
-
start: number;
|
|
543
|
-
end: number;
|
|
544
|
-
};
|
|
545
|
-
file: number;
|
|
546
|
-
};
|
|
547
|
-
}[];
|
|
548
|
-
};
|
|
549
|
-
acir_locations: Record<string, number>;
|
|
550
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
551
|
-
};
|
|
552
|
-
files: Record<string, {
|
|
553
|
-
source: string;
|
|
554
|
-
path: string;
|
|
555
|
-
}>;
|
|
556
|
-
} | undefined;
|
|
557
|
-
})[];
|
|
558
|
-
nonDispatchPublicFunctions: {
|
|
559
|
-
name: string;
|
|
560
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
561
|
-
isOnlySelf: boolean;
|
|
562
|
-
isStatic: boolean;
|
|
563
|
-
isInitializer: boolean;
|
|
564
|
-
parameters: {
|
|
565
|
-
name: string;
|
|
566
|
-
type: import("../abi/abi.js").AbiType;
|
|
567
|
-
visibility: "databus" | "private" | "public";
|
|
568
|
-
}[];
|
|
569
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
570
|
-
errorTypes: Record<string, {
|
|
571
|
-
error_kind: "string";
|
|
572
|
-
string: string;
|
|
573
|
-
} | {
|
|
574
|
-
error_kind: "fmtstring";
|
|
575
|
-
length: number;
|
|
576
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
577
|
-
} | ({
|
|
578
|
-
error_kind: "custom";
|
|
579
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
580
|
-
}[];
|
|
581
|
-
outputs: {
|
|
582
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
583
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
584
|
-
};
|
|
585
|
-
storageLayout: Record<string, {
|
|
586
|
-
slot: import("@aztec/foundation/schemas").Fr;
|
|
587
|
-
}>;
|
|
588
|
-
fileMap: Record<number, {
|
|
589
|
-
source: string;
|
|
590
|
-
path: string;
|
|
591
|
-
}>;
|
|
592
|
-
}, {
|
|
593
|
-
name: string;
|
|
594
|
-
functions: ({
|
|
595
|
-
name: string;
|
|
596
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
597
|
-
isOnlySelf: boolean;
|
|
598
|
-
isStatic: boolean;
|
|
599
|
-
isInitializer: boolean;
|
|
600
|
-
parameters: {
|
|
601
|
-
name: string;
|
|
602
|
-
type: import("../abi/abi.js").AbiType;
|
|
603
|
-
visibility: "databus" | "private" | "public";
|
|
604
|
-
}[];
|
|
605
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
606
|
-
errorTypes: Record<string, {
|
|
607
|
-
error_kind: "string";
|
|
608
|
-
string: string;
|
|
609
|
-
} | {
|
|
610
|
-
error_kind: "fmtstring";
|
|
611
|
-
length: number;
|
|
612
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
613
|
-
} | ({
|
|
614
|
-
error_kind: "custom";
|
|
615
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
616
|
-
} & {
|
|
617
|
-
bytecode?: any;
|
|
618
|
-
verificationKey?: string | undefined;
|
|
619
|
-
debugSymbols: string;
|
|
620
|
-
debug?: {
|
|
621
|
-
debugSymbols: {
|
|
622
|
-
location_tree: {
|
|
623
|
-
locations: {
|
|
624
|
-
parent: number | null;
|
|
625
|
-
value: {
|
|
626
|
-
span: {
|
|
627
|
-
start: number;
|
|
628
|
-
end: number;
|
|
629
|
-
};
|
|
630
|
-
file: number;
|
|
631
|
-
};
|
|
632
|
-
}[];
|
|
633
|
-
};
|
|
634
|
-
acir_locations: Record<string, number>;
|
|
635
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
636
|
-
};
|
|
637
|
-
files: Record<string, {
|
|
638
|
-
source: string;
|
|
639
|
-
path: string;
|
|
640
|
-
}>;
|
|
641
|
-
} | undefined;
|
|
642
|
-
})[];
|
|
643
|
-
nonDispatchPublicFunctions: {
|
|
644
|
-
name: string;
|
|
645
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
646
|
-
isOnlySelf: boolean;
|
|
647
|
-
isStatic: boolean;
|
|
648
|
-
isInitializer: boolean;
|
|
649
|
-
parameters: {
|
|
650
|
-
name: string;
|
|
651
|
-
type: import("../abi/abi.js").AbiType;
|
|
652
|
-
visibility: "databus" | "private" | "public";
|
|
653
|
-
}[];
|
|
654
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
655
|
-
errorTypes: Record<string, {
|
|
656
|
-
error_kind: "string";
|
|
657
|
-
string: string;
|
|
658
|
-
} | {
|
|
659
|
-
error_kind: "fmtstring";
|
|
660
|
-
length: number;
|
|
661
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
662
|
-
} | ({
|
|
663
|
-
error_kind: "custom";
|
|
664
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
665
|
-
}[];
|
|
666
|
-
outputs: {
|
|
667
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
668
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
669
|
-
};
|
|
670
|
-
storageLayout: Record<string, {
|
|
671
|
-
slot: string;
|
|
672
|
-
}>;
|
|
673
|
-
fileMap: Record<number, {
|
|
674
|
-
source: string;
|
|
675
|
-
path: string;
|
|
676
|
-
}>;
|
|
677
|
-
}>;
|
|
678
|
-
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
};
|
|
77
|
+
}> | undefined, Record<string, {
|
|
679
78
|
instance: {
|
|
680
|
-
version:
|
|
79
|
+
version: 2;
|
|
681
80
|
salt: import("@aztec/foundation/schemas").Fr;
|
|
682
81
|
deployer: import("../aztec-address/index.js").AztecAddress;
|
|
683
82
|
currentContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
684
83
|
originalContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
685
84
|
initializationHash: import("@aztec/foundation/schemas").Fr;
|
|
85
|
+
immutablesHash: import("@aztec/foundation/schemas").Fr;
|
|
686
86
|
publicKeys: import("../keys/public_keys.js").PublicKeys;
|
|
687
87
|
} & {
|
|
688
88
|
address: import("../aztec-address/index.js").AztecAddress;
|
|
689
89
|
};
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
parameters: {
|
|
699
|
-
name: string;
|
|
700
|
-
type: import("../abi/abi.js").AbiType;
|
|
701
|
-
visibility: "databus" | "private" | "public";
|
|
702
|
-
}[];
|
|
703
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
704
|
-
errorTypes: Record<string, {
|
|
705
|
-
error_kind: "string";
|
|
706
|
-
string: string;
|
|
707
|
-
} | {
|
|
708
|
-
error_kind: "fmtstring";
|
|
709
|
-
length: number;
|
|
710
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
711
|
-
} | ({
|
|
712
|
-
error_kind: "custom";
|
|
713
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
714
|
-
} & {
|
|
715
|
-
bytecode: Buffer<ArrayBufferLike>;
|
|
716
|
-
verificationKey?: string | undefined;
|
|
717
|
-
debugSymbols: string;
|
|
718
|
-
debug?: {
|
|
719
|
-
debugSymbols: {
|
|
720
|
-
location_tree: {
|
|
721
|
-
locations: {
|
|
722
|
-
parent: number | null;
|
|
723
|
-
value: {
|
|
724
|
-
span: {
|
|
725
|
-
start: number;
|
|
726
|
-
end: number;
|
|
727
|
-
};
|
|
728
|
-
file: number;
|
|
729
|
-
};
|
|
730
|
-
}[];
|
|
731
|
-
};
|
|
732
|
-
acir_locations: Record<string, number>;
|
|
733
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
734
|
-
};
|
|
735
|
-
files: Record<string, {
|
|
736
|
-
source: string;
|
|
737
|
-
path: string;
|
|
738
|
-
}>;
|
|
739
|
-
} | undefined;
|
|
740
|
-
})[];
|
|
741
|
-
nonDispatchPublicFunctions: {
|
|
742
|
-
name: string;
|
|
743
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
744
|
-
isOnlySelf: boolean;
|
|
745
|
-
isStatic: boolean;
|
|
746
|
-
isInitializer: boolean;
|
|
747
|
-
parameters: {
|
|
748
|
-
name: string;
|
|
749
|
-
type: import("../abi/abi.js").AbiType;
|
|
750
|
-
visibility: "databus" | "private" | "public";
|
|
751
|
-
}[];
|
|
752
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
753
|
-
errorTypes: Record<string, {
|
|
754
|
-
error_kind: "string";
|
|
755
|
-
string: string;
|
|
756
|
-
} | {
|
|
757
|
-
error_kind: "fmtstring";
|
|
758
|
-
length: number;
|
|
759
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
760
|
-
} | ({
|
|
761
|
-
error_kind: "custom";
|
|
762
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
763
|
-
}[];
|
|
764
|
-
outputs: {
|
|
765
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
766
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
767
|
-
};
|
|
768
|
-
storageLayout: Record<string, {
|
|
769
|
-
slot: import("@aztec/foundation/schemas").Fr;
|
|
770
|
-
}>;
|
|
771
|
-
fileMap: Record<number, {
|
|
772
|
-
source: string;
|
|
773
|
-
path: string;
|
|
774
|
-
}>;
|
|
775
|
-
};
|
|
776
|
-
}, {
|
|
777
|
-
instance: {
|
|
778
|
-
version: 1;
|
|
779
|
-
salt?: any;
|
|
780
|
-
deployer?: any;
|
|
781
|
-
currentContractClassId?: any;
|
|
782
|
-
originalContractClassId?: any;
|
|
783
|
-
initializationHash?: any;
|
|
784
|
-
publicKeys: {
|
|
785
|
-
masterNullifierPublicKey: string;
|
|
786
|
-
masterIncomingViewingPublicKey: string;
|
|
787
|
-
masterOutgoingViewingPublicKey: string;
|
|
788
|
-
masterTaggingPublicKey: string;
|
|
789
|
-
};
|
|
790
|
-
} & {
|
|
791
|
-
address?: any;
|
|
792
|
-
};
|
|
793
|
-
artifact: {
|
|
794
|
-
name: string;
|
|
795
|
-
functions: ({
|
|
796
|
-
name: string;
|
|
797
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
798
|
-
isOnlySelf: boolean;
|
|
799
|
-
isStatic: boolean;
|
|
800
|
-
isInitializer: boolean;
|
|
801
|
-
parameters: {
|
|
802
|
-
name: string;
|
|
803
|
-
type: import("../abi/abi.js").AbiType;
|
|
804
|
-
visibility: "databus" | "private" | "public";
|
|
805
|
-
}[];
|
|
806
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
807
|
-
errorTypes: Record<string, {
|
|
808
|
-
error_kind: "string";
|
|
809
|
-
string: string;
|
|
810
|
-
} | {
|
|
811
|
-
error_kind: "fmtstring";
|
|
812
|
-
length: number;
|
|
813
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
814
|
-
} | ({
|
|
815
|
-
error_kind: "custom";
|
|
816
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
817
|
-
} & {
|
|
818
|
-
bytecode?: any;
|
|
819
|
-
verificationKey?: string | undefined;
|
|
820
|
-
debugSymbols: string;
|
|
821
|
-
debug?: {
|
|
822
|
-
debugSymbols: {
|
|
823
|
-
location_tree: {
|
|
824
|
-
locations: {
|
|
825
|
-
parent: number | null;
|
|
826
|
-
value: {
|
|
827
|
-
span: {
|
|
828
|
-
start: number;
|
|
829
|
-
end: number;
|
|
830
|
-
};
|
|
831
|
-
file: number;
|
|
832
|
-
};
|
|
833
|
-
}[];
|
|
834
|
-
};
|
|
835
|
-
acir_locations: Record<string, number>;
|
|
836
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
837
|
-
};
|
|
838
|
-
files: Record<string, {
|
|
839
|
-
source: string;
|
|
840
|
-
path: string;
|
|
841
|
-
}>;
|
|
842
|
-
} | undefined;
|
|
843
|
-
})[];
|
|
844
|
-
nonDispatchPublicFunctions: {
|
|
845
|
-
name: string;
|
|
846
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
847
|
-
isOnlySelf: boolean;
|
|
848
|
-
isStatic: boolean;
|
|
849
|
-
isInitializer: boolean;
|
|
850
|
-
parameters: {
|
|
851
|
-
name: string;
|
|
852
|
-
type: import("../abi/abi.js").AbiType;
|
|
853
|
-
visibility: "databus" | "private" | "public";
|
|
854
|
-
}[];
|
|
855
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
856
|
-
errorTypes: Record<string, {
|
|
857
|
-
error_kind: "string";
|
|
858
|
-
string: string;
|
|
859
|
-
} | {
|
|
860
|
-
error_kind: "fmtstring";
|
|
861
|
-
length: number;
|
|
862
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
863
|
-
} | ({
|
|
864
|
-
error_kind: "custom";
|
|
865
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
866
|
-
}[];
|
|
867
|
-
outputs: {
|
|
868
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
869
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
870
|
-
};
|
|
871
|
-
storageLayout: Record<string, {
|
|
872
|
-
slot: string;
|
|
873
|
-
}>;
|
|
874
|
-
fileMap: Record<number, {
|
|
875
|
-
source: string;
|
|
876
|
-
path: string;
|
|
877
|
-
}>;
|
|
878
|
-
};
|
|
879
|
-
}>>>;
|
|
880
|
-
}, "strip", z.ZodTypeAny, {
|
|
881
|
-
contracts?: Record<string, {
|
|
90
|
+
}> | null | undefined>>;
|
|
91
|
+
}, z.core.$strip>, z.ZodTransform<SimulationOverrides, {
|
|
92
|
+
publicStorage: {
|
|
93
|
+
contract: import("../aztec-address/index.js").AztecAddress;
|
|
94
|
+
slot: import("@aztec/foundation/schemas").Fr;
|
|
95
|
+
value: import("@aztec/foundation/schemas").Fr;
|
|
96
|
+
}[] | undefined;
|
|
97
|
+
contracts: Record<string, {
|
|
882
98
|
instance: {
|
|
883
|
-
version:
|
|
99
|
+
version: 2;
|
|
884
100
|
salt: import("@aztec/foundation/schemas").Fr;
|
|
885
101
|
deployer: import("../aztec-address/index.js").AztecAddress;
|
|
886
102
|
currentContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
887
103
|
originalContractClassId: import("@aztec/foundation/schemas").Fr;
|
|
888
104
|
initializationHash: import("@aztec/foundation/schemas").Fr;
|
|
105
|
+
immutablesHash: import("@aztec/foundation/schemas").Fr;
|
|
889
106
|
publicKeys: import("../keys/public_keys.js").PublicKeys;
|
|
890
107
|
} & {
|
|
891
108
|
address: import("../aztec-address/index.js").AztecAddress;
|
|
892
109
|
};
|
|
893
|
-
artifact: {
|
|
894
|
-
name: string;
|
|
895
|
-
functions: ({
|
|
896
|
-
name: string;
|
|
897
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
898
|
-
isOnlySelf: boolean;
|
|
899
|
-
isStatic: boolean;
|
|
900
|
-
isInitializer: boolean;
|
|
901
|
-
parameters: {
|
|
902
|
-
name: string;
|
|
903
|
-
type: import("../abi/abi.js").AbiType;
|
|
904
|
-
visibility: "databus" | "private" | "public";
|
|
905
|
-
}[];
|
|
906
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
907
|
-
errorTypes: Record<string, {
|
|
908
|
-
error_kind: "string";
|
|
909
|
-
string: string;
|
|
910
|
-
} | {
|
|
911
|
-
error_kind: "fmtstring";
|
|
912
|
-
length: number;
|
|
913
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
914
|
-
} | ({
|
|
915
|
-
error_kind: "custom";
|
|
916
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
917
|
-
} & {
|
|
918
|
-
bytecode: Buffer<ArrayBufferLike>;
|
|
919
|
-
verificationKey?: string | undefined;
|
|
920
|
-
debugSymbols: string;
|
|
921
|
-
debug?: {
|
|
922
|
-
debugSymbols: {
|
|
923
|
-
location_tree: {
|
|
924
|
-
locations: {
|
|
925
|
-
parent: number | null;
|
|
926
|
-
value: {
|
|
927
|
-
span: {
|
|
928
|
-
start: number;
|
|
929
|
-
end: number;
|
|
930
|
-
};
|
|
931
|
-
file: number;
|
|
932
|
-
};
|
|
933
|
-
}[];
|
|
934
|
-
};
|
|
935
|
-
acir_locations: Record<string, number>;
|
|
936
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
937
|
-
};
|
|
938
|
-
files: Record<string, {
|
|
939
|
-
source: string;
|
|
940
|
-
path: string;
|
|
941
|
-
}>;
|
|
942
|
-
} | undefined;
|
|
943
|
-
})[];
|
|
944
|
-
nonDispatchPublicFunctions: {
|
|
945
|
-
name: string;
|
|
946
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
947
|
-
isOnlySelf: boolean;
|
|
948
|
-
isStatic: boolean;
|
|
949
|
-
isInitializer: boolean;
|
|
950
|
-
parameters: {
|
|
951
|
-
name: string;
|
|
952
|
-
type: import("../abi/abi.js").AbiType;
|
|
953
|
-
visibility: "databus" | "private" | "public";
|
|
954
|
-
}[];
|
|
955
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
956
|
-
errorTypes: Record<string, {
|
|
957
|
-
error_kind: "string";
|
|
958
|
-
string: string;
|
|
959
|
-
} | {
|
|
960
|
-
error_kind: "fmtstring";
|
|
961
|
-
length: number;
|
|
962
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
963
|
-
} | ({
|
|
964
|
-
error_kind: "custom";
|
|
965
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
966
|
-
}[];
|
|
967
|
-
outputs: {
|
|
968
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
969
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
970
|
-
};
|
|
971
|
-
storageLayout: Record<string, {
|
|
972
|
-
slot: import("@aztec/foundation/schemas").Fr;
|
|
973
|
-
}>;
|
|
974
|
-
fileMap: Record<number, {
|
|
975
|
-
source: string;
|
|
976
|
-
path: string;
|
|
977
|
-
}>;
|
|
978
|
-
};
|
|
979
|
-
}> | undefined;
|
|
980
|
-
}, {
|
|
981
|
-
contracts?: Record<string, {
|
|
982
|
-
instance: {
|
|
983
|
-
version: 1;
|
|
984
|
-
salt?: any;
|
|
985
|
-
deployer?: any;
|
|
986
|
-
currentContractClassId?: any;
|
|
987
|
-
originalContractClassId?: any;
|
|
988
|
-
initializationHash?: any;
|
|
989
|
-
publicKeys: {
|
|
990
|
-
masterNullifierPublicKey: string;
|
|
991
|
-
masterIncomingViewingPublicKey: string;
|
|
992
|
-
masterOutgoingViewingPublicKey: string;
|
|
993
|
-
masterTaggingPublicKey: string;
|
|
994
|
-
};
|
|
995
|
-
} & {
|
|
996
|
-
address?: any;
|
|
997
|
-
};
|
|
998
|
-
artifact: {
|
|
999
|
-
name: string;
|
|
1000
|
-
functions: ({
|
|
1001
|
-
name: string;
|
|
1002
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
1003
|
-
isOnlySelf: boolean;
|
|
1004
|
-
isStatic: boolean;
|
|
1005
|
-
isInitializer: boolean;
|
|
1006
|
-
parameters: {
|
|
1007
|
-
name: string;
|
|
1008
|
-
type: import("../abi/abi.js").AbiType;
|
|
1009
|
-
visibility: "databus" | "private" | "public";
|
|
1010
|
-
}[];
|
|
1011
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
1012
|
-
errorTypes: Record<string, {
|
|
1013
|
-
error_kind: "string";
|
|
1014
|
-
string: string;
|
|
1015
|
-
} | {
|
|
1016
|
-
error_kind: "fmtstring";
|
|
1017
|
-
length: number;
|
|
1018
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
1019
|
-
} | ({
|
|
1020
|
-
error_kind: "custom";
|
|
1021
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
1022
|
-
} & {
|
|
1023
|
-
bytecode?: any;
|
|
1024
|
-
verificationKey?: string | undefined;
|
|
1025
|
-
debugSymbols: string;
|
|
1026
|
-
debug?: {
|
|
1027
|
-
debugSymbols: {
|
|
1028
|
-
location_tree: {
|
|
1029
|
-
locations: {
|
|
1030
|
-
parent: number | null;
|
|
1031
|
-
value: {
|
|
1032
|
-
span: {
|
|
1033
|
-
start: number;
|
|
1034
|
-
end: number;
|
|
1035
|
-
};
|
|
1036
|
-
file: number;
|
|
1037
|
-
};
|
|
1038
|
-
}[];
|
|
1039
|
-
};
|
|
1040
|
-
acir_locations: Record<string, number>;
|
|
1041
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
1042
|
-
};
|
|
1043
|
-
files: Record<string, {
|
|
1044
|
-
source: string;
|
|
1045
|
-
path: string;
|
|
1046
|
-
}>;
|
|
1047
|
-
} | undefined;
|
|
1048
|
-
})[];
|
|
1049
|
-
nonDispatchPublicFunctions: {
|
|
1050
|
-
name: string;
|
|
1051
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
1052
|
-
isOnlySelf: boolean;
|
|
1053
|
-
isStatic: boolean;
|
|
1054
|
-
isInitializer: boolean;
|
|
1055
|
-
parameters: {
|
|
1056
|
-
name: string;
|
|
1057
|
-
type: import("../abi/abi.js").AbiType;
|
|
1058
|
-
visibility: "databus" | "private" | "public";
|
|
1059
|
-
}[];
|
|
1060
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
1061
|
-
errorTypes: Record<string, {
|
|
1062
|
-
error_kind: "string";
|
|
1063
|
-
string: string;
|
|
1064
|
-
} | {
|
|
1065
|
-
error_kind: "fmtstring";
|
|
1066
|
-
length: number;
|
|
1067
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
1068
|
-
} | ({
|
|
1069
|
-
error_kind: "custom";
|
|
1070
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
1071
|
-
}[];
|
|
1072
|
-
outputs: {
|
|
1073
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
1074
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
1075
|
-
};
|
|
1076
|
-
storageLayout: Record<string, {
|
|
1077
|
-
slot: string;
|
|
1078
|
-
}>;
|
|
1079
|
-
fileMap: Record<number, {
|
|
1080
|
-
source: string;
|
|
1081
|
-
path: string;
|
|
1082
|
-
}>;
|
|
1083
|
-
};
|
|
1084
|
-
}> | undefined;
|
|
1085
|
-
}>, SimulationOverrides, {
|
|
1086
|
-
contracts?: Record<string, {
|
|
1087
|
-
instance: {
|
|
1088
|
-
version: 1;
|
|
1089
|
-
salt?: any;
|
|
1090
|
-
deployer?: any;
|
|
1091
|
-
currentContractClassId?: any;
|
|
1092
|
-
originalContractClassId?: any;
|
|
1093
|
-
initializationHash?: any;
|
|
1094
|
-
publicKeys: {
|
|
1095
|
-
masterNullifierPublicKey: string;
|
|
1096
|
-
masterIncomingViewingPublicKey: string;
|
|
1097
|
-
masterOutgoingViewingPublicKey: string;
|
|
1098
|
-
masterTaggingPublicKey: string;
|
|
1099
|
-
};
|
|
1100
|
-
} & {
|
|
1101
|
-
address?: any;
|
|
1102
|
-
};
|
|
1103
|
-
artifact: {
|
|
1104
|
-
name: string;
|
|
1105
|
-
functions: ({
|
|
1106
|
-
name: string;
|
|
1107
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
1108
|
-
isOnlySelf: boolean;
|
|
1109
|
-
isStatic: boolean;
|
|
1110
|
-
isInitializer: boolean;
|
|
1111
|
-
parameters: {
|
|
1112
|
-
name: string;
|
|
1113
|
-
type: import("../abi/abi.js").AbiType;
|
|
1114
|
-
visibility: "databus" | "private" | "public";
|
|
1115
|
-
}[];
|
|
1116
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
1117
|
-
errorTypes: Record<string, {
|
|
1118
|
-
error_kind: "string";
|
|
1119
|
-
string: string;
|
|
1120
|
-
} | {
|
|
1121
|
-
error_kind: "fmtstring";
|
|
1122
|
-
length: number;
|
|
1123
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
1124
|
-
} | ({
|
|
1125
|
-
error_kind: "custom";
|
|
1126
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
1127
|
-
} & {
|
|
1128
|
-
bytecode?: any;
|
|
1129
|
-
verificationKey?: string | undefined;
|
|
1130
|
-
debugSymbols: string;
|
|
1131
|
-
debug?: {
|
|
1132
|
-
debugSymbols: {
|
|
1133
|
-
location_tree: {
|
|
1134
|
-
locations: {
|
|
1135
|
-
parent: number | null;
|
|
1136
|
-
value: {
|
|
1137
|
-
span: {
|
|
1138
|
-
start: number;
|
|
1139
|
-
end: number;
|
|
1140
|
-
};
|
|
1141
|
-
file: number;
|
|
1142
|
-
};
|
|
1143
|
-
}[];
|
|
1144
|
-
};
|
|
1145
|
-
acir_locations: Record<string, number>;
|
|
1146
|
-
brillig_locations: Record<string, Record<string, number>>;
|
|
1147
|
-
};
|
|
1148
|
-
files: Record<string, {
|
|
1149
|
-
source: string;
|
|
1150
|
-
path: string;
|
|
1151
|
-
}>;
|
|
1152
|
-
} | undefined;
|
|
1153
|
-
})[];
|
|
1154
|
-
nonDispatchPublicFunctions: {
|
|
1155
|
-
name: string;
|
|
1156
|
-
functionType: import("../abi/abi.js").FunctionType;
|
|
1157
|
-
isOnlySelf: boolean;
|
|
1158
|
-
isStatic: boolean;
|
|
1159
|
-
isInitializer: boolean;
|
|
1160
|
-
parameters: {
|
|
1161
|
-
name: string;
|
|
1162
|
-
type: import("../abi/abi.js").AbiType;
|
|
1163
|
-
visibility: "databus" | "private" | "public";
|
|
1164
|
-
}[];
|
|
1165
|
-
returnTypes: import("../abi/abi.js").AbiType[];
|
|
1166
|
-
errorTypes: Record<string, {
|
|
1167
|
-
error_kind: "string";
|
|
1168
|
-
string: string;
|
|
1169
|
-
} | {
|
|
1170
|
-
error_kind: "fmtstring";
|
|
1171
|
-
length: number;
|
|
1172
|
-
item_types: import("../abi/abi.js").AbiType[];
|
|
1173
|
-
} | ({
|
|
1174
|
-
error_kind: "custom";
|
|
1175
|
-
} & import("../abi/abi.js").AbiType) | undefined>;
|
|
1176
|
-
}[];
|
|
1177
|
-
outputs: {
|
|
1178
|
-
structs: Record<string, import("../abi/abi.js").AbiType[]>;
|
|
1179
|
-
globals: Record<string, import("../abi/abi.js").AbiValue[]>;
|
|
1180
|
-
};
|
|
1181
|
-
storageLayout: Record<string, {
|
|
1182
|
-
slot: string;
|
|
1183
|
-
}>;
|
|
1184
|
-
fileMap: Record<number, {
|
|
1185
|
-
source: string;
|
|
1186
|
-
path: string;
|
|
1187
|
-
}>;
|
|
1188
|
-
};
|
|
1189
110
|
}> | undefined;
|
|
1190
|
-
}
|
|
111
|
+
}>>;
|
|
1191
112
|
}
|
|
1192
113
|
export declare class PrivateSimulationResult {
|
|
1193
114
|
privateExecutionResult: PrivateExecutionResult;
|
|
@@ -1214,10 +135,10 @@ export declare class TxSimulationResult {
|
|
|
1214
135
|
getPublicReturnValues(): NestedProcessReturnValues[];
|
|
1215
136
|
}
|
|
1216
137
|
/**
|
|
1217
|
-
* Recursively
|
|
138
|
+
* Recursively accumulate the return values of a call result and its nested executions,
|
|
1218
139
|
* so they can be retrieved in order.
|
|
1219
140
|
* @param executionResult
|
|
1220
141
|
* @returns
|
|
1221
142
|
*/
|
|
1222
143
|
export declare function accumulatePrivateReturnValues(executionResult: PrivateExecutionResult): NestedProcessReturnValues;
|
|
1223
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
144
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2ltdWxhdGVkX3R4LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHgvc2ltdWxhdGVkX3R4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxLQUFLLE1BQU0sRUFBWSxNQUFNLDJCQUEyQixDQUFDO0FBQ2xFLE9BQU8sS0FBSyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBRXhELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssMkJBQTJCLEVBRWpDLE1BQU0sNkNBQTZDLENBQUM7QUFFckQsT0FBTyxLQUFLLEVBQUUsT0FBTyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDbEQsT0FBTyxFQUFFLEtBQUsscUJBQXFCLEVBQStCLE1BQU0sMENBQTBDLENBQUM7QUFDbkgsT0FBTyxFQUFFLG9DQUFvQyxFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFFOUcsT0FBTyxLQUFLLEVBQUUsY0FBYyxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDM0QsT0FBTyxFQUVMLHNCQUFzQixFQUd2QixNQUFNLCtCQUErQixDQUFDO0FBQ3ZDLE9BQU8sRUFBRSxLQUFLLGVBQWUsRUFBeUIsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3RSxPQUFPLEVBQUUseUJBQXlCLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRyxPQUFPLEVBQUUsRUFBRSxFQUFFLE1BQU0sU0FBUyxDQUFDO0FBUzdCLE1BQU0sTUFBTSxpQkFBaUIsR0FBRyxNQUFNLENBQUMsTUFBTSxFQUErQjtJQUFFLFFBQVEsRUFBRSwyQkFBMkIsQ0FBQTtDQUFFLENBQUMsQ0FBQztBQVF2SCxxQkFBYSxtQkFBbUI7SUFDdkIsYUFBYSxDQUFDLEVBQUUscUJBQXFCLEVBQUUsQ0FBQztJQUN4QyxTQUFTLENBQUMsRUFBRSxpQkFBaUIsQ0FBQztJQUVyQyxZQUFZLElBQUksR0FBRTtRQUFFLGFBQWEsQ0FBQyxFQUFFLHFCQUFxQixFQUFFLENBQUM7UUFBQyxTQUFTLENBQUMsRUFBRSxpQkFBaUIsQ0FBQTtLQUFPLEVBR2hHO0lBRUQsTUFBTSxLQUFLLE1BQU07Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7UUFPaEI7Q0FDRjtBQUVELHFCQUFhLHVCQUF1QjtJQUV6QixzQkFBc0IsRUFBRSxzQkFBc0I7SUFDOUMsWUFBWSxFQUFFLG9DQUFvQztJQUYzRCxZQUNTLHNCQUFzQixFQUFFLHNCQUFzQixFQUM5QyxZQUFZLEVBQUUsb0NBQW9DLEVBQ3ZEO0lBRUosc0JBQXNCLDhCQUVyQjtJQUVLLGFBQWEsSUFBSSxPQUFPLENBQUMsRUFBRSxDQUFDLENBU2pDO0NBQ0Y7QUFFRCxxQkFBYSxrQkFBa0I7SUFFcEIsc0JBQXNCLEVBQUUsc0JBQXNCO0lBQzlDLFlBQVksRUFBRSxvQ0FBb0M7SUFDbEQsWUFBWSxDQUFDO0lBQ2IsS0FBSyxDQUFDO0lBSmYsWUFDUyxzQkFBc0IsRUFBRSxzQkFBc0IsRUFDOUMsWUFBWSxFQUFFLG9DQUFvQyxFQUNsRCxZQUFZLENBQUMsb0NBQXdCLEVBQ3JDLEtBQUssQ0FBQyw2QkFBaUIsRUFDNUI7SUFFSixpRUFBaUU7SUFDakUsSUFBSSxlQUFlLElBQUksY0FBYyxFQUFFLENBRXRDO0lBRUQsSUFBSSxPQUFPLElBQUksT0FBTyxDQVNyQjtJQUVELE1BQU0sS0FBSyxNQUFNLElBQUksTUFBTSxDQUFDLGtCQUFrQixDQUFDLENBUzlDO0lBRUQsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQyxFQUFFLFNBQVMsR0FBRyxpQkFBaUIsQ0FBQyxzQkFPcEY7SUFFRCxNQUFNLENBQUMsMENBQTBDLENBQy9DLHVCQUF1QixFQUFFLHVCQUF1QixFQUNoRCxZQUFZLENBQUMsRUFBRSxzQkFBc0IsRUFDckMsS0FBSyxDQUFDLEVBQUUsZUFBZSxzQkFReEI7SUFFRCxPQUFhLE1BQU0sZ0NBTWxCO0lBRUQsc0JBQXNCLDhCQUVyQjtJQUVELGFBQWEsSUFBSSxPQUFPLENBQUMsRUFBRSxDQUFDLENBRTNCO0lBRUQscUJBQXFCLGdDQUVwQjtDQUNGO0FBRUQ7Ozs7O0dBS0c7QUFDSCx3QkFBZ0IsNkJBQTZCLENBQUMsZUFBZSxFQUFFLHNCQUFzQixHQUFHLHlCQUF5QixDQVdoSCJ9
|