@aztec/aztec 2.1.3 → 2.1.4
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 +2 -2
- package/package.json +32 -32
- package/src/bin/index.ts +2 -2
package/dest/bin/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
//
|
|
3
3
|
import { injectCommands as injectBuilderCommands } from '@aztec/builder';
|
|
4
4
|
import { injectCommands as injectWalletCommands } from '@aztec/cli-wallet';
|
|
5
|
-
import {
|
|
5
|
+
import { enrichEnvironmentWithChainName, enrichEnvironmentWithNetworkConfig } from '@aztec/cli/config';
|
|
6
6
|
import { injectCommands as injectContractCommands } from '@aztec/cli/contracts';
|
|
7
7
|
import { injectCommands as injectInfrastructureCommands } from '@aztec/cli/infrastructure';
|
|
8
8
|
import { injectCommands as injectL1Commands } from '@aztec/cli/l1';
|
|
@@ -32,7 +32,7 @@ const debugLogger = createLogger('cli');
|
|
|
32
32
|
}
|
|
33
33
|
const networkName = getActiveNetworkName(networkValue);
|
|
34
34
|
await enrichEnvironmentWithNetworkConfig(networkName);
|
|
35
|
-
|
|
35
|
+
enrichEnvironmentWithChainName(networkName);
|
|
36
36
|
const cliVersion = getCliVersion();
|
|
37
37
|
let program = new Command('aztec');
|
|
38
38
|
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.
|
|
3
|
+
"version": "2.1.4",
|
|
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.
|
|
32
|
-
"@aztec/archiver": "2.1.
|
|
33
|
-
"@aztec/aztec-faucet": "2.1.
|
|
34
|
-
"@aztec/aztec-node": "2.1.
|
|
35
|
-
"@aztec/aztec.js": "2.1.
|
|
36
|
-
"@aztec/bb-prover": "2.1.
|
|
37
|
-
"@aztec/bb.js": "2.1.
|
|
38
|
-
"@aztec/blob-sink": "2.1.
|
|
39
|
-
"@aztec/bot": "2.1.
|
|
40
|
-
"@aztec/builder": "2.1.
|
|
41
|
-
"@aztec/cli": "2.1.
|
|
42
|
-
"@aztec/cli-wallet": "2.1.
|
|
43
|
-
"@aztec/constants": "2.1.
|
|
44
|
-
"@aztec/entrypoints": "2.1.
|
|
45
|
-
"@aztec/ethereum": "2.1.
|
|
46
|
-
"@aztec/foundation": "2.1.
|
|
47
|
-
"@aztec/kv-store": "2.1.
|
|
48
|
-
"@aztec/l1-artifacts": "2.1.
|
|
49
|
-
"@aztec/node-lib": "2.1.
|
|
50
|
-
"@aztec/noir-contracts.js": "2.1.
|
|
51
|
-
"@aztec/noir-protocol-circuits-types": "2.1.
|
|
52
|
-
"@aztec/p2p": "2.1.
|
|
53
|
-
"@aztec/p2p-bootstrap": "2.1.
|
|
54
|
-
"@aztec/protocol-contracts": "2.1.
|
|
55
|
-
"@aztec/prover-client": "2.1.
|
|
56
|
-
"@aztec/prover-node": "2.1.
|
|
57
|
-
"@aztec/pxe": "2.1.
|
|
58
|
-
"@aztec/stdlib": "2.1.
|
|
59
|
-
"@aztec/telemetry-client": "2.1.
|
|
60
|
-
"@aztec/txe": "2.1.
|
|
61
|
-
"@aztec/world-state": "2.1.
|
|
31
|
+
"@aztec/accounts": "2.1.4",
|
|
32
|
+
"@aztec/archiver": "2.1.4",
|
|
33
|
+
"@aztec/aztec-faucet": "2.1.4",
|
|
34
|
+
"@aztec/aztec-node": "2.1.4",
|
|
35
|
+
"@aztec/aztec.js": "2.1.4",
|
|
36
|
+
"@aztec/bb-prover": "2.1.4",
|
|
37
|
+
"@aztec/bb.js": "2.1.4",
|
|
38
|
+
"@aztec/blob-sink": "2.1.4",
|
|
39
|
+
"@aztec/bot": "2.1.4",
|
|
40
|
+
"@aztec/builder": "2.1.4",
|
|
41
|
+
"@aztec/cli": "2.1.4",
|
|
42
|
+
"@aztec/cli-wallet": "2.1.4",
|
|
43
|
+
"@aztec/constants": "2.1.4",
|
|
44
|
+
"@aztec/entrypoints": "2.1.4",
|
|
45
|
+
"@aztec/ethereum": "2.1.4",
|
|
46
|
+
"@aztec/foundation": "2.1.4",
|
|
47
|
+
"@aztec/kv-store": "2.1.4",
|
|
48
|
+
"@aztec/l1-artifacts": "2.1.4",
|
|
49
|
+
"@aztec/node-lib": "2.1.4",
|
|
50
|
+
"@aztec/noir-contracts.js": "2.1.4",
|
|
51
|
+
"@aztec/noir-protocol-circuits-types": "2.1.4",
|
|
52
|
+
"@aztec/p2p": "2.1.4",
|
|
53
|
+
"@aztec/p2p-bootstrap": "2.1.4",
|
|
54
|
+
"@aztec/protocol-contracts": "2.1.4",
|
|
55
|
+
"@aztec/prover-client": "2.1.4",
|
|
56
|
+
"@aztec/prover-node": "2.1.4",
|
|
57
|
+
"@aztec/pxe": "2.1.4",
|
|
58
|
+
"@aztec/stdlib": "2.1.4",
|
|
59
|
+
"@aztec/telemetry-client": "2.1.4",
|
|
60
|
+
"@aztec/txe": "2.1.4",
|
|
61
|
+
"@aztec/world-state": "2.1.4",
|
|
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
//
|
|
3
3
|
import { injectCommands as injectBuilderCommands } from '@aztec/builder';
|
|
4
4
|
import { injectCommands as injectWalletCommands } from '@aztec/cli-wallet';
|
|
5
|
-
import {
|
|
5
|
+
import { enrichEnvironmentWithChainName, enrichEnvironmentWithNetworkConfig } from '@aztec/cli/config';
|
|
6
6
|
import { injectCommands as injectContractCommands } from '@aztec/cli/contracts';
|
|
7
7
|
import { injectCommands as injectInfrastructureCommands } from '@aztec/cli/infrastructure';
|
|
8
8
|
import { injectCommands as injectL1Commands } from '@aztec/cli/l1';
|
|
@@ -41,7 +41,7 @@ async function main() {
|
|
|
41
41
|
|
|
42
42
|
const networkName = getActiveNetworkName(networkValue);
|
|
43
43
|
await enrichEnvironmentWithNetworkConfig(networkName);
|
|
44
|
-
|
|
44
|
+
enrichEnvironmentWithChainName(networkName);
|
|
45
45
|
|
|
46
46
|
const cliVersion = getCliVersion();
|
|
47
47
|
let program = new Command('aztec');
|