@aztec/cli-wallet 0.0.1-commit.b655e406 → 0.0.1-commit.c31f2472
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 +2 -2
- package/dest/bin/index.d.ts +2 -1
- package/dest/bin/index.js +20 -10
- package/dest/cmds/authorize_action.d.ts +2 -2
- package/dest/cmds/authorize_action.d.ts.map +1 -1
- package/dest/cmds/authorize_action.js +5 -3
- package/dest/cmds/bridge_fee_juice.d.ts +2 -2
- package/dest/cmds/bridge_fee_juice.d.ts.map +1 -1
- package/dest/cmds/bridge_fee_juice.js +3 -2
- package/dest/cmds/check_tx.d.ts +1 -1
- package/dest/cmds/check_tx.js +8 -6
- package/dest/cmds/create_account.d.ts +4 -3
- package/dest/cmds/create_account.d.ts.map +1 -1
- package/dest/cmds/create_account.js +25 -19
- package/dest/cmds/create_authwit.d.ts +1 -1
- package/dest/cmds/create_authwit.js +1 -1
- package/dest/cmds/deploy.d.ts +1 -1
- package/dest/cmds/deploy.d.ts.map +1 -1
- package/dest/cmds/deploy.js +46 -23
- package/dest/cmds/deploy_account.d.ts +1 -1
- package/dest/cmds/deploy_account.d.ts.map +1 -1
- package/dest/cmds/deploy_account.js +24 -18
- package/dest/cmds/import_test_accounts.d.ts +1 -1
- package/dest/cmds/index.d.ts +1 -1
- package/dest/cmds/index.js +2 -2
- package/dest/cmds/profile.d.ts +1 -1
- package/dest/cmds/profile.js +1 -1
- package/dest/cmds/register_contract.d.ts +1 -1
- package/dest/cmds/register_sender.d.ts +1 -1
- package/dest/cmds/send.d.ts +2 -2
- package/dest/cmds/send.d.ts.map +1 -1
- package/dest/cmds/send.js +29 -17
- package/dest/cmds/simulate.d.ts +1 -1
- package/dest/cmds/simulate.d.ts.map +1 -1
- package/dest/cmds/simulate.js +4 -4
- package/dest/storage/wallet_db.d.ts +5 -5
- package/dest/storage/wallet_db.d.ts.map +1 -1
- package/dest/storage/wallet_db.js +1 -1
- package/dest/utils/authorizations.d.ts +1 -1
- package/dest/utils/cli_wallet_and_node_wrapper.d.ts +1 -1
- package/dest/utils/cli_wallet_and_node_wrapper.d.ts.map +1 -1
- package/dest/utils/constants.d.ts +4 -0
- package/dest/utils/constants.d.ts.map +1 -0
- package/dest/utils/constants.js +7 -0
- package/dest/utils/ecdsa.d.ts +1 -1
- package/dest/utils/options/fees.d.ts +3 -2
- package/dest/utils/options/fees.d.ts.map +1 -1
- package/dest/utils/options/fees.js +3 -3
- package/dest/utils/options/index.d.ts +1 -1
- package/dest/utils/options/options.d.ts +1 -1
- package/dest/utils/options/options.js +1 -1
- package/dest/utils/profiling.d.ts +1 -1
- package/dest/utils/profiling.d.ts.map +1 -1
- package/dest/utils/profiling.js +9 -1
- package/dest/utils/wallet.d.ts +9 -9
- package/dest/utils/wallet.d.ts.map +1 -1
- package/dest/utils/wallet.js +33 -22
- package/package.json +17 -14
- package/src/bin/index.ts +18 -12
- package/src/cmds/authorize_action.ts +2 -2
- package/src/cmds/bridge_fee_juice.ts +3 -2
- package/src/cmds/check_tx.ts +9 -11
- package/src/cmds/create_account.ts +26 -19
- package/src/cmds/create_authwit.ts +1 -1
- package/src/cmds/deploy.ts +41 -22
- package/src/cmds/deploy_account.ts +23 -17
- package/src/cmds/index.ts +3 -3
- package/src/cmds/profile.ts +1 -1
- package/src/cmds/send.ts +23 -11
- package/src/cmds/simulate.ts +4 -7
- package/src/storage/wallet_db.ts +2 -2
- package/src/utils/cli_wallet_and_node_wrapper.ts +1 -1
- package/src/utils/constants.ts +4 -0
- package/src/utils/options/fees.ts +5 -4
- package/src/utils/options/options.ts +1 -1
- package/src/utils/profiling.ts +15 -1
- package/src/utils/wallet.ts +40 -21
package/src/utils/wallet.ts
CHANGED
|
@@ -9,29 +9,26 @@ import {
|
|
|
9
9
|
getGasLimits,
|
|
10
10
|
} from '@aztec/aztec.js/contracts';
|
|
11
11
|
import type { AztecNode } from '@aztec/aztec.js/node';
|
|
12
|
-
import {
|
|
13
|
-
import { AccountManager, type Aliased, BaseWallet, type SimulateOptions } from '@aztec/aztec.js/wallet';
|
|
12
|
+
import { AccountManager, type Aliased, type SimulateOptions } from '@aztec/aztec.js/wallet';
|
|
14
13
|
import type { DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
15
|
-
import {
|
|
16
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
14
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
17
15
|
import type { LogFn } from '@aztec/foundation/log';
|
|
18
16
|
import type { PXEConfig } from '@aztec/pxe/config';
|
|
19
17
|
import type { PXE } from '@aztec/pxe/server';
|
|
20
18
|
import { createPXE, getPXEConfig } from '@aztec/pxe/server';
|
|
21
19
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
22
20
|
import { deriveSigningKey } from '@aztec/stdlib/keys';
|
|
21
|
+
import { NoteDao } from '@aztec/stdlib/note';
|
|
23
22
|
import type { NotesFilter } from '@aztec/stdlib/note';
|
|
24
23
|
import type { TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
|
|
24
|
+
import { ExecutionPayload, mergeExecutionPayloads } from '@aztec/stdlib/tx';
|
|
25
|
+
import { BaseWallet } from '@aztec/wallet-sdk/base-wallet';
|
|
25
26
|
|
|
26
27
|
import type { WalletDB } from '../storage/wallet_db.js';
|
|
28
|
+
import type { AccountType } from './constants.js';
|
|
27
29
|
import { extractECDSAPublicKeyFromBase64String } from './ecdsa.js';
|
|
28
30
|
import { printGasEstimates } from './options/fees.js';
|
|
29
31
|
|
|
30
|
-
export const AccountTypes = ['schnorr', 'ecdsasecp256r1', 'ecdsasecp256r1ssh', 'ecdsasecp256k1'] as const;
|
|
31
|
-
export type AccountType = (typeof AccountTypes)[number];
|
|
32
|
-
|
|
33
|
-
export const BASE_FEE_PADDING = 0.5;
|
|
34
|
-
|
|
35
32
|
export class CLIWallet extends BaseWallet {
|
|
36
33
|
private accountCache = new Map<string, Account>();
|
|
37
34
|
|
|
@@ -66,17 +63,20 @@ export class CLIWallet extends BaseWallet {
|
|
|
66
63
|
txNonce: Fr,
|
|
67
64
|
increasedFee: InteractionFeeOptions,
|
|
68
65
|
) {
|
|
69
|
-
const
|
|
66
|
+
const executionPayload = ExecutionPayload.empty();
|
|
67
|
+
const feeOptions = await this.completeFeeOptions(from, executionPayload.feePayer, increasedFee.gasSettings);
|
|
70
68
|
const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
|
|
71
69
|
const fromAccount = await this.getAccountFromAddress(from);
|
|
70
|
+
const chainInfo = await this.getChainInfo();
|
|
72
71
|
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
73
72
|
txNonce,
|
|
74
73
|
cancellable: this.cancellableTransactions,
|
|
75
74
|
feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
|
|
76
75
|
};
|
|
77
76
|
return await fromAccount.createTxExecutionRequest(
|
|
78
|
-
feeExecutionPayload ??
|
|
77
|
+
feeExecutionPayload ?? executionPayload,
|
|
79
78
|
feeOptions.gasSettings,
|
|
79
|
+
chainInfo,
|
|
80
80
|
executionOptions,
|
|
81
81
|
);
|
|
82
82
|
}
|
|
@@ -93,8 +93,7 @@ export class CLIWallet extends BaseWallet {
|
|
|
93
93
|
override async getAccountFromAddress(address: AztecAddress) {
|
|
94
94
|
let account: Account | undefined;
|
|
95
95
|
if (address.equals(AztecAddress.ZERO)) {
|
|
96
|
-
|
|
97
|
-
account = new SignerlessAccount(chainInfo);
|
|
96
|
+
account = new SignerlessAccount();
|
|
98
97
|
} else if (this.accountCache.has(address.toString())) {
|
|
99
98
|
return this.accountCache.get(address.toString())!;
|
|
100
99
|
} else {
|
|
@@ -178,15 +177,26 @@ export class CLIWallet extends BaseWallet {
|
|
|
178
177
|
return account;
|
|
179
178
|
}
|
|
180
179
|
|
|
180
|
+
/**
|
|
181
|
+
* Creates a stub account that impersonates the given address, allowing kernelless simulations
|
|
182
|
+
* to bypass the account's authorization mechanisms via contract overrides.
|
|
183
|
+
* @param address - The address of the account to impersonate
|
|
184
|
+
* @returns The stub account, contract instance, and artifact for simulation
|
|
185
|
+
*/
|
|
181
186
|
private async getFakeAccountDataFor(address: AztecAddress) {
|
|
182
|
-
const chainInfo = await this.getChainInfo();
|
|
183
187
|
const originalAccount = await this.getAccountFromAddress(address);
|
|
184
|
-
|
|
185
|
-
|
|
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();
|
|
195
|
+
const contractInstance = await this.pxe.getContractInstance(originalAddress.address);
|
|
186
196
|
if (!contractInstance) {
|
|
187
197
|
throw new Error(`No contract instance found for address: ${originalAddress.address}`);
|
|
188
198
|
}
|
|
189
|
-
const stubAccount = createStubAccount(originalAddress
|
|
199
|
+
const stubAccount = createStubAccount(originalAddress);
|
|
190
200
|
const instance = await getContractInstanceFromInstantiationParams(StubAccountContractArtifact, {
|
|
191
201
|
salt: Fr.random(),
|
|
192
202
|
});
|
|
@@ -200,9 +210,10 @@ export class CLIWallet extends BaseWallet {
|
|
|
200
210
|
override async simulateTx(executionPayload: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult> {
|
|
201
211
|
let simulationResults;
|
|
202
212
|
const feeOptions = opts.fee?.estimateGas
|
|
203
|
-
? await this.
|
|
204
|
-
: await this.
|
|
213
|
+
? await this.completeFeeOptionsForEstimation(opts.from, executionPayload.feePayer, opts.fee?.gasSettings)
|
|
214
|
+
: await this.completeFeeOptions(opts.from, executionPayload.feePayer, opts.fee?.gasSettings);
|
|
205
215
|
const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
|
|
216
|
+
const chainInfo = await this.getChainInfo();
|
|
206
217
|
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
207
218
|
txNonce: Fr.random(),
|
|
208
219
|
cancellable: this.cancellableTransactions,
|
|
@@ -220,6 +231,7 @@ export class CLIWallet extends BaseWallet {
|
|
|
220
231
|
const txRequest = await fromAccount.createTxExecutionRequest(
|
|
221
232
|
finalExecutionPayload,
|
|
222
233
|
feeOptions.gasSettings,
|
|
234
|
+
chainInfo,
|
|
223
235
|
executionOptions,
|
|
224
236
|
);
|
|
225
237
|
simulationResults = await this.pxe.simulateTx(
|
|
@@ -233,6 +245,7 @@ export class CLIWallet extends BaseWallet {
|
|
|
233
245
|
const txRequest = await fromAccount.createTxExecutionRequest(
|
|
234
246
|
finalExecutionPayload,
|
|
235
247
|
feeOptions.gasSettings,
|
|
248
|
+
chainInfo,
|
|
236
249
|
executionOptions,
|
|
237
250
|
);
|
|
238
251
|
const contractOverrides = {
|
|
@@ -258,7 +271,13 @@ export class CLIWallet extends BaseWallet {
|
|
|
258
271
|
|
|
259
272
|
// Exposed because of the `aztec-wallet get-tx` command. It has been decided that it's fine to keep around because
|
|
260
273
|
// this is just a CLI wallet.
|
|
261
|
-
getNotes(filter: NotesFilter): Promise<
|
|
262
|
-
return this.pxe.getNotes(filter);
|
|
274
|
+
getNotes(filter: NotesFilter): Promise<NoteDao[]> {
|
|
275
|
+
return this.pxe.debug.getNotes(filter);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// Exposed because of the `aztec-wallet get-tx` command. It has been decided that it's fine to keep around because
|
|
279
|
+
// this is just a CLI wallet.
|
|
280
|
+
getContractArtifact(id: Fr) {
|
|
281
|
+
return this.pxe.getContractArtifact(id);
|
|
263
282
|
}
|
|
264
283
|
}
|