@aztec/aztec 2.1.0-rc.14 → 2.1.0-rc.16

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
@@ -30,8 +30,8 @@ const debugLogger = createLogger('cli');
30
30
  networkValue = args[networkIndex].split('=')[1] || args[networkIndex + 1];
31
31
  }
32
32
  const networkName = getActiveNetworkName(networkValue);
33
- await enrichEnvironmentWithChainConfig(networkName);
34
33
  await enrichEnvironmentWithNetworkConfig(networkName);
34
+ enrichEnvironmentWithChainConfig(networkName);
35
35
  const cliVersion = getCliVersion();
36
36
  let program = new Command('aztec');
37
37
  program.description('Aztec command line interface').version(cliVersion);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec",
3
- "version": "2.1.0-rc.14",
3
+ "version": "2.1.0-rc.16",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -28,37 +28,37 @@
28
28
  "../package.common.json"
29
29
  ],
30
30
  "dependencies": {
31
- "@aztec/accounts": "2.1.0-rc.14",
32
- "@aztec/archiver": "2.1.0-rc.14",
33
- "@aztec/aztec-faucet": "2.1.0-rc.14",
34
- "@aztec/aztec-node": "2.1.0-rc.14",
35
- "@aztec/aztec.js": "2.1.0-rc.14",
36
- "@aztec/bb-prover": "2.1.0-rc.14",
37
- "@aztec/bb.js": "2.1.0-rc.14",
38
- "@aztec/blob-sink": "2.1.0-rc.14",
39
- "@aztec/bot": "2.1.0-rc.14",
40
- "@aztec/builder": "2.1.0-rc.14",
41
- "@aztec/cli": "2.1.0-rc.14",
42
- "@aztec/cli-wallet": "2.1.0-rc.14",
43
- "@aztec/constants": "2.1.0-rc.14",
44
- "@aztec/entrypoints": "2.1.0-rc.14",
45
- "@aztec/ethereum": "2.1.0-rc.14",
46
- "@aztec/foundation": "2.1.0-rc.14",
47
- "@aztec/kv-store": "2.1.0-rc.14",
48
- "@aztec/l1-artifacts": "2.1.0-rc.14",
49
- "@aztec/node-lib": "2.1.0-rc.14",
50
- "@aztec/noir-contracts.js": "2.1.0-rc.14",
51
- "@aztec/noir-protocol-circuits-types": "2.1.0-rc.14",
52
- "@aztec/p2p": "2.1.0-rc.14",
53
- "@aztec/p2p-bootstrap": "2.1.0-rc.14",
54
- "@aztec/protocol-contracts": "2.1.0-rc.14",
55
- "@aztec/prover-client": "2.1.0-rc.14",
56
- "@aztec/prover-node": "2.1.0-rc.14",
57
- "@aztec/pxe": "2.1.0-rc.14",
58
- "@aztec/stdlib": "2.1.0-rc.14",
59
- "@aztec/telemetry-client": "2.1.0-rc.14",
60
- "@aztec/txe": "2.1.0-rc.14",
61
- "@aztec/world-state": "2.1.0-rc.14",
31
+ "@aztec/accounts": "2.1.0-rc.16",
32
+ "@aztec/archiver": "2.1.0-rc.16",
33
+ "@aztec/aztec-faucet": "2.1.0-rc.16",
34
+ "@aztec/aztec-node": "2.1.0-rc.16",
35
+ "@aztec/aztec.js": "2.1.0-rc.16",
36
+ "@aztec/bb-prover": "2.1.0-rc.16",
37
+ "@aztec/bb.js": "2.1.0-rc.16",
38
+ "@aztec/blob-sink": "2.1.0-rc.16",
39
+ "@aztec/bot": "2.1.0-rc.16",
40
+ "@aztec/builder": "2.1.0-rc.16",
41
+ "@aztec/cli": "2.1.0-rc.16",
42
+ "@aztec/cli-wallet": "2.1.0-rc.16",
43
+ "@aztec/constants": "2.1.0-rc.16",
44
+ "@aztec/entrypoints": "2.1.0-rc.16",
45
+ "@aztec/ethereum": "2.1.0-rc.16",
46
+ "@aztec/foundation": "2.1.0-rc.16",
47
+ "@aztec/kv-store": "2.1.0-rc.16",
48
+ "@aztec/l1-artifacts": "2.1.0-rc.16",
49
+ "@aztec/node-lib": "2.1.0-rc.16",
50
+ "@aztec/noir-contracts.js": "2.1.0-rc.16",
51
+ "@aztec/noir-protocol-circuits-types": "2.1.0-rc.16",
52
+ "@aztec/p2p": "2.1.0-rc.16",
53
+ "@aztec/p2p-bootstrap": "2.1.0-rc.16",
54
+ "@aztec/protocol-contracts": "2.1.0-rc.16",
55
+ "@aztec/prover-client": "2.1.0-rc.16",
56
+ "@aztec/prover-node": "2.1.0-rc.16",
57
+ "@aztec/pxe": "2.1.0-rc.16",
58
+ "@aztec/stdlib": "2.1.0-rc.16",
59
+ "@aztec/telemetry-client": "2.1.0-rc.16",
60
+ "@aztec/txe": "2.1.0-rc.16",
61
+ "@aztec/world-state": "2.1.0-rc.16",
62
62
  "@types/chalk": "^2.2.0",
63
63
  "abitype": "^0.8.11",
64
64
  "chalk": "^5.3.0",
package/src/bin/index.ts CHANGED
@@ -39,8 +39,8 @@ async function main() {
39
39
  }
40
40
 
41
41
  const networkName = getActiveNetworkName(networkValue);
42
- await enrichEnvironmentWithChainConfig(networkName);
43
42
  await enrichEnvironmentWithNetworkConfig(networkName);
43
+ enrichEnvironmentWithChainConfig(networkName);
44
44
 
45
45
  const cliVersion = getCliVersion();
46
46
  let program = new Command('aztec');