@aztec/cli-wallet 0.0.1-commit.8f9871590 → 0.0.1-commit.934299a21

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.
@@ -48,7 +48,7 @@ export class CLIWallet extends BaseWallet {
48
48
  }
49
49
  async proveCancellationTx(from, txNonce, increasedFee) {
50
50
  const cancellationTxRequest = await this.createCancellationTxExecutionRequest(from, txNonce, increasedFee);
51
- return await this.pxe.proveTx(cancellationTxRequest, this.scopesFor(from));
51
+ return await this.pxe.proveTx(cancellationTxRequest, this.scopesFrom(from));
52
52
  }
53
53
  async getAccountFromAddress(address) {
54
54
  let account;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli-wallet",
3
- "version": "0.0.1-commit.8f9871590",
3
+ "version": "0.0.1-commit.934299a21",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/cmds/index.js",
@@ -67,19 +67,19 @@
67
67
  ]
68
68
  },
69
69
  "dependencies": {
70
- "@aztec/accounts": "0.0.1-commit.8f9871590",
71
- "@aztec/aztec.js": "0.0.1-commit.8f9871590",
72
- "@aztec/bb.js": "0.0.1-commit.8f9871590",
73
- "@aztec/cli": "0.0.1-commit.8f9871590",
74
- "@aztec/entrypoints": "0.0.1-commit.8f9871590",
75
- "@aztec/ethereum": "0.0.1-commit.8f9871590",
76
- "@aztec/foundation": "0.0.1-commit.8f9871590",
77
- "@aztec/kv-store": "0.0.1-commit.8f9871590",
78
- "@aztec/noir-contracts.js": "0.0.1-commit.8f9871590",
79
- "@aztec/noir-noirc_abi": "0.0.1-commit.8f9871590",
80
- "@aztec/pxe": "0.0.1-commit.8f9871590",
81
- "@aztec/stdlib": "0.0.1-commit.8f9871590",
82
- "@aztec/wallet-sdk": "0.0.1-commit.8f9871590",
70
+ "@aztec/accounts": "0.0.1-commit.934299a21",
71
+ "@aztec/aztec.js": "0.0.1-commit.934299a21",
72
+ "@aztec/bb.js": "0.0.1-commit.934299a21",
73
+ "@aztec/cli": "0.0.1-commit.934299a21",
74
+ "@aztec/entrypoints": "0.0.1-commit.934299a21",
75
+ "@aztec/ethereum": "0.0.1-commit.934299a21",
76
+ "@aztec/foundation": "0.0.1-commit.934299a21",
77
+ "@aztec/kv-store": "0.0.1-commit.934299a21",
78
+ "@aztec/noir-contracts.js": "0.0.1-commit.934299a21",
79
+ "@aztec/noir-noirc_abi": "0.0.1-commit.934299a21",
80
+ "@aztec/pxe": "0.0.1-commit.934299a21",
81
+ "@aztec/stdlib": "0.0.1-commit.934299a21",
82
+ "@aztec/wallet-sdk": "0.0.1-commit.934299a21",
83
83
  "commander": "^12.1.0",
84
84
  "inquirer": "^10.1.8",
85
85
  "source-map-support": "^0.5.21",
@@ -87,7 +87,7 @@ export class CLIWallet extends BaseWallet {
87
87
  increasedFee: InteractionFeeOptions,
88
88
  ): Promise<TxProvingResult> {
89
89
  const cancellationTxRequest = await this.createCancellationTxExecutionRequest(from, txNonce, increasedFee);
90
- return await this.pxe.proveTx(cancellationTxRequest, this.scopesFor(from));
90
+ return await this.pxe.proveTx(cancellationTxRequest, this.scopesFrom(from));
91
91
  }
92
92
 
93
93
  override async getAccountFromAddress(address: AztecAddress) {