@aztec/txe 0.0.1-commit.f2ce05ee → 0.0.1-commit.f5d02921e

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.
Files changed (58) hide show
  1. package/dest/index.d.ts +1 -1
  2. package/dest/index.d.ts.map +1 -1
  3. package/dest/index.js +88 -54
  4. package/dest/oracle/interfaces.d.ts +29 -28
  5. package/dest/oracle/interfaces.d.ts.map +1 -1
  6. package/dest/oracle/txe_oracle_public_context.d.ts +13 -13
  7. package/dest/oracle/txe_oracle_public_context.d.ts.map +1 -1
  8. package/dest/oracle/txe_oracle_public_context.js +12 -12
  9. package/dest/oracle/txe_oracle_top_level_context.d.ts +23 -23
  10. package/dest/oracle/txe_oracle_top_level_context.d.ts.map +1 -1
  11. package/dest/oracle/txe_oracle_top_level_context.js +112 -54
  12. package/dest/rpc_translator.d.ts +87 -82
  13. package/dest/rpc_translator.d.ts.map +1 -1
  14. package/dest/rpc_translator.js +285 -152
  15. package/dest/state_machine/archiver.d.ts +3 -3
  16. package/dest/state_machine/archiver.d.ts.map +1 -1
  17. package/dest/state_machine/archiver.js +7 -8
  18. package/dest/state_machine/dummy_p2p_client.d.ts +16 -12
  19. package/dest/state_machine/dummy_p2p_client.d.ts.map +1 -1
  20. package/dest/state_machine/dummy_p2p_client.js +28 -16
  21. package/dest/state_machine/global_variable_builder.d.ts +3 -3
  22. package/dest/state_machine/global_variable_builder.d.ts.map +1 -1
  23. package/dest/state_machine/global_variable_builder.js +1 -1
  24. package/dest/state_machine/index.d.ts +6 -3
  25. package/dest/state_machine/index.d.ts.map +1 -1
  26. package/dest/state_machine/index.js +9 -5
  27. package/dest/state_machine/mock_epoch_cache.d.ts +17 -3
  28. package/dest/state_machine/mock_epoch_cache.d.ts.map +1 -1
  29. package/dest/state_machine/mock_epoch_cache.js +32 -2
  30. package/dest/state_machine/synchronizer.d.ts +5 -5
  31. package/dest/state_machine/synchronizer.d.ts.map +1 -1
  32. package/dest/state_machine/synchronizer.js +3 -3
  33. package/dest/txe_session.d.ts +10 -6
  34. package/dest/txe_session.d.ts.map +1 -1
  35. package/dest/txe_session.js +90 -25
  36. package/dest/util/encoding.d.ts +69 -1
  37. package/dest/util/encoding.d.ts.map +1 -1
  38. package/dest/util/txe_public_contract_data_source.d.ts +2 -3
  39. package/dest/util/txe_public_contract_data_source.d.ts.map +1 -1
  40. package/dest/util/txe_public_contract_data_source.js +6 -25
  41. package/package.json +15 -15
  42. package/src/index.ts +89 -52
  43. package/src/oracle/interfaces.ts +32 -31
  44. package/src/oracle/txe_oracle_public_context.ts +12 -12
  45. package/src/oracle/txe_oracle_top_level_context.ts +118 -92
  46. package/src/rpc_translator.ts +332 -174
  47. package/src/state_machine/archiver.ts +6 -5
  48. package/src/state_machine/dummy_p2p_client.ts +39 -22
  49. package/src/state_machine/global_variable_builder.ts +7 -1
  50. package/src/state_machine/index.ts +10 -1
  51. package/src/state_machine/mock_epoch_cache.ts +42 -3
  52. package/src/state_machine/synchronizer.ts +4 -4
  53. package/src/txe_session.ts +102 -73
  54. package/src/util/txe_public_contract_data_source.ts +10 -38
  55. package/dest/util/txe_contract_store.d.ts +0 -12
  56. package/dest/util/txe_contract_store.d.ts.map +0 -1
  57. package/dest/util/txe_contract_store.js +0 -22
  58. package/src/util/txe_contract_store.ts +0 -36
@@ -12,9 +12,13 @@ import { Fr } from '@aztec/foundation/curves/bn254';
12
12
  import { LogLevels, type Logger, applyStringFormatting, createLogger } from '@aztec/foundation/log';
13
13
  import { TestDateProvider } from '@aztec/foundation/timer';
14
14
  import type { KeyStore } from '@aztec/key-store';
