@aztec/wallet-sdk 0.0.1-commit.c31f2472 → 0.0.1-commit.c52d6e7

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 (76) hide show
  1. package/README.md +125 -0
  2. package/dest/base-wallet/base_wallet.d.ts +113 -37
  3. package/dest/base-wallet/base_wallet.d.ts.map +1 -1
  4. package/dest/base-wallet/base_wallet.js +352 -105
  5. package/dest/base-wallet/get_gas_limits.d.ts +36 -0
  6. package/dest/base-wallet/get_gas_limits.d.ts.map +1 -0
  7. package/dest/base-wallet/get_gas_limits.js +55 -0
  8. package/dest/base-wallet/index.d.ts +4 -2
  9. package/dest/base-wallet/index.d.ts.map +1 -1
  10. package/dest/base-wallet/index.js +2 -0
  11. package/dest/base-wallet/utils.d.ts +52 -0
  12. package/dest/base-wallet/utils.d.ts.map +1 -0
  13. package/dest/base-wallet/utils.js +137 -0
  14. package/dest/crypto.d.ts +39 -1
  15. package/dest/crypto.d.ts.map +1 -1
  16. package/dest/crypto.js +88 -0
  17. package/dest/extension/handlers/background_connection_handler.d.ts +12 -2
  18. package/dest/extension/handlers/background_connection_handler.d.ts.map +1 -1
  19. package/dest/extension/handlers/background_connection_handler.js +44 -8
  20. package/dest/extension/handlers/content_script_connection_handler.d.ts +2 -1
  21. package/dest/extension/handlers/content_script_connection_handler.d.ts.map +1 -1
  22. package/dest/extension/handlers/content_script_connection_handler.js +19 -0
  23. package/dest/extension/handlers/internal_message_types.d.ts +3 -1
  24. package/dest/extension/handlers/internal_message_types.d.ts.map +1 -1
  25. package/dest/extension/handlers/internal_message_types.js +3 -1
  26. package/dest/extension/provider/extension_wallet.d.ts +27 -6
  27. package/dest/extension/provider/extension_wallet.d.ts.map +1 -1
  28. package/dest/extension/provider/extension_wallet.js +89 -11
  29. package/dest/extension/provider/index.d.ts +2 -2
  30. package/dest/extension/provider/index.d.ts.map +1 -1
  31. package/dest/iframe/handlers/iframe_connection_handler.d.ts +122 -0
  32. package/dest/iframe/handlers/iframe_connection_handler.d.ts.map +1 -0
  33. package/dest/iframe/handlers/iframe_connection_handler.js +239 -0
  34. package/dest/iframe/handlers/index.d.ts +2 -0
  35. package/dest/iframe/handlers/index.d.ts.map +1 -0
  36. package/dest/iframe/handlers/index.js +1 -0
  37. package/dest/iframe/provider/iframe_discovery.d.ts +25 -0
  38. package/dest/iframe/provider/iframe_discovery.d.ts.map +1 -0
  39. package/dest/iframe/provider/iframe_discovery.js +167 -0
  40. package/dest/iframe/provider/iframe_provider.d.ts +65 -0
  41. package/dest/iframe/provider/iframe_provider.d.ts.map +1 -0
  42. package/dest/iframe/provider/iframe_provider.js +257 -0
  43. package/dest/iframe/provider/iframe_wallet.d.ts +85 -0
  44. package/dest/iframe/provider/iframe_wallet.d.ts.map +1 -0
  45. package/dest/iframe/provider/iframe_wallet.js +269 -0
  46. package/dest/iframe/provider/index.d.ts +4 -0
  47. package/dest/iframe/provider/index.d.ts.map +1 -0
  48. package/dest/iframe/provider/index.js +3 -0
  49. package/dest/manager/types.d.ts +6 -5
  50. package/dest/manager/types.d.ts.map +1 -1
  51. package/dest/manager/wallet_manager.d.ts +1 -1
  52. package/dest/manager/wallet_manager.d.ts.map +1 -1
  53. package/dest/manager/wallet_manager.js +48 -18
  54. package/dest/types.d.ts +64 -2
  55. package/dest/types.d.ts.map +1 -1
  56. package/dest/types.js +29 -0
  57. package/package.json +19 -9
  58. package/src/base-wallet/base_wallet.ts +449 -158
  59. package/src/base-wallet/get_gas_limits.ts +88 -0
  60. package/src/base-wallet/index.ts +8 -1
  61. package/src/base-wallet/utils.ts +248 -0
  62. package/src/crypto.ts +104 -0
  63. package/src/extension/handlers/background_connection_handler.ts +42 -9
  64. package/src/extension/handlers/content_script_connection_handler.ts +18 -0
  65. package/src/extension/handlers/internal_message_types.ts +2 -0
  66. package/src/extension/provider/extension_wallet.ts +106 -17
  67. package/src/extension/provider/index.ts +1 -1
  68. package/src/iframe/handlers/iframe_connection_handler.ts +341 -0
  69. package/src/iframe/handlers/index.ts +7 -0
  70. package/src/iframe/provider/iframe_discovery.ts +185 -0
  71. package/src/iframe/provider/iframe_provider.ts +331 -0
  72. package/src/iframe/provider/iframe_wallet.ts +323 -0
  73. package/src/iframe/provider/index.ts +3 -0
  74. package/src/manager/types.ts +5 -4
  75. package/src/manager/wallet_manager.ts +55 -23
  76. package/src/types.ts +72 -0
@@ -1,30 +1,39 @@
1
- import type { Account } from '@aztec/aztec.js/account';
1
+ import type { Account, NoFrom } from '@aztec/aztec.js/account';
2
+ import { NO_FROM } from '@aztec/aztec.js/account';
2
3
  import type { CallIntent, IntentInnerHash } from '@aztec/aztec.js/authorization';
