@aztec/end-to-end 0.86.0-nightly.20250514 → 0.86.0-nightly.20250515

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.
@@ -58,7 +58,7 @@ export class P2PNetworkTest {
58
58
  this.prefilledPublicData = [];
59
59
  this.logger = createLogger(`e2e:e2e_p2p:${testName}`);
60
60
  // Set up the base account and node private keys for the initial network deployment
61
- this.baseAccountPrivateKey = `0x${getPrivateKeyFromIndex(0).toString('hex')}`;
61
+ this.baseAccountPrivateKey = `0x${getPrivateKeyFromIndex(1).toString('hex')}`;
62
62
  this.baseAccount = privateKeyToAccount(this.baseAccountPrivateKey);
63
63
  this.proposerPrivateKeys = generatePrivateKeys(PROPOSER_PRIVATE_KEYS_START_INDEX, numberOfNodes);
64
64
  this.attesterPrivateKeys = generatePrivateKeys(ATTESTER_PRIVATE_KEYS_START_INDEX, numberOfNodes);
@@ -8,7 +8,7 @@ import type { DateProvider } from '@aztec/foundation/timer';
8
8
  import type { PXEService } from '@aztec/pxe/server';
9
9
  import type { PublicDataTreeLeaf } from '@aztec/stdlib/trees';
10
10
  import { AsyncLocalStorage } from 'node:async_hooks';
11
- export declare const PROPOSER_PRIVATE_KEYS_START_INDEX = 1;
11
+ export declare const PROPOSER_PRIVATE_KEYS_START_INDEX = 2;
12
12
  export declare const ATTESTER_PRIVATE_KEYS_START_INDEX = 1001;
13
13
  export interface NodeContext {
14
14
  node: AztecNodeService;
@@ -7,9 +7,9 @@ import { AsyncLocalStorage } from 'node:async_hooks';
7
7
  import { TEST_PEER_CHECK_INTERVAL_MS } from './fixtures.js';
8
8
  import { getPrivateKeyFromIndex } from './utils.js';
9
9
  import { getEndToEndTestTelemetryClient } from './with_telemetry_utils.js';
10
- // Setup snapshots will create a node with index 0, so all of our loops here
11
- // need to start from 1 to avoid running validators with the same key
12
- export const PROPOSER_PRIVATE_KEYS_START_INDEX = 1;
10
+ // Setup snapshots will create a node with index 0, and run extra bootstrap with
11
+ // index 1, so all of our loops here need to start from 2 to avoid running validators with the same key
12
+ export const PROPOSER_PRIVATE_KEYS_START_INDEX = 2;
13
13
  export const ATTESTER_PRIVATE_KEYS_START_INDEX = 1001;
14
14
  export function generatePrivateKeys(startIndex, numberOfKeys) {
15
15
  const privateKeys = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/end-to-end",
3
- "version": "0.86.0-nightly.20250514",
3
+ "version": "0.86.0-nightly.20250515",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "inherits": [
@@ -25,39 +25,39 @@
25
25
  "formatting": "run -T prettier --check ./src && run -T eslint ./src"
26
26
  },
27
27
  "dependencies": {
28
- "@aztec/accounts": "0.86.0-nightly.20250514",
29
- "@aztec/archiver": "0.86.0-nightly.20250514",
30
- "@aztec/aztec": "0.86.0-nightly.20250514",
31
- "@aztec/aztec-node": "0.86.0-nightly.20250514",
32
- "@aztec/aztec.js": "0.86.0-nightly.20250514",
33
- "@aztec/bb-prover": "0.86.0-nightly.20250514",
34
- "@aztec/blob-lib": "0.86.0-nightly.20250514",
35
- "@aztec/blob-sink": "0.86.0-nightly.20250514",
36
- "@aztec/bot": "0.86.0-nightly.20250514",
37
- "@aztec/cli": "0.86.0-nightly.20250514",
38
- "@aztec/constants": "0.86.0-nightly.20250514",
39
- "@aztec/entrypoints": "0.86.0-nightly.20250514",
40
- "@aztec/epoch-cache": "0.86.0-nightly.20250514",
41
- "@aztec/ethereum": "0.86.0-nightly.20250514",
42
- "@aztec/foundation": "0.86.0-nightly.20250514",
43
- "@aztec/kv-store": "0.86.0-nightly.20250514",
44
- "@aztec/l1-artifacts": "0.86.0-nightly.20250514",
45
- "@aztec/merkle-tree": "0.86.0-nightly.20250514",
46
- "@aztec/noir-contracts.js": "0.86.0-nightly.20250514",
47
- "@aztec/noir-noirc_abi": "0.86.0-nightly.20250514",
48
- "@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250514",
49
- "@aztec/noir-test-contracts.js": "0.86.0-nightly.20250514",
50
- "@aztec/p2p": "0.86.0-nightly.20250514",
51
- "@aztec/protocol-contracts": "0.86.0-nightly.20250514",
52
- "@aztec/prover-client": "0.86.0-nightly.20250514",
53
- "@aztec/prover-node": "0.86.0-nightly.20250514",
54
- "@aztec/pxe": "0.86.0-nightly.20250514",
55
- "@aztec/sequencer-client": "0.86.0-nightly.20250514",
56
- "@aztec/simulator": "0.86.0-nightly.20250514",
57
- "@aztec/stdlib": "0.86.0-nightly.20250514",
58
- "@aztec/telemetry-client": "0.86.0-nightly.20250514",
59
- "@aztec/validator-client": "0.86.0-nightly.20250514",
60
- "@aztec/world-state": "0.86.0-nightly.20250514",
28
+ "@aztec/accounts": "0.86.0-nightly.20250515",
29
+ "@aztec/archiver": "0.86.0-nightly.20250515",
30
+ "@aztec/aztec": "0.86.0-nightly.20250515",
31
+ "@aztec/aztec-node": "0.86.0-nightly.20250515",
32
+ "@aztec/aztec.js": "0.86.0-nightly.20250515",
33
+ "@aztec/bb-prover": "0.86.0-nightly.20250515",
34
+ "@aztec/blob-lib": "0.86.0-nightly.20250515",
35
+ "@aztec/blob-sink": "0.86.0-nightly.20250515",
36
+ "@aztec/bot": "0.86.0-nightly.20250515",
37
+ "@aztec/cli": "0.86.0-nightly.20250515",
38
+ "@aztec/constants": "0.86.0-nightly.20250515",
39
+ "@aztec/entrypoints": "0.86.0-nightly.20250515",
40
+ "@aztec/epoch-cache": "0.86.0-nightly.20250515",
41
+ "@aztec/ethereum": "0.86.0-nightly.20250515",
42
+ "@aztec/foundation": "0.86.0-nightly.20250515",
43
+ "@aztec/kv-store": "0.86.0-nightly.20250515",
44
+ "@aztec/l1-artifacts": "0.86.0-nightly.20250515",
45
+ "@aztec/merkle-tree": "0.86.0-nightly.20250515",
46
+ "@aztec/noir-contracts.js": "0.86.0-nightly.20250515",
47
+ "@aztec/noir-noirc_abi": "0.86.0-nightly.20250515",
48
+ "@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250515",
49
+ "@aztec/noir-test-contracts.js": "0.86.0-nightly.20250515",
50
+ "@aztec/p2p": "0.86.0-nightly.20250515",
51
+ "@aztec/protocol-contracts": "0.86.0-nightly.20250515",
52
+ "@aztec/prover-client": "0.86.0-nightly.20250515",
53
+ "@aztec/prover-node": "0.86.0-nightly.20250515",
54
+ "@aztec/pxe": "0.86.0-nightly.20250515",
55
+ "@aztec/sequencer-client": "0.86.0-nightly.20250515",
56
+ "@aztec/simulator": "0.86.0-nightly.20250515",
57
+ "@aztec/stdlib": "0.86.0-nightly.20250515",
58
+ "@aztec/telemetry-client": "0.86.0-nightly.20250515",
59
+ "@aztec/validator-client": "0.86.0-nightly.20250515",
60
+ "@aztec/world-state": "0.86.0-nightly.20250515",
61
61
  "@iarna/toml": "^2.2.5",
62
62
  "@jest/globals": "^29.5.0",
63
63
  "@noble/curves": "^1.0.0",
@@ -85,7 +85,7 @@ export class P2PNetworkTest {
85
85
  this.logger = createLogger(`e2e:e2e_p2p:${testName}`);
86
86
 
87
87
  // Set up the base account and node private keys for the initial network deployment
88
- this.baseAccountPrivateKey = `0x${getPrivateKeyFromIndex(0)!.toString('hex')}`;
88
+ this.baseAccountPrivateKey = `0x${getPrivateKeyFromIndex(1)!.toString('hex')}`;
89
89
  this.baseAccount = privateKeyToAccount(this.baseAccountPrivateKey);
90
90
  this.proposerPrivateKeys = generatePrivateKeys(PROPOSER_PRIVATE_KEYS_START_INDEX, numberOfNodes);
91
91
  this.attesterPrivateKeys = generatePrivateKeys(ATTESTER_PRIVATE_KEYS_START_INDEX, numberOfNodes);
@@ -15,9 +15,9 @@ import { TEST_PEER_CHECK_INTERVAL_MS } from './fixtures.js';
15
15
  import { getPrivateKeyFromIndex } from './utils.js';
16
16
  import { getEndToEndTestTelemetryClient } from './with_telemetry_utils.js';
17
17
 
18
- // Setup snapshots will create a node with index 0, so all of our loops here
19
- // need to start from 1 to avoid running validators with the same key
20
- export const PROPOSER_PRIVATE_KEYS_START_INDEX = 1;
18
+ // Setup snapshots will create a node with index 0, and run extra bootstrap with
19
+ // index 1, so all of our loops here need to start from 2 to avoid running validators with the same key
20
+ export const PROPOSER_PRIVATE_KEYS_START_INDEX = 2;
21
21
  export const ATTESTER_PRIVATE_KEYS_START_INDEX = 1001;
22
22
 
23
23
  export interface NodeContext {