15
+ import type { AccessScopes } from '@aztec/pxe/client/lazy';
15
16
  import {
16
17
  AddressStore,
18
+ CapsuleService,
17
19
  CapsuleStore,
20
+ type ContractStore,
21
+ type ContractSyncService,
18
22
  NoteStore,
19
23
  ORACLE_VERSION,
20
24
  PrivateEventStore,
@@ -83,7 +87,6 @@ import { ForkCheckpoint } from '@aztec/world-state';
83
87
  import { DEFAULT_ADDRESS } from '../constants.js';
84
88
  import type { TXEStateMachine } from '../state_machine/index.js';
85
89
  import type { TXEAccountStore } from '../util/txe_account_store.js';
86
- import type { TXEContractStore } from '../util/txe_contract_store.js';
87
90
  import { TXEPublicContractDataSource } from '../util/txe_public_contract_data_source.js';
88
91
  import { getSingleTxBlockRequestHash, insertTxEffectIntoWorldTrees, makeTXEBlock } from '../utils/block_creation.js';
89
92
  import type { ITxeExecutionOracle } from './interfaces.js';
@@ -96,7 +99,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
96
99
 
97
100
  constructor(
98
101
  private stateMachine: TXEStateMachine,
99
- private contractStore: TXEContractStore,
102
+ private contractStore: ContractStore,
100
103
  private noteStore: NoteStore,
101
104
  private keyStore: KeyStore,
102
105
  private addressStore: AddressStore,
@@ -106,34 +109,38 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
106
109
  private senderAddressBookStore: SenderAddressBookStore,
107
110
  private capsuleStore: CapsuleStore,
108
111
  private privateEventStore: PrivateEventStore,
109
- private jobId: string,
110
112
  private nextBlockTimestamp: bigint,
111
113
  private version: Fr,
112
114
  private chainId: Fr,
113
115
  private authwits: Map<string, AuthWitness>,
116
+ private readonly contractSyncService: ContractSyncService,
114
117
  ) {
115
118
  this.logger = createLogger('txe:top_level_context');
116
119
  this.logger.debug('Entering Top Level Context');
117
120
  }
118
121
 
119
- utilityAssertCompatibleOracleVersion(version: number): void {
122
+ assertCompatibleOracleVersion(version: number): void {
120
123
  if (version !== ORACLE_VERSION) {
124
+ const hint =
125
+ version > ORACLE_VERSION
126
+ ? 'The contract was compiled with a newer version of Aztec.nr than this aztec cli version supports. Upgrade your aztec cli version to a compatible version.'
127
+ : 'The contract was compiled with an older version of Aztec.nr than this aztec cli version supports. Recompile the contract with a compatible version of Aztec.nr.';
121
128
  throw new Error(
122
- `Incompatible oracle version. TXE is using version '${ORACLE_VERSION}', but got a request for '${version}'.`,
129
+ `Incompatible aztec cli version: ${hint} See https://docs.aztec.network/errors/8 (expected oracle version ${ORACLE_VERSION}, got ${version})`,
123
130
  );
124
131
  }
125
132
  }
126
133
 
127
134
  // This is typically only invoked in private contexts, but it is convenient to also have it in top-level for testing
128
135
  // setup.
129
- utilityGetRandomField(): Fr {
136
+ getRandomField(): Fr {
130
137
  return Fr.random();
131
138
  }
132
139
 
133
140
  // We instruct users to debug contracts via this oracle, so it makes sense that they'd expect it to also work in tests
134
- utilityDebugLog(level: number, message: string, fields: Fr[]): Promise<void> {
141
+ log(level: number, message: string, fields: Fr[]): Promise<void> {
135
142
  if (!LogLevels[level]) {
136
- throw new Error(`Invalid debug log level: ${level}`);
143
+ throw new Error(`Invalid log level: ${level}`);
137
144
  }
138
145
  const levelName = LogLevels[level];
139
146
 
@@ -141,23 +148,23 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
141
148
  return Promise.resolve();
142
149
  }
143
150
 
144
- txeGetDefaultAddress(): AztecAddress {
151
+ getDefaultAddress(): AztecAddress {
145
152
  return DEFAULT_ADDRESS;
146
153
  }
147
154
 
148
- async txeGetNextBlockNumber(): Promise<BlockNumber> {
155
+ async getNextBlockNumber(): Promise<BlockNumber> {
149
156
  return BlockNumber((await this.getLastBlockNumber()) + 1);
150
157
  }
151
158
 
152
- txeGetNextBlockTimestamp(): Promise<bigint> {
159
+ getNextBlockTimestamp(): Promise<bigint> {
153
160
  return Promise.resolve(this.nextBlockTimestamp);
154
161
  }
155
162
 
156
- async txeGetLastBlockTimestamp() {
163
+ async getLastBlockTimestamp() {
157
164
  return (await this.stateMachine.node.getBlockHeader('latest'))!.globalVariables.timestamp;
158
165
  }
159
166
 
160
- async txeGetLastTxEffects() {
167
+ async getLastTxEffects() {
161
168
  const latestBlockNumber = await this.stateMachine.archiver.getBlockNumber();
162
169
  const block = await this.stateMachine.archiver.getBlock(latestBlockNumber);
163
170
 
@@ -171,7 +178,26 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
171
178
  return { txHash: txEffects.txHash, noteHashes: txEffects.noteHashes, nullifiers: txEffects.nullifiers };
172
179
  }
173
180
 
174
- async txeGetPrivateEvents(selector: EventSelector, contractAddress: AztecAddress, scope: AztecAddress) {
181
+ async syncContractNonOracleMethod(contractAddress: AztecAddress, scope: AztecAddress, jobId: string) {
182
+ if (contractAddress.equals(DEFAULT_ADDRESS)) {
183
+ this.logger.debug(`Skipping sync in getPrivateEvents because the events correspond to the default address.`);
184
+ return;
185
+ }
186
+
187
+ const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
188
+ await this.stateMachine.contractSyncService.ensureContractSynced(
189
+ contractAddress,
190
+ null,
191
+ async (call, execScopes) => {
192
+ await this.executeUtilityCall(call, execScopes, jobId);
193
+ },
194
+ blockHeader,
195
+ jobId,
196
+ [scope],
197
+ );
198
+ }
199
+
200
+ async getPrivateEvents(selector: EventSelector, contractAddress: AztecAddress, scope: AztecAddress) {
175
201
  return (
176
202
  await this.privateEventStore.getPrivateEvents(selector, {
177
203
  contractAddress,
@@ -182,7 +208,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
182
208
  ).map(e => e.packedEvent);
183
209
  }
184
210
 
185
- async txeAdvanceBlocksBy(blocks: number) {
211
+ async advanceBlocksBy(blocks: number) {
186
212
  this.logger.debug(`time traveling ${blocks} blocks`);
187
213
 
188
214
  for (let i = 0; i < blocks; i++) {
@@ -190,12 +216,12 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
190
216
  }
191
217
  }
192
218
 
193
- txeAdvanceTimestampBy(duration: UInt64) {
219
+ advanceTimestampBy(duration: UInt64) {
194
220
  this.logger.debug(`time traveling ${duration} seconds`);
195
221
  this.nextBlockTimestamp += duration;
196
222
  }
197
223
 
198
- async txeDeploy(artifact: ContractArtifact, instance: ContractInstanceWithAddress, secret: Fr) {
224
+ async deploy(artifact: ContractArtifact, instance: ContractInstanceWithAddress, secret: Fr) {
199
225
  // Emit deployment nullifier
200
226
  await this.mineBlock({
201
227
  nullifiers: [
@@ -207,20 +233,20 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
207
233
  });
208
234
 
209
235
  if (!secret.equals(Fr.ZERO)) {
210
- await this.txeAddAccount(artifact, instance, secret);
236
+ await this.addAccount(artifact, instance, secret);
211
237
  } else {
212
238
  await this.contractStore.addContractInstance(instance);
213
- await this.contractStore.addContractArtifact(instance.currentContractClassId, artifact);
239
+ await this.contractStore.addContractArtifact(artifact);
214
240
  this.logger.debug(`Deployed ${artifact.name} at ${instance.address}`);
215
241
  }
216
242
  }
217
243
 
218
- async txeAddAccount(artifact: ContractArtifact, instance: ContractInstanceWithAddress, secret: Fr) {
244
+ async addAccount(artifact: ContractArtifact, instance: ContractInstanceWithAddress, secret: Fr) {
219
245
  const partialAddress = await computePartialAddress(instance);
220
246
 
221
247
  this.logger.debug(`Deployed ${artifact.name} at ${instance.address}`);
222
248
  await this.contractStore.addContractInstance(instance);
223
- await this.contractStore.addContractArtifact(instance.currentContractClassId, artifact);
249
+ await this.contractStore.addContractArtifact(artifact);
224
250
 
225
251
  const completeAddress = await this.keyStore.addAccount(secret, partialAddress);
226
252
  await this.accountStore.setAccount(completeAddress.address, completeAddress);
@@ -230,7 +256,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
230
256
  return completeAddress;
231
257
  }
232
258
 
233
- async txeCreateAccount(secret: Fr) {
259
+ async createAccount(secret: Fr) {
234
260
  // This is a foot gun !
235
261
  const completeAddress = await this.keyStore.addAccount(secret, secret);
236
262
  await this.accountStore.setAccount(completeAddress.address, completeAddress);
@@ -240,7 +266,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
240
266
  return completeAddress;
241
267
  }
242
268
 
243
- async txeAddAuthWitness(address: AztecAddress, messageHash: Fr) {
269
+ async addAuthWitness(address: AztecAddress, messageHash: Fr) {
244
270
  const account = await this.accountStore.getAccount(address);
245
271
  const privateKey = await this.keyStore.getMasterSecretKey(account.publicKeys.masterIncomingViewingPublicKey);
246
272
 
@@ -253,7 +279,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
253
279
  }
254
280
 
255
281
  async mineBlock(options: { nullifiers?: Fr[] } = {}) {
256
- const blockNumber = await this.txeGetNextBlockNumber();
282
+ const blockNumber = await this.getNextBlockNumber();
257
283
 
258
284
  const txEffect = TxEffect.empty();
259
285
  txEffect.nullifiers = [getSingleTxBlockRequestHash(blockNumber), ...(options.nullifiers ?? [])];
@@ -277,13 +303,14 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
277
303
  await this.stateMachine.handleL2Block(block);
278
304
  }
279
305
 
280
- async txePrivateCallNewFlow(
306
+ async privateCallNewFlow(
281
307
  from: AztecAddress,
282
308
  targetContractAddress: AztecAddress = AztecAddress.zero(),
283
309
  functionSelector: FunctionSelector = FunctionSelector.empty(),
284
310
  args: Fr[],
285
311
  argsHash: Fr = Fr.zero(),
286
312
  isStaticCall: boolean = false,
313
+ jobId: string,
287
314
  ) {
288
315
  this.logger.verbose(
289
316
  `Executing external function ${await this.contractStore.getDebugFunctionName(targetContractAddress, functionSelector)}@${targetContractAddress} isStaticCall=${isStaticCall}`,
@@ -297,14 +324,13 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
297
324
  throw new Error(message);
298
325
  }
299
326
 
300
- // When `from` is the zero address (used when creating a new contract account for example),
301
- // we disable scope filtering by setting effectiveScopes to undefined. This allows these operations
302
- // to proceed without requiring keys registered for the zero address.
303
- const effectiveScopes = from.isZero() ? undefined : [from];
327
+ // When `from` is the zero address (e.g. when deploying a new account contract), we return an
328
+ // empty scope list which acts as deny-all: no notes are visible and no keys are accessible.
329
+ const effectiveScopes = from.isZero() ? [] : [from];
304
330
 
305
331
  // Sync notes before executing private function to discover notes from previous transactions
306
- const utilityExecutor = async (call: FunctionCall) => {
307
- await this.executeUtilityCall(call, effectiveScopes);
332
+ const utilityExecutor = async (call: FunctionCall, execScopes: AccessScopes) => {
333
+ await this.executeUtilityCall(call, execScopes, jobId);
308
334
  };
309
335
 
310
336
  const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
@@ -313,10 +339,11 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
313
339
  functionSelector,
314
340
  utilityExecutor,
315
341
  blockHeader,
316
- this.jobId,
342
+ jobId,
343
+ effectiveScopes,
317
344
  );
318
345
 
319
- const blockNumber = await this.txeGetNextBlockNumber();
346
+ const blockNumber = await this.getNextBlockNumber();
320
347
 
321
348
  const callContext = new CallContext(from, targetContractAddress, functionSelector, isStaticCall);
322
349
 
@@ -337,43 +364,38 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
337
364
 
338
365
  const simulator = new WASMSimulator();
339
366
 
340
- const privateExecutionOracle = new PrivateExecutionOracle(
367
+ const privateExecutionOracle = new PrivateExecutionOracle({
341
368
  argsHash,
342
369
  txContext,
343
370
  callContext,
344
- /** Header of a block whose state is used during private execution (not the block the transaction is included in). */
345
- blockHeader,
371
+ anchorBlockHeader: blockHeader,
346
372
  utilityExecutor,
347
- /** List of transient auth witnesses to be used during this simulation */
348
- Array.from(this.authwits.values()),
349
- /** List of transient auth witnesses to be used during this simulation */
350
- [],
351
- HashedValuesCache.create([new HashedValues(args, argsHash)]),
373
+ authWitnesses: Array.from(this.authwits.values()),
374
+ capsules: [],
375
+ executionCache: HashedValuesCache.create([new HashedValues(args, argsHash)]),
352
376
  noteCache,
353
377
  taggingIndexCache,
354
- this.contractStore,
355
- this.noteStore,
356
- this.keyStore,
357
- this.addressStore,
358
- this.stateMachine.node,
359
- this.senderTaggingStore,
360
- this.recipientTaggingStore,
361
- this.senderAddressBookStore,
362
- this.capsuleStore,
363
- this.privateEventStore,
364
- this.stateMachine.contractSyncService,
365
- this.jobId,
366
- 0, // totalPublicArgsCount
367
- minRevertibleSideEffectCounter, // (start) sideEffectCounter
368
- undefined, // log
369
- effectiveScopes, // scopes
370
- /**
371
- * In TXE, the typical transaction entrypoint is skipped, so we need to simulate the actions that such a
372
- * contract would perform, including setting senderForTags.
373
- */
374
- from,
378
+ contractStore: this.contractStore,
379
+ noteStore: this.noteStore,
380
+ keyStore: this.keyStore,
381
+ addressStore: this.addressStore,
382
+ aztecNode: this.stateMachine.node,
383
+ senderTaggingStore: this.senderTaggingStore,
384
+ recipientTaggingStore: this.recipientTaggingStore,
385
+ senderAddressBookStore: this.senderAddressBookStore,
386
+ capsuleService: new CapsuleService(this.capsuleStore, effectiveScopes),
387
+ privateEventStore: this.privateEventStore,
388
+ contractSyncService: this.stateMachine.contractSyncService,
389
+ jobId,
390
+ totalPublicCalldataCount: 0,
391
+ sideEffectCounter: minRevertibleSideEffectCounter,
392
+ scopes: effectiveScopes,
393
+ // In TXE, the typical transaction entrypoint is skipped, so we need to simulate the actions that such a
394
+ // contract would perform, including setting senderForTags.
395
+ senderForTags: from,
375
396
  simulator,
376
- );
397
+ messageContextService: this.stateMachine.messageContextService,
398
+ });
377
399
 
378
400
  // Note: This is a slight modification of simulator.run without any of the checks. Maybe we should modify simulator.run with a boolean value to skip checks.
379
401
  let result: PrivateExecutionResult;
@@ -395,7 +417,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
395
417
  );
396
418
  const publicFunctionsCalldata = await Promise.all(
397
419
  publicCallRequests.map(async r => {
398
- const calldata = await privateExecutionOracle.privateLoadFromExecutionCache(r.calldataHash);
420
+ const calldata = await privateExecutionOracle.getHashPreimage(r.calldataHash);
399
421
  return new HashedValues(calldata, r.calldataHash);
400
422
  }),
401
423
  );
@@ -413,6 +435,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
413
435
  const { publicInputs } = await generateSimulatedProvingResult(
414
436
  result,
415
437
  (addr, sel) => this.contractStore.getDebugFunctionName(addr, sel),
438
+ this.stateMachine.node,
416
439
  minRevertibleSideEffectCounter,
417
440
  );
418
441
 
@@ -508,7 +531,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
508
531
  return executionResult.returnValues ?? [];
509
532
  }
510
533
 
511
- async txePublicCallNewFlow(
534
+ async publicCallNewFlow(
512
535
  from: AztecAddress,
513
536
  targetContractAddress: AztecAddress,
514
537
  calldata: Fr[],
@@ -518,7 +541,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
518
541
  `Executing public function ${await this.contractStore.getDebugFunctionName(targetContractAddress, FunctionSelector.fromField(calldata[0]))}@${targetContractAddress} isStaticCall=${isStaticCall}`,
519
542
  );
520
543
 
521
- const blockNumber = await this.txeGetNextBlockNumber();
544
+ const blockNumber = await this.getNextBlockNumber();
522
545
 
523
546
  const gasLimits = new Gas(DEFAULT_DA_GAS_LIMIT, DEFAULT_L2_GAS_LIMIT);
524
547
 
@@ -595,7 +618,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
595
618
  constantData,
596
619
  /*gasUsed=*/ new Gas(0, 0),
597
620
  /*feePayer=*/ AztecAddress.zero(),
598
- /*includeByTimestamp=*/ 0n,
621
+ /*expirationTimestamp=*/ 0n,
599
622
  inputsForPublic,
600
623
  undefined,
601
624
  );
@@ -663,10 +686,11 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
663
686
  return returnValues ?? [];
664
687
  }
665
688
 
666
- async txeSimulateUtilityFunction(
689
+ async executeUtilityFunction(
667
690
  targetContractAddress: AztecAddress,
668
691
  functionSelector: FunctionSelector,
669
692
  args: Fr[],
693
+ jobId: string,
670
694
  ) {
671
695
  const artifact = await this.contractStore.getFunctionArtifact(targetContractAddress, functionSelector);
672
696
  if (!artifact) {
@@ -678,11 +702,12 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
678
702
  await this.stateMachine.contractSyncService.ensureContractSynced(
679
703
  targetContractAddress,
680
704
  functionSelector,
681
- async call => {
682
- await this.executeUtilityCall(call);
705
+ async (call, execScopes) => {
706
+ await this.executeUtilityCall(call, execScopes, jobId);
683
707
  },
684
708
  blockHeader,
685
- this.jobId,
709
+ jobId,
710
+ 'ALL_SCOPES',
686
711
  );
687
712
 
688
713
  const call = FunctionCall.from({
@@ -696,10 +721,10 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
696
721
  returnTypes: [],
697
722
  });
698
723
 
699
- return this.executeUtilityCall(call);
724
+ return this.executeUtilityCall(call, 'ALL_SCOPES', jobId);
700
725
  }
701
726
 
702
- private async executeUtilityCall(call: FunctionCall, scopes?: AztecAddress[]): Promise<Fr[]> {
727
+ private async executeUtilityCall(call: FunctionCall, scopes: AccessScopes, jobId: string): Promise<Fr[]> {
703
728
  const entryPointArtifact = await this.contractStore.getFunctionArtifactWithDebugMetadata(call.to, call.selector);
704
729
  if (entryPointArtifact.functionType !== FunctionType.UTILITY) {
705
730
  throw new Error(`Cannot run ${entryPointArtifact.functionType} function as utility`);
@@ -712,24 +737,25 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
712
737
 
713
738
  try {
714
739
  const anchorBlockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
715
- const oracle = new UtilityExecutionOracle(
716
- call.to,
717
- [],
718
- [],
740
+ const oracle = new UtilityExecutionOracle({
741
+ contractAddress: call.to,
742
+ authWitnesses: [],
743
+ capsules: [],
719
744
  anchorBlockHeader,
720
- this.contractStore,
721
- this.noteStore,
722
- this.keyStore,
723
- this.addressStore,
724
- this.stateMachine.node,
725
- this.recipientTaggingStore,
726
- this.senderAddressBookStore,
727
- this.capsuleStore,
728
- this.privateEventStore,
729
- this.jobId,
730
- undefined, // log
731
- scopes, // scopes - used to filter notes by account
732
- );
745
+ contractStore: this.contractStore,
746
+ noteStore: this.noteStore,
747
+ keyStore: this.keyStore,
748
+ addressStore: this.addressStore,
749
+ aztecNode: this.stateMachine.node,
750
+ recipientTaggingStore: this.recipientTaggingStore,
751
+ senderAddressBookStore: this.senderAddressBookStore,
752
+ capsuleService: new CapsuleService(this.capsuleStore, scopes),
753
+ privateEventStore: this.privateEventStore,
754
+ messageContextService: this.stateMachine.messageContextService,
755
+ contractSyncService: this.contractSyncService,
756
+ jobId,
757
+ scopes,
758
+ });
733
759
  const acirExecutionResult = await new WASMSimulator()
734
760
  .executeUserCircuit(toACVMWitness(0, call.args), entryPointArtifact, new Oracle(oracle).toACIRCallback())
735
761
  .catch((err: Error) => {
@@ -745,10 +771,10 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
745
771
  );
746
772
  });
747
773
 
748
- this.logger.verbose(`Utility simulation for ${call.to}.${call.selector} completed`);
774
+ this.logger.verbose(`Utility execution for ${call.to}.${call.selector} completed`);
749
775
  return witnessMapToFields(acirExecutionResult.returnWitness);
750
776
  } catch (err) {
751
- throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during utility simulation'));
777
+ throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during utility execution'));
752
778
  }
753
779
  }
754
780