@aztec/cli-wallet 4.0.0-nightly.20260121 → 4.0.0-nightly.20260123

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.
@@ -17,7 +17,10 @@ async function inspectTx(wallet, aztecNode, txHash, log) {
17
17
  ]);
18
18
  // Base tx data
19
19
  log(`Tx ${txHash.toString()}`);
20
- log(` Status: ${receipt.status} ${effectsInBlock ? `(${effectsInBlock.data.revertCode.getDescription()})` : ''}`);
20
+ log(` Status: ${receipt.status}`);
21
+ if (receipt.executionResult) {
22
+ log(` Execution result: ${receipt.executionResult}`);
23
+ }
21
24
  if (receipt.error) {
22
25
  log(` Error: ${receipt.error}`);
23
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli-wallet",
3
- "version": "4.0.0-nightly.20260121",
3
+ "version": "4.0.0-nightly.20260123",
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": "4.0.0-nightly.20260121",
71
- "@aztec/aztec.js": "4.0.0-nightly.20260121",
72
- "@aztec/bb.js": "4.0.0-nightly.20260121",
73
- "@aztec/cli": "4.0.0-nightly.20260121",
74
- "@aztec/entrypoints": "4.0.0-nightly.20260121",
75
- "@aztec/ethereum": "4.0.0-nightly.20260121",
76
- "@aztec/foundation": "4.0.0-nightly.20260121",
77
- "@aztec/kv-store": "4.0.0-nightly.20260121",
78
- "@aztec/noir-contracts.js": "4.0.0-nightly.20260121",
79
- "@aztec/noir-noirc_abi": "4.0.0-nightly.20260121",
80
- "@aztec/pxe": "4.0.0-nightly.20260121",
81
- "@aztec/stdlib": "4.0.0-nightly.20260121",
82
- "@aztec/wallet-sdk": "4.0.0-nightly.20260121",
70
+ "@aztec/accounts": "4.0.0-nightly.20260123",
71
+ "@aztec/aztec.js": "4.0.0-nightly.20260123",
72
+ "@aztec/bb.js": "4.0.0-nightly.20260123",
73
+ "@aztec/cli": "4.0.0-nightly.20260123",
74
+ "@aztec/entrypoints": "4.0.0-nightly.20260123",
75
+ "@aztec/ethereum": "4.0.0-nightly.20260123",
76
+ "@aztec/foundation": "4.0.0-nightly.20260123",
77
+ "@aztec/kv-store": "4.0.0-nightly.20260123",
78
+ "@aztec/noir-contracts.js": "4.0.0-nightly.20260123",
79
+ "@aztec/noir-noirc_abi": "4.0.0-nightly.20260123",
80
+ "@aztec/pxe": "4.0.0-nightly.20260123",
81
+ "@aztec/stdlib": "4.0.0-nightly.20260123",
82
+ "@aztec/wallet-sdk": "4.0.0-nightly.20260123",
83
83
  "commander": "^12.1.0",
84
84
  "inquirer": "^10.1.8",
85
85
  "source-map-support": "^0.5.21",
@@ -32,7 +32,10 @@ async function inspectTx(wallet: CLIWallet, aztecNode: AztecNode, txHash: TxHash
32
32
  const [receipt, effectsInBlock] = await Promise.all([aztecNode.getTxReceipt(txHash), aztecNode.getTxEffect(txHash)]);
33
33
  // Base tx data
34
34
  log(`Tx ${txHash.toString()}`);
35
- log(` Status: ${receipt.status} ${effectsInBlock ? `(${effectsInBlock.data.revertCode.getDescription()})` : ''}`);
35
+ log(` Status: ${receipt.status}`);
36
+ if (receipt.executionResult) {
37
+ log(` Execution result: ${receipt.executionResult}`);
38
+ }
36
39
  if (receipt.error) {
37
40
  log(` Error: ${receipt.error}`);
38
41
  }