@aztec/cli 5.0.0-nightly.20260612 → 5.0.0-nightly.20260613

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.
@@ -4,7 +4,7 @@ import { TxStatus } from '@aztec/aztec.js/tx';
4
4
  import { jsonStringify } from '@aztec/foundation/json-rpc';
5
5
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
6
6
  import { EmbeddedWallet } from '@aztec/wallets/embedded';
7
- import { deployFundedSchnorrAccounts } from '@aztec/wallets/testing';
7
+ import { createFundedInitializerlessAccounts } from '@aztec/wallets/testing';
8
8
  export async function setupL2Contracts(nodeUrl, testAccounts, json, log) {
9
9
  const waitOpts = {
10
10
  timeout: 180,
@@ -17,17 +17,17 @@ export async function setupL2Contracts(nodeUrl, testAccounts, json, log) {
17
17
  log('setupL2Contracts: Creating PXE client...');
18
18
  const node = createAztecNodeClient(nodeUrl);
19
19
  const wallet = await EmbeddedWallet.create(node);
20
- let deployedAccountManagers = [];
20
+ let accountManagers = [];
21
21
  if (testAccounts) {
22
- log('setupL2Contracts: Deploying test accounts...');
22
+ log('setupL2Contracts: Creating test accounts...');
23
23
  const initialAccountsData = await getInitialTestAccountsData();
24
- deployedAccountManagers = await deployFundedSchnorrAccounts(wallet, initialAccountsData, waitOpts);
24
+ accountManagers = await createFundedInitializerlessAccounts(wallet, initialAccountsData);
25
25
  }
26
26
  if (json) {
27
27
  const toPrint = {
28
28
  ...ProtocolContractAddress
29
29
  };
30
- deployedAccountManagers.forEach((a, i)=>{
30
+ accountManagers.forEach((a, i)=>{
31
31
  toPrint[`testAccount${i}`] = a.address;
32
32
  });
33
33
  log(JSON.stringify(toPrint, null, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli",
3
- "version": "5.0.0-nightly.20260612",
3
+ "version": "5.0.0-nightly.20260613",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./contracts": "./dest/cmds/contracts/index.js",
@@ -77,23 +77,23 @@
77
77
  ]
78
78
  },
79
79
  "dependencies": {
80
- "@aztec/accounts": "5.0.0-nightly.20260612",
81
- "@aztec/archiver": "5.0.0-nightly.20260612",
82
- "@aztec/aztec.js": "5.0.0-nightly.20260612",
83
- "@aztec/constants": "5.0.0-nightly.20260612",
84
- "@aztec/entrypoints": "5.0.0-nightly.20260612",
85
- "@aztec/ethereum": "5.0.0-nightly.20260612",
86
- "@aztec/foundation": "5.0.0-nightly.20260612",
87
- "@aztec/l1-artifacts": "5.0.0-nightly.20260612",
88
- "@aztec/node-keystore": "5.0.0-nightly.20260612",
89
- "@aztec/node-lib": "5.0.0-nightly.20260612",
90
- "@aztec/p2p": "5.0.0-nightly.20260612",
91
- "@aztec/protocol-contracts": "5.0.0-nightly.20260612",
92
- "@aztec/sequencer-client": "5.0.0-nightly.20260612",
93
- "@aztec/slasher": "5.0.0-nightly.20260612",
94
- "@aztec/stdlib": "5.0.0-nightly.20260612",
95
- "@aztec/wallets": "5.0.0-nightly.20260612",
96
- "@aztec/world-state": "5.0.0-nightly.20260612",
80
+ "@aztec/accounts": "5.0.0-nightly.20260613",
81
+ "@aztec/archiver": "5.0.0-nightly.20260613",
82
+ "@aztec/aztec.js": "5.0.0-nightly.20260613",
83
+ "@aztec/constants": "5.0.0-nightly.20260613",
84
+ "@aztec/entrypoints": "5.0.0-nightly.20260613",
85
+ "@aztec/ethereum": "5.0.0-nightly.20260613",
86
+ "@aztec/foundation": "5.0.0-nightly.20260613",
87
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260613",
88
+ "@aztec/node-keystore": "5.0.0-nightly.20260613",
89
+ "@aztec/node-lib": "5.0.0-nightly.20260613",
90
+ "@aztec/p2p": "5.0.0-nightly.20260613",
91
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260613",
92
+ "@aztec/sequencer-client": "5.0.0-nightly.20260613",
93
+ "@aztec/slasher": "5.0.0-nightly.20260613",
94
+ "@aztec/stdlib": "5.0.0-nightly.20260613",
95
+ "@aztec/wallets": "5.0.0-nightly.20260613",
96
+ "@aztec/world-state": "5.0.0-nightly.20260613",
97
97
  "@ethersproject/wallet": "^5.8.0",
98
98
  "@iarna/toml": "^2.2.5",
99
99
  "@libp2p/peer-id-factory": "^3.0.4",
@@ -107,9 +107,9 @@
107
107
  "viem": "npm:@aztec/viem@2.38.2"
108
108
  },
109
109
  "devDependencies": {
110
- "@aztec/aztec-node": "5.0.0-nightly.20260612",
111
- "@aztec/kv-store": "5.0.0-nightly.20260612",
112
- "@aztec/telemetry-client": "5.0.0-nightly.20260612",
110
+ "@aztec/aztec-node": "5.0.0-nightly.20260613",
111
+ "@aztec/kv-store": "5.0.0-nightly.20260613",
112
+ "@aztec/telemetry-client": "5.0.0-nightly.20260613",
113
113
  "@jest/globals": "^30.0.0",
114
114
  "@types/jest": "^30.0.0",
115
115
  "@types/lodash.chunk": "^4.2.9",
@@ -126,15 +126,15 @@
126
126
  "typescript": "^5.3.3"
127
127
  },
128
128
  "peerDependencies": {
129
- "@aztec/accounts": "5.0.0-nightly.20260612",
130
- "@aztec/bb-prover": "5.0.0-nightly.20260612",
131
- "@aztec/ethereum": "5.0.0-nightly.20260612",
132
- "@aztec/l1-artifacts": "5.0.0-nightly.20260612",
133
- "@aztec/noir-contracts.js": "5.0.0-nightly.20260612",
134
- "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260612",
135
- "@aztec/noir-test-contracts.js": "5.0.0-nightly.20260612",
136
- "@aztec/protocol-contracts": "5.0.0-nightly.20260612",
137
- "@aztec/stdlib": "5.0.0-nightly.20260612"
129
+ "@aztec/accounts": "5.0.0-nightly.20260613",
130
+ "@aztec/bb-prover": "5.0.0-nightly.20260613",
131
+ "@aztec/ethereum": "5.0.0-nightly.20260613",
132
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260613",
133
+ "@aztec/noir-contracts.js": "5.0.0-nightly.20260613",
134
+ "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260613",
135
+ "@aztec/noir-test-contracts.js": "5.0.0-nightly.20260613",
136
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260613",
137
+ "@aztec/stdlib": "5.0.0-nightly.20260613"
138
138
  },
139
139
  "files": [
140
140
  "dest",
@@ -8,7 +8,7 @@ import { jsonStringify } from '@aztec/foundation/json-rpc';
8
8
  import type { LogFn } from '@aztec/foundation/log';
9
9
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
10
10
  import { EmbeddedWallet } from '@aztec/wallets/embedded';
11
- import { deployFundedSchnorrAccounts } from '@aztec/wallets/testing';
11
+ import { createFundedInitializerlessAccounts } from '@aztec/wallets/testing';
12
12
 
13
13
  export async function setupL2Contracts(nodeUrl: string, testAccounts: boolean, json: boolean, log: LogFn) {
14
14
  const waitOpts: WaitOpts = {
@@ -23,16 +23,16 @@ export async function setupL2Contracts(nodeUrl: string, testAccounts: boolean, j
23
23
  const node = createAztecNodeClient(nodeUrl);
24
24
  const wallet = await EmbeddedWallet.create(node);
25
25
 
26
- let deployedAccountManagers: AccountManager[] = [];
26
+ let accountManagers: AccountManager[] = [];
27
27
  if (testAccounts) {
28
- log('setupL2Contracts: Deploying test accounts...');
28
+ log('setupL2Contracts: Creating test accounts...');
29
29
  const initialAccountsData = await getInitialTestAccountsData();
30
- deployedAccountManagers = await deployFundedSchnorrAccounts(wallet, initialAccountsData, waitOpts);
30
+ accountManagers = await createFundedInitializerlessAccounts(wallet, initialAccountsData);
31
31
  }
32
32
 
33
33
  if (json) {
34
34
  const toPrint: Record<string, AztecAddress> = { ...ProtocolContractAddress };
35
- deployedAccountManagers.forEach((a, i) => {
35
+ accountManagers.forEach((a, i) => {
36
36
  toPrint[`testAccount${i}`] = a.address;
37
37
  });
38
38
  log(JSON.stringify(toPrint, null, 2));