@aztec/cli-wallet 0.0.1-commit.2c85e299c → 0.0.1-commit.2d9cb6034
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/dest/cmds/check_tx.d.ts +1 -1
- package/dest/cmds/check_tx.d.ts.map +1 -1
- package/dest/cmds/check_tx.js +36 -9
- 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 +24 -21
- package/dest/cmds/deploy.d.ts +4 -3
- package/dest/cmds/deploy.d.ts.map +1 -1
- package/dest/cmds/deploy.js +24 -23
- package/dest/cmds/deploy_account.d.ts +4 -3
- package/dest/cmds/deploy_account.d.ts.map +1 -1
- package/dest/cmds/deploy_account.js +19 -16
- package/dest/cmds/get_fee_juice_balance.d.ts +5 -0
- package/dest/cmds/get_fee_juice_balance.d.ts.map +1 -0
- package/dest/cmds/get_fee_juice_balance.js +27 -0
- package/dest/cmds/index.d.ts +1 -1
- package/dest/cmds/index.d.ts.map +1 -1
- package/dest/cmds/index.js +30 -14
- package/dest/cmds/send.d.ts +4 -3
- package/dest/cmds/send.d.ts.map +1 -1
- package/dest/cmds/send.js +23 -22
- package/dest/storage/wallet_db.d.ts +6 -1
- package/dest/storage/wallet_db.d.ts.map +1 -1
- package/dest/storage/wallet_db.js +14 -0
- package/dest/utils/options/fees.d.ts +2 -2
- package/dest/utils/options/fees.d.ts.map +1 -1
- package/dest/utils/options/fees.js +6 -5
- package/dest/utils/wallet.d.ts +5 -5
- package/dest/utils/wallet.d.ts.map +1 -1
- package/dest/utils/wallet.js +36 -32
- package/package.json +14 -14
- package/src/cmds/check_tx.ts +43 -11
- package/src/cmds/create_account.ts +25 -16
- package/src/cmds/deploy.ts +21 -15
- package/src/cmds/deploy_account.ts +19 -11
- package/src/cmds/get_fee_juice_balance.ts +37 -0
- package/src/cmds/index.ts +56 -3
- package/src/cmds/send.ts +20 -15
- package/src/storage/wallet_db.ts +14 -0
- package/src/utils/options/fees.ts +7 -5
- package/src/utils/wallet.ts +44 -49
package/src/storage/wallet_db.ts
CHANGED
|
@@ -70,6 +70,20 @@ export class WalletDB {
|
|
|
70
70
|
return { amount: BigInt(amountStr), secret: secretStr, leafIndex: BigInt(leafIndexStr) };
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
async peekBridgedFeeJuice(recipient: AztecAddress, log: LogFn) {
|
|
74
|
+
const stackPointer =
|
|
75
|
+
(await this.#bridgedFeeJuice.getAsync(`${recipient.toString()}:stackPointer`))?.readInt8() || 0;
|
|
76
|
+
const result = await this.#bridgedFeeJuice.getAsync(`${recipient.toString()}:${stackPointer}`);
|
|
77
|
+
if (!result) {
|
|
78
|
+
throw new Error(
|
|
79
|
+
`No stored fee juice available for recipient ${recipient.toString()}. Please provide claim amount and secret. Stack pointer ${stackPointer}`,
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
const [amountStr, secretStr, leafIndexStr] = result.toString().split(':');
|
|
83
|
+
log(`Peeked ${amountStr} fee juice for recipient ${recipient.toString()}. Stack pointer ${stackPointer}`);
|
|
84
|
+
return { amount: BigInt(amountStr), secret: secretStr, leafIndex: BigInt(leafIndexStr) };
|
|
85
|
+
}
|
|
86
|
+
|
|
73
87
|
async storeAccount(
|
|
74
88
|
address: AztecAddress,
|
|
75
89
|
{
|
|
@@ -115,6 +115,7 @@ export function parsePaymentMethod(
|
|
|
115
115
|
payment: string,
|
|
116
116
|
log: LogFn,
|
|
117
117
|
db?: WalletDB,
|
|
118
|
+
estimateOnly?: boolean,
|
|
118
119
|
): (wallet: Wallet, from: AztecAddress, gasSettings: GasSettings) => Promise<FeePaymentMethod | undefined> {
|
|
119
120
|
const parsed = payment.split(',').reduce(
|
|
120
121
|
(acc, item) => {
|
|
@@ -149,7 +150,7 @@ export function parsePaymentMethod(
|
|
|
149
150
|
amount: claimAmount,
|
|
150
151
|
secret: claimSecret,
|
|
151
152
|
leafIndex: messageLeafIndex,
|
|
152
|
-
} = await db.popBridgedFeeJuice(from, log));
|
|
153
|
+
} = estimateOnly ? await db.peekBridgedFeeJuice(from, log) : await db.popBridgedFeeJuice(from, log));
|
|
153
154
|
} else {
|
|
154
155
|
({ claimAmount, claimSecret, messageLeafIndex } = parsed);
|
|
155
156
|
}
|
|
@@ -157,10 +158,10 @@ export function parsePaymentMethod(
|
|
|
157
158
|
const { FeeJuicePaymentMethodWithClaim } = await import('@aztec/aztec.js/fee');
|
|
158
159
|
return new FeeJuicePaymentMethodWithClaim(from, {
|
|
159
160
|
claimAmount: (typeof claimAmount === 'string'
|
|
160
|
-
? Fr.
|
|
161
|
+
? Fr.fromString(claimAmount)
|
|
161
162
|
: new Fr(claimAmount)
|
|
162
163
|
).toBigInt(),
|
|
163
|
-
claimSecret: Fr.
|
|
164
|
+
claimSecret: typeof claimSecret === 'string' ? Fr.fromString(claimSecret) : claimSecret,
|
|
164
165
|
messageLeafIndex: BigInt(messageLeafIndex),
|
|
165
166
|
});
|
|
166
167
|
} else {
|
|
@@ -266,9 +267,10 @@ export class CLIFeeArgs {
|
|
|
266
267
|
}
|
|
267
268
|
|
|
268
269
|
static parse(args: RawCliFeeArgs, log: LogFn, db?: WalletDB): CLIFeeArgs {
|
|
270
|
+
const estimateOnly = !!args.estimateGasOnly;
|
|
269
271
|
return new CLIFeeArgs(
|
|
270
|
-
|
|
271
|
-
parsePaymentMethod(args.payment ?? 'method=fee_juice', log, db),
|
|
272
|
+
estimateOnly,
|
|
273
|
+
parsePaymentMethod(args.payment ?? 'method=fee_juice', log, db, estimateOnly),
|
|
272
274
|
parseGasSettings(args),
|
|
273
275
|
);
|
|
274
276
|
}
|
package/src/utils/wallet.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { EcdsaRAccountContract, EcdsaRSSHAccountContract } from '@aztec/accounts
|
|
|
2
2
|
import { SchnorrAccountContract } from '@aztec/accounts/schnorr';
|
|
3
3
|
import { StubAccountContractArtifact, createStubAccount } from '@aztec/accounts/stub';
|
|
4
4
|
import { getIdentities } from '@aztec/accounts/utils';
|
|
5
|
-
import { type Account, type AccountContract,
|
|
5
|
+
import { type Account, type AccountContract, NO_FROM } from '@aztec/aztec.js/account';
|
|
6
6
|
import {
|
|
7
7
|
type InteractionFeeOptions,
|
|
8
8
|
getContractInstanceFromInstantiationParams,
|
|
@@ -11,18 +11,19 @@ import {
|
|
|
11
11
|
import type { AztecNode } from '@aztec/aztec.js/node';
|
|
12
12
|
import { AccountManager, type Aliased, type SimulateOptions } from '@aztec/aztec.js/wallet';
|
|
13
13
|
import type { DefaultAccountEntrypointOptions } from '@aztec/entrypoints/account';
|
|
14
|
+
import { DefaultEntrypoint } from '@aztec/entrypoints/default';
|
|
14
15
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
15
16
|
import type { LogFn } from '@aztec/foundation/log';
|
|
16
|
-
import type {
|
|
17
|
+
import type { NotesFilter } from '@aztec/pxe/client/lazy';
|
|
17
18
|
import type { PXEConfig } from '@aztec/pxe/config';
|
|
18
19
|
import type { PXE } from '@aztec/pxe/server';
|
|
19
20
|
import { createPXE, getPXEConfig } from '@aztec/pxe/server';
|
|
20
21
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
21
22
|
import { deriveSigningKey } from '@aztec/stdlib/keys';
|
|
22
23
|
import { NoteDao } from '@aztec/stdlib/note';
|
|
23
|
-
import type { TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
|
|
24
|
+
import type { SimulationOverrides, TxExecutionRequest, TxProvingResult, TxSimulationResult } from '@aztec/stdlib/tx';
|
|
24
25
|
import { ExecutionPayload, mergeExecutionPayloads } from '@aztec/stdlib/tx';
|
|
25
|
-
import { BaseWallet, type
|
|
26
|
+
import { BaseWallet, type SimulateViaEntrypointOptions } from '@aztec/wallet-sdk/base-wallet';
|
|
26
27
|
|
|
27
28
|
import type { WalletDB } from '../storage/wallet_db.js';
|
|
28
29
|
import type { AccountType } from './constants.js';
|
|
@@ -55,7 +56,12 @@ export class CLIWallet extends BaseWallet {
|
|
|
55
56
|
|
|
56
57
|
override async getAccounts(): Promise<Aliased<AztecAddress>[]> {
|
|
57
58
|
const accounts = (await this.db?.listAliases('accounts')) ?? [];
|
|
58
|
-
return Promise.resolve(
|
|
59
|
+
return Promise.resolve(
|
|
60
|
+
accounts.map(({ key, value }) => {
|
|
61
|
+
const alias = key.includes(':') ? key.slice(key.indexOf(':') + 1) : key;
|
|
62
|
+
return { alias, item: AztecAddress.fromString(value) };
|
|
63
|
+
}),
|
|
64
|
+
);
|
|
59
65
|
}
|
|
60
66
|
|
|
61
67
|
private async createCancellationTxExecutionRequest(
|
|
@@ -71,7 +77,8 @@ export class CLIWallet extends BaseWallet {
|
|
|
71
77
|
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
72
78
|
txNonce,
|
|
73
79
|
cancellable: this.cancellableTransactions,
|
|
74
|
-
|
|
80
|
+
// If from is an address, feeOptions include the way the account contract should handle the fee payment
|
|
81
|
+
feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions!,
|
|
75
82
|
};
|
|
76
83
|
return await fromAccount.createTxExecutionRequest(
|
|
77
84
|
feeExecutionPayload ?? executionPayload,
|
|
@@ -92,9 +99,7 @@ export class CLIWallet extends BaseWallet {
|
|
|
92
99
|
|
|
93
100
|
override async getAccountFromAddress(address: AztecAddress) {
|
|
94
101
|
let account: Account | undefined;
|
|
95
|
-
if (address.
|
|
96
|
-
account = new SignerlessAccount();
|
|
97
|
-
} else if (this.accountCache.has(address.toString())) {
|
|
102
|
+
if (this.accountCache.has(address.toString())) {
|
|
98
103
|
return this.accountCache.get(address.toString())!;
|
|
99
104
|
} else {
|
|
100
105
|
const accountManager = await this.createOrRetrieveAccount(address);
|
|
@@ -185,13 +190,7 @@ export class CLIWallet extends BaseWallet {
|
|
|
185
190
|
*/
|
|
186
191
|
private async getFakeAccountDataFor(address: AztecAddress) {
|
|
187
192
|
const originalAccount = await this.getAccountFromAddress(address);
|
|
188
|
-
|
|
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();
|
|
193
|
+
const originalAddress = originalAccount.getCompleteAddress();
|
|
195
194
|
const contractInstance = await this.pxe.getContractInstance(originalAddress.address);
|
|
196
195
|
if (!contractInstance) {
|
|
197
196
|
throw new Error(`No contract instance found for address: ${originalAddress.address}`);
|
|
@@ -220,52 +219,48 @@ export class CLIWallet extends BaseWallet {
|
|
|
220
219
|
|
|
221
220
|
/**
|
|
222
221
|
* Uses a stub account for kernelless simulation, bypassing real account authorization.
|
|
223
|
-
*
|
|
222
|
+
* Uses DefaultEntrypoint directly for NO_FROM transactions.
|
|
224
223
|
*/
|
|
225
224
|
protected override async simulateViaEntrypoint(
|
|
226
225
|
executionPayload: ExecutionPayload,
|
|
227
|
-
|
|
228
|
-
feeOptions: FeeOptions,
|
|
229
|
-
scopes: AccessScopes,
|
|
230
|
-
skipTxValidation?: boolean,
|
|
231
|
-
skipFeeEnforcement?: boolean,
|
|
226
|
+
opts: SimulateViaEntrypointOptions,
|
|
232
227
|
): Promise<TxSimulationResult> {
|
|
233
|
-
|
|
234
|
-
return super.simulateViaEntrypoint(
|
|
235
|
-
executionPayload,
|
|
236
|
-
from,
|
|
237
|
-
feeOptions,
|
|
238
|
-
scopes,
|
|
239
|
-
skipTxValidation,
|
|
240
|
-
skipFeeEnforcement,
|
|
241
|
-
);
|
|
242
|
-
}
|
|
243
|
-
|
|
228
|
+
const { from, feeOptions, scopes } = opts;
|
|
244
229
|
const feeExecutionPayload = await feeOptions.walletFeePaymentMethod?.getExecutionPayload();
|
|
245
|
-
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
246
|
-
txNonce: Fr.random(),
|
|
247
|
-
cancellable: this.cancellableTransactions,
|
|
248
|
-
feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions,
|
|
249
|
-
};
|
|
250
230
|
const finalExecutionPayload = feeExecutionPayload
|
|
251
231
|
? mergeExecutionPayloads([feeExecutionPayload, executionPayload])
|
|
252
232
|
: executionPayload;
|
|
253
|
-
|
|
254
|
-
const { account: fromAccount, instance, artifact } = await this.getFakeAccountDataFor(from);
|
|
255
233
|
const chainInfo = await this.getChainInfo();
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
234
|
+
|
|
235
|
+
let overrides: SimulationOverrides | undefined;
|
|
236
|
+
let txRequest: TxExecutionRequest;
|
|
237
|
+
if (from === NO_FROM) {
|
|
238
|
+
const entrypoint = new DefaultEntrypoint();
|
|
239
|
+
txRequest = await entrypoint.createTxExecutionRequest(finalExecutionPayload, feeOptions.gasSettings, chainInfo);
|
|
240
|
+
} else {
|
|
241
|
+
const { account, instance, artifact } = await this.getFakeAccountDataFor(from);
|
|
242
|
+
overrides = {
|
|
243
|
+
contracts: { [from.toString()]: { instance, artifact } },
|
|
244
|
+
};
|
|
245
|
+
const executionOptions: DefaultAccountEntrypointOptions = {
|
|
246
|
+
txNonce: Fr.random(),
|
|
247
|
+
cancellable: this.cancellableTransactions,
|
|
248
|
+
// If from is an address, feeOptions include the way the account contract should handle the fee payment
|
|
249
|
+
feePaymentMethodOptions: feeOptions.accountFeePaymentMethodOptions!,
|
|
250
|
+
};
|
|
251
|
+
txRequest = await account.createTxExecutionRequest(
|
|
252
|
+
finalExecutionPayload,
|
|
253
|
+
feeOptions.gasSettings,
|
|
254
|
+
chainInfo,
|
|
255
|
+
executionOptions,
|
|
256
|
+
);
|
|
257
|
+
}
|
|
258
|
+
|
|
262
259
|
return this.pxe.simulateTx(txRequest, {
|
|
263
260
|
simulatePublic: true,
|
|
264
261
|
skipFeeEnforcement: true,
|
|
265
262
|
skipTxValidation: true,
|
|
266
|
-
overrides
|
|
267
|
-
contracts: { [from.toString()]: { instance, artifact } },
|
|
268
|
-
},
|
|
263
|
+
overrides,
|
|
269
264
|
scopes,
|
|
270
265
|
});
|
|
271
266
|
}
|