@aztec/cli-wallet 3.0.0-nightly.20251125 → 3.0.0-nightly.20251126

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.
@@ -95,7 +95,6 @@ function inspectNote(note, artifactMap, log, text = 'Note') {
95
95
  const artifact = artifactMap[note.contractAddress.toString()];
96
96
  const contract = artifact?.name ?? note.contractAddress.toString();
97
97
  log(` ${text} at ${contract}`);
98
- log(` Recipient: ${toFriendlyAddress(note.recipient, artifactMap)}`);
99
98
  for (const field of note.note.items){
100
99
  log(` ${field.toString()}`);
101
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli-wallet",
3
- "version": "3.0.0-nightly.20251125",
3
+ "version": "3.0.0-nightly.20251126",
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.20251125",
71
- "@aztec/aztec.js": "3.0.0-nightly.20251125",
72
- "@aztec/bb.js": "3.0.0-nightly.20251125",
73
- "@aztec/cli": "3.0.0-nightly.20251125",
74
- "@aztec/entrypoints": "3.0.0-nightly.20251125",
75
- "@aztec/ethereum": "3.0.0-nightly.20251125",
76
- "@aztec/foundation": "3.0.0-nightly.20251125",
77
- "@aztec/kv-store": "3.0.0-nightly.20251125",
78
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251125",
79
- "@aztec/noir-noirc_abi": "3.0.0-nightly.20251125",
80
- "@aztec/pxe": "3.0.0-nightly.20251125",
81
- "@aztec/stdlib": "3.0.0-nightly.20251125",
82
- "@aztec/wallet-sdk": "3.0.0-nightly.20251125",
70
+ "@aztec/accounts": "3.0.0-nightly.20251126",
71
+ "@aztec/aztec.js": "3.0.0-nightly.20251126",
72
+ "@aztec/bb.js": "3.0.0-nightly.20251126",
73
+ "@aztec/cli": "3.0.0-nightly.20251126",
74
+ "@aztec/entrypoints": "3.0.0-nightly.20251126",
75
+ "@aztec/ethereum": "3.0.0-nightly.20251126",
76
+ "@aztec/foundation": "3.0.0-nightly.20251126",
77
+ "@aztec/kv-store": "3.0.0-nightly.20251126",
78
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251126",
79
+ "@aztec/noir-noirc_abi": "3.0.0-nightly.20251126",
80
+ "@aztec/pxe": "3.0.0-nightly.20251126",
81
+ "@aztec/stdlib": "3.0.0-nightly.20251126",
82
+ "@aztec/wallet-sdk": "3.0.0-nightly.20251126",
83
83
  "commander": "^12.1.0",
84
84
  "inquirer": "^10.1.8",
85
85
  "source-map-support": "^0.5.21",
@@ -125,7 +125,6 @@ function inspectNote(note: UniqueNote, artifactMap: ArtifactMap, log: LogFn, tex
125
125
  const artifact = artifactMap[note.contractAddress.toString()];
126
126
  const contract = artifact?.name ?? note.contractAddress.toString();
127
127
  log(` ${text} at ${contract}`);
128
- log(` Recipient: ${toFriendlyAddress(note.recipient, artifactMap)}`);
129
128
  for (const field of note.note.items) {
130
129
  log(` ${field.toString()}`);
131
130
  }