3
- import { type InteractionWaitOptions, NO_WAIT, type SendReturn } from '@aztec/aztec.js/contracts';
4
+ import {
5
+ DefaultWaitOpts,
6
+ type InteractionWaitOptions,
7
+ NO_WAIT,
8
+ type SendReturn,
9
+ type WaitOpts,
10
+ extractOffchainOutput,
11
+ } from '@aztec/aztec.js/contracts';
4
12
  import type { FeePaymentMethod } from '@aztec/aztec.js/fee';
5
13
  import { waitForTx } from '@aztec/aztec.js/node';
6
- import type {
7
- Aliased,
8
- BatchResults,
9
- BatchedMethod,
10
- PrivateEvent,
11
- PrivateEventFilter,
12
- ProfileOptions,
13
- SendOptions,
14
- SimulateOptions,
15
- Wallet,
16
- } from '@aztec/aztec.js/wallet';
17
14
  import {
18
- GAS_ESTIMATION_DA_GAS_LIMIT,
19
- GAS_ESTIMATION_L2_GAS_LIMIT,
20
- GAS_ESTIMATION_TEARDOWN_DA_GAS_LIMIT,
21
- GAS_ESTIMATION_TEARDOWN_L2_GAS_LIMIT,
22
- } from '@aztec/constants';
15
+ type Aliased,
16
+ type AppCapabilities,
17
+ type BatchResults,
18
+ type BatchedMethod,
19
+ ContractInitializationStatus,
20
+ type ExecuteUtilityOptions,
21
+ type PrivateEvent,
22
+ type PrivateEventFilter,
23
+ type ProfileOptions,
24
+ type SendOptions,
25
+ type SimulateOptions,
26
+ TxSimulationResultWithAppOffset,
27
+ type Wallet,
28
+ type WalletCapabilities,
29
+ } from '@aztec/aztec.js/wallet';
23
30
  import { AccountFeePaymentMethodOptions, type DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
31
+ import { DefaultEntrypoint } from '@aztec/entrypoints/default';
24
32
  import type { ChainInfo } from '@aztec/entrypoints/interfaces';
25
33
  import { Fr } from '@aztec/foundation/curves/bn254';
26
34
  import { createLogger } from '@aztec/foundation/log';
27
35
  import type { FieldsOf } from '@aztec/foundation/types';
36
+ import { displayDebugLogs } from '@aztec/pxe/client/lazy';
28
37
  import type { PXE, PackedPrivateEvent } from '@aztec/pxe/server';
29
38
  import {
30
39
  type ContractArtifact,
@@ -33,26 +42,30 @@ import {
33
42
  decodeFromAbi,
34
43
  } from '@aztec/stdlib/abi';
35
44
  import type { AuthWitness } from '@aztec/stdlib/auth-witness';
36
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
37
- import {
38
- type ContractInstanceWithAddress,
39
- computePartialAddress,
40
- getContractClassFromArtifact,
41
- } from '@aztec/stdlib/contract';
45
+ import { AztecAddress } from '@aztec/stdlib/aztec-address';
46
+ import { type ContractInstancePreimage, type NodeInfo, computePartialAddress } from '@aztec/stdlib/contract';
42
47
  import { SimulationError } from '@aztec/stdlib/errors';
43
- import { Gas, GasSettings } from '@aztec/stdlib/gas';
44
- import { siloNullifier } from '@aztec/stdlib/hash';
48
+ import { Gas, GasFees, GasSettings, ManaUsageEstimate } from '@aztec/stdlib/gas';
49
+ import {
50
+ computeSiloedPrivateInitializationNullifier,
51
+ computeSiloedPublicInitializationNullifier,
52
+ } from '@aztec/stdlib/hash';
45
53
  import type { AztecNode } from '@aztec/stdlib/interfaces/client';
46
- import type {
47
- TxExecutionRequest,
48
- TxProfileResult,
49
- TxSimulationResult,
50
- UtilitySimulationResult,
54
+ import { type MasterSecretKeys, deriveKeys, deriveKeysFromMasterSecretKeys } from '@aztec/stdlib/keys';
55
+ import {
56
+ BlockHeader,
57
+ ExecutionPayload,
58
+ type TxExecutionRequest,
59
+ type TxProfileResult,
60
+ type UtilityExecutionResult,
61
+ mergeExecutionPayloads,
51
62
  } from '@aztec/stdlib/tx';
52
- import { ExecutionPayload, mergeExecutionPayloads } from '@aztec/stdlib/tx';
53
63
 
54
64
  import { inspect } from 'util';
55
65
 
66
+ import { assertGasLimitsWithinNetworkLimits } from './get_gas_limits.js';
67
+ import { buildMergedSimulationResult, extractOptimizablePublicStaticCalls, simulateViaNode } from './utils.js';
68
+
56
69
  /**
57
70
  * Options to configure fee payment for a transaction
58
71
  */
@@ -63,26 +76,81 @@ export type FeeOptions = {
63
76
  */
64
77
  walletFeePaymentMethod?: FeePaymentMethod;
65
78
  /** Configuration options for the account to properly handle the selected fee payment method */
66
- accountFeePaymentMethodOptions: AccountFeePaymentMethodOptions;
79
+ accountFeePaymentMethodOptions?: AccountFeePaymentMethodOptions;
67
80
  /** The gas settings to use for the transaction */
68
81
  gasSettings: GasSettings;
69
82
  };
70
83
 
84
+ /** Options for `simulateViaEntrypoint`. */
85
+ export type SimulateViaEntrypointOptions = Pick<
86
+ SimulateOptions,
87
+ 'from' | 'additionalScopes' | 'skipTxValidation' | 'skipFeeEnforcement' | 'sendMessagesAs' | 'overrides'
88
+ > & {
89
+ /** Fee options for the entrypoint */
90
+ feeOptions: FeeOptions;
91
+ };
92
+
93
+ /** Options for `completeFeeOptions`. */
94
+ export type CompleteFeeOptionsConfig = {
95
+ /** The address where the transaction is being sent from. */
96
+ from: AztecAddress | NoFrom;
97
+ /** The address paying for fees (if any fee payment method is embedded in the execution payload). */
98
+ feePayer?: AztecAddress;
99
+ /** User-provided partial gas settings. */
100
+ gasSettings?: Partial<FieldsOf<GasSettings>>;
101
+ /** If true, returns gas settings with high gas limits for estimation. If false, uses fallback limits. */
102
+ forEstimation?: boolean;
103
+ /**
104
+ * Assumed network congestion level for fee prediction. Controls how aggressively the wallet
105
+ * estimates future fees. Defaults to Limit (worst case) when not specified.
106
+ */
107
+ congestionEstimate?: ManaUsageEstimate;
108
+ };
109
+
71
110
  /**
72
111
  * A base class for Wallet implementations
73
112
  */
74
113
  export abstract class BaseWallet implements Wallet {
75
- protected log = createLogger('wallet-sdk:base_wallet');
76
-
77
114
  protected minFeePadding = 0.5;
78
115
  protected cancellableTransactions = false;
116
+ // Poll interval (in seconds) injected into sendTx waits when the caller does not specify one. Left undefined on
117
+ // production wallets so the DefaultWaitOpts 1s cadence stands; test wallets talking to in-process nodes lower it.
118
+ protected defaultWaitInterval?: number;
119
+ // A wallet is instantiated for a particular chain, so chain info never changes during its lifetime.
120
+ // We cache it here because getChainInfo is called frequently (every tx simulation, send, auth wit, etc.).
121
+ private nodeInfoPromise: Promise<NodeInfo> | undefined;
79
122
 
80
123
  // Protected because we want to force wallets to instantiate their own PXE.
81
124
  protected constructor(
82
125
  protected readonly pxe: PXE,
83
126
  protected readonly aztecNode: AztecNode,
127
+ protected log = createLogger('wallet-sdk:base_wallet'),
84
128
  ) {}
85
129
 
130
+ protected scopesFrom(
131
+ from: AztecAddress | NoFrom,
132
+ additionalScopes: AztecAddress[],
133
+ sendMessagesAs: AztecAddress | undefined,
134
+ ): AztecAddress[] {
135
+ // The sendMessagesAs account must be in scope so that its tagging secrets can be accessed.
136
+ const tagSenderScopes = sendMessagesAs ? [sendMessagesAs] : [];
137
+ const baseScopes = from === NO_FROM ? [] : [from];
138
+ const allScopes = [...baseScopes, ...additionalScopes, ...tagSenderScopes];
139
+ const scopeSet = new Set(allScopes.map(address => address.toString()));
140
+ return [...scopeSet].map(AztecAddress.fromStringUnsafe);
141
+ }
142
+
143
+ /**
144
+ * Picks the sender address PXE should tag private messages with. Returns `undefined` when there is no signing
145
+ * account (`from === NO_FROM`) and no explicit override; in that case any private log emitted by the tx using
146
+ * the wallet-supplied default sender will fail the "Sender for tags is not set" assertion.
147
+ * @param from - Tx sender, or `NO_FROM`.
148
+ * @param sendMessagesAs - Explicit override.
149
+ */
150
+ protected senderForTagsFrom(from: AztecAddress | NoFrom, sendMessagesAs?: AztecAddress): AztecAddress | undefined {
151
+ return sendMessagesAs ?? (from === NO_FROM ? undefined : from);
152
+ }
153
+
86
154
  protected abstract getAccountFromAddress(address: AztecAddress): Promise<Account>;
87
155
 
88
156
  abstract getAccounts(): Promise<Aliased<AztecAddress>[]>;
@@ -95,37 +163,71 @@ export abstract class BaseWallet implements Wallet {
95
163
  * @returns The aliased collection of AztecAddresses that form this wallet's address book
96
164
  */
97
165
  async getAddressBook(): Promise<Aliased<AztecAddress>[]> {
98
- const senders: AztecAddress[] = await this.pxe.getSenders();
99
- return senders.map(sender => ({ item: sender, alias: '' }));
166
+ const sources = await this.pxe.getTaggingSecretSources({ kind: 'address-derived' });
167
+ return sources.map(source => ({ item: source.sender, alias: '' }));
168
+ }
169
+
170
+ /**
171
+ * Fetches and caches the node info for the wallet's lifetime, since a wallet talks to a single network and
172
+ * node info never changes. A rejected fetch clears the cache so the next call retries instead of replaying
173
+ * the cached rejection forever — important because the gas-limit fill-in and validation (run on every send)
174
+ * depend on it.
175
+ */
176
+ private getNodeInfo(): Promise<NodeInfo> {
177
+ if (!this.nodeInfoPromise) {
178
+ this.nodeInfoPromise = this.aztecNode.getNodeInfo().catch(err => {
179
+ this.nodeInfoPromise = undefined;
180
+ throw err;
181
+ });
182
+ }
183
+ return this.nodeInfoPromise;
100
184
  }
101
185
 
102
186
  async getChainInfo(): Promise<ChainInfo> {
103
- const { l1ChainId, rollupVersion } = await this.aztecNode.getNodeInfo();
187
+ const { l1ChainId, rollupVersion } = await this.getNodeInfo();
104
188
  return { chainId: new Fr(l1ChainId), version: new Fr(rollupVersion) };
105
189
  }
106
190
 
191
+ /**
192
+ * Returns the maximum gas limits a single transaction may declare on this wallet's network (the
193
+ * node-advertised `txsLimits.gas`). Internal helper used to fill in default gas limits when sending a
194
+ * transaction without explicit limits, and to validate caller-provided limits before sending. Backed by
195
+ * the cached node info, since a wallet talks to a single network.
196
+ */
197
+ protected async getMaxTxGasLimits(): Promise<Gas> {
198
+ const { txsLimits } = await this.getNodeInfo();
199
+ return new Gas(txsLimits.gas.daGas, txsLimits.gas.l2Gas);
200
+ }
201
+
107
202
  protected async createTxExecutionRequestFromPayloadAndFee(
108
203
  executionPayload: ExecutionPayload,
109
- from: AztecAddress,
204
+ from: AztecAddress | NoFrom,
110
205
  feeOptions: FeeOptions,
111
206
  ): Promise<TxExecutionRequest> {
112
207
  const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
113
- const executionOptions: DefaultAccountEntrypointOptions = {
114
- txNonce: Fr.random(),
115
- cancellable: this.cancellableTransactions,
116
- feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
117
- };
118
208
  const finalExecutionPayload = feeExecutionPayload
119
209
  ? mergeExecutionPayloads([feeExecutionPayload, executionPayload])
120
210
  : executionPayload;
121
- const fromAccount = await this.getAccountFromAddress(from);
122
211
  const chainInfo = await this.getChainInfo();
123
- return fromAccount.createTxExecutionRequest(
124
- finalExecutionPayload,
125
- feeOptions.gasSettings,
126
- chainInfo,
127
- executionOptions,
128
- );
212
+
213
+ if (from === NO_FROM) {
214
+ const entrypoint = new DefaultEntrypoint();
215
+ return entrypoint.createTxExecutionRequest(finalExecutionPayload, feeOptions.gasSettings, chainInfo);
216
+ } else {
217
+ const fromAccount = await this.getAccountFromAddress(from);
218
+ const executionOptions: DefaultAccountEntrypointOptions = {
219
+ txNonce: Fr.random(),
220
+ cancellable: this.cancellableTransactions,
221
+ // If from is an address, feeOptions include the way the account contract should handle the fee payment
222
+ feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions!,
223
+ };
224
+ return fromAccount.createTxExecutionRequest(
225
+ finalExecutionPayload,
226
+ feeOptions.gasSettings,
227
+ chainInfo,
228
+ executionOptions,
229
+ );
230
+ }
129
231
  }
130
232
 
131
233
  public async createAuthWit(
@@ -137,6 +239,23 @@ export abstract class BaseWallet implements Wallet {
137
239
  return account.createAuthWit(messageHashOrIntent, chainInfo);
138
240
  }
139
241
 
242
+ /**
243
+ * Request capabilities from the wallet.
244
+ *
245
+ * This method is wallet-implementation-dependent and must be provided by classes extending BaseWallet.
246
+ * Embedded wallets typically don't support capability-based authorization (no user authorization flow),
247
+ * while external wallets (browser extensions, hardware wallets) implement this to reduce authorization
248
+ * friction by allowing apps to request permissions upfront.
249
+ *
250
+ * TODO: Consider making it abstract so implementing it is a conscious decision. Leaving it as-is
251
+ * while the feature stabilizes.
252
+ *
253
+ * @param _manifest - Application capability manifest declaring what operations the app needs
254
+ */
255
+ public requestCapabilities(_manifest: AppCapabilities): Promise<WalletCapabilities> {
256
+ throw new Error('Not implemented');
257
+ }
258
+
140
259
  public async batch<const T extends readonly BatchedMethod[]>(methods: T): Promise<BatchResults<T>> {
141
260
  const results: any[] = [];
142
261
  for (const method of methods) {
@@ -157,31 +276,54 @@ export abstract class BaseWallet implements Wallet {
157
276
 
158
277
  /**
159
278
  * Completes partial user-provided fee options with wallet defaults.
160
- * @param from - The address where the transaction is being sent from
161
- * @param feePayer - The address paying for fees (if any fee payment method is embedded in the execution payload)
162
- * @param gasSettings - User-provided partial gas settings
163
- * @returns - Complete fee options that can be used to create a transaction execution request
279
+ * @param config - Fee completion config.
164
280
  */
165
- protected async completeFeeOptions(
166
- from: AztecAddress,
167
- feePayer?: AztecAddress,
168
- gasSettings?: Partial<FieldsOf<GasSettings>>,
169
- ): Promise<FeeOptions> {
281
+ protected async completeFeeOptions(config: CompleteFeeOptionsConfig): Promise<FeeOptions> {
282
+ const { from, feePayer, gasSettings, forEstimation, congestionEstimate } = config;
170
283
  const maxFeesPerGas =
171
- gasSettings?.maxFeesPerGas ?? (await this.aztecNode.getCurrentMinFees()).mul(1 + this.minFeePadding);
284
+ gasSettings?.maxFeesPerGas ?? (await this.getMinFees(congestionEstimate)).mul(1 + this.minFeePadding);
172
285
  let accountFeePaymentMethodOptions;
173
- // The transaction does not include a fee payment method, so we set the flag
174
- // for the account to use its fee juice balance
175
- if (!feePayer) {
176
- accountFeePaymentMethodOptions = AccountFeePaymentMethodOptions.PREEXISTING_FEE_JUICE;
286
+ // If from is an address, we need to determine the appropriate fee payment method options for the
287
+ // account contract entrypoint to use
288
+ if (from !== NO_FROM) {
289
+ if (!feePayer) {
290
+ // The transaction does not include a fee payment method, so we set the flag
291
+ // for the account to use its fee juice balance
292
+ accountFeePaymentMethodOptions = AccountFeePaymentMethodOptions.PREEXISTING_FEE_JUICE;
293
+ } else {
294
+ // The transaction includes fee payment method, so we check if we are the fee payer for it
295
+ // (this can only happen if the embedded payment method is FeeJuiceWithClaim)
296
+ accountFeePaymentMethodOptions = from.equals(feePayer)
297
+ ? AccountFeePaymentMethodOptions.FEE_JUICE_WITH_CLAIM
298
+ : AccountFeePaymentMethodOptions.EXTERNAL;
299
+ }
300
+ }
301
+ const gasSettingsOverrides = {
302
+ gasLimits: gasSettings?.gasLimits ? Gas.from(gasSettings.gasLimits) : undefined,
303
+ teardownGasLimits: gasSettings?.teardownGasLimits ? Gas.from(gasSettings.teardownGasLimits) : undefined,
304
+ maxFeesPerGas,
305
+ maxPriorityFeesPerGas: gasSettings?.maxPriorityFeesPerGas ?? GasFees.empty(),
306
+ };
307
+ // When estimating gas (simulation), use high limits so the simulation doesn't run out of gas.
308
+ // When sending for real without explicit limits, declare the most a single tx may use on this network
309
+ // (the node's per-tx admission limit), so the proposer does not skip the tx for over-declaring gas.
310
+ let fullGasSettings;
311
+ if (forEstimation) {
312
+ // Estimation deliberately uses very high internal limits and skips tx validation, so we do not
313
+ // validate against the network admission limit here.
314
+ fullGasSettings = GasSettings.forEstimation(gasSettingsOverrides);
177
315
  } else {
178
- // The transaction includes fee payment method, so we check if we are the fee payer for it
179
- // (this can only happen if the embedded payment method is FeeJuiceWithClaim)
180
- accountFeePaymentMethodOptions = from.equals(feePayer)
181
- ? AccountFeePaymentMethodOptions.FEE_JUICE_WITH_CLAIM
182
- : AccountFeePaymentMethodOptions.EXTERNAL;
316
+ const maxTxGasLimits = await this.getMaxTxGasLimits();
317
+ // If the caller declared explicit gas limits, reject them up front when they exceed the network's
318
+ // per-tx admission limit (mirroring the node's GasLimitsValidator). Otherwise fill in the limit.
319
+ if (gasSettingsOverrides.gasLimits) {
320
+ assertGasLimitsWithinNetworkLimits(gasSettingsOverrides.gasLimits, maxTxGasLimits);
321
+ }
322
+ fullGasSettings = GasSettings.fallback({
323
+ ...gasSettingsOverrides,
324
+ gasLimits: gasSettingsOverrides.gasLimits ?? maxTxGasLimits,
325
+ });
183
326
  }
184
- const fullGasSettings: GasSettings = GasSettings.default({ ...gasSettings, maxFeesPerGas });
185
327
  this.log.debug(`Using L2 gas settings`, fullGasSettings);
186
328
  return {
187
329
  gasSettings: fullGasSettings,
@@ -191,109 +333,206 @@ export abstract class BaseWallet implements Wallet {
191
333
  }
192
334
 
193
335
  /**
194
- * Completes partial user-provided fee options with unreasonably high gas limits
195
- * for gas estimation. Uses the same logic as completeFeeOptions but sets high limits
196
- * to avoid running out of gas during estimation.
197
- * @param from - The address where the transaction is being sent from
198
- * @param feePayer - The address paying for fees (if any fee payment method is embedded in the execution payload)
199
- * @param gasSettings - User-provided partial gas settings
336
+ * Returns the worst-case min fee across predicted future slots.
337
+ * Falls back to getCurrentMinFees if the node doesn't support getPredictedMinFees.
338
+ * @param estimate - The mana usage estimate to use for fee prediction. Defaults to Limit for conservative estimation.
200
339
  */
201
- protected async completeFeeOptionsForEstimation(
202
- from: AztecAddress,
203
- feePayer?: AztecAddress,
204
- gasSettings?: Partial<FieldsOf<GasSettings>>,
205
- ) {
206
- const defaultFeeOptions = await this.completeFeeOptions(from, feePayer, gasSettings);
207
- const {
208
- gasSettings: { maxFeesPerGas, maxPriorityFeesPerGas },
209
- } = defaultFeeOptions;
210
- // Use unrealistically high gas limits for estimation to avoid running out of gas.
211
- // They will be tuned down after the simulation.
212
- const gasSettingsForEstimation = new GasSettings(
213
- new Gas(GAS_ESTIMATION_DA_GAS_LIMIT, GAS_ESTIMATION_L2_GAS_LIMIT),
214
- new Gas(GAS_ESTIMATION_TEARDOWN_DA_GAS_LIMIT, GAS_ESTIMATION_TEARDOWN_L2_GAS_LIMIT),
215
- maxFeesPerGas,
216
- maxPriorityFeesPerGas,
217
- );
218
- return {
219
- ...defaultFeeOptions,
220
- gasSettings: gasSettingsForEstimation,
221
- };
340
+ protected async getMinFees(estimate: ManaUsageEstimate = ManaUsageEstimate.Limit): Promise<GasFees> {
341
+ try {
342
+ const predicted = await this.aztecNode.getPredictedMinFees(estimate);
343
+ if (predicted.length === 0) {
344
+ return this.aztecNode.getCurrentMinFees();
345
+ }
346
+ return predicted.reduce((worst, fees) => (fees.feePerL2Gas > worst.feePerL2Gas ? fees : worst));
347
+ } catch (err: any) {
348
+ // Fallback for old nodes that don't support getPredictedMinFees.
349
+ // Only fall back on method-not-found errors (JSON-RPC code -32601); rethrow others.
350
+ if (err?.cause?.code === -32601 || err?.message?.includes('Method not found')) {
351
+ return this.aztecNode.getCurrentMinFees();
352
+ }
353
+ throw err;
354
+ }
222
355
  }
223
356
 
224
- registerSender(address: AztecAddress, _alias: string = ''): Promise<AztecAddress> {
225
- return this.pxe.registerSender(address);
357
+ async registerSender(address: AztecAddress, _alias: string = ''): Promise<AztecAddress> {
358
+ await this.pxe.registerTaggingSecretSource({ kind: 'address-derived', sender: address });
359
+ return address;
226
360
  }
227
361
 
228
362
  async registerContract(
229
- instance: ContractInstanceWithAddress,
363
+ instance: ContractInstancePreimage,
230
364
  artifact?: ContractArtifact,
231
- secretKey?: Fr,
232
- ): Promise<ContractInstanceWithAddress> {
233
- const existingInstance = await this.pxe.getContractInstance(instance.address);
234
-
235
- if (existingInstance) {
236
- // Instance already registered in the wallet
237
- if (artifact) {
238
- const thisContractClass = await getContractClassFromArtifact(artifact);
239
- if (!thisContractClass.id.equals(existingInstance.currentContractClassId)) {
240
- // wallet holds an outdated version of this contract
241
- await this.pxe.updateContract(instance.address, artifact);
242
- instance.currentContractClassId = thisContractClass.id;
243
- }
244
- }
245
- // If no artifact provided, we just use the existing registration
246
- } else {
247
- // Instance not registered yet
248
- if (!artifact) {
249
- // Try to get the artifact from the wallet's contract class storage
250
- artifact = await this.pxe.getContractArtifact(instance.currentContractClassId);
251
- if (!artifact) {
252
- throw new Error(
253
- `Cannot register contract at ${instance.address.toString()}: artifact is required but not provided, and wallet does not have the artifact for contract class ${instance.currentContractClassId.toString()}`,
254
- );
255
- }
256
- }
257
- await this.pxe.registerContract({ artifact, instance });
365
+ secretKeyOrKeys?: Fr | MasterSecretKeys,
366
+ ): Promise<void> {
367
+ // Classes and instances are registered independently: register the artifact (if provided) then the instance.
368
+ // Neither call validates that the artifact matches the class the instance runs, a missing artifact only surfaces
369
+ // when the contract is later simulated.
370
+ if (artifact) {
371
+ await this.pxe.registerContractClass(artifact);
258
372
  }
373
+ const contractAddress = await this.pxe.registerContract(instance);
259
374
 
260
- if (secretKey) {
261
- await this.pxe.registerAccount(secretKey, await computePartialAddress(instance));
375
+ if (secretKeyOrKeys) {
376
+ // PXE never receives the account seed (from which the message-signing/fallback secret keys could be re-derived):
377
+ // the wallet derives the keys here. Of these, PXE only reads and stores the four privacy secret keys and the
378
+ // message-signing and fallback *public* keys — it never touches the message-signing or fallback secret keys.
379
+ //
380
+ // Since PXE recomputes the address from those keys, we assert it matches the instance's address: a mismatch means
381
+ // the provided keys don't correspond to this account.
382
+ const derivedKeys =
383
+ secretKeyOrKeys instanceof Fr
384
+ ? await deriveKeys(secretKeyOrKeys)
385
+ : await deriveKeysFromMasterSecretKeys(secretKeyOrKeys);
386
+ const { address } = await this.pxe.registerAccount(derivedKeys, await computePartialAddress(instance));
387
+ if (!address.equals(contractAddress)) {
388
+ throw new Error(
389
+ `Registered account address ${address.toString()} does not match contract instance address ${contractAddress.toString()}: the provided keys do not correspond to this account.`,
390
+ );
391
+ }
262
392
  }
263
- return instance;
264
393
  }
265
394
 
266
- async simulateTx(executionPayload: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult> {
267
- const feeOptions = opts.fee?.estimateGas
268
- ? await this.completeFeeOptionsForEstimation(opts.from, executionPayload.feePayer, opts.fee?.gasSettings)
269
- : await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
270
- const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(executionPayload, opts.from, feeOptions);
271
- return this.pxe.simulateTx(
272
- txRequest,
273
- true /* simulatePublic */,
274
- opts?.skipTxValidation,
275
- opts?.skipFeeEnforcement ?? true,
395
+ registerContractClass(artifact: ContractArtifact): Promise<void> {
396
+ return this.pxe.registerContractClass(artifact);
397
+ }
398
+
399
+ /**
400
+ * Simulates calls through the standard PXE path (account entrypoint).
401
+ * @param executionPayload - The execution payload to simulate.
402
+ * @param opts - Simulation options.
403
+ */
404
+ protected async simulateViaEntrypoint(executionPayload: ExecutionPayload, opts: SimulateViaEntrypointOptions) {
405
+ const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(
406
+ executionPayload,
407
+ opts.from,
408
+ opts.feeOptions,
276
409
  );
410
+ const result = await this.pxe.simulateTx(txRequest, {
411
+ simulatePublic: true,
412
+ skipTxValidation: opts.skipTxValidation,
413
+ skipFeeEnforcement: opts.skipFeeEnforcement,
414
+ scopes: this.scopesFrom(opts.from, opts.additionalScopes ?? [], opts.sendMessagesAs),
415
+ senderForTags: this.senderForTagsFrom(opts.from, opts.sendMessagesAs),
416
+ overrides: opts.overrides,
417
+ });
418
+ const appCallOffset = await this.computeAppCallOffset(opts.from, opts.feeOptions);
419
+ return TxSimulationResultWithAppOffset.fromResultAndOffset(result, appCallOffset);
420
+ }
421
+
422
+ /**
423
+ * Computes the index where the app's calls begin in the flattened array of calls (0 = entrypoint/root, 1..N = fee
424
+ * calls, N+1 = app).
425
+ * @param from - The sender address, or NO_FROM for the default entrypoint.
426
+ * @param feeOptions - Fee options containing the wallet fee payment method.
427
+ */
428
+ protected async computeAppCallOffset(from: AztecAddress | NoFrom, feeOptions: FeeOptions): Promise<number> {
429
+ if (from === NO_FROM) {
430
+ return 0;
431
+ }
432
+ const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
433
+ return (feeExecutionPayload?.calls.length ?? 0) + 1; // +1 for entrypoint
434
+ }
435
+
436
+ /**
437
+ * Simulates a transaction, optimizing leading public static calls by running them directly
438
+ * on the node while sending the remaining calls through the standard PXE path.
439
+ * Return values from both paths are merged back in original call order.
440
+ * @param executionPayload - The execution payload to simulate.
441
+ * @param opts - Simulation options (from address, fee settings, etc.).
442
+ * @returns The merged simulation result.
443
+ */
444
+ async simulateTx(
445
+ executionPayload: ExecutionPayload,
446
+ opts: SimulateOptions,
447
+ ): Promise<TxSimulationResultWithAppOffset> {
448
+ const feeOptions = await this.completeFeeOptions({
449
+ from: opts.from,
450
+ feePayer: executionPayload.feePayer,
451
+ gasSettings: opts.fee?.gasSettings,
452
+ forEstimation: true,
453
+ congestionEstimate: opts.fee?.congestionEstimate,
454
+ });
455
+ const { optimizableCalls, remainingCalls } = extractOptimizablePublicStaticCalls(executionPayload);
456
+ const remainingPayload = { ...executionPayload, calls: remainingCalls };
457
+
458
+ const chainInfo = await this.getChainInfo();
459
+ let blockHeader: BlockHeader;
460
+ // PXE might not be synced yet, so we pull the latest header from the node
461
+ // To keep things consistent, we'll always try with PXE first
462
+ try {
463
+ blockHeader = await this.pxe.getSyncedBlockHeader();
464
+ } catch {
465
+ blockHeader = (await this.aztecNode.getBlockData('latest'))!.header;
466
+ }
467
+
468
+ const simulationOrigin = opts.from === NO_FROM ? AztecAddress.ZERO : opts.from;
469
+ const [optimizedResults, normalResult] = await Promise.all([
470
+ optimizableCalls.length > 0
471
+ ? simulateViaNode(
472
+ this.aztecNode,
473
+ optimizableCalls,
474
+ simulationOrigin,
475
+ chainInfo,
476
+ feeOptions.gasSettings,
477
+ blockHeader,
478
+ opts.skipFeeEnforcement ?? true,
479
+ this.getContractName.bind(this),
480
+ opts.overrides,
481
+ )
482
+ : Promise.resolve([]),
483
+ remainingCalls.length > 0
484
+ ? this.simulateViaEntrypoint(remainingPayload, {
485
+ from: opts.from,
486
+ feeOptions,
487
+ additionalScopes: opts.additionalScopes,
488
+ skipTxValidation: opts.skipTxValidation,
489
+ skipFeeEnforcement: opts.skipFeeEnforcement ?? true,
490
+ sendMessagesAs: opts.sendMessagesAs,
491
+ overrides: opts.overrides,
492
+ })
493
+ : Promise.resolve(null),
494
+ ]);
495
+
496
+ return buildMergedSimulationResult(optimizedResults, normalResult);
277
497
  }
278
498
 
279
499
  async profileTx(executionPayload: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult> {
280
- const feeOptions = await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
500
+ const feeOptions = await this.completeFeeOptions({
501
+ from: opts.from,
502
+ feePayer: executionPayload.feePayer,
503
+ gasSettings: opts.fee?.gasSettings,
504
+ congestionEstimate: opts.fee?.congestionEstimate,
505
+ });
281
506
  const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(executionPayload, opts.from, feeOptions);
282
- return this.pxe.profileTx(txRequest, opts.profileMode, opts.skipProofGeneration ?? true);
507
+ return this.pxe.profileTx(txRequest, {
508
+ profileMode: opts.profileMode,
509
+ skipProofGeneration: opts.skipProofGeneration ?? true,
510
+ scopes: this.scopesFrom(opts.from, opts.additionalScopes ?? [], opts.sendMessagesAs),
511
+ senderForTags: this.senderForTagsFrom(opts.from, opts.sendMessagesAs),
512
+ });
283
513
  }
284
514
 
285
515
  public async sendTx<W extends InteractionWaitOptions = undefined>(
286
516
  executionPayload: ExecutionPayload,
287
517
  opts: SendOptions<W>,
288
518
  ): Promise<SendReturn<W>> {
289
- const feeOptions = await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
519
+ const feeOptions = await this.completeFeeOptions({
520
+ from: opts.from,
521
+ feePayer: executionPayload.feePayer,
522
+ gasSettings: opts.fee?.gasSettings,
523
+ congestionEstimate: opts.fee?.congestionEstimate,
524
+ });
290
525
  const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(executionPayload, opts.from, feeOptions);
291
- const provenTx = await this.pxe.proveTx(txRequest);
526
+ const provenTx = await this.pxe.proveTx(txRequest, {
527
+ scopes: this.scopesFrom(opts.from, opts.additionalScopes ?? [], opts.sendMessagesAs),
528
+ senderForTags: this.senderForTagsFrom(opts.from, opts.sendMessagesAs),
529
+ });
530
+ const offchainOutput = extractOffchainOutput(
531
+ provenTx.getOffchainEffects(),
532
+ provenTx.publicInputs.constants.anchorBlockHeader.globalVariables.timestamp,
533
+ );
292
534
  const tx = await provenTx.toTx();
293
535
  const txHash = tx.getTxHash();
294
- if (await this.aztecNode.getTxEffect(txHash)) {
295
- throw new Error(`A settled tx with equal hash ${txHash.toString()} exists.`);
296
- }
297
536
  this.log.debug(`Sending transaction ${txHash}`);
298
537
  await this.aztecNode.sendTx(tx).catch(err => {
299
538
  throw this.contextualizeError(err, inspect(tx));
@@ -302,12 +541,42 @@ export abstract class BaseWallet implements Wallet {
302
541
 
303
542
  // If wait is NO_WAIT, return txHash immediately
304
543
  if (opts.wait === NO_WAIT) {
305
- return txHash as SendReturn<W>;
544
+ return { txHash, ...offchainOutput } as SendReturn<W>;
306
545
  }
307
546
 
308
547
  // Otherwise, wait for the full receipt (default behavior on wait: undefined)
309
- const waitOpts = typeof opts.wait === 'object' ? opts.wait : undefined;
310
- return (await waitForTx(this.aztecNode, txHash, waitOpts)) as SendReturn<W>;
548
+ const callerWaitOpts = typeof opts.wait === 'object' ? opts.wait : undefined;
549
+ const waitOpts: WaitOpts | undefined =
550
+ this.defaultWaitInterval !== undefined && callerWaitOpts?.interval === undefined
551
+ ? { ...callerWaitOpts, interval: this.defaultWaitInterval }
552
+ : callerWaitOpts;
553
+ // The tx was just sent, so an immediate first poll cannot find it mined; skip one poll interval up front.
554
+ const initialDelay = waitOpts?.initialDelay ?? waitOpts?.interval ?? DefaultWaitOpts.interval;
555
+ const receipt = await waitForTx(this.aztecNode, txHash, { ...waitOpts, initialDelay });
556
+
557
+ // Display debug logs from public execution if present (served in test mode only)
558
+ if (receipt.isMined() && receipt.debugLogs?.length) {
559
+ await displayDebugLogs(receipt.debugLogs, this.getContractName.bind(this));
560
+ }
561
+
562
+ return { receipt, ...offchainOutput } as SendReturn<W>;
563
+ }
564
+
565
+ /**
566
+ * Resolves a contract address to a human-readable name via PXE, if available.
567
+ * @param address - The contract address to resolve.
568
+ */
569
+ protected async getContractName(address: AztecAddress): Promise<string | undefined> {
570
+ const instance = await this.pxe.getContractInstance(address);
571
+ if (!instance) {
572
+ return undefined;
573
+ }
574
+ // Contract names are class-stable (an upgrade preserves the contract name), so the original class artifact is a
575
+ // sufficient source for the display name without resolving the current class against the node.
576
+ // TODO: if a contract were to be upgraded and its original artifact never registered, then this would fail and we'd
577
+ // want to fallback to the current class.
578
+ const artifact = await this.pxe.getContractArtifact(instance.originalContractClassId);
579
+ return artifact?.name;
311
580
  }
312
581
 
313
582
  protected contextualizeError(err: Error, ...context: string[]): Error {
@@ -324,8 +593,8 @@ export abstract class BaseWallet implements Wallet {
324
593
  return err;
325
594
  }
326
595
 
327
- simulateUtility(call: FunctionCall, authwits?: AuthWitness[]): Promise<UtilitySimulationResult> {
328
- return this.pxe.simulateUtility(call, authwits);
596
+ executeUtility(call: FunctionCall, opts: ExecuteUtilityOptions): Promise<UtilityExecutionResult> {
597
+ return this.pxe.executeUtility(call, { authwits: opts.authWitnesses, scopes: opts.scopes });
329
598
  }
330
599
 
331
600
  async getPrivateEvents<T>(
@@ -336,7 +605,7 @@ export abstract class BaseWallet implements Wallet {
336
605
 
337
606
  const decodedEvents = pxeEvents.map((pxeEvent: PackedPrivateEvent): PrivateEvent<T> => {
338
607
  return {
339
- event: decodeFromAbi([eventDef.abiType], pxeEvent.packedEvent) as T,
608
+ event: decodeFromAbi(eventDef.abiType, pxeEvent.packedEvent) as T,
340
609
  metadata: {
341
610
  l2BlockNumber: pxeEvent.l2BlockNumber,
342
611
  l2BlockHash: pxeEvent.l2BlockHash,
@@ -348,17 +617,39 @@ export abstract class BaseWallet implements Wallet {
348
617
  return decodedEvents;
349
618
  }
350
619
 
620
+ /**
621
+ * Returns metadata about a contract, including whether it has been initialized, published, and updated.
622
+ * @param address - The contract address to query.
623
+ */
351
624
  async getContractMetadata(address: AztecAddress) {
352
625
  const instance = await this.pxe.getContractInstance(address);
353
- const initNullifier = await siloNullifier(address, address.toField());
354
- const publiclyRegisteredContract = await this.aztecNode.getContract(address);
355
- const initNullifierMembershipWitness = await this.aztecNode.getNullifierMembershipWitness('latest', initNullifier);
626
+ const publiclyRegisteredContractPromise = this.aztecNode.getContract(address);
627
+
628
+ let initializationStatus: ContractInitializationStatus;
629
+ if (instance) {
630
+ // We have the instance, so we can compute the private initialization nullifier (which includes init_hash and is
631
+ // emitted by both private and public initializers) and get a definitive INITIALIZED/UNINITIALIZED answer.
632
+ const initNullifier = await computeSiloedPrivateInitializationNullifier(address, instance.initializationHash);
633
+ const witness = await this.aztecNode.getNullifierMembershipWitness('latest', initNullifier);
634
+ initializationStatus = witness
635
+ ? ContractInitializationStatus.INITIALIZED
636
+ : ContractInitializationStatus.UNINITIALIZED;
637
+ } else {
638
+ // Without the instance we lack the init_hash needed for the private nullifier. We fall back to checking the
639
+ // public initialization nullifier (computed from address alone). Not all contracts emit it (only those with
640
+ // public functions that require initialization checks), so its absence doesn't mean the contract is
641
+ // uninitialized.
642
+ const publicNullifier = await computeSiloedPublicInitializationNullifier(address);
643
+ const witness = await this.aztecNode.getNullifierMembershipWitness('latest', publicNullifier);
644
+ initializationStatus = witness ? ContractInitializationStatus.INITIALIZED : ContractInitializationStatus.UNKNOWN;
645
+ }
646
+ const publiclyRegisteredContract = await publiclyRegisteredContractPromise;
356
647
  const isContractUpdated =
357
648
  publiclyRegisteredContract &&
358
649
  !publiclyRegisteredContract.currentContractClassId.equals(publiclyRegisteredContract.originalContractClassId);
359
650
  return {
360
651
  instance: instance ?? undefined,
361
- isContractInitialized: !!initNullifierMembershipWitness,
652
+ initializationStatus,
362
653
  isContractPublished: !!publiclyRegisteredContract,
363
654
  isContractUpdated: !!isContractUpdated,
364
655
  updatedContractClassId: isContractUpdated ? publiclyRegisteredContract.currentContractClassId : undefined,