@aztec/cli-wallet 0.0.1-commit.3d8f95d → 0.0.1-commit.3f296a7d2

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.
@@ -2,7 +2,7 @@ import { EcdsaRAccountContract, EcdsaRSSHAccountContract } from '@aztec/accounts
2
2
  import { SchnorrAccountContract } from '@aztec/accounts/schnorr';
3
3
  import { StubAccountContractArtifact, createStubAccount } from '@aztec/accounts/stub';
4
4
  import { getIdentities } from '@aztec/accounts/utils';
5
- import { type Account, type AccountContract, SignerlessAccount } from '@aztec/aztec.js/account';
5
+ import { type Account, type AccountContract, NO_FROM } from '@aztec/aztec.js/account';
6
6
  import {
7
7
  type InteractionFeeOptions,
8
8
  getContractInstanceFromInstantiationParams,
@@ -11,18 +11,19 @@ import {
11
11
  import type { AztecNode } from '@aztec/aztec.js/node';
12
12
  import { AccountManager, type Aliased, type SimulateOptions } from '@aztec/aztec.js/wallet';
13
13
  import type { DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
14
+ import { DefaultEntrypoint } from '@aztec/entrypoints/default';
14
15
  import { Fr } from '@aztec/foundation/curves/bn254';
15
16
  import type { LogFn } from '@aztec/foundation/log';
17
+ import type { NotesFilter } from '@aztec/pxe/client/lazy';
16
18
  import type { PXEConfig } from '@aztec/pxe/config';
17
19
  import type { PXE } from '@aztec/pxe/server';
18
20
  import { createPXE, getPXEConfig } from '@aztec/pxe/server';
19
21
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
20
22
  import { deriveSigningKey } from '@aztec/stdlib/keys';
21
23
  import { NoteDao } from '@aztec/stdlib/note';
22
- import type { NotesFilter } from '@aztec/stdlib/note';
23
- import type { TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
24
+ import type { SimulationOverrides, TxExecutionRequest, TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
24
25
  import { ExecutionPayload, mergeExecutionPayloads } from '@aztec/stdlib/tx';
25
- import { BaseWallet } from '@aztec/wallet-sdk/base-wallet';
26
+ import { BaseWallet, type SimulateViaEntrypointOptions } from '@aztec/wallet-sdk/base-wallet';
26
27
 
27
28
  import type { WalletDB } from '../storage/wallet_db.js';
28
29
  import type { AccountType } from './constants.js';
@@ -71,7 +72,8 @@ export class CLIWallet extends BaseWallet {
71
72
  const executionOptions: DefaultAccountEntrypointOptions = {
72
73
  txNonce,
73
74
  cancellable: this.cancellableTransactions,
74
- feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
75
+ // If from is an address, feeOptions include the way the account contract should handle the fee payment
76
+ feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions!,
75
77
  };
76
78
  return await fromAccount.createTxExecutionRequest(
77
79
  feeExecutionPayload ?? executionPayload,
@@ -87,14 +89,12 @@ export class CLIWallet extends BaseWallet {
87
89
  increasedFee: InteractionFeeOptions,
88
90
  ): Promise<TxProvingResult> {
89
91
  const cancellationTxRequest = await this.createCancellationTxExecutionRequest(from, txNonce, increasedFee);
90
- return await this.pxe.proveTx(cancellationTxRequest);
92
+ return await this.pxe.proveTx(cancellationTxRequest, this.scopesFrom(from));
91
93
  }
92
94
 
93
95
  override async getAccountFromAddress(address: AztecAddress) {
94
96
  let account: Account | undefined;
95
- if (address.equals(AztecAddress.ZERO)) {
96
- account = new SignerlessAccount();
97
- } else if (this.accountCache.has(address.toString())) {
97
+ if (this.accountCache.has(address.toString())) {
98
98
  return this.accountCache.get(address.toString())!;
99
99
  } else {
100
100
  const accountManager = await this.createOrRetrieveAccount(address);
@@ -185,13 +185,7 @@ export class CLIWallet extends BaseWallet {
185
185
  */
186
186
  private async getFakeAccountDataFor(address: AztecAddress) {
187
187
  const originalAccount = await this.getAccountFromAddress(address);
188
- // Account contracts can only be overridden if they have an associated address
189
- // Overwriting SignerlessAccount is not supported, and does not really make sense
190
- // since it has no authorization mechanism.
191
- if (originalAccount instanceof SignerlessAccount) {
192
- throw new Error(`Cannot create fake account data for SignerlessAccount at address: ${address}`);
193
- }
194
- const originalAddress = (originalAccount as Account).getCompleteAddress();
188
+ const originalAddress = originalAccount.getCompleteAddress();
195
189
  const contractInstance = await this.pxe.getContractInstance(originalAddress.address);
196
190
  if (!contractInstance) {
197
191
  throw new Error(`No contract instance found for address: ${originalAddress.address}`);
@@ -208,61 +202,62 @@ export class CLIWallet extends BaseWallet {
208
202
  }
209
203
 
210
204
  override async simulateTx(executionPayload: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult> {
211
- let simulationResults;
212
- const feeOptions = opts.fee?.estimateGas
213
- ? await this.completeFeeOptionsForEstimation(opts.from, executionPayload.feePayer, opts.fee?.gasSettings)
214
- : await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
205
+ const simulationResults = await super.simulateTx(executionPayload, opts);
206
+
207
+ if (opts.fee?.estimateGas) {
208
+ const feeOptions = await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
209
+ const limits = getGasLimits(simulationResults, opts.fee?.estimatedGasPadding);
210
+ printGasEstimates(feeOptions, limits, this.userLog);
211
+ }
212
+ return simulationResults;
213
+ }
214
+
215
+ /**
216
+ * Uses a stub account for kernelless simulation, bypassing real account authorization.
217
+ * Uses DefaultEntrypoint directly for NO_FROM transactions.
218
+ */
219
+ protected override async simulateViaEntrypoint(
220
+ executionPayload: ExecutionPayload,
221
+ opts: SimulateViaEntrypointOptions,
222
+ ): Promise<TxSimulationResult> {
223
+ const { from, feeOptions, scopes } = opts;
215
224
  const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
216
- const chainInfo = await this.getChainInfo();
217
- const executionOptions: DefaultAccountEntrypointOptions = {
218
- txNonce: Fr.random(),
219
- cancellable: this.cancellableTransactions,
220
- feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
221
- };
222
225
  const finalExecutionPayload = feeExecutionPayload
223
226
  ? mergeExecutionPayloads([feeExecutionPayload, executionPayload])
224
227
  : executionPayload;
228
+ const chainInfo = await this.getChainInfo();
225
229
 
226
- // Kernelless simulations using the multicall entrypoints are not currently supported,
227
- // since we only override proper account contracts.
228
- // TODO: allow disabling kernels even when no overrides are necessary
229
- if (opts.from.equals(AztecAddress.ZERO)) {
230
- const fromAccount = await this.getAccountFromAddress(opts.from);
231
- const txRequest = await fromAccount.createTxExecutionRequest(
232
- finalExecutionPayload,
233
- feeOptions.gasSettings,
234
- chainInfo,
235
- executionOptions,
236
- );
237
- simulationResults = await this.pxe.simulateTx(txRequest, {
238
- simulatePublic: true,
239
- skipTxValidation: opts?.skipTxValidation,
240
- skipFeeEnforcement: opts?.skipFeeEnforcement ?? true,
241
- });
230
+ let overrides: SimulationOverrides | undefined;
231
+ let txRequest: TxExecutionRequest;
232
+ if (from === NO_FROM) {
233
+ const entrypoint = new DefaultEntrypoint();
234
+ txRequest = await entrypoint.createTxExecutionRequest(finalExecutionPayload, feeOptions.gasSettings, chainInfo);
242
235
  } else {
243
- const { account: fromAccount, instance, artifact } = await this.getFakeAccountDataFor(opts.from);
244
- const txRequest = await fromAccount.createTxExecutionRequest(
236
+ const { account, instance, artifact } = await this.getFakeAccountDataFor(from);
237
+ overrides = {
238
+ contracts: { [from.toString()]: { instance, artifact } },
239
+ };
240
+ const executionOptions: DefaultAccountEntrypointOptions = {
241
+ txNonce: Fr.random(),
242
+ cancellable: this.cancellableTransactions,
243
+ // If from is an address, feeOptions include the way the account contract should handle the fee payment
244
+ feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions!,
245
+ };
246
+ txRequest = await account.createTxExecutionRequest(
245
247
  finalExecutionPayload,
246
248
  feeOptions.gasSettings,
247
249
  chainInfo,
248
250
  executionOptions,
249
251
  );
250
- const contractOverrides = {
251
- [opts.from.toString()]: { instance, artifact },
252
- };
253
- simulationResults = await this.pxe.simulateTx(txRequest, {
254
- simulatePublic: true,
255
- skipTxValidation: true,
256
- skipFeeEnforcement: true,
257
- overrides: { contracts: contractOverrides },
258
- });
259
252
  }
260
253
 
261
- if (opts.fee?.estimateGas) {
262
- const limits = getGasLimits(simulationResults, opts.fee?.estimatedGasPadding);
263
- printGasEstimates(feeOptions, limits, this.userLog);
264
- }
265
- return simulationResults;
254
+ return this.pxe.simulateTx(txRequest, {
255
+ simulatePublic: true,
256
+ skipFeeEnforcement: true,
257
+ skipTxValidation: true,
258
+ overrides,
259
+ scopes,
260
+ });
266
261
  }
267
262
 
268
263
  // Exposed because of the `aztec-wallet get-tx` command. It has been decided that it's fine to keep around because