@aztec/simulator 0.0.1-commit.5476d83 → 0.0.1-commit.59e663cd
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/README.md +2 -0
- package/dest/common/errors.d.ts +8 -2
- package/dest/common/errors.d.ts.map +1 -1
- package/dest/private/acvm/deserialize.d.ts +2 -2
- package/dest/private/acvm/deserialize.d.ts.map +1 -1
- package/dest/private/acvm/deserialize.js +1 -1
- package/dest/private/acvm/serialize.d.ts +2 -2
- package/dest/private/acvm/serialize.d.ts.map +1 -1
- package/dest/private/acvm/serialize.js +1 -1
- package/dest/private/circuit_recording/circuit_recorder.d.ts +1 -1
- package/dest/private/circuit_recording/circuit_recorder.d.ts.map +1 -1
- package/dest/private/circuit_recording/circuit_recorder.js +16 -15
- package/dest/public/avm/avm_context.d.ts +3 -3
- package/dest/public/avm/avm_context.d.ts.map +1 -1
- package/dest/public/avm/avm_contract_call_result.d.ts +6 -6
- package/dest/public/avm/avm_contract_call_result.d.ts.map +1 -1
- package/dest/public/avm/avm_contract_call_result.js +3 -3
- package/dest/public/avm/avm_execution_environment.d.ts +7 -6
- package/dest/public/avm/avm_execution_environment.d.ts.map +1 -1
- package/dest/public/avm/avm_execution_environment.js +1 -1
- package/dest/public/avm/avm_gas.d.ts +1 -1
- package/dest/public/avm/avm_gas.d.ts.map +1 -1
- package/dest/public/avm/avm_machine_state.d.ts +7 -6
- package/dest/public/avm/avm_machine_state.d.ts.map +1 -1
- package/dest/public/avm/avm_machine_state.js +3 -2
- package/dest/public/avm/avm_memory_types.d.ts +2 -2
- package/dest/public/avm/avm_memory_types.d.ts.map +1 -1
- package/dest/public/avm/avm_memory_types.js +4 -1
- package/dest/public/avm/avm_simulator.d.ts +4 -3
- package/dest/public/avm/avm_simulator.d.ts.map +1 -1
- package/dest/public/avm/avm_simulator.js +11 -9
- package/dest/public/avm/calldata.d.ts +51 -0
- package/dest/public/avm/calldata.d.ts.map +1 -0
- package/dest/public/avm/calldata.js +63 -0
- package/dest/public/avm/errors.d.ts +8 -2
- package/dest/public/avm/errors.d.ts.map +1 -1
- package/dest/public/avm/errors.js +14 -2
- package/dest/public/avm/fixtures/avm_simulation_tester.d.ts +1 -1
- package/dest/public/avm/fixtures/avm_simulation_tester.d.ts.map +1 -1
- package/dest/public/avm/fixtures/avm_simulation_tester.js +4 -3
- package/dest/public/avm/fixtures/base_avm_simulation_tester.d.ts +2 -2
- package/dest/public/avm/fixtures/base_avm_simulation_tester.d.ts.map +1 -1
- package/dest/public/avm/fixtures/base_avm_simulation_tester.js +1 -1
- package/dest/public/avm/fixtures/initializers.d.ts +2 -2
- package/dest/public/avm/fixtures/initializers.d.ts.map +1 -1
- package/dest/public/avm/fixtures/initializers.js +5 -4
- package/dest/public/avm/fixtures/utils.d.ts +4 -3
- package/dest/public/avm/fixtures/utils.d.ts.map +1 -1
- package/dest/public/avm/fixtures/utils.js +3 -2
- package/dest/public/avm/opcodes/accrued_substate.d.ts +15 -15
- package/dest/public/avm/opcodes/accrued_substate.d.ts.map +1 -1
- package/dest/public/avm/opcodes/accrued_substate.js +33 -29
- package/dest/public/avm/opcodes/addressing_mode.js +2 -2
- package/dest/public/avm/opcodes/arithmetic.d.ts +10 -8
- package/dest/public/avm/opcodes/arithmetic.d.ts.map +1 -1
- package/dest/public/avm/opcodes/arithmetic.js +12 -2
- package/dest/public/avm/opcodes/bitwise.d.ts +7 -7
- package/dest/public/avm/opcodes/bitwise.d.ts.map +1 -1
- package/dest/public/avm/opcodes/bitwise.js +5 -5
- package/dest/public/avm/opcodes/comparators.d.ts +4 -4
- package/dest/public/avm/opcodes/comparators.d.ts.map +1 -1
- package/dest/public/avm/opcodes/comparators.js +1 -1
- package/dest/public/avm/opcodes/contract.d.ts +3 -3
- package/dest/public/avm/opcodes/contract.d.ts.map +1 -1
- package/dest/public/avm/opcodes/contract.js +8 -8
- package/dest/public/avm/opcodes/control_flow.d.ts +3 -3
- package/dest/public/avm/opcodes/control_flow.d.ts.map +1 -1
- package/dest/public/avm/opcodes/control_flow.js +4 -4
- package/dest/public/avm/opcodes/conversion.d.ts +3 -3
- package/dest/public/avm/opcodes/conversion.d.ts.map +1 -1
- package/dest/public/avm/opcodes/conversion.js +4 -4
- package/dest/public/avm/opcodes/ec_add.d.ts +4 -4
- package/dest/public/avm/opcodes/ec_add.d.ts.map +1 -1
- package/dest/public/avm/opcodes/ec_add.js +17 -8
- package/dest/public/avm/opcodes/environment_getters.d.ts +5 -5
- package/dest/public/avm/opcodes/environment_getters.d.ts.map +1 -1
- package/dest/public/avm/opcodes/environment_getters.js +6 -6
- package/dest/public/avm/opcodes/external_calls.d.ts +9 -9
- package/dest/public/avm/opcodes/external_calls.d.ts.map +1 -1
- package/dest/public/avm/opcodes/external_calls.js +23 -22
- package/dest/public/avm/opcodes/hashing.d.ts +8 -8
- package/dest/public/avm/opcodes/hashing.d.ts.map +1 -1
- package/dest/public/avm/opcodes/hashing.js +21 -16
- package/dest/public/avm/opcodes/instruction_impl.d.ts +4 -4
- package/dest/public/avm/opcodes/instruction_impl.d.ts.map +1 -1
- package/dest/public/avm/opcodes/instruction_impl.js +4 -4
- package/dest/public/avm/opcodes/memory.d.ts +14 -14
- package/dest/public/avm/opcodes/memory.d.ts.map +1 -1
- package/dest/public/avm/opcodes/memory.js +26 -26
- package/dest/public/avm/opcodes/misc.d.ts +3 -3
- package/dest/public/avm/opcodes/misc.d.ts.map +1 -1
- package/dest/public/avm/opcodes/misc.js +6 -6
- package/dest/public/avm/opcodes/storage.d.ts +16 -15
- package/dest/public/avm/opcodes/storage.d.ts.map +1 -1
- package/dest/public/avm/opcodes/storage.js +34 -24
- package/dest/public/avm/revert_reason.d.ts +2 -2
- package/dest/public/avm/revert_reason.d.ts.map +1 -1
- package/dest/public/avm/revert_reason.js +3 -2
- package/dest/public/avm/serialization/bytecode_serialization.d.ts +1 -1
- package/dest/public/avm/serialization/bytecode_serialization.d.ts.map +1 -1
- package/dest/public/avm/serialization/bytecode_serialization.js +9 -6
- package/dest/public/avm/serialization/instruction_serialization.js +1 -1
- package/dest/public/avm/test_utils.d.ts +2 -2
- package/dest/public/avm/test_utils.d.ts.map +1 -1
- package/dest/public/avm/test_utils.js +1 -1
- package/dest/public/contracts_db_checkpoint.d.ts +2 -2
- package/dest/public/contracts_db_checkpoint.d.ts.map +1 -1
- package/dest/public/db_interfaces.d.ts +2 -2
- package/dest/public/db_interfaces.d.ts.map +1 -1
- package/dest/public/debug_fn_name.d.ts +16 -3
- package/dest/public/debug_fn_name.d.ts.map +1 -1
- package/dest/public/debug_fn_name.js +31 -3
- package/dest/public/executor_metrics.d.ts +1 -1
- package/dest/public/executor_metrics.d.ts.map +1 -1
- package/dest/public/executor_metrics.js +8 -34
- package/dest/public/fixtures/amm_test.js +2 -2
- package/dest/public/fixtures/bulk_test.d.ts +3 -3
- package/dest/public/fixtures/bulk_test.d.ts.map +1 -1
- package/dest/public/fixtures/bulk_test.js +5 -69
- package/dest/public/fixtures/custom_bytecode_tester.d.ts +28 -6
- package/dest/public/fixtures/custom_bytecode_tester.d.ts.map +1 -1
- package/dest/public/fixtures/custom_bytecode_tester.js +36 -12
- package/dest/public/fixtures/custom_bytecode_tests.d.ts +11 -8
- package/dest/public/fixtures/custom_bytecode_tests.d.ts.map +1 -1
- package/dest/public/fixtures/custom_bytecode_tests.js +83 -18
- package/dest/public/fixtures/index.d.ts +4 -2
- package/dest/public/fixtures/index.d.ts.map +1 -1
- package/dest/public/fixtures/index.js +3 -1
- package/dest/public/fixtures/minimal_public_tx.d.ts +2 -7
- package/dest/public/fixtures/minimal_public_tx.d.ts.map +1 -1
- package/dest/public/fixtures/minimal_public_tx.js +4 -14
- package/dest/public/fixtures/opcode_spammer.d.ts +123 -0
- package/dest/public/fixtures/opcode_spammer.d.ts.map +1 -0
- package/dest/public/fixtures/opcode_spammer.js +1693 -0
- package/dest/public/fixtures/public_tx_simulation_tester.d.ts +22 -3
- package/dest/public/fixtures/public_tx_simulation_tester.d.ts.map +1 -1
- package/dest/public/fixtures/public_tx_simulation_tester.js +50 -13
- package/dest/public/fixtures/simple_contract_data_source.d.ts +5 -4
- package/dest/public/fixtures/simple_contract_data_source.d.ts.map +1 -1
- package/dest/public/fixtures/simple_contract_data_source.js +4 -4
- package/dest/public/fixtures/token_test.d.ts +6 -2
- package/dest/public/fixtures/token_test.d.ts.map +1 -1
- package/dest/public/fixtures/token_test.js +13 -11
- package/dest/public/fixtures/utils.d.ts +2 -2
- package/dest/public/fixtures/utils.d.ts.map +1 -1
- package/dest/public/fixtures/utils.js +4 -3
- package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts +60 -0
- package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts.map +1 -0
- package/dest/public/fuzzing/avm_fuzzer_simulator.js +171 -0
- package/dest/public/fuzzing/avm_simulator_bin.d.ts +2 -0
- package/dest/public/fuzzing/avm_simulator_bin.d.ts.map +1 -0
- package/dest/public/fuzzing/avm_simulator_bin.js +118 -0
- package/dest/public/hinting_db_sources.d.ts +5 -3
- package/dest/public/hinting_db_sources.d.ts.map +1 -1
- package/dest/public/hinting_db_sources.js +7 -2
- package/dest/public/index.d.ts +2 -2
- package/dest/public/index.d.ts.map +1 -1
- package/dest/public/index.js +1 -1
- package/dest/public/public_db_sources.d.ts +2 -2
- package/dest/public/public_db_sources.d.ts.map +1 -1
- package/dest/public/public_db_sources.js +1 -1
- package/dest/public/public_processor/guarded_merkle_tree.d.ts +4 -2
- package/dest/public/public_processor/guarded_merkle_tree.d.ts.map +1 -1
- package/dest/public/public_processor/guarded_merkle_tree.js +5 -0
- package/dest/public/public_processor/public_processor.d.ts +6 -6
- package/dest/public/public_processor/public_processor.d.ts.map +1 -1
- package/dest/public/public_processor/public_processor.js +437 -43
- package/dest/public/public_processor/public_processor_metrics.d.ts +1 -1
- package/dest/public/public_processor/public_processor_metrics.d.ts.map +1 -1
- package/dest/public/public_processor/public_processor_metrics.js +12 -45
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts +1 -13
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.js +18 -53
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts +21 -34
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator.js +61 -139
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.d.ts +42 -0
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.d.ts.map +1 -0
- package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.js +86 -0
- package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts +30 -0
- package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts.map +1 -0
- package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.js +171 -0
- package/dest/public/public_tx_simulator/dumping_cpp_public_tx_simulator.d.ts +22 -0
- package/dest/public/public_tx_simulator/dumping_cpp_public_tx_simulator.d.ts.map +1 -0
- package/dest/public/public_tx_simulator/dumping_cpp_public_tx_simulator.js +52 -0
- package/dest/public/public_tx_simulator/factories.d.ts +13 -0
- package/dest/public/public_tx_simulator/factories.d.ts.map +1 -0
- package/dest/public/public_tx_simulator/factories.js +28 -0
- package/dest/public/public_tx_simulator/index.d.ts +4 -1
- package/dest/public/public_tx_simulator/index.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/index.js +3 -0
- package/dest/public/public_tx_simulator/measured_public_tx_simulator.d.ts +3 -3
- package/dest/public/public_tx_simulator/measured_public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/public_tx_context.d.ts +2 -2
- package/dest/public/public_tx_simulator/public_tx_context.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/public_tx_context.js +1 -1
- package/dest/public/public_tx_simulator/public_tx_simulator.d.ts +6 -5
- package/dest/public/public_tx_simulator/public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/public_tx_simulator.js +20 -11
- package/dest/public/public_tx_simulator/public_tx_simulator_interface.d.ts +24 -1
- package/dest/public/public_tx_simulator/public_tx_simulator_interface.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.d.ts +2 -2
- package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.js +395 -19
- package/dest/public/side_effect_trace.d.ts +3 -2
- package/dest/public/side_effect_trace.d.ts.map +1 -1
- package/dest/public/side_effect_trace.js +1 -1
- package/dest/public/side_effect_trace_interface.d.ts +2 -2
- package/dest/public/side_effect_trace_interface.d.ts.map +1 -1
- package/dest/public/state_manager/nullifiers.d.ts +2 -2
- package/dest/public/state_manager/nullifiers.d.ts.map +1 -1
- package/dest/public/state_manager/public_storage.d.ts +2 -2
- package/dest/public/state_manager/public_storage.d.ts.map +1 -1
- package/dest/public/state_manager/public_storage.js +1 -1
- package/dest/public/state_manager/state_manager.d.ts +7 -2
- package/dest/public/state_manager/state_manager.d.ts.map +1 -1
- package/dest/public/state_manager/state_manager.js +7 -4
- package/package.json +20 -20
- package/src/common/errors.ts +1 -1
- package/src/private/acvm/deserialize.ts +1 -1
- package/src/private/acvm/serialize.ts +1 -1
- package/src/private/circuit_recording/circuit_recorder.ts +17 -16
- package/src/public/avm/avm_context.ts +2 -2
- package/src/public/avm/avm_contract_call_result.ts +8 -6
- package/src/public/avm/avm_execution_environment.ts +10 -5
- package/src/public/avm/avm_gas.ts +3 -3
- package/src/public/avm/avm_machine_state.ts +7 -6
- package/src/public/avm/avm_memory_types.ts +5 -1
- package/src/public/avm/avm_simulator.ts +16 -10
- package/src/public/avm/calldata.ts +100 -0
- package/src/public/avm/errors.ts +17 -3
- package/src/public/avm/fixtures/avm_simulation_tester.ts +9 -3
- package/src/public/avm/fixtures/base_avm_simulation_tester.ts +1 -1
- package/src/public/avm/fixtures/initializers.ts +5 -4
- package/src/public/avm/fixtures/utils.ts +3 -2
- package/src/public/avm/opcodes/accrued_substate.ts +21 -15
- package/src/public/avm/opcodes/addressing_mode.ts +2 -2
- package/src/public/avm/opcodes/arithmetic.ts +14 -2
- package/src/public/avm/opcodes/bitwise.ts +3 -3
- package/src/public/avm/opcodes/comparators.ts +1 -1
- package/src/public/avm/opcodes/contract.ts +4 -7
- package/src/public/avm/opcodes/control_flow.ts +2 -2
- package/src/public/avm/opcodes/conversion.ts +3 -3
- package/src/public/avm/opcodes/ec_add.ts +15 -6
- package/src/public/avm/opcodes/environment_getters.ts +7 -7
- package/src/public/avm/opcodes/external_calls.ts +17 -15
- package/src/public/avm/opcodes/hashing.ts +16 -10
- package/src/public/avm/opcodes/instruction_impl.ts +2 -2
- package/src/public/avm/opcodes/memory.ts +20 -20
- package/src/public/avm/opcodes/misc.ts +4 -4
- package/src/public/avm/opcodes/storage.ts +30 -22
- package/src/public/avm/revert_reason.ts +6 -3
- package/src/public/avm/serialization/bytecode_serialization.ts +17 -6
- package/src/public/avm/serialization/instruction_serialization.ts +1 -1
- package/src/public/avm/test_utils.ts +1 -1
- package/src/public/contracts_db_checkpoint.ts +1 -1
- package/src/public/db_interfaces.ts +1 -1
- package/src/public/debug_fn_name.ts +39 -5
- package/src/public/executor_metrics.ts +7 -34
- package/src/public/fixtures/amm_test.ts +2 -2
- package/src/public/fixtures/bulk_test.ts +9 -9
- package/src/public/fixtures/custom_bytecode_tester.ts +53 -19
- package/src/public/fixtures/custom_bytecode_tests.ts +111 -18
- package/src/public/fixtures/index.ts +7 -1
- package/src/public/fixtures/minimal_public_tx.ts +6 -15
- package/src/public/fixtures/opcode_spammer.ts +1754 -0
- package/src/public/fixtures/public_tx_simulation_tester.ts +69 -13
- package/src/public/fixtures/simple_contract_data_source.ts +8 -9
- package/src/public/fixtures/token_test.ts +18 -9
- package/src/public/fixtures/utils.ts +2 -3
- package/src/public/fuzzing/avm_fuzzer_simulator.ts +288 -0
- package/src/public/fuzzing/avm_simulator_bin.ts +175 -0
- package/src/public/hinting_db_sources.ts +8 -3
- package/src/public/index.ts +7 -1
- package/src/public/public_db_sources.ts +1 -1
- package/src/public/public_processor/guarded_merkle_tree.ts +6 -1
- package/src/public/public_processor/public_processor.ts +46 -29
- package/src/public/public_processor/public_processor_metrics.ts +11 -45
- package/src/public/public_tx_simulator/contract_provider_for_cpp.ts +19 -60
- package/src/public/public_tx_simulator/cpp_public_tx_simulator.ts +76 -174
- package/src/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.ts +132 -0
- package/src/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.ts +237 -0
- package/src/public/public_tx_simulator/dumping_cpp_public_tx_simulator.ts +81 -0
- package/src/public/public_tx_simulator/factories.ts +41 -0
- package/src/public/public_tx_simulator/index.ts +3 -0
- package/src/public/public_tx_simulator/measured_public_tx_simulator.ts +1 -1
- package/src/public/public_tx_simulator/public_tx_context.ts +1 -1
- package/src/public/public_tx_simulator/public_tx_simulator.ts +36 -14
- package/src/public/public_tx_simulator/public_tx_simulator_interface.ts +23 -0
- package/src/public/public_tx_simulator/telemetry_public_tx_simulator.ts +1 -1
- package/src/public/side_effect_trace.ts +1 -1
- package/src/public/side_effect_trace_interface.ts +1 -1
- package/src/public/state_manager/nullifiers.ts +1 -1
- package/src/public/state_manager/public_storage.ts +1 -1
- package/src/public/state_manager/state_manager.ts +12 -19
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
|
+
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
3
|
+
import {
|
|
4
|
+
AvmCircuitPublicInputs,
|
|
5
|
+
type AvmTxHint,
|
|
6
|
+
PublicTxEffect,
|
|
7
|
+
deserializeFromMessagePack,
|
|
8
|
+
serializeWithMessagePack,
|
|
9
|
+
} from '@aztec/stdlib/avm';
|
|
10
|
+
import { GlobalVariables, ProtocolContracts, TreeSnapshots } from '@aztec/stdlib/tx';
|
|
11
|
+
import { NativeWorldStateService } from '@aztec/world-state';
|
|
12
|
+
|
|
13
|
+
import { createInterface } from 'readline';
|
|
14
|
+
|
|
15
|
+
import { AvmFuzzerSimulator, FuzzerSimulationRequest } from './avm_fuzzer_simulator.js';
|
|
16
|
+
|
|
17
|
+
/** Write data to stdout, letting Node handle buffering. */
|
|
18
|
+
function writeOutput(data: string): Promise<void> {
|
|
19
|
+
return new Promise<void>((resolve, reject) => {
|
|
20
|
+
process.stdout.write(data, err => {
|
|
21
|
+
if (err) {
|
|
22
|
+
reject(err);
|
|
23
|
+
} else {
|
|
24
|
+
resolve();
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// This cache holds opened world states to avoid reopening them for each invocation.
|
|
31
|
+
// It's a map so that in the future we could support multiple world states (if we had multiple fuzzers).
|
|
32
|
+
const worldStateCache = new Map<string, NativeWorldStateService>();
|
|
33
|
+
|
|
34
|
+
async function openExistingWorldState(dataDir: string, mapSizeKb: number): Promise<NativeWorldStateService> {
|
|
35
|
+
const cached = worldStateCache.get(dataDir);
|
|
36
|
+
if (cached) {
|
|
37
|
+
return cached;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const ws = await NativeWorldStateService.new(EthAddress.ZERO, dataDir, {
|
|
41
|
+
archiveTreeMapSizeKb: mapSizeKb,
|
|
42
|
+
nullifierTreeMapSizeKb: mapSizeKb,
|
|
43
|
+
noteHashTreeMapSizeKb: mapSizeKb,
|
|
44
|
+
messageTreeMapSizeKb: mapSizeKb,
|
|
45
|
+
publicDataTreeMapSizeKb: mapSizeKb,
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
worldStateCache.set(dataDir, ws);
|
|
49
|
+
return ws;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
async function simulateWithFuzzer(
|
|
53
|
+
dataDir: string,
|
|
54
|
+
mapSizeKb: number,
|
|
55
|
+
txHint: AvmTxHint,
|
|
56
|
+
globals: GlobalVariables,
|
|
57
|
+
rawContractClasses: any[], // Replace these when we are moving contract classes to TS
|
|
58
|
+
rawContractInstances: [any, any][], // Replace these when we are moving contract instances to TS
|
|
59
|
+
rawPublicDataWrites: any[], // Public data tree writes to apply before simulation
|
|
60
|
+
rawNoteHashes: any[], // Note hashes to apply before simulation
|
|
61
|
+
protocolContracts: ProtocolContracts, // Protocol contracts mapping from C++
|
|
62
|
+
): Promise<{
|
|
63
|
+
reverted: boolean;
|
|
64
|
+
output: Fr[];
|
|
65
|
+
revertReason?: string;
|
|
66
|
+
publicInputs: AvmCircuitPublicInputs;
|
|
67
|
+
publicTxEffect: PublicTxEffect;
|
|
68
|
+
}> {
|
|
69
|
+
const worldStateService = await openExistingWorldState(dataDir, mapSizeKb);
|
|
70
|
+
|
|
71
|
+
const simulator = await AvmFuzzerSimulator.create(worldStateService, globals, protocolContracts);
|
|
72
|
+
|
|
73
|
+
await simulator.applyNoteHashes(rawNoteHashes);
|
|
74
|
+
|
|
75
|
+
// Register contract classes from C++ (must happen before public data writes to match C++ order)
|
|
76
|
+
for (const rawClass of rawContractClasses) {
|
|
77
|
+
await simulator.addContractClassFromCpp(rawClass);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Register contract instances from C++
|
|
81
|
+
for (const [rawAddress, rawInstance] of rawContractInstances) {
|
|
82
|
+
await simulator.addContractInstanceFromCpp(rawAddress, rawInstance);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Apply public data writes after contract registration (e.g., for bytecode upgrades)
|
|
86
|
+
// This must happen last to match C++ setup_fuzzer_state ordering
|
|
87
|
+
await simulator.applyPublicDataWrites(rawPublicDataWrites);
|
|
88
|
+
|
|
89
|
+
const result = await simulator.simulate(txHint);
|
|
90
|
+
|
|
91
|
+
const output = result
|
|
92
|
+
.getAppLogicReturnValues()
|
|
93
|
+
.flatMap((rv: { values?: Fr[] } | undefined) => rv?.values?.filter((v: Fr | null | undefined) => v != null) ?? []);
|
|
94
|
+
|
|
95
|
+
return {
|
|
96
|
+
reverted: !result.revertCode.isOK(),
|
|
97
|
+
output,
|
|
98
|
+
revertReason: result.findRevertReason()?.message,
|
|
99
|
+
publicInputs: result.publicInputs!,
|
|
100
|
+
publicTxEffect: result.publicTxEffect,
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
async function execute(base64Line: string): Promise<void> {
|
|
105
|
+
try {
|
|
106
|
+
// Decode base64 and deserialize the entire request from msgpack
|
|
107
|
+
const buffer = Buffer.from(base64Line.trim(), 'base64');
|
|
108
|
+
const rawRequest = deserializeFromMessagePack(buffer);
|
|
109
|
+
const request = FuzzerSimulationRequest.fromPlainObject(rawRequest);
|
|
110
|
+
|
|
111
|
+
// Run the TS simulation
|
|
112
|
+
const result = await simulateWithFuzzer(
|
|
113
|
+
request.wsDataDir,
|
|
114
|
+
request.wsMapSizeKb,
|
|
115
|
+
request.tx,
|
|
116
|
+
request.globals,
|
|
117
|
+
request.contractClasses,
|
|
118
|
+
request.contractInstances,
|
|
119
|
+
request.publicDataWrites,
|
|
120
|
+
request.noteHashes,
|
|
121
|
+
request.protocolContracts,
|
|
122
|
+
);
|
|
123
|
+
|
|
124
|
+
// Serialize the result to msgpack and encode it in base64 for output
|
|
125
|
+
const resultBuffer = serializeWithMessagePack({
|
|
126
|
+
reverted: result.reverted,
|
|
127
|
+
output: result.output,
|
|
128
|
+
revertReason: result.revertReason ?? '',
|
|
129
|
+
endTreeSnapshots: result.publicInputs.endTreeSnapshots,
|
|
130
|
+
publicTxEffect: result.publicTxEffect,
|
|
131
|
+
});
|
|
132
|
+
const base64Response = resultBuffer.toString('base64') + '\n';
|
|
133
|
+
await writeOutput(base64Response);
|
|
134
|
+
} catch (error: any) {
|
|
135
|
+
// If we error, treat as reverted
|
|
136
|
+
const errorResult = serializeWithMessagePack({
|
|
137
|
+
reverted: true,
|
|
138
|
+
output: [] as Fr[],
|
|
139
|
+
revertReason: `Unexpected Error ${error.message}`,
|
|
140
|
+
endTreeSnapshots: TreeSnapshots.empty(),
|
|
141
|
+
publicTxEffect: PublicTxEffect.empty(),
|
|
142
|
+
});
|
|
143
|
+
await writeOutput(errorResult.toString('base64') + '\n');
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
function mainLoop() {
|
|
148
|
+
const rl = createInterface({ input: process.stdin, terminal: false });
|
|
149
|
+
|
|
150
|
+
// Process lines sequentially to avoid race conditions in responses
|
|
151
|
+
const lineQueue: string[] = [];
|
|
152
|
+
let processing = false;
|
|
153
|
+
|
|
154
|
+
async function processQueue() {
|
|
155
|
+
if (processing || lineQueue.length === 0) {
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
processing = true;
|
|
159
|
+
while (lineQueue.length > 0) {
|
|
160
|
+
const line = lineQueue.shift()!;
|
|
161
|
+
await execute(line);
|
|
162
|
+
}
|
|
163
|
+
processing = false;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
rl.on('line', (line: string) => {
|
|
167
|
+
if (line.trim()) {
|
|
168
|
+
lineQueue.push(line);
|
|
169
|
+
void processQueue();
|
|
170
|
+
}
|
|
171
|
+
});
|
|
172
|
+
rl.on('close', () => process.exit(0));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
void mainLoop();
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { BlockNumber } from '@aztec/foundation/branded-types';
|
|
2
|
+
import { sha256Trunc } from '@aztec/foundation/crypto/sha256';
|
|
3
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
4
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
4
5
|
import type { IndexedTreeLeafPreimage, SiblingPath } from '@aztec/foundation/trees';
|
|
5
6
|
import type { FunctionSelector } from '@aztec/stdlib/abi';
|
|
@@ -571,6 +572,10 @@ export class HintingMerkleWriteOperations implements MerkleTreeWriteOperations {
|
|
|
571
572
|
return await this.db.close();
|
|
572
573
|
}
|
|
573
574
|
|
|
575
|
+
async [Symbol.dispose](): Promise<void> {
|
|
576
|
+
await this.close();
|
|
577
|
+
}
|
|
578
|
+
|
|
574
579
|
public async findLeafIndices<ID extends MerkleTreeId>(
|
|
575
580
|
treeId: ID,
|
|
576
581
|
values: MerkleTreeLeafType<ID>[],
|
|
@@ -596,7 +601,7 @@ export class HintingMerkleWriteOperations implements MerkleTreeWriteOperations {
|
|
|
596
601
|
public async getBlockNumbersForLeafIndices<ID extends MerkleTreeId>(
|
|
597
602
|
treeId: ID,
|
|
598
603
|
leafIndices: bigint[],
|
|
599
|
-
): Promise<(
|
|
604
|
+
): Promise<(BlockNumber | undefined)[]> {
|
|
600
605
|
return await this.db.getBlockNumbersForLeafIndices(treeId, leafIndices);
|
|
601
606
|
}
|
|
602
607
|
}
|
package/src/public/index.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export { PublicContractsDB } from './public_db_sources.js';
|
|
2
2
|
export { GuardedMerkleTreeOperations } from './public_processor/guarded_merkle_tree.js';
|
|
3
3
|
export { PublicProcessor, PublicProcessorFactory } from './public_processor/public_processor.js';
|
|
4
|
-
export {
|
|
4
|
+
export {
|
|
5
|
+
CppPublicTxSimulator,
|
|
6
|
+
createPublicTxSimulatorForBlockBuilding,
|
|
7
|
+
DumpingCppPublicTxSimulator,
|
|
8
|
+
type PublicTxSimulatorInterface,
|
|
9
|
+
TelemetryCppPublicTxSimulator,
|
|
10
|
+
} from './public_tx_simulator/index.js';
|
|
5
11
|
export type { PublicTxResult, PublicSimulatorConfig as PublicTxSimulatorConfig } from '@aztec/stdlib/avm';
|
|
6
12
|
export { getCallRequestsWithCalldataByPhase } from './utils.js';
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
NULLIFIER_SUBTREE_HEIGHT,
|
|
5
5
|
PUBLIC_DATA_SUBTREE_HEIGHT,
|
|
6
6
|
} from '@aztec/constants';
|
|
7
|
-
import { Fr } from '@aztec/foundation/
|
|
7
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
8
8
|
import { createLogger } from '@aztec/foundation/log';
|
|
9
9
|
import { Timer } from '@aztec/foundation/timer';
|
|
10
10
|
import { ContractClassPublishedEvent } from '@aztec/protocol-contracts/class-registry';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BlockNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { SerialQueue } from '@aztec/foundation/queue';
|
|
2
3
|
import type { IndexedTreeLeafPreimage, SiblingPath } from '@aztec/foundation/trees';
|
|
3
4
|
import type {
|
|
@@ -80,6 +81,10 @@ export class GuardedMerkleTreeOperations implements MerkleTreeWriteOperations {
|
|
|
80
81
|
close(): Promise<void> {
|
|
81
82
|
return this.guardAndPush(() => this.target.close());
|
|
82
83
|
}
|
|
84
|
+
|
|
85
|
+
async [Symbol.dispose](): Promise<void> {
|
|
86
|
+
await this.close();
|
|
87
|
+
}
|
|
83
88
|
getTreeInfo(treeId: MerkleTreeId): Promise<TreeInfo> {
|
|
84
89
|
return this.guardAndPush(() => this.target.getTreeInfo(treeId));
|
|
85
90
|
}
|
|
@@ -126,7 +131,7 @@ export class GuardedMerkleTreeOperations implements MerkleTreeWriteOperations {
|
|
|
126
131
|
getBlockNumbersForLeafIndices<ID extends MerkleTreeId>(
|
|
127
132
|
treeId: ID,
|
|
128
133
|
leafIndices: bigint[],
|
|
129
|
-
): Promise<(
|
|
134
|
+
): Promise<(BlockNumber | undefined)[]> {
|
|
130
135
|
return this.guardAndPush(() => this.target.getBlockNumbersForLeafIndices(treeId, leafIndices));
|
|
131
136
|
}
|
|
132
137
|
createCheckpoint(): Promise<void> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MAX_NOTE_HASHES_PER_TX, MAX_NULLIFIERS_PER_TX, NULLIFIER_SUBTREE_HEIGHT } from '@aztec/constants';
|
|
2
2
|
import { padArrayEnd } from '@aztec/foundation/collection';
|
|
3
|
-
import { Fr } from '@aztec/foundation/
|
|
3
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
4
4
|
import { createLogger } from '@aztec/foundation/log';
|
|
5
5
|
import { sleep } from '@aztec/foundation/sleep';
|
|
6
6
|
import { DateProvider, Timer, elapsed, executeTimeout } from '@aztec/foundation/timer';
|
|
@@ -51,9 +51,9 @@ import { AssertionError } from 'assert';
|
|
|
51
51
|
|
|
52
52
|
import { PublicContractsDB, PublicTreesDB } from '../public_db_sources.js';
|
|
53
53
|
import {
|
|
54
|
-
type PublicTxSimulator,
|
|
55
54
|
type PublicTxSimulatorConfig,
|
|
56
|
-
|
|
55
|
+
type PublicTxSimulatorInterface,
|
|
56
|
+
TelemetryCppPublicTxSimulator,
|
|
57
57
|
} from '../public_tx_simulator/index.js';
|
|
58
58
|
import { GuardedMerkleTreeOperations } from './guarded_merkle_tree.js';
|
|
59
59
|
import { PublicProcessorMetrics } from './public_processor_metrics.js';
|
|
@@ -99,8 +99,8 @@ export class PublicProcessorFactory {
|
|
|
99
99
|
contractsDB: PublicContractsDB,
|
|
100
100
|
globalVariables: GlobalVariables,
|
|
101
101
|
config?: Partial<PublicTxSimulatorConfig>,
|
|
102
|
-
):
|
|
103
|
-
return new
|
|
102
|
+
): PublicTxSimulatorInterface {
|
|
103
|
+
return new TelemetryCppPublicTxSimulator(merkleTree, contractsDB, globalVariables, this.telemetryClient, config);
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
@@ -122,11 +122,11 @@ export class PublicProcessor implements Traceable {
|
|
|
122
122
|
protected globalVariables: GlobalVariables,
|
|
123
123
|
private guardedMerkleTree: GuardedMerkleTreeOperations,
|
|
124
124
|
protected contractsDB: PublicContractsDB,
|
|
125
|
-
protected publicTxSimulator:
|
|
125
|
+
protected publicTxSimulator: PublicTxSimulatorInterface,
|
|
126
126
|
private dateProvider: DateProvider,
|
|
127
127
|
telemetryClient: TelemetryClient = getTelemetryClient(),
|
|
128
128
|
private log = createLogger('simulator:public-processor'),
|
|
129
|
-
private opts: Pick<SequencerConfig, 'fakeProcessingDelayPerTxMs'> = {},
|
|
129
|
+
private opts: Pick<SequencerConfig, 'fakeProcessingDelayPerTxMs' | 'fakeThrowAfterProcessingTxCount'> = {},
|
|
130
130
|
) {
|
|
131
131
|
this.metrics = new PublicProcessorMetrics(telemetryClient, 'PublicProcessor');
|
|
132
132
|
}
|
|
@@ -146,7 +146,7 @@ export class PublicProcessor implements Traceable {
|
|
|
146
146
|
txs: Iterable<Tx> | AsyncIterable<Tx>,
|
|
147
147
|
limits: PublicProcessorLimits = {},
|
|
148
148
|
validator: PublicProcessorValidator = {},
|
|
149
|
-
): Promise<[ProcessedTx[], FailedTx[], Tx[], NestedProcessReturnValues[]]> {
|
|
149
|
+
): Promise<[ProcessedTx[], FailedTx[], Tx[], NestedProcessReturnValues[], number]> {
|
|
150
150
|
const { maxTransactions, maxBlockSize, deadline, maxBlockGas, maxBlobFields } = limits;
|
|
151
151
|
const { preprocessValidator, nullifierCache } = validator;
|
|
152
152
|
const result: ProcessedTx[] = [];
|
|
@@ -160,7 +160,7 @@ export class PublicProcessor implements Traceable {
|
|
|
160
160
|
let totalBlockGas = new Gas(0, 0);
|
|
161
161
|
let totalBlobFields = 0;
|
|
162
162
|
|
|
163
|
-
for await (const
|
|
163
|
+
for await (const tx of txs) {
|
|
164
164
|
// Only process up to the max tx limit
|
|
165
165
|
if (maxTransactions !== undefined && result.length >= maxTransactions) {
|
|
166
166
|
this.log.debug(`Stopping tx processing due to reaching the max tx limit.`);
|
|
@@ -174,8 +174,8 @@ export class PublicProcessor implements Traceable {
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
// Skip this tx if it'd exceed max block size
|
|
177
|
-
const txHash =
|
|
178
|
-
const preTxSizeInBytes =
|
|
177
|
+
const txHash = tx.getTxHash().toString();
|
|
178
|
+
const preTxSizeInBytes = tx.getEstimatedPrivateTxEffectsSize();
|
|
179
179
|
if (maxBlockSize !== undefined && totalSizeInBytes + preTxSizeInBytes > maxBlockSize) {
|
|
180
180
|
this.log.warn(`Skipping processing of tx ${txHash} sized ${preTxSizeInBytes} bytes due to block size limit`, {
|
|
181
181
|
txHash,
|
|
@@ -187,7 +187,7 @@ export class PublicProcessor implements Traceable {
|
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
// Skip this tx if its gas limit would exceed the block gas limit
|
|
190
|
-
const txGasLimit =
|
|
190
|
+
const txGasLimit = tx.data.constants.txContext.gasSettings.gasLimits;
|
|
191
191
|
if (maxBlockGas !== undefined && totalBlockGas.add(txGasLimit).gtAny(maxBlockGas)) {
|
|
192
192
|
this.log.warn(`Skipping processing of tx ${txHash} due to block gas limit`, {
|
|
193
193
|
txHash,
|
|
@@ -198,9 +198,6 @@ export class PublicProcessor implements Traceable {
|
|
|
198
198
|
continue;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
// The processor modifies the tx objects in place, so we need to clone them.
|
|
202
|
-
const tx = Tx.clone(origTx);
|
|
203
|
-
|
|
204
201
|
// We validate the tx before processing it, to avoid unnecessary work.
|
|
205
202
|
if (preprocessValidator) {
|
|
206
203
|
const result = await preprocessValidator.validateTx(tx);
|
|
@@ -233,6 +230,12 @@ export class PublicProcessor implements Traceable {
|
|
|
233
230
|
try {
|
|
234
231
|
const [processedTx, returnValues] = await this.processTx(tx, deadline);
|
|
235
232
|
|
|
233
|
+
// Inject a fake processing failure after N txs if requested
|
|
234
|
+
const fakeThrowAfter = this.opts.fakeThrowAfterProcessingTxCount;
|
|
235
|
+
if (fakeThrowAfter !== undefined && result.length + failed.length + 1 >= fakeThrowAfter) {
|
|
236
|
+
throw new Error(`Fake error after processing ${fakeThrowAfter} txs`);
|
|
237
|
+
}
|
|
238
|
+
|
|
236
239
|
const txBlobFields = processedTx.txEffect.getNumBlobFields();
|
|
237
240
|
|
|
238
241
|
// If the actual size of this tx would exceed block size, skip it
|
|
@@ -251,6 +254,7 @@ export class PublicProcessor implements Traceable {
|
|
|
251
254
|
}
|
|
252
255
|
|
|
253
256
|
// If the actual blob fields of this tx would exceed the limit, skip it
|
|
257
|
+
// Note: maxBlobFields already accounts for block end blob fields and previous blocks in checkpoint.
|
|
254
258
|
if (maxBlobFields !== undefined && totalBlobFields + txBlobFields > maxBlobFields) {
|
|
255
259
|
this.log.debug(
|
|
256
260
|
`Skipping processed tx ${txHash} with ${txBlobFields} blob fields due to max blob fields limit.`,
|
|
@@ -282,7 +286,15 @@ export class PublicProcessor implements Traceable {
|
|
|
282
286
|
if (err?.name === 'PublicProcessorTimeoutError') {
|
|
283
287
|
this.log.warn(`Stopping tx processing due to timeout.`);
|
|
284
288
|
// We hit the transaction execution deadline.
|
|
285
|
-
// There may still be a transaction executing
|
|
289
|
+
// There may still be a transaction executing on a worker thread (C++ via NAPI).
|
|
290
|
+
// Signal cancellation AND WAIT for the simulation to actually stop.
|
|
291
|
+
// This is critical because C++ might be in the middle of a slow operation (e.g., pad_trees)
|
|
292
|
+
// and won't check the cancellation flag until that operation completes.
|
|
293
|
+
// Without waiting, we'd proceed to revert checkpoints while C++ is still writing to state.
|
|
294
|
+
// Wait for C++ to stop gracefully.
|
|
295
|
+
await this.publicTxSimulator.cancel?.();
|
|
296
|
+
|
|
297
|
+
// Now stop the guarded fork to prevent any further TS-side access to the world state.
|
|
286
298
|
await this.guardedMerkleTree.stop();
|
|
287
299
|
|
|
288
300
|
// We now know there can't be any further access to world state. The fork is in a state where there is:
|
|
@@ -338,7 +350,7 @@ export class PublicProcessor implements Traceable {
|
|
|
338
350
|
totalSizeInBytes,
|
|
339
351
|
});
|
|
340
352
|
|
|
341
|
-
return [result, failed, usedTxs, returns];
|
|
353
|
+
return [result, failed, usedTxs, returns, totalBlobFields];
|
|
342
354
|
}
|
|
343
355
|
|
|
344
356
|
private async checkWorldStateUnchanged(
|
|
@@ -521,13 +533,9 @@ export class PublicProcessor implements Traceable {
|
|
|
521
533
|
private async processTxWithPublicCalls(tx: Tx): Promise<[ProcessedTx, NestedProcessReturnValues[]]> {
|
|
522
534
|
const timer = new Timer();
|
|
523
535
|
|
|
524
|
-
const
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
if (!hints) {
|
|
528
|
-
this.metrics.recordFailedTx();
|
|
529
|
-
throw new Error('Avm proving result was not generated.');
|
|
530
|
-
}
|
|
536
|
+
const result = await this.publicTxSimulator.simulate(tx);
|
|
537
|
+
// TODO: use the callStackMetadata here to extract more data about public execution
|
|
538
|
+
const { hints, publicInputs, publicTxEffect, gasUsed, revertCode /*callStackMetadata*/ } = result;
|
|
531
539
|
|
|
532
540
|
const contractClassLogs = revertCode.isOK()
|
|
533
541
|
? tx.getContractClassLogs()
|
|
@@ -539,19 +547,28 @@ export class PublicProcessor implements Traceable {
|
|
|
539
547
|
);
|
|
540
548
|
|
|
541
549
|
// TODO(fcarreiro): remove phase count metric.
|
|
542
|
-
const phaseCount = 1;
|
|
543
550
|
const durationMs = timer.ms();
|
|
544
|
-
this.metrics.recordTx(phaseCount, durationMs, gasUsed.publicGas);
|
|
551
|
+
this.metrics.recordTx(/*phaseCount=*/ 1, durationMs, gasUsed.publicGas);
|
|
552
|
+
|
|
553
|
+
// Extract the return values from the call stack metadata.
|
|
554
|
+
const appLogicReturnValues: NestedProcessReturnValues[] = result.getAppLogicReturnValues();
|
|
555
|
+
// Extract the revert reason from the call stack metadata.
|
|
556
|
+
const revertReason = result.findRevertReason();
|
|
557
|
+
// Create proving request if we have hints and public inputs.
|
|
558
|
+
const avmProvingRequest =
|
|
559
|
+
hints && publicInputs ? PublicProcessor.generateProvingRequest(publicInputs, hints) : undefined;
|
|
545
560
|
|
|
546
561
|
const processedTx = makeProcessedTxFromTxWithPublicCalls(
|
|
547
562
|
tx,
|
|
548
|
-
|
|
563
|
+
this.globalVariables,
|
|
564
|
+
avmProvingRequest,
|
|
565
|
+
publicTxEffect,
|
|
549
566
|
gasUsed,
|
|
550
567
|
revertCode,
|
|
551
568
|
revertReason,
|
|
552
569
|
);
|
|
553
570
|
|
|
554
|
-
return [processedTx, appLogicReturnValues
|
|
571
|
+
return [processedTx, appLogicReturnValues];
|
|
555
572
|
}
|
|
556
573
|
|
|
557
574
|
/**
|
|
@@ -559,7 +576,7 @@ export class PublicProcessor implements Traceable {
|
|
|
559
576
|
*/
|
|
560
577
|
private static generateProvingRequest(
|
|
561
578
|
publicInputs: AvmCircuitPublicInputs,
|
|
562
|
-
hints: AvmExecutionHints,
|
|
579
|
+
hints: AvmExecutionHints = AvmExecutionHints.empty(),
|
|
563
580
|
): AvmProvingRequest {
|
|
564
581
|
return {
|
|
565
582
|
type: ProvingRequestType.PUBLIC_VM,
|
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
type TelemetryClient,
|
|
10
10
|
type Tracer,
|
|
11
11
|
type UpDownCounter,
|
|
12
|
-
ValueType,
|
|
13
12
|
} from '@aztec/telemetry-client';
|
|
14
13
|
|
|
15
14
|
export class PublicProcessorMetrics {
|
|
@@ -34,60 +33,27 @@ export class PublicProcessorMetrics {
|
|
|
34
33
|
this.tracer = client.getTracer(name);
|
|
35
34
|
const meter = client.getMeter(name);
|
|
36
35
|
|
|
37
|
-
this.txDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TX_DURATION
|
|
38
|
-
description: 'How long it takes to process a transaction',
|
|
39
|
-
unit: 'ms',
|
|
40
|
-
valueType: ValueType.INT,
|
|
41
|
-
});
|
|
36
|
+
this.txDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TX_DURATION);
|
|
42
37
|
|
|
43
|
-
this.txCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_TX_COUNT
|
|
44
|
-
description: 'Number of transactions processed',
|
|
45
|
-
});
|
|
38
|
+
this.txCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_TX_COUNT);
|
|
46
39
|
|
|
47
|
-
this.txPhaseCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_TX_PHASE_COUNT
|
|
48
|
-
description: 'Number of phases processed',
|
|
49
|
-
});
|
|
40
|
+
this.txPhaseCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_TX_PHASE_COUNT);
|
|
50
41
|
|
|
51
|
-
this.phaseDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_PHASE_DURATION
|
|
52
|
-
description: 'How long it takes to process a phase',
|
|
53
|
-
unit: 'ms',
|
|
54
|
-
valueType: ValueType.INT,
|
|
55
|
-
});
|
|
42
|
+
this.phaseDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_PHASE_DURATION);
|
|
56
43
|
|
|
57
|
-
this.phaseCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_PHASE_COUNT
|
|
58
|
-
description: 'Number of failed phases',
|
|
59
|
-
});
|
|
44
|
+
this.phaseCount = meter.createUpDownCounter(Metrics.PUBLIC_PROCESSOR_PHASE_COUNT);
|
|
60
45
|
|
|
61
|
-
this.bytecodeDeployed = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_DEPLOY_BYTECODE_SIZE
|
|
62
|
-
description: 'Size of deployed bytecode',
|
|
63
|
-
unit: 'By',
|
|
64
|
-
});
|
|
46
|
+
this.bytecodeDeployed = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_DEPLOY_BYTECODE_SIZE);
|
|
65
47
|
|
|
66
|
-
this.totalGas = meter.createGauge(Metrics.PUBLIC_PROCESSOR_TOTAL_GAS
|
|
67
|
-
description: 'Total gas used in block',
|
|
68
|
-
unit: 'gas',
|
|
69
|
-
});
|
|
48
|
+
this.totalGas = meter.createGauge(Metrics.PUBLIC_PROCESSOR_TOTAL_GAS);
|
|
70
49
|
|
|
71
|
-
this.totalGasHistogram = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TOTAL_GAS_HISTOGRAM
|
|
72
|
-
description: 'Total gas used in block as histogram',
|
|
73
|
-
unit: 'gas/block',
|
|
74
|
-
});
|
|
50
|
+
this.totalGasHistogram = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TOTAL_GAS_HISTOGRAM);
|
|
75
51
|
|
|
76
|
-
this.txGas = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TX_GAS
|
|
77
|
-
description: 'Gas used in transaction',
|
|
78
|
-
unit: 'gas/tx',
|
|
79
|
-
});
|
|
52
|
+
this.txGas = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TX_GAS);
|
|
80
53
|
|
|
81
|
-
this.gasRate = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_GAS_RATE
|
|
82
|
-
description: 'L2 gas per second for complete block',
|
|
83
|
-
unit: 'gas/s',
|
|
84
|
-
});
|
|
54
|
+
this.gasRate = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_GAS_RATE);
|
|
85
55
|
|
|
86
|
-
this.treeInsertionDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TREE_INSERTION
|
|
87
|
-
description: 'How long it takes for tree insertion',
|
|
88
|
-
unit: 'us',
|
|
89
|
-
valueType: ValueType.INT,
|
|
90
|
-
});
|
|
56
|
+
this.treeInsertionDuration = meter.createHistogram(Metrics.PUBLIC_PROCESSOR_TREE_INSERTION);
|
|
91
57
|
}
|
|
92
58
|
|
|
93
59
|
recordPhaseDuration(phaseName: TxExecutionPhase, durationMs: number) {
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { Fr } from '@aztec/foundation/
|
|
1
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
2
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
3
3
|
import type { ContractProvider } from '@aztec/native';
|
|
4
4
|
import { FunctionSelector } from '@aztec/stdlib/abi';
|
|
5
5
|
import { deserializeFromMessagePack, serializeWithMessagePack } from '@aztec/stdlib/avm';
|
|
6
6
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
7
7
|
import { ContractDeploymentData } from '@aztec/stdlib/contract';
|
|
8
|
-
import { ContractClassLog, ContractClassLogFields, PrivateLog } from '@aztec/stdlib/logs';
|
|
9
8
|
import type { GlobalVariables } from '@aztec/stdlib/tx';
|
|
10
9
|
|
|
11
10
|
import type { PublicContractsDB } from '../public_db_sources.js';
|
|
@@ -19,7 +18,7 @@ export class ContractProviderForCpp implements ContractProvider {
|
|
|
19
18
|
) {}
|
|
20
19
|
|
|
21
20
|
public getContractInstance = async (address: string): Promise<Buffer | undefined> => {
|
|
22
|
-
this.log.
|
|
21
|
+
this.log.trace(`Contract provider callback: getContractInstance(${address})`);
|
|
23
22
|
|
|
24
23
|
const aztecAddr = AztecAddress.fromString(address);
|
|
25
24
|
|
|
@@ -34,7 +33,7 @@ export class ContractProviderForCpp implements ContractProvider {
|
|
|
34
33
|
};
|
|
35
34
|
|
|
36
35
|
public getContractClass = async (classId: string): Promise<Buffer | undefined> => {
|
|
37
|
-
this.log.
|
|
36
|
+
this.log.trace(`Contract provider callback: getContractClass(${classId})`);
|
|
38
37
|
|
|
39
38
|
// Parse classId string to Fr
|
|
40
39
|
const classIdFr = Fr.fromString(classId);
|
|
@@ -51,20 +50,20 @@ export class ContractProviderForCpp implements ContractProvider {
|
|
|
51
50
|
};
|
|
52
51
|
|
|
53
52
|
public addContracts = async (contractDeploymentDataBuffer: Buffer): Promise<void> => {
|
|
54
|
-
this.log.
|
|
53
|
+
this.log.trace(`Contract provider callback: addContracts`);
|
|
55
54
|
|
|
56
55
|
const rawData: any = deserializeFromMessagePack(contractDeploymentDataBuffer);
|
|
57
56
|
|
|
58
|
-
// Construct
|
|
59
|
-
const contractDeploymentData =
|
|
57
|
+
// Construct ContractDeploymentData from plain object.
|
|
58
|
+
const contractDeploymentData = ContractDeploymentData.fromPlainObject(rawData);
|
|
60
59
|
|
|
61
60
|
// Add contracts to the contracts DB
|
|
62
|
-
this.log.
|
|
61
|
+
this.log.trace(`Calling contractsDB.addContracts`);
|
|
63
62
|
await this.contractsDB.addContracts(contractDeploymentData);
|
|
64
63
|
};
|
|
65
64
|
|
|
66
65
|
public getBytecodeCommitment = async (classId: string): Promise<Buffer | undefined> => {
|
|
67
|
-
this.log.
|
|
66
|
+
this.log.trace(`Contract provider callback: getBytecodeCommitment(${classId})`);
|
|
68
67
|
|
|
69
68
|
// Parse classId string to Fr
|
|
70
69
|
const classIdFr = Fr.fromString(classId);
|
|
@@ -82,18 +81,23 @@ export class ContractProviderForCpp implements ContractProvider {
|
|
|
82
81
|
};
|
|
83
82
|
|
|
84
83
|
public getDebugFunctionName = async (address: string, selector: string): Promise<string | undefined> => {
|
|
85
|
-
this.log.
|
|
84
|
+
this.log.trace(`Contract provider callback: getDebugFunctionName(${address}, ${selector})`);
|
|
86
85
|
|
|
87
86
|
// Parse address and selector strings
|
|
88
87
|
const aztecAddr = AztecAddress.fromString(address);
|
|
89
88
|
const selectorFr = Fr.fromString(selector);
|
|
90
|
-
const functionSelector = FunctionSelector.
|
|
89
|
+
const functionSelector = FunctionSelector.fromFieldOrUndefined(selectorFr);
|
|
90
|
+
|
|
91
|
+
if (!functionSelector) {
|
|
92
|
+
this.log.trace(`calldata[0] is not a function selector: ${selector}`);
|
|
93
|
+
return undefined;
|
|
94
|
+
}
|
|
91
95
|
|
|
92
96
|
// Fetch debug function name from the contracts DB
|
|
93
97
|
const name = await this.contractsDB.getDebugFunctionName(aztecAddr, functionSelector);
|
|
94
98
|
|
|
95
99
|
if (!name) {
|
|
96
|
-
this.log.
|
|
100
|
+
this.log.trace(`Debug function name not found for ${address}:${selector}`);
|
|
97
101
|
return undefined;
|
|
98
102
|
}
|
|
99
103
|
|
|
@@ -101,62 +105,17 @@ export class ContractProviderForCpp implements ContractProvider {
|
|
|
101
105
|
};
|
|
102
106
|
|
|
103
107
|
public createCheckpoint = (): Promise<void> => {
|
|
104
|
-
this.log.
|
|
108
|
+
this.log.trace(`Contract provider callback: createCheckpoint`);
|
|
105
109
|
return Promise.resolve(this.contractsDB.createCheckpoint());
|
|
106
110
|
};
|
|
107
111
|
|
|
108
112
|
public commitCheckpoint = (): Promise<void> => {
|
|
109
|
-
this.log.
|
|
113
|
+
this.log.trace(`Contract provider callback: commitCheckpoint`);
|
|
110
114
|
return Promise.resolve(this.contractsDB.commitCheckpoint());
|
|
111
115
|
};
|
|
112
116
|
|
|
113
117
|
public revertCheckpoint = (): Promise<void> => {
|
|
114
|
-
this.log.
|
|
118
|
+
this.log.trace(`Contract provider callback: revertCheckpoint`);
|
|
115
119
|
return Promise.resolve(this.contractsDB.revertCheckpoint());
|
|
116
120
|
};
|
|
117
|
-
|
|
118
|
-
/**
|
|
119
|
-
* Reconstruct ContractDeploymentData from plain msgpack-deserialized objects.
|
|
120
|
-
*
|
|
121
|
-
* msgpackr does not automatically apply extensions to nested fields, so we need to
|
|
122
|
-
* manually reconstruct ContractClassLog and PrivateLog instances with proper types.
|
|
123
|
-
*
|
|
124
|
-
* TODO(dbanks12): we really shouldn't have to do this.... We need to for now because
|
|
125
|
-
* msgpack deserialization doesn't give us actual typed objects, but rather just JSON.
|
|
126
|
-
* It would be easier if all types matched between languages (like AztecAddress which is just
|
|
127
|
-
* FF in C++).
|
|
128
|
-
*/
|
|
129
|
-
private reconstructContractDeploymentData(rawData: any): ContractDeploymentData {
|
|
130
|
-
// Helper to ensure a value is an Fr instance
|
|
131
|
-
const toFr = (value: any): Fr => {
|
|
132
|
-
if (value instanceof Fr) {
|
|
133
|
-
return value;
|
|
134
|
-
}
|
|
135
|
-
if (Buffer.isBuffer(value)) {
|
|
136
|
-
return Fr.fromBuffer(value);
|
|
137
|
-
}
|
|
138
|
-
return new Fr(value);
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
// Reconstruct ContractClassLogs
|
|
142
|
-
const contractClassLogs = (rawData.contractClassLogs || []).map((log: any) => {
|
|
143
|
-
// Convert contractAddress to TS AztecAddress
|
|
144
|
-
const addressFr = toFr(log.contractAddress);
|
|
145
|
-
const address = AztecAddress.fromField(addressFr);
|
|
146
|
-
|
|
147
|
-
// Ensure all fields are Fr instances
|
|
148
|
-
const fields = (log.fields.fields || []).map((field: any) => toFr(field));
|
|
149
|
-
|
|
150
|
-
// Create proper ContractClassLog instance
|
|
151
|
-
return new ContractClassLog(address, new ContractClassLogFields(fields), log.emittedLength);
|
|
152
|
-
});
|
|
153
|
-
|
|
154
|
-
// Reconstruct PrivateLogs - ensure fields are Fr instances
|
|
155
|
-
const privateLogs = (rawData.privateLogs || []).map((log: any) => {
|
|
156
|
-
const fields = (log.fields || []).map((field: any) => toFr(field));
|
|
157
|
-
return new PrivateLog(fields as any, log.emittedLength);
|
|
158
|
-
});
|
|
159
|
-
|
|
160
|
-
return new ContractDeploymentData(contractClassLogs, privateLogs);
|
|
161
|
-
}
|
|
162
121
|
}
|