@aztec/cli-wallet 3.0.0-nightly.20251216 → 3.0.0-nightly.20251218
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/utils/wallet.js +1 -1
- package/package.json +14 -14
- package/src/utils/wallet.ts +1 -1
package/dest/utils/wallet.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "3.0.0-nightly.20251218",
|
|
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.
|
|
71
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
72
|
-
"@aztec/bb.js": "3.0.0-nightly.
|
|
73
|
-
"@aztec/cli": "3.0.0-nightly.
|
|
74
|
-
"@aztec/entrypoints": "3.0.0-nightly.
|
|
75
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
76
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
77
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
78
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
79
|
-
"@aztec/noir-noirc_abi": "3.0.0-nightly.
|
|
80
|
-
"@aztec/pxe": "3.0.0-nightly.
|
|
81
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
82
|
-
"@aztec/wallet-sdk": "3.0.0-nightly.
|
|
70
|
+
"@aztec/accounts": "3.0.0-nightly.20251218",
|
|
71
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251218",
|
|
72
|
+
"@aztec/bb.js": "3.0.0-nightly.20251218",
|
|
73
|
+
"@aztec/cli": "3.0.0-nightly.20251218",
|
|
74
|
+
"@aztec/entrypoints": "3.0.0-nightly.20251218",
|
|
75
|
+
"@aztec/ethereum": "3.0.0-nightly.20251218",
|
|
76
|
+
"@aztec/foundation": "3.0.0-nightly.20251218",
|
|
77
|
+
"@aztec/kv-store": "3.0.0-nightly.20251218",
|
|
78
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251218",
|
|
79
|
+
"@aztec/noir-noirc_abi": "3.0.0-nightly.20251218",
|
|
80
|
+
"@aztec/pxe": "3.0.0-nightly.20251218",
|
|
81
|
+
"@aztec/stdlib": "3.0.0-nightly.20251218",
|
|
82
|
+
"@aztec/wallet-sdk": "3.0.0-nightly.20251218",
|
|
83
83
|
"commander": "^12.1.0",
|
|
84
84
|
"inquirer": "^10.1.8",
|
|
85
85
|
"source-map-support": "^0.5.21",
|
package/src/utils/wallet.ts
CHANGED
|
@@ -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
|
}
|