@aztec/wallet-sdk 0.0.1-commit.f2ce05ee → 0.0.1-commit.f5a9928
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +157 -0
- package/dest/base-wallet/base_wallet.d.ts +87 -42
- package/dest/base-wallet/base_wallet.d.ts.map +1 -1
- package/dest/base-wallet/base_wallet.js +315 -110
- package/dest/base-wallet/get_gas_limits.d.ts +36 -0
- package/dest/base-wallet/get_gas_limits.d.ts.map +1 -0
- package/dest/base-wallet/get_gas_limits.js +55 -0
- package/dest/base-wallet/index.d.ts +3 -2
- package/dest/base-wallet/index.d.ts.map +1 -1
- package/dest/base-wallet/index.js +1 -0
- package/dest/base-wallet/utils.d.ts +8 -4
- package/dest/base-wallet/utils.d.ts.map +1 -1
- package/dest/base-wallet/utils.js +15 -6
- package/dest/crypto.d.ts +39 -1
- package/dest/crypto.d.ts.map +1 -1
- package/dest/crypto.js +88 -0
- package/dest/extension/handlers/background_connection_handler.d.ts +12 -2
- package/dest/extension/handlers/background_connection_handler.d.ts.map +1 -1
- package/dest/extension/handlers/background_connection_handler.js +44 -8
- package/dest/extension/handlers/content_script_connection_handler.d.ts +2 -1
- package/dest/extension/handlers/content_script_connection_handler.d.ts.map +1 -1
- package/dest/extension/handlers/content_script_connection_handler.js +19 -0
- package/dest/extension/handlers/internal_message_types.d.ts +3 -1
- package/dest/extension/handlers/internal_message_types.d.ts.map +1 -1
- package/dest/extension/handlers/internal_message_types.js +3 -1
- package/dest/extension/provider/extension_wallet.d.ts +27 -6
- package/dest/extension/provider/extension_wallet.d.ts.map +1 -1
- package/dest/extension/provider/extension_wallet.js +89 -11
- package/dest/extension/provider/index.d.ts +2 -2
- package/dest/extension/provider/index.d.ts.map +1 -1
- package/dest/iframe/handlers/iframe_connection_handler.d.ts +122 -0
- package/dest/iframe/handlers/iframe_connection_handler.d.ts.map +1 -0
- package/dest/iframe/handlers/iframe_connection_handler.js +239 -0
- package/dest/iframe/handlers/index.d.ts +2 -0
- package/dest/iframe/handlers/index.d.ts.map +1 -0
- package/dest/iframe/handlers/index.js +1 -0
- package/dest/iframe/provider/iframe_discovery.d.ts +25 -0
- package/dest/iframe/provider/iframe_discovery.d.ts.map +1 -0
- package/dest/iframe/provider/iframe_discovery.js +167 -0
- package/dest/iframe/provider/iframe_provider.d.ts +65 -0
- package/dest/iframe/provider/iframe_provider.d.ts.map +1 -0
- package/dest/iframe/provider/iframe_provider.js +257 -0
- package/dest/iframe/provider/iframe_wallet.d.ts +85 -0
- package/dest/iframe/provider/iframe_wallet.d.ts.map +1 -0
- package/dest/iframe/provider/iframe_wallet.js +269 -0
- package/dest/iframe/provider/index.d.ts +4 -0
- package/dest/iframe/provider/index.d.ts.map +1 -0
- package/dest/iframe/provider/index.js +3 -0
- package/dest/manager/types.d.ts +6 -5
- package/dest/manager/types.d.ts.map +1 -1
- package/dest/manager/wallet_manager.d.ts +1 -1
- package/dest/manager/wallet_manager.d.ts.map +1 -1
- package/dest/manager/wallet_manager.js +48 -18
- package/dest/types.d.ts +64 -2
- package/dest/types.d.ts.map +1 -1
- package/dest/types.js +29 -0
- package/package.json +12 -8
- package/src/base-wallet/base_wallet.ts +391 -171
- package/src/base-wallet/get_gas_limits.ts +88 -0
- package/src/base-wallet/index.ts +7 -1
- package/src/base-wallet/utils.ts +24 -5
- package/src/crypto.ts +104 -0
- package/src/extension/handlers/background_connection_handler.ts +42 -9
- package/src/extension/handlers/content_script_connection_handler.ts +18 -0
- package/src/extension/handlers/internal_message_types.ts +2 -0
- package/src/extension/provider/extension_wallet.ts +106 -17
- package/src/extension/provider/index.ts +1 -1
- package/src/iframe/handlers/iframe_connection_handler.ts +341 -0
- package/src/iframe/handlers/index.ts +7 -0
- package/src/iframe/provider/iframe_discovery.ts +185 -0
- package/src/iframe/provider/iframe_provider.ts +331 -0
- package/src/iframe/provider/iframe_wallet.ts +323 -0
- package/src/iframe/provider/index.ts +3 -0
- package/src/manager/types.ts +5 -4
- package/src/manager/wallet_manager.ts +55 -23
- package/src/types.ts +72 -0
|
@@ -1,32 +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 {
|
|
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
|
-
AppCapabilities,
|
|
9
|
-
BatchResults,
|
|
10
|
-
BatchedMethod,
|
|
11
|
-
PrivateEvent,
|
|
12
|
-
PrivateEventFilter,
|
|
13
|
-
ProfileOptions,
|
|
14
|
-
SendOptions,
|
|
15
|
-
SimulateOptions,
|
|
16
|
-
Wallet,
|
|
17
|
-
WalletCapabilities,
|
|
18
|
-
} from '@aztec/aztec.js/wallet';
|
|
19
14
|
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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';
|
|
25
30
|
import { AccountFeePaymentMethodOptions, type DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
31
|
+
import { DefaultEntrypoint } from '@aztec/entrypoints/default';
|
|
26
32
|
import type { ChainInfo } from '@aztec/entrypoints/interfaces';
|
|
27
33
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
28
34
|
import { createLogger } from '@aztec/foundation/log';
|
|
29
35
|
import type { FieldsOf } from '@aztec/foundation/types';
|
|
36
|
+
import { displayDebugLogs } from '@aztec/pxe/client/lazy';
|
|
30
37
|
import type { PXE, PackedPrivateEvent } from '@aztec/pxe/server';
|
|
31
38
|
import {
|
|
32
39
|
type ContractArtifact,
|
|
@@ -35,26 +42,28 @@ import {
|
|
|
35
42
|
decodeFromAbi,
|
|
36
43
|
} from '@aztec/stdlib/abi';
|
|
37
44
|
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
38
|
-
import
|
|
39
|
-
import {
|
|
40
|
-
type ContractInstanceWithAddress,
|
|
41
|
-
computePartialAddress,
|
|
42
|
-
getContractClassFromArtifact,
|
|
43
|
-
} from '@aztec/stdlib/contract';
|
|
45
|
+
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
46
|
+
import { type ContractInstancePreimage, type NodeInfo, computePartialAddress } from '@aztec/stdlib/contract';
|
|
44
47
|
import { SimulationError } from '@aztec/stdlib/errors';
|
|
45
|
-
import { Gas, GasSettings } from '@aztec/stdlib/gas';
|
|
46
|
-
import {
|
|
48
|
+
import { Gas, GasFees, GasSettings, ManaUsageEstimate } from '@aztec/stdlib/gas';
|
|
49
|
+
import {
|
|
50
|
+
computeSiloedPrivateInitializationNullifier,
|
|
51
|
+
computeSiloedPublicInitializationNullifier,
|
|
52
|
+
} from '@aztec/stdlib/hash';
|
|
47
53
|
import type { AztecNode } from '@aztec/stdlib/interfaces/client';
|
|
54
|
+
import { type MasterSecretKeys, deriveKeys, deriveKeysFromMasterSecretKeys } from '@aztec/stdlib/keys';
|
|
48
55
|
import {
|
|
56
|
+
BlockHeader,
|
|
57
|
+
ExecutionPayload,
|
|
49
58
|
type TxExecutionRequest,
|
|
50
59
|
type TxProfileResult,
|
|
51
|
-
|
|
52
|
-
|
|
60
|
+
type UtilityExecutionResult,
|
|
61
|
+
mergeExecutionPayloads,
|
|
53
62
|
} from '@aztec/stdlib/tx';
|
|
54
|
-
import { ExecutionPayload, mergeExecutionPayloads } from '@aztec/stdlib/tx';
|
|
55
63
|
|
|
56
64
|
import { inspect } from 'util';
|
|
57
65
|
|
|
66
|
+
import { assertGasLimitsWithinNetworkLimits } from './get_gas_limits.js';
|
|
58
67
|
import { buildMergedSimulationResult, extractOptimizablePublicStaticCalls, simulateViaNode } from './utils.js';
|
|
59
68
|
|
|
60
69
|
/**
|
|
@@ -67,26 +76,81 @@ export type FeeOptions = {
|
|
|
67
76
|
*/
|
|
68
77
|
walletFeePaymentMethod?: FeePaymentMethod;
|
|
69
78
|
/** Configuration options for the account to properly handle the selected fee payment method */
|
|
70
|
-
accountFeePaymentMethodOptions
|
|
79
|
+
accountFeePaymentMethodOptions?: AccountFeePaymentMethodOptions;
|
|
71
80
|
/** The gas settings to use for the transaction */
|
|
72
81
|
gasSettings: GasSettings;
|
|
73
82
|
};
|
|
74
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
|
+
|
|
75
110
|
/**
|
|
76
111
|
* A base class for Wallet implementations
|
|
77
112
|
*/
|
|
78
113
|
export abstract class BaseWallet implements Wallet {
|
|
79
|
-
protected log = createLogger('wallet-sdk:base_wallet');
|
|
80
|
-
|
|
81
114
|
protected minFeePadding = 0.5;
|
|
82
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;
|
|
83
122
|
|
|
84
123
|
// Protected because we want to force wallets to instantiate their own PXE.
|
|
85
124
|
protected constructor(
|
|
86
125
|
protected readonly pxe: PXE,
|
|
87
126
|
protected readonly aztecNode: AztecNode,
|
|
127
|
+
protected log = createLogger('wallet-sdk:base_wallet'),
|
|
88
128
|
) {}
|
|
89
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
|
+
|
|
90
154
|
protected abstract getAccountFromAddress(address: AztecAddress): Promise<Account>;
|
|
91
155
|
|
|
92
156
|
abstract getAccounts(): Promise<Aliased<AztecAddress>[]>;
|
|
@@ -99,37 +163,71 @@ export abstract class BaseWallet implements Wallet {
|
|
|
99
163
|
* @returns The aliased collection of AztecAddresses that form this wallet's address book
|
|
100
164
|
*/
|
|
101
165
|
async getAddressBook(): Promise<Aliased<AztecAddress>[]> {
|
|
102
|
-
const
|
|
103
|
-
return
|
|
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;
|
|
104
184
|
}
|
|
105
185
|
|
|
106
186
|
async getChainInfo(): Promise<ChainInfo> {
|
|
107
|
-
const { l1ChainId, rollupVersion } = await this.
|
|
187
|
+
const { l1ChainId, rollupVersion } = await this.getNodeInfo();
|
|
108
188
|
return { chainId: new Fr(l1ChainId), version: new Fr(rollupVersion) };
|
|
109
189
|
}
|
|
110
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
|
+
|
|
111
202
|
protected async createTxExecutionRequestFromPayloadAndFee(
|
|
112
203
|
executionPayload: ExecutionPayload,
|
|
113
|
-
from: AztecAddress,
|
|
204
|
+
from: AztecAddress | NoFrom,
|
|
114
205
|
feeOptions: FeeOptions,
|
|
115
206
|
): Promise<TxExecutionRequest> {
|
|
116
207
|
const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
|
|
117
|
-
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
118
|
-
txNonce: Fr.random(),
|
|
119
|
-
cancellable: this.cancellableTransactions,
|
|
120
|
-
feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
|
|
121
|
-
};
|
|
122
208
|
const finalExecutionPayload = feeExecutionPayload
|
|
123
209
|
? mergeExecutionPayloads([feeExecutionPayload, executionPayload])
|
|
124
210
|
: executionPayload;
|
|
125
|
-
const fromAccount = await this.getAccountFromAddress(from);
|
|
126
211
|
const chainInfo = await this.getChainInfo();
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
chainInfo
|
|
131
|
-
|
|
132
|
-
|
|
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
|
+
}
|
|
133
231
|
}
|
|
134
232
|
|
|
135
233
|
public async createAuthWit(
|
|
@@ -178,31 +276,54 @@ export abstract class BaseWallet implements Wallet {
|
|
|
178
276
|
|
|
179
277
|
/**
|
|
180
278
|
* Completes partial user-provided fee options with wallet defaults.
|
|
181
|
-
* @param
|
|
182
|
-
* @param feePayer - The address paying for fees (if any fee payment method is embedded in the execution payload)
|
|
183
|
-
* @param gasSettings - User-provided partial gas settings
|
|
184
|
-
* @returns - Complete fee options that can be used to create a transaction execution request
|
|
279
|
+
* @param config - Fee completion config.
|
|
185
280
|
*/
|
|
186
|
-
protected async completeFeeOptions(
|
|
187
|
-
from
|
|
188
|
-
feePayer?: AztecAddress,
|
|
189
|
-
gasSettings?: Partial<FieldsOf<GasSettings>>,
|
|
190
|
-
): Promise<FeeOptions> {
|
|
281
|
+
protected async completeFeeOptions(config: CompleteFeeOptionsConfig): Promise<FeeOptions> {
|
|
282
|
+
const { from, feePayer, gasSettings, forEstimation, congestionEstimate } = config;
|
|
191
283
|
const maxFeesPerGas =
|
|
192
|
-
gasSettings?.maxFeesPerGas ?? (await this.
|
|
284
|
+
gasSettings?.maxFeesPerGas ?? (await this.getMinFees(congestionEstimate)).mul(1 + this.minFeePadding);
|
|
193
285
|
let accountFeePaymentMethodOptions;
|
|
194
|
-
//
|
|
195
|
-
//
|
|
196
|
-
if (
|
|
197
|
-
|
|
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);
|
|
198
315
|
} else {
|
|
199
|
-
|
|
200
|
-
//
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
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
|
+
});
|
|
204
326
|
}
|
|
205
|
-
const fullGasSettings: GasSettings = GasSettings.default({ ...gasSettings, maxFeesPerGas });
|
|
206
327
|
this.log.debug(`Using L2 gas settings`, fullGasSettings);
|
|
207
328
|
return {
|
|
208
329
|
gasSettings: fullGasSettings,
|
|
@@ -212,95 +333,104 @@ export abstract class BaseWallet implements Wallet {
|
|
|
212
333
|
}
|
|
213
334
|
|
|
214
335
|
/**
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
* to
|
|
218
|
-
* @param from - The address where the transaction is being sent from
|
|
219
|
-
* @param feePayer - The address paying for fees (if any fee payment method is embedded in the execution payload)
|
|
220
|
-
* @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.
|
|
221
339
|
*/
|
|
222
|
-
protected async
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
maxPriorityFeesPerGas,
|
|
238
|
-
);
|
|
239
|
-
return {
|
|
240
|
-
...defaultFeeOptions,
|
|
241
|
-
gasSettings: gasSettingsForEstimation,
|
|
242
|
-
};
|
|
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
|
+
}
|
|
243
355
|
}
|
|
244
356
|
|
|
245
|
-
registerSender(address: AztecAddress, _alias: string = ''): Promise<AztecAddress> {
|
|
246
|
-
|
|
357
|
+
async registerSender(address: AztecAddress, _alias: string = ''): Promise<AztecAddress> {
|
|
358
|
+
await this.pxe.registerTaggingSecretSource({ kind: 'address-derived', sender: address });
|
|
359
|
+
return address;
|
|
247
360
|
}
|
|
248
361
|
|
|
249
362
|
async registerContract(
|
|
250
|
-
instance:
|
|
363
|
+
instance: ContractInstancePreimage,
|
|
251
364
|
artifact?: ContractArtifact,
|
|
252
|
-
|
|
253
|
-
): Promise<
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
//
|
|
267
|
-
|
|
268
|
-
//
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
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);
|
|
372
|
+
}
|
|
373
|
+
const contractAddress = await this.pxe.registerContract(instance);
|
|
374
|
+
|
|
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
|
+
);
|
|
277
391
|
}
|
|
278
|
-
await this.pxe.registerContract({ artifact, instance });
|
|
279
392
|
}
|
|
393
|
+
}
|
|
280
394
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
}
|
|
284
|
-
return instance;
|
|
395
|
+
registerContractClass(artifact: ContractArtifact): Promise<void> {
|
|
396
|
+
return this.pxe.registerContractClass(artifact);
|
|
285
397
|
}
|
|
286
398
|
|
|
287
399
|
/**
|
|
288
400
|
* Simulates calls through the standard PXE path (account entrypoint).
|
|
289
401
|
* @param executionPayload - The execution payload to simulate.
|
|
290
|
-
* @param
|
|
291
|
-
* @param feeOptions - Fee options for the transaction.
|
|
292
|
-
* @param skipTxValidation - Whether to skip tx validation.
|
|
293
|
-
* @param skipFeeEnforcement - Whether to skip fee enforcement.
|
|
402
|
+
* @param opts - Simulation options.
|
|
294
403
|
*/
|
|
295
|
-
protected async simulateViaEntrypoint(
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
404
|
+
protected async simulateViaEntrypoint(executionPayload: ExecutionPayload, opts: SimulateViaEntrypointOptions) {
|
|
405
|
+
const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(
|
|
406
|
+
executionPayload,
|
|
407
|
+
opts.from,
|
|
408
|
+
opts.feeOptions,
|
|
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
|
|
304
434
|
}
|
|
305
435
|
|
|
306
436
|
/**
|
|
@@ -311,36 +441,55 @@ export abstract class BaseWallet implements Wallet {
|
|
|
311
441
|
* @param opts - Simulation options (from address, fee settings, etc.).
|
|
312
442
|
* @returns The merged simulation result.
|
|
313
443
|
*/
|
|
314
|
-
async simulateTx(
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
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
|
+
});
|
|
318
455
|
const { optimizableCalls, remainingCalls } = extractOptimizablePublicStaticCalls(executionPayload);
|
|
319
456
|
const remainingPayload = { ...executionPayload, calls: remainingCalls };
|
|
320
457
|
|
|
321
458
|
const chainInfo = await this.getChainInfo();
|
|
322
|
-
|
|
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
|
+
}
|
|
323
467
|
|
|
468
|
+
const simulationOrigin = opts.from === NO_FROM ? AztecAddress.ZERO : opts.from;
|
|
324
469
|
const [optimizedResults, normalResult] = await Promise.all([
|
|
325
470
|
optimizableCalls.length > 0
|
|
326
471
|
? simulateViaNode(
|
|
327
472
|
this.aztecNode,
|
|
328
473
|
optimizableCalls,
|
|
329
|
-
|
|
474
|
+
simulationOrigin,
|
|
330
475
|
chainInfo,
|
|
331
476
|
feeOptions.gasSettings,
|
|
332
477
|
blockHeader,
|
|
333
478
|
opts.skipFeeEnforcement ?? true,
|
|
479
|
+
this.getContractName.bind(this),
|
|
480
|
+
opts.overrides,
|
|
334
481
|
)
|
|
335
482
|
: Promise.resolve([]),
|
|
336
483
|
remainingCalls.length > 0
|
|
337
|
-
? this.simulateViaEntrypoint(
|
|
338
|
-
|
|
339
|
-
opts.from,
|
|
484
|
+
? this.simulateViaEntrypoint(remainingPayload, {
|
|
485
|
+
from: opts.from,
|
|
340
486
|
feeOptions,
|
|
341
|
-
opts.
|
|
342
|
-
opts.
|
|
343
|
-
|
|
487
|
+
additionalScopes: opts.additionalScopes,
|
|
488
|
+
skipTxValidation: opts.skipTxValidation,
|
|
489
|
+
skipFeeEnforcement: opts.skipFeeEnforcement ?? true,
|
|
490
|
+
sendMessagesAs: opts.sendMessagesAs,
|
|
491
|
+
overrides: opts.overrides,
|
|
492
|
+
})
|
|
344
493
|
: Promise.resolve(null),
|
|
345
494
|
]);
|
|
346
495
|
|
|
@@ -348,23 +497,42 @@ export abstract class BaseWallet implements Wallet {
|
|
|
348
497
|
}
|
|
349
498
|
|
|
350
499
|
async profileTx(executionPayload: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult> {
|
|
351
|
-
const feeOptions = await this.completeFeeOptions(
|
|
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
|
+
});
|
|
352
506
|
const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(executionPayload, opts.from, feeOptions);
|
|
353
|
-
return this.pxe.profileTx(txRequest,
|
|
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
|
+
});
|
|
354
513
|
}
|
|
355
514
|
|
|
356
515
|
public async sendTx<W extends InteractionWaitOptions = undefined>(
|
|
357
516
|
executionPayload: ExecutionPayload,
|
|
358
517
|
opts: SendOptions<W>,
|
|
359
518
|
): Promise<SendReturn<W>> {
|
|
360
|
-
const feeOptions = await this.completeFeeOptions(
|
|
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
|
+
});
|
|
361
525
|
const txRequest = await this.createTxExecutionRequestFromPayloadAndFee(executionPayload, opts.from, feeOptions);
|
|
362
|
-
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
|
+
);
|
|
363
534
|
const tx = await provenTx.toTx();
|
|
364
535
|
const txHash = tx.getTxHash();
|
|
365
|
-
if (await this.aztecNode.getTxEffect(txHash)) {
|
|
366
|
-
throw new Error(`A settled tx with equal hash ${txHash.toString()} exists.`);
|
|
367
|
-
}
|
|
368
536
|
this.log.debug(`Sending transaction ${txHash}`);
|
|
369
537
|
await this.aztecNode.sendTx(tx).catch(err => {
|
|
370
538
|
throw this.contextualizeError(err, inspect(tx));
|
|
@@ -373,12 +541,42 @@ export abstract class BaseWallet implements Wallet {
|
|
|
373
541
|
|
|
374
542
|
// If wait is NO_WAIT, return txHash immediately
|
|
375
543
|
if (opts.wait === NO_WAIT) {
|
|
376
|
-
return txHash as SendReturn<W>;
|
|
544
|
+
return { txHash, ...offchainOutput } as SendReturn<W>;
|
|
377
545
|
}
|
|
378
546
|
|
|
379
547
|
// Otherwise, wait for the full receipt (default behavior on wait: undefined)
|
|
380
|
-
const
|
|
381
|
-
|
|
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;
|
|
382
580
|
}
|
|
383
581
|
|
|
384
582
|
protected contextualizeError(err: Error, ...context: string[]): Error {
|
|
@@ -395,8 +593,8 @@ export abstract class BaseWallet implements Wallet {
|
|
|
395
593
|
return err;
|
|
396
594
|
}
|
|
397
595
|
|
|
398
|
-
|
|
399
|
-
return this.pxe.
|
|
596
|
+
executeUtility(call: FunctionCall, opts: ExecuteUtilityOptions): Promise<UtilityExecutionResult> {
|
|
597
|
+
return this.pxe.executeUtility(call, { authwits: opts.authWitnesses, scopes: opts.scopes });
|
|
400
598
|
}
|
|
401
599
|
|
|
402
600
|
async getPrivateEvents<T>(
|
|
@@ -419,17 +617,39 @@ export abstract class BaseWallet implements Wallet {
|
|
|
419
617
|
return decodedEvents;
|
|
420
618
|
}
|
|
421
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
|
+
*/
|
|
422
624
|
async getContractMetadata(address: AztecAddress) {
|
|
423
625
|
const instance = await this.pxe.getContractInstance(address);
|
|
424
|
-
const
|
|
425
|
-
|
|
426
|
-
|
|
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;
|
|
427
647
|
const isContractUpdated =
|
|
428
648
|
publiclyRegisteredContract &&
|
|
429
649
|
!publiclyRegisteredContract.currentContractClassId.equals(publiclyRegisteredContract.originalContractClassId);
|
|
430
650
|
return {
|
|
431
651
|
instance: instance ?? undefined,
|
|
432
|
-
|
|
652
|
+
initializationStatus,
|
|
433
653
|
isContractPublished: !!publiclyRegisteredContract,
|
|
434
654
|
isContractUpdated: !!isContractUpdated,
|
|
435
655
|
updatedContractClassId: isContractUpdated ? publiclyRegisteredContract.currentContractClassId : undefined,
|