@aztec/cli-wallet 3.0.0-devnet.2 → 3.0.0-manual.20251030

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/bin/index.js CHANGED
@@ -58,7 +58,7 @@ function injectInternalCommands(program, log, db) {
58
58
  ]).env('PXE_PROVER').default('native')).addOption(new Option('-n, --node-url <string>', 'URL of the Aztec node to connect to').env('AZTEC_NODE_URL').default(`http://${LOCALHOST}:8080`)).hook('preSubcommand', async (command)=>{
59
59
  const { dataDir, nodeUrl, prover } = command.optsWithGlobals();
60
60
  const proverEnabled = prover !== 'none';
61
- const bbBinaryPath = prover === 'native' ? resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb') : undefined;
61
+ const bbBinaryPath = prover === 'native' ? process.env.BB_BINARY_PATH ?? resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb') : undefined;
62
62
  const bbWorkingDirectory = dataDir + '/bb';
63
63
  mkdirSync(bbWorkingDirectory, {
64
64
  recursive: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli-wallet",
3
- "version": "3.0.0-devnet.2",
3
+ "version": "3.0.0-manual.20251030",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/cmds/index.js",
@@ -67,17 +67,17 @@
67
67
  ]
68
68
  },
69
69
  "dependencies": {
70
- "@aztec/accounts": "3.0.0-devnet.2",
71
- "@aztec/aztec.js": "3.0.0-devnet.2",
72
- "@aztec/cli": "3.0.0-devnet.2",
73
- "@aztec/entrypoints": "3.0.0-devnet.2",
74
- "@aztec/ethereum": "3.0.0-devnet.2",
75
- "@aztec/foundation": "3.0.0-devnet.2",
76
- "@aztec/kv-store": "3.0.0-devnet.2",
77
- "@aztec/noir-contracts.js": "3.0.0-devnet.2",
78
- "@aztec/noir-noirc_abi": "3.0.0-devnet.2",
79
- "@aztec/pxe": "3.0.0-devnet.2",
80
- "@aztec/stdlib": "3.0.0-devnet.2",
70
+ "@aztec/accounts": "3.0.0-manual.20251030",
71
+ "@aztec/aztec.js": "3.0.0-manual.20251030",
72
+ "@aztec/cli": "3.0.0-manual.20251030",
73
+ "@aztec/entrypoints": "3.0.0-manual.20251030",
74
+ "@aztec/ethereum": "3.0.0-manual.20251030",
75
+ "@aztec/foundation": "3.0.0-manual.20251030",
76
+ "@aztec/kv-store": "3.0.0-manual.20251030",
77
+ "@aztec/noir-contracts.js": "3.0.0-manual.20251030",
78
+ "@aztec/noir-noirc_abi": "3.0.0-manual.20251030",
79
+ "@aztec/pxe": "3.0.0-manual.20251030",
80
+ "@aztec/stdlib": "3.0.0-manual.20251030",
81
81
  "commander": "^12.1.0",
82
82
  "inquirer": "^10.1.8",
83
83
  "source-map-support": "^0.5.21",
package/src/bin/index.ts CHANGED
@@ -101,7 +101,8 @@ async function main() {
101
101
 
102
102
  const bbBinaryPath =
103
103
  prover === 'native'
104
- ? resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb')
104
+ ? (process.env.BB_BINARY_PATH ??
105
+ resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb'))
105
106
  : undefined;
106
107
  const bbWorkingDirectory = dataDir + '/bb';
107
108
  mkdirSync(bbWorkingDirectory, { recursive: true });