@aztec/cli-wallet 3.0.0-nightly.20251214 → 3.0.0-nightly.20251217

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.
@@ -190,6 +190,6 @@ export class CLIWallet extends BaseWallet {
190
190
  // Exposed because of the `aztec-wallet get-tx` command. It has been decided that it's fine to keep around because
191
191
  // this is just a CLI wallet.
192
192
  getNotes(filter) {
193
- return this.pxe.getNotes(filter);
193
+ return this.pxe.debug.getNotes(filter);
194
194
  }
195
195
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli-wallet",
3
- "version": "3.0.0-nightly.20251214",
3
+ "version": "3.0.0-nightly.20251217",
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": "3.0.0-nightly.20251214",
71
- "@aztec/aztec.js": "3.0.0-nightly.20251214",
72
- "@aztec/bb.js": "3.0.0-nightly.20251214",
73
- "@aztec/cli": "3.0.0-nightly.20251214",
74
- "@aztec/entrypoints": "3.0.0-nightly.20251214",
75
- "@aztec/ethereum": "3.0.0-nightly.20251214",
76
- "@aztec/foundation": "3.0.0-nightly.20251214",
77
- "@aztec/kv-store": "3.0.0-nightly.20251214",
78
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251214",
79
- "@aztec/noir-noirc_abi": "3.0.0-nightly.20251214",
80
- "@aztec/pxe": "3.0.0-nightly.20251214",
81
- "@aztec/stdlib": "3.0.0-nightly.20251214",
82
- "@aztec/wallet-sdk": "3.0.0-nightly.20251214",
70
+ "@aztec/accounts": "3.0.0-nightly.20251217",
71
+ "@aztec/aztec.js": "3.0.0-nightly.20251217",
72
+ "@aztec/bb.js": "3.0.0-nightly.20251217",
73
+ "@aztec/cli": "3.0.0-nightly.20251217",
74
+ "@aztec/entrypoints": "3.0.0-nightly.20251217",
75
+ "@aztec/ethereum": "3.0.0-nightly.20251217",
76
+ "@aztec/foundation": "3.0.0-nightly.20251217",
77
+ "@aztec/kv-store": "3.0.0-nightly.20251217",
78
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251217",
79
+ "@aztec/noir-noirc_abi": "3.0.0-nightly.20251217",
80
+ "@aztec/pxe": "3.0.0-nightly.20251217",
81
+ "@aztec/stdlib": "3.0.0-nightly.20251217",
82
+ "@aztec/wallet-sdk": "3.0.0-nightly.20251217",
83
83
  "commander": "^12.1.0",
84
84
  "inquirer": "^10.1.8",
85
85
  "source-map-support": "^0.5.21",
@@ -261,6 +261,6 @@ export class CLIWallet extends BaseWallet {
261
261
  // Exposed because of the `aztec-wallet get-tx` command. It has been decided that it's fine to keep around because
262
262
  // this is just a CLI wallet.
263
263
  getNotes(filter: NotesFilter): Promise<NoteDao[]> {
264
- return this.pxe.getNotes(filter);
264
+ return this.pxe.debug.getNotes(filter);
265
265
  }
266
266
  }