@aztec/test-wallet 3.0.0-nightly.20251216 → 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.
@@ -163,7 +163,7 @@ import { ProvenTx } from '../utils.js';
163
163
  * @param filter - The filter to apply to the notes.
164
164
  * @returns The requested notes.
165
165
  */ getNotes(filter) {
166
- return this.pxe.getNotes(filter);
166
+ return this.pxe.debug.getNotes(filter);
167
167
  }
168
168
  /**
169
169
  * Stops the internal job queue.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aztec/test-wallet",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/test-wallet",
4
- "version": "3.0.0-nightly.20251216",
4
+ "version": "3.0.0-nightly.20251217",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./client/bundle": "./dest/bundle.js",
@@ -62,14 +62,14 @@
62
62
  ]
63
63
  },
64
64
  "dependencies": {
65
- "@aztec/accounts": "3.0.0-nightly.20251216",
66
- "@aztec/aztec.js": "3.0.0-nightly.20251216",
67
- "@aztec/entrypoints": "3.0.0-nightly.20251216",
68
- "@aztec/foundation": "3.0.0-nightly.20251216",
69
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251216",
70
- "@aztec/pxe": "3.0.0-nightly.20251216",
71
- "@aztec/stdlib": "3.0.0-nightly.20251216",
72
- "@aztec/wallet-sdk": "3.0.0-nightly.20251216"
65
+ "@aztec/accounts": "3.0.0-nightly.20251217",
66
+ "@aztec/aztec.js": "3.0.0-nightly.20251217",
67
+ "@aztec/entrypoints": "3.0.0-nightly.20251217",
68
+ "@aztec/foundation": "3.0.0-nightly.20251217",
69
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251217",
70
+ "@aztec/pxe": "3.0.0-nightly.20251217",
71
+ "@aztec/stdlib": "3.0.0-nightly.20251217",
72
+ "@aztec/wallet-sdk": "3.0.0-nightly.20251217"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@jest/globals": "^30.0.0",
@@ -252,7 +252,7 @@ export abstract class BaseTestWallet extends BaseWallet {
252
252
  * @returns The requested notes.
253
253
  */
254
254
  getNotes(filter: NotesFilter): Promise<NoteDao[]> {
255
- return this.pxe.getNotes(filter);
255
+ return this.pxe.debug.getNotes(filter);
256
256
  }
257
257
 
258
258
  /**