@aztec/simulator 0.0.1-commit.b9865e97 → 0.0.1-commit.be03c316
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/client.d.ts +1 -3
- package/dest/client.d.ts.map +1 -1
- package/dest/client.js +0 -2
- package/dest/private/circuit_recording/circuit_recorder.d.ts +36 -23
- package/dest/private/circuit_recording/circuit_recorder.d.ts.map +1 -1
- package/dest/private/circuit_recording/circuit_recorder.js +65 -69
- package/dest/private/circuit_recording/file_circuit_recorder.d.ts +7 -19
- package/dest/private/circuit_recording/file_circuit_recorder.d.ts.map +1 -1
- package/dest/private/circuit_recording/file_circuit_recorder.js +38 -42
- package/dest/private/circuit_recording/simulator_recorder_wrapper.d.ts +1 -1
- package/dest/private/circuit_recording/simulator_recorder_wrapper.d.ts.map +1 -1
- package/dest/private/circuit_recording/simulator_recorder_wrapper.js +11 -14
- package/dest/public/avm/testing/base_avm_simulation_tester.js +1 -1
- package/dest/public/avm/testing/utils.js +1 -1
- package/dest/public/avm_simulator.d.ts +28 -0
- package/dest/public/avm_simulator.d.ts.map +1 -0
- package/dest/public/avm_simulator.js +4 -0
- package/dest/public/avm_simulator_pool.d.ts +45 -0
- package/dest/public/avm_simulator_pool.d.ts.map +1 -0
- package/dest/public/avm_simulator_pool.js +197 -0
- package/dest/public/cdb/generated/api_types.d.ts +171 -0
- package/dest/public/cdb/generated/api_types.d.ts.map +1 -0
- package/dest/public/cdb/generated/api_types.js +314 -0
- package/dest/public/cdb/generated/server.d.ts +26 -0
- package/dest/public/cdb/generated/server.d.ts.map +1 -0
- package/dest/public/cdb/generated/server.js +135 -0
- package/dest/public/cdb_ipc_server.d.ts +33 -0
- package/dest/public/cdb_ipc_server.d.ts.map +1 -0
- package/dest/public/cdb_ipc_server.js +153 -0
- package/dest/public/fixtures/amm_test.js +2 -2
- package/dest/public/fixtures/bulk_test.js +2 -2
- package/dest/public/fixtures/custom_bytecode_tester.d.ts +1 -1
- package/dest/public/fixtures/custom_bytecode_tester.d.ts.map +1 -1
- package/dest/public/fixtures/custom_bytecode_tester.js +2 -2
- package/dest/public/fixtures/index.d.ts +2 -1
- package/dest/public/fixtures/index.d.ts.map +1 -1
- package/dest/public/fixtures/index.js +1 -0
- package/dest/public/fixtures/public_processor_test_env.d.ts +30 -0
- package/dest/public/fixtures/public_processor_test_env.d.ts.map +1 -0
- package/dest/public/fixtures/public_processor_test_env.js +73 -0
- package/dest/public/fixtures/public_tx_simulation_tester.d.ts +9 -5
- package/dest/public/fixtures/public_tx_simulation_tester.d.ts.map +1 -1
- package/dest/public/fixtures/public_tx_simulation_tester.js +29 -38
- package/dest/public/fixtures/token_test.js +3 -3
- package/dest/public/fixtures/utils.d.ts +1 -1
- package/dest/public/fixtures/utils.d.ts.map +1 -1
- package/dest/public/fixtures/utils.js +5 -3
- package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts +7 -2
- package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts.map +1 -1
- package/dest/public/fuzzing/avm_fuzzer_simulator.js +15 -6
- package/dest/public/index.d.ts +5 -2
- package/dest/public/index.d.ts.map +1 -1
- package/dest/public/index.js +2 -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/public_processor.d.ts +8 -4
- package/dest/public/public_processor/public_processor.d.ts.map +1 -1
- package/dest/public/public_processor/public_processor.js +17 -13
- package/dest/public/public_tx_simulator/dumping_public_tx_simulator.d.ts +6 -12
- package/dest/public/public_tx_simulator/dumping_public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/dumping_public_tx_simulator.js +8 -21
- package/dest/public/public_tx_simulator/factories.d.ts +5 -5
- package/dest/public/public_tx_simulator/factories.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/factories.js +5 -5
- package/dest/public/public_tx_simulator/index.d.ts +3 -3
- package/dest/public/public_tx_simulator/index.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/index.js +1 -1
- package/dest/public/public_tx_simulator/public_tx_simulator.d.ts +16 -16
- package/dest/public/public_tx_simulator/public_tx_simulator.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/public_tx_simulator.js +59 -58
- package/dest/public/public_tx_simulator/public_tx_simulator_base.d.ts +10 -8
- package/dest/public/public_tx_simulator/public_tx_simulator_base.d.ts.map +1 -1
- package/dest/public/public_tx_simulator/public_tx_simulator_base.js +11 -8
- package/dest/public/public_tx_simulator/public_tx_simulator_interface.d.ts +5 -5
- package/dest/public/test_executor_metrics.d.ts +1 -6
- package/dest/public/test_executor_metrics.d.ts.map +1 -1
- package/dest/public/test_executor_metrics.js +0 -22
- package/package.json +21 -17
- package/src/client.ts +0 -2
- package/src/private/circuit_recording/circuit_recorder.ts +84 -78
- package/src/private/circuit_recording/file_circuit_recorder.ts +38 -48
- package/src/private/circuit_recording/simulator_recorder_wrapper.ts +9 -15
- package/src/public/avm/testing/base_avm_simulation_tester.ts +1 -1
- package/src/public/avm/testing/utils.ts +1 -1
- package/src/public/avm_simulator.ts +29 -0
- package/src/public/avm_simulator_pool.ts +226 -0
- package/src/public/cdb/generated/api_types.ts +457 -0
- package/src/public/cdb/generated/server.ts +109 -0
- package/src/public/cdb_ipc_server.ts +197 -0
- package/src/public/fixtures/amm_test.ts +2 -2
- package/src/public/fixtures/bulk_test.ts +2 -2
- package/src/public/fixtures/custom_bytecode_tester.ts +2 -2
- package/src/public/fixtures/index.ts +1 -0
- package/src/public/fixtures/public_processor_test_env.ts +88 -0
- package/src/public/fixtures/public_tx_simulation_tester.ts +37 -48
- package/src/public/fixtures/token_test.ts +3 -3
- package/src/public/fixtures/utils.ts +6 -11
- package/src/public/fuzzing/avm_fuzzer_simulator.ts +28 -10
- package/src/public/index.ts +4 -0
- package/src/public/public_db_sources.ts +1 -1
- package/src/public/public_processor/public_processor.ts +22 -15
- package/src/public/public_tx_simulator/dumping_public_tx_simulator.ts +13 -29
- package/src/public/public_tx_simulator/factories.ts +24 -7
- package/src/public/public_tx_simulator/index.ts +5 -2
- package/src/public/public_tx_simulator/public_tx_simulator.ts +70 -81
- package/src/public/public_tx_simulator/public_tx_simulator_base.ts +8 -6
- package/src/public/public_tx_simulator/public_tx_simulator_interface.ts +5 -5
- package/src/public/test_executor_metrics.ts +0 -24
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts +0 -19
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts.map +0 -1
- package/dest/public/public_tx_simulator/contract_provider_for_cpp.js +0 -99
- package/src/public/public_tx_simulator/contract_provider_for_cpp.ts +0 -125
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import { AvmService } from '@aztec/bb-avm-sim';
|
|
2
|
+
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
3
|
+
|
|
4
|
+
import type { AvmContractsDBContext, AvmSimulator } from './avm_simulator.js';
|
|
5
|
+
import { CdbIpcServer } from './cdb_ipc_server.js';
|
|
6
|
+
|
|
7
|
+
export interface AvmSimulatorPoolOptions {
|
|
8
|
+
/** Maximum number of concurrent AVM processes. If not set, defaults to AVM_MAX_CONCURRENT_SIMULATIONS env var or 4. */
|
|
9
|
+
maxSize?: number;
|
|
10
|
+
/** Path to the bb-avm-sim binary. If omitted, the generated package resolves it. */
|
|
11
|
+
avmBinaryPath?: string;
|
|
12
|
+
/** IPC path for the shared WSDB server. */
|
|
13
|
+
wsdbIpcPath: string;
|
|
14
|
+
/** Optional logger function for AVM process output. */
|
|
15
|
+
logger?: (msg: string) => void;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* A raw handle to a single bb-avm-sim process: it runs a serialized simulation and connects back to the
|
|
20
|
+
* shared CDB/WSDB servers for state, but is unaware of which fork's contract data it is reading — that is
|
|
21
|
+
* routed by the fork id baked into the input buffer.
|
|
22
|
+
*/
|
|
23
|
+
interface AvmProcessHandle {
|
|
24
|
+
simulate(inputBuffer: Uint8Array, signal?: AbortSignal): Promise<Uint8Array>;
|
|
25
|
+
simulateWithHints(inputBuffer: Uint8Array): Promise<Uint8Array>;
|
|
26
|
+
destroy(): Promise<void>;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* The public-execution AVM backend: a lazily-grown pool of bb-avm-sim processes plus the CDB server that
|
|
31
|
+
* answers those processes' contract-data callbacks. Callers hold this as an {@link AvmSimulator}; the pool,
|
|
32
|
+
* the CDB server, its IPC path, and fork-id routing are all hidden behind that interface. Each `simulate`
|
|
33
|
+
* registers the call's contracts DB on the CDB server for the duration of the simulation (keyed by fork id
|
|
34
|
+
* so concurrent simulations on different forks don't collide) and unregisters it once the call returns.
|
|
35
|
+
*/
|
|
36
|
+
export class AvmSimulatorPool implements AvmSimulator {
|
|
37
|
+
private slots: Array<AvmProcessHandle | null> = [];
|
|
38
|
+
private available: number[] = [];
|
|
39
|
+
private waiters: Array<{ resolve: (simulator: AvmProcessHandle) => void; reject: (error: Error) => void }> = [];
|
|
40
|
+
private createdCount = 0;
|
|
41
|
+
private log: Logger;
|
|
42
|
+
private maxSize: number;
|
|
43
|
+
private cdbServer: CdbIpcServer;
|
|
44
|
+
|
|
45
|
+
constructor(private options: AvmSimulatorPoolOptions) {
|
|
46
|
+
this.log = createLogger('simulator:avm-pool');
|
|
47
|
+
this.maxSize = options.maxSize ?? parseInt(process.env.AVM_MAX_CONCURRENT_SIMULATIONS ?? '4', 10);
|
|
48
|
+
this.cdbServer = new CdbIpcServer();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static async spawn(options: AvmSimulatorPoolOptions): Promise<AvmSimulatorPool> {
|
|
52
|
+
const pool = new AvmSimulatorPool(options);
|
|
53
|
+
// Always start one process up front so the first simulate() doesn't pay process spawn/connect cost.
|
|
54
|
+
await pool.prewarm();
|
|
55
|
+
return pool;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
async [Symbol.asyncDispose](): Promise<void> {
|
|
59
|
+
await this.destroy();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
async simulate(inputBuffer: Uint8Array, context: AvmContractsDBContext, signal?: AbortSignal): Promise<Uint8Array> {
|
|
63
|
+
// Register the fork's contracts DB so the C++ AVM's callbacks (which carry this fork id) route to it,
|
|
64
|
+
// and unregister once the simulation returns — registration is only needed while the call is running.
|
|
65
|
+
this.cdbServer.registerFork(context.forkId, context.contractsDB, context.timestamp);
|
|
66
|
+
try {
|
|
67
|
+
const simulator = await this.checkout();
|
|
68
|
+
try {
|
|
69
|
+
return await simulator.simulate(inputBuffer, signal);
|
|
70
|
+
} finally {
|
|
71
|
+
this.return(simulator);
|
|
72
|
+
}
|
|
73
|
+
} finally {
|
|
74
|
+
this.cdbServer.unregisterFork(context.forkId);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
async simulateWithHints(inputBuffer: Uint8Array): Promise<Uint8Array> {
|
|
79
|
+
// The hinted path makes no contract-data callbacks, so no CDB registration is needed.
|
|
80
|
+
const simulator = await this.checkout();
|
|
81
|
+
try {
|
|
82
|
+
return await simulator.simulateWithHints(inputBuffer);
|
|
83
|
+
} finally {
|
|
84
|
+
this.return(simulator);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/** Destroy all AVM processes in the pool and close the CDB server. */
|
|
89
|
+
async destroy(): Promise<void> {
|
|
90
|
+
for (const waiter of this.waiters) {
|
|
91
|
+
waiter.reject(new Error('AVM simulator pool destroyed'));
|
|
92
|
+
}
|
|
93
|
+
this.waiters = [];
|
|
94
|
+
|
|
95
|
+
const destroyPromises: Promise<void>[] = [];
|
|
96
|
+
for (const slot of this.slots) {
|
|
97
|
+
if (slot) {
|
|
98
|
+
destroyPromises.push(slot.destroy());
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
await Promise.all(destroyPromises);
|
|
102
|
+
|
|
103
|
+
this.slots = [];
|
|
104
|
+
this.available = [];
|
|
105
|
+
this.createdCount = 0;
|
|
106
|
+
await this.cdbServer.close();
|
|
107
|
+
this.log.info('AVM simulator pool destroyed');
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Eagerly spawn up to `count` AVM processes (capped at maxSize) and leave them available, so the
|
|
112
|
+
* first simulate() doesn't pay process spawn/connect cost. Idempotent.
|
|
113
|
+
*/
|
|
114
|
+
async prewarm(count = 1): Promise<void> {
|
|
115
|
+
const target = Math.min(count, this.maxSize);
|
|
116
|
+
const created: AvmProcessHandle[] = [];
|
|
117
|
+
while (this.createdCount < target) {
|
|
118
|
+
created.push(await this.createSlot());
|
|
119
|
+
}
|
|
120
|
+
// Hand the freshly-spawned processes back to the pool so checkout() reuses them.
|
|
121
|
+
for (const simulator of created) {
|
|
122
|
+
this.return(simulator);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/** Check out an AVM process from the pool, blocking until one is free. Caller must return() it when done. */
|
|
127
|
+
private async checkout(): Promise<AvmProcessHandle> {
|
|
128
|
+
const idx = this.available.pop();
|
|
129
|
+
if (idx !== undefined && this.slots[idx]) {
|
|
130
|
+
return this.slots[idx]!;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
if (this.createdCount < this.maxSize || (idx !== undefined && !this.slots[idx])) {
|
|
134
|
+
return await this.createSlot(idx);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return new Promise<AvmProcessHandle>((resolve, reject) => {
|
|
138
|
+
this.waiters.push({ resolve, reject });
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/** Return an AVM process to the pool after use. */
|
|
143
|
+
private return(simulator: AvmProcessHandle): void {
|
|
144
|
+
const waiter = this.waiters.shift();
|
|
145
|
+
if (waiter) {
|
|
146
|
+
waiter.resolve(simulator);
|
|
147
|
+
} else {
|
|
148
|
+
const idx = this.slots.indexOf(simulator);
|
|
149
|
+
if (idx >= 0) {
|
|
150
|
+
this.available.push(idx);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
private async createSlot(reuseIdx?: number): Promise<AvmProcessHandle> {
|
|
156
|
+
const reuse = reuseIdx !== undefined && reuseIdx < this.slots.length;
|
|
157
|
+
// Reserve the slot count synchronously, before the async spawn, so concurrent checkouts can't all
|
|
158
|
+
// observe `createdCount < maxSize` and overshoot the pool (the count is only bumped once control has
|
|
159
|
+
// yielded on the await). Roll back the reservation if the spawn itself fails.
|
|
160
|
+
if (!reuse) {
|
|
161
|
+
this.createdCount++;
|
|
162
|
+
}
|
|
163
|
+
let simulator: AvmProcessHandle;
|
|
164
|
+
try {
|
|
165
|
+
simulator = await AvmSimulatorProcess.spawn({
|
|
166
|
+
binaryPath: this.options.avmBinaryPath,
|
|
167
|
+
wsdbIpcPath: this.options.wsdbIpcPath,
|
|
168
|
+
cdbIpcPath: this.cdbServer.ipcPath,
|
|
169
|
+
logger: this.options.logger,
|
|
170
|
+
});
|
|
171
|
+
} catch (err) {
|
|
172
|
+
if (!reuse) {
|
|
173
|
+
this.createdCount--;
|
|
174
|
+
}
|
|
175
|
+
throw err;
|
|
176
|
+
}
|
|
177
|
+
if (reuse) {
|
|
178
|
+
this.slots[reuseIdx!] = simulator;
|
|
179
|
+
} else {
|
|
180
|
+
this.slots.push(simulator);
|
|
181
|
+
}
|
|
182
|
+
this.log.debug(`Created AVM pool slot (${this.createdCount}/${this.maxSize})`);
|
|
183
|
+
return simulator;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
class AvmSimulatorProcess implements AvmProcessHandle {
|
|
188
|
+
private constructor(private service: AvmService) {}
|
|
189
|
+
|
|
190
|
+
static async spawn(options: {
|
|
191
|
+
binaryPath?: string;
|
|
192
|
+
wsdbIpcPath: string;
|
|
193
|
+
cdbIpcPath: string;
|
|
194
|
+
logger?: (msg: string) => void;
|
|
195
|
+
}): Promise<AvmSimulatorProcess> {
|
|
196
|
+
const service = await AvmService.spawn({
|
|
197
|
+
binaryPath: options.binaryPath,
|
|
198
|
+
transport: 'uds',
|
|
199
|
+
logger: options.logger,
|
|
200
|
+
extraArgs: ['--wsdb', options.wsdbIpcPath, '--cdb', options.cdbIpcPath],
|
|
201
|
+
});
|
|
202
|
+
return new AvmSimulatorProcess(service);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
public async simulate(inputBuffer: Uint8Array, signal?: AbortSignal): Promise<Uint8Array> {
|
|
206
|
+
// Signal the C++ process to stop at its next cancellation checkpoint when the caller aborts.
|
|
207
|
+
const onAbort = () => this.service.sendProcessSignal('SIGUSR1');
|
|
208
|
+
if (signal?.aborted) {
|
|
209
|
+
onAbort();
|
|
210
|
+
}
|
|
211
|
+
signal?.addEventListener('abort', onAbort, { once: true });
|
|
212
|
+
try {
|
|
213
|
+
return (await this.service.simulate({ inputs: inputBuffer })).result;
|
|
214
|
+
} finally {
|
|
215
|
+
signal?.removeEventListener('abort', onAbort);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
public async simulateWithHints(inputBuffer: Uint8Array): Promise<Uint8Array> {
|
|
220
|
+
return (await this.service.simulateWithHints({ inputs: inputBuffer })).result;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
public async destroy(): Promise<void> {
|
|
224
|
+
await this.service.destroy();
|
|
225
|
+
}
|
|
226
|
+
}
|
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
// AUTOGENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
/** Schema version hash for compatibility checking */
|
|
4
|
+
export const SCHEMA_HASH = 'ef6a34b441b65d90238d2b3616a763136f5f53f9239ecabe9163ebf9388c89bd';
|
|
5
|
+
|
|
6
|
+
// Runtime guards for wire types that JS cannot represent natively.
|
|
7
|
+
// TODO: migrate u64 fields to bigint end-to-end and drop these.
|
|
8
|
+
//
|
|
9
|
+
// Decode: msgpackr returns uint64/int64 wire values as bigint once they
|
|
10
|
+
// exceed 32 bits; values must fit in the JS safe integer range.
|
|
11
|
+
function assertU64(value: number | bigint, ctx: string): number {
|
|
12
|
+
if (typeof value === "bigint") {
|
|
13
|
+
if (value < 0n || value > BigInt(Number.MAX_SAFE_INTEGER)) {
|
|
14
|
+
throw new Error(`${ctx}: u64 value ${value} is outside JS safe integer range`);
|
|
15
|
+
}
|
|
16
|
+
return Number(value);
|
|
17
|
+
}
|
|
18
|
+
if (!Number.isSafeInteger(value) || value < 0) {
|
|
19
|
+
throw new Error(`${ctx}: u64 value ${value} is outside JS safe integer range`);
|
|
20
|
+
}
|
|
21
|
+
return value;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// Encode: msgpackr encodes JS numbers above 2^32 as float64, which strict
|
|
25
|
+
// u64 decoders reject; route them through bigint so the wire type stays uint.
|
|
26
|
+
function toWireU64(value: number | bigint, ctx: string): number | bigint {
|
|
27
|
+
const checked = assertU64(value, ctx);
|
|
28
|
+
return checked > 0xffffffff ? BigInt(checked) : checked;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function assertBin32(value: Uint8Array, ctx: string): Uint8Array {
|
|
32
|
+
if (value.length !== 32) {
|
|
33
|
+
throw new Error(`${ctx}: expected 32 bytes, got ${value.length}`);
|
|
34
|
+
}
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Type aliases for primitive types
|
|
39
|
+
export type AztecAddress = Uint8Array;
|
|
40
|
+
export type ContractClassId = Uint8Array;
|
|
41
|
+
export type ForkId = number;
|
|
42
|
+
export type Fr = Uint8Array;
|
|
43
|
+
export type FunctionSelector = Uint8Array;
|
|
44
|
+
|
|
45
|
+
// Public interfaces (exported)
|
|
46
|
+
export interface CdbGetContractInstance {
|
|
47
|
+
address: AztecAddress;
|
|
48
|
+
forkId: ForkId;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export interface CdbGetContractClass {
|
|
52
|
+
classId: ContractClassId;
|
|
53
|
+
forkId: ForkId;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface CdbGetBytecodeCommitment {
|
|
57
|
+
classId: ContractClassId;
|
|
58
|
+
forkId: ForkId;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface CdbGetDebugFunctionName {
|
|
62
|
+
address: AztecAddress;
|
|
63
|
+
selector: FunctionSelector;
|
|
64
|
+
forkId: ForkId;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface CdbAddContracts {
|
|
68
|
+
contractDeploymentData: Uint8Array;
|
|
69
|
+
forkId: ForkId;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface CdbCreateCheckpoint {
|
|
73
|
+
forkId: ForkId;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface CdbCommitCheckpoint {
|
|
77
|
+
forkId: ForkId;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export interface CdbRevertCheckpoint {
|
|
81
|
+
forkId: ForkId;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface CdbGetContractInstanceResponse {
|
|
85
|
+
instance: Uint8Array | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface CdbGetContractClassResponse {
|
|
89
|
+
contractClass: Uint8Array | null;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export interface CdbGetBytecodeCommitmentResponse {
|
|
93
|
+
commitment: Fr | null;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface CdbGetDebugFunctionNameResponse {
|
|
97
|
+
name: string | null;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface CdbAddContractsResponse {
|
|
101
|
+
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export interface CdbCreateCheckpointResponse {
|
|
105
|
+
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export interface CdbCommitCheckpointResponse {
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export interface CdbRevertCheckpointResponse {
|
|
113
|
+
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export interface CdbErrorResponse {
|
|
117
|
+
message: string;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Private Msgpack interfaces (not exported)
|
|
121
|
+
interface MsgpackCdbGetContractInstance {
|
|
122
|
+
address: Uint8Array;
|
|
123
|
+
forkId: number | bigint;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
interface MsgpackCdbGetContractClass {
|
|
127
|
+
classId: Uint8Array;
|
|
128
|
+
forkId: number | bigint;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
interface MsgpackCdbGetBytecodeCommitment {
|
|
132
|
+
classId: Uint8Array;
|
|
133
|
+
forkId: number | bigint;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
interface MsgpackCdbGetDebugFunctionName {
|
|
137
|
+
address: Uint8Array;
|
|
138
|
+
selector: Uint8Array;
|
|
139
|
+
forkId: number | bigint;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
interface MsgpackCdbAddContracts {
|
|
143
|
+
contractDeploymentData: Uint8Array;
|
|
144
|
+
forkId: number | bigint;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
interface MsgpackCdbCreateCheckpoint {
|
|
148
|
+
forkId: number | bigint;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
interface MsgpackCdbCommitCheckpoint {
|
|
152
|
+
forkId: number | bigint;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
interface MsgpackCdbRevertCheckpoint {
|
|
156
|
+
forkId: number | bigint;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
interface MsgpackCdbGetContractInstanceResponse {
|
|
160
|
+
instance: Uint8Array | null;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
interface MsgpackCdbGetContractClassResponse {
|
|
164
|
+
contractClass: Uint8Array | null;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
interface MsgpackCdbGetBytecodeCommitmentResponse {
|
|
168
|
+
commitment: Uint8Array | null;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
interface MsgpackCdbGetDebugFunctionNameResponse {
|
|
172
|
+
name: string | null;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
interface MsgpackCdbAddContractsResponse {
|
|
176
|
+
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
interface MsgpackCdbCreateCheckpointResponse {
|
|
180
|
+
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface MsgpackCdbCommitCheckpointResponse {
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface MsgpackCdbRevertCheckpointResponse {
|
|
188
|
+
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
interface MsgpackCdbErrorResponse {
|
|
192
|
+
message: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// Conversion functions (exported)
|
|
196
|
+
export function toCdbGetContractInstance(o: MsgpackCdbGetContractInstance): CdbGetContractInstance {
|
|
197
|
+
if (o.address === undefined) { throw new Error("Expected address in CdbGetContractInstance deserialization"); }
|
|
198
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetContractInstance deserialization"); };
|
|
199
|
+
return {
|
|
200
|
+
address: assertBin32(o.address, "o.address"),
|
|
201
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export function toCdbGetContractClass(o: MsgpackCdbGetContractClass): CdbGetContractClass {
|
|
206
|
+
if (o.classId === undefined) { throw new Error("Expected classId in CdbGetContractClass deserialization"); }
|
|
207
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetContractClass deserialization"); };
|
|
208
|
+
return {
|
|
209
|
+
classId: assertBin32(o.classId, "o.classId"),
|
|
210
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export function toCdbGetBytecodeCommitment(o: MsgpackCdbGetBytecodeCommitment): CdbGetBytecodeCommitment {
|
|
215
|
+
if (o.classId === undefined) { throw new Error("Expected classId in CdbGetBytecodeCommitment deserialization"); }
|
|
216
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetBytecodeCommitment deserialization"); };
|
|
217
|
+
return {
|
|
218
|
+
classId: assertBin32(o.classId, "o.classId"),
|
|
219
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
220
|
+
};
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export function toCdbGetDebugFunctionName(o: MsgpackCdbGetDebugFunctionName): CdbGetDebugFunctionName {
|
|
224
|
+
if (o.address === undefined) { throw new Error("Expected address in CdbGetDebugFunctionName deserialization"); }
|
|
225
|
+
if (o.selector === undefined) { throw new Error("Expected selector in CdbGetDebugFunctionName deserialization"); }
|
|
226
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetDebugFunctionName deserialization"); };
|
|
227
|
+
return {
|
|
228
|
+
address: assertBin32(o.address, "o.address"),
|
|
229
|
+
selector: assertBin32(o.selector, "o.selector"),
|
|
230
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
231
|
+
};
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export function toCdbAddContracts(o: MsgpackCdbAddContracts): CdbAddContracts {
|
|
235
|
+
if (o.contractDeploymentData === undefined) { throw new Error("Expected contractDeploymentData in CdbAddContracts deserialization"); }
|
|
236
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbAddContracts deserialization"); };
|
|
237
|
+
return {
|
|
238
|
+
contractDeploymentData: o.contractDeploymentData,
|
|
239
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
240
|
+
};
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export function toCdbCreateCheckpoint(o: MsgpackCdbCreateCheckpoint): CdbCreateCheckpoint {
|
|
244
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbCreateCheckpoint deserialization"); };
|
|
245
|
+
return {
|
|
246
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export function toCdbCommitCheckpoint(o: MsgpackCdbCommitCheckpoint): CdbCommitCheckpoint {
|
|
251
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbCommitCheckpoint deserialization"); };
|
|
252
|
+
return {
|
|
253
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
254
|
+
};
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export function toCdbRevertCheckpoint(o: MsgpackCdbRevertCheckpoint): CdbRevertCheckpoint {
|
|
258
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbRevertCheckpoint deserialization"); };
|
|
259
|
+
return {
|
|
260
|
+
forkId: assertU64(o.forkId, "o.forkId"),
|
|
261
|
+
};
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export function toCdbGetContractInstanceResponse(o: MsgpackCdbGetContractInstanceResponse): CdbGetContractInstanceResponse {
|
|
265
|
+
;
|
|
266
|
+
return {
|
|
267
|
+
instance: o.instance ?? null,
|
|
268
|
+
};
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export function toCdbGetContractClassResponse(o: MsgpackCdbGetContractClassResponse): CdbGetContractClassResponse {
|
|
272
|
+
;
|
|
273
|
+
return {
|
|
274
|
+
contractClass: o.contractClass ?? null,
|
|
275
|
+
};
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export function toCdbGetBytecodeCommitmentResponse(o: MsgpackCdbGetBytecodeCommitmentResponse): CdbGetBytecodeCommitmentResponse {
|
|
279
|
+
;
|
|
280
|
+
return {
|
|
281
|
+
commitment: o.commitment != null ? assertBin32(o.commitment, "o.commitment") : null,
|
|
282
|
+
};
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export function toCdbGetDebugFunctionNameResponse(o: MsgpackCdbGetDebugFunctionNameResponse): CdbGetDebugFunctionNameResponse {
|
|
286
|
+
;
|
|
287
|
+
return {
|
|
288
|
+
name: o.name ?? null,
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
export function toCdbAddContractsResponse(o: MsgpackCdbAddContractsResponse): CdbAddContractsResponse {
|
|
293
|
+
return {};
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
export function toCdbCreateCheckpointResponse(o: MsgpackCdbCreateCheckpointResponse): CdbCreateCheckpointResponse {
|
|
297
|
+
return {};
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export function toCdbCommitCheckpointResponse(o: MsgpackCdbCommitCheckpointResponse): CdbCommitCheckpointResponse {
|
|
301
|
+
return {};
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export function toCdbRevertCheckpointResponse(o: MsgpackCdbRevertCheckpointResponse): CdbRevertCheckpointResponse {
|
|
305
|
+
return {};
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export function toCdbErrorResponse(o: MsgpackCdbErrorResponse): CdbErrorResponse {
|
|
309
|
+
if (o.message === undefined) { throw new Error("Expected message in CdbErrorResponse deserialization"); };
|
|
310
|
+
return {
|
|
311
|
+
message: o.message,
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
export function fromCdbGetContractInstance(o: CdbGetContractInstance): MsgpackCdbGetContractInstance {
|
|
316
|
+
if (o.address === undefined) { throw new Error("Expected address in CdbGetContractInstance serialization"); }
|
|
317
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetContractInstance serialization"); };
|
|
318
|
+
return {
|
|
319
|
+
address: assertBin32(o.address, "o.address"),
|
|
320
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
export function fromCdbGetContractClass(o: CdbGetContractClass): MsgpackCdbGetContractClass {
|
|
325
|
+
if (o.classId === undefined) { throw new Error("Expected classId in CdbGetContractClass serialization"); }
|
|
326
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetContractClass serialization"); };
|
|
327
|
+
return {
|
|
328
|
+
classId: assertBin32(o.classId, "o.classId"),
|
|
329
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
330
|
+
};
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export function fromCdbGetBytecodeCommitment(o: CdbGetBytecodeCommitment): MsgpackCdbGetBytecodeCommitment {
|
|
334
|
+
if (o.classId === undefined) { throw new Error("Expected classId in CdbGetBytecodeCommitment serialization"); }
|
|
335
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetBytecodeCommitment serialization"); };
|
|
336
|
+
return {
|
|
337
|
+
classId: assertBin32(o.classId, "o.classId"),
|
|
338
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
339
|
+
};
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export function fromCdbGetDebugFunctionName(o: CdbGetDebugFunctionName): MsgpackCdbGetDebugFunctionName {
|
|
343
|
+
if (o.address === undefined) { throw new Error("Expected address in CdbGetDebugFunctionName serialization"); }
|
|
344
|
+
if (o.selector === undefined) { throw new Error("Expected selector in CdbGetDebugFunctionName serialization"); }
|
|
345
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbGetDebugFunctionName serialization"); };
|
|
346
|
+
return {
|
|
347
|
+
address: assertBin32(o.address, "o.address"),
|
|
348
|
+
selector: assertBin32(o.selector, "o.selector"),
|
|
349
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
350
|
+
};
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export function fromCdbAddContracts(o: CdbAddContracts): MsgpackCdbAddContracts {
|
|
354
|
+
if (o.contractDeploymentData === undefined) { throw new Error("Expected contractDeploymentData in CdbAddContracts serialization"); }
|
|
355
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbAddContracts serialization"); };
|
|
356
|
+
return {
|
|
357
|
+
contractDeploymentData: o.contractDeploymentData,
|
|
358
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
359
|
+
};
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export function fromCdbCreateCheckpoint(o: CdbCreateCheckpoint): MsgpackCdbCreateCheckpoint {
|
|
363
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbCreateCheckpoint serialization"); };
|
|
364
|
+
return {
|
|
365
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
366
|
+
};
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export function fromCdbCommitCheckpoint(o: CdbCommitCheckpoint): MsgpackCdbCommitCheckpoint {
|
|
370
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbCommitCheckpoint serialization"); };
|
|
371
|
+
return {
|
|
372
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
373
|
+
};
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
export function fromCdbRevertCheckpoint(o: CdbRevertCheckpoint): MsgpackCdbRevertCheckpoint {
|
|
377
|
+
if (o.forkId === undefined) { throw new Error("Expected forkId in CdbRevertCheckpoint serialization"); };
|
|
378
|
+
return {
|
|
379
|
+
forkId: toWireU64(o.forkId, "o.forkId"),
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export function fromCdbGetContractInstanceResponse(o: CdbGetContractInstanceResponse): MsgpackCdbGetContractInstanceResponse {
|
|
384
|
+
;
|
|
385
|
+
return {
|
|
386
|
+
instance: o.instance ?? null,
|
|
387
|
+
};
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
export function fromCdbGetContractClassResponse(o: CdbGetContractClassResponse): MsgpackCdbGetContractClassResponse {
|
|
391
|
+
;
|
|
392
|
+
return {
|
|
393
|
+
contractClass: o.contractClass ?? null,
|
|
394
|
+
};
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
export function fromCdbGetBytecodeCommitmentResponse(o: CdbGetBytecodeCommitmentResponse): MsgpackCdbGetBytecodeCommitmentResponse {
|
|
398
|
+
;
|
|
399
|
+
return {
|
|
400
|
+
commitment: o.commitment != null ? assertBin32(o.commitment, "o.commitment") : null,
|
|
401
|
+
};
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
export function fromCdbGetDebugFunctionNameResponse(o: CdbGetDebugFunctionNameResponse): MsgpackCdbGetDebugFunctionNameResponse {
|
|
405
|
+
;
|
|
406
|
+
return {
|
|
407
|
+
name: o.name ?? null,
|
|
408
|
+
};
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export function fromCdbAddContractsResponse(o: CdbAddContractsResponse): MsgpackCdbAddContractsResponse {
|
|
412
|
+
return {};
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
export function fromCdbCreateCheckpointResponse(o: CdbCreateCheckpointResponse): MsgpackCdbCreateCheckpointResponse {
|
|
416
|
+
return {};
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export function fromCdbCommitCheckpointResponse(o: CdbCommitCheckpointResponse): MsgpackCdbCommitCheckpointResponse {
|
|
420
|
+
return {};
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export function fromCdbRevertCheckpointResponse(o: CdbRevertCheckpointResponse): MsgpackCdbRevertCheckpointResponse {
|
|
424
|
+
return {};
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
export function fromCdbErrorResponse(o: CdbErrorResponse): MsgpackCdbErrorResponse {
|
|
428
|
+
if (o.message === undefined) { throw new Error("Expected message in CdbErrorResponse serialization"); };
|
|
429
|
+
return {
|
|
430
|
+
message: o.message,
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
// Base API interfaces
|
|
435
|
+
export interface AsyncApiBase {
|
|
436
|
+
getContractInstance(command: CdbGetContractInstance): Promise<CdbGetContractInstanceResponse>;
|
|
437
|
+
getContractClass(command: CdbGetContractClass): Promise<CdbGetContractClassResponse>;
|
|
438
|
+
getBytecodeCommitment(command: CdbGetBytecodeCommitment): Promise<CdbGetBytecodeCommitmentResponse>;
|
|
439
|
+
getDebugFunctionName(command: CdbGetDebugFunctionName): Promise<CdbGetDebugFunctionNameResponse>;
|
|
440
|
+
addContracts(command: CdbAddContracts): Promise<CdbAddContractsResponse>;
|
|
441
|
+
createCheckpoint(command: CdbCreateCheckpoint): Promise<CdbCreateCheckpointResponse>;
|
|
442
|
+
commitCheckpoint(command: CdbCommitCheckpoint): Promise<CdbCommitCheckpointResponse>;
|
|
443
|
+
revertCheckpoint(command: CdbRevertCheckpoint): Promise<CdbRevertCheckpointResponse>;
|
|
444
|
+
destroy(): Promise<void>;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
export interface SyncApiBase {
|
|
448
|
+
getContractInstance(command: CdbGetContractInstance): CdbGetContractInstanceResponse;
|
|
449
|
+
getContractClass(command: CdbGetContractClass): CdbGetContractClassResponse;
|
|
450
|
+
getBytecodeCommitment(command: CdbGetBytecodeCommitment): CdbGetBytecodeCommitmentResponse;
|
|
451
|
+
getDebugFunctionName(command: CdbGetDebugFunctionName): CdbGetDebugFunctionNameResponse;
|
|
452
|
+
addContracts(command: CdbAddContracts): CdbAddContractsResponse;
|
|
453
|
+
createCheckpoint(command: CdbCreateCheckpoint): CdbCreateCheckpointResponse;
|
|
454
|
+
commitCheckpoint(command: CdbCommitCheckpoint): CdbCommitCheckpointResponse;
|
|
455
|
+
revertCheckpoint(command: CdbRevertCheckpoint): CdbRevertCheckpointResponse;
|
|
456
|
+
destroy(): void;
|
|
457
|
+
}
|