@aztec/p2p 3.0.0-nightly.20251210 → 3.0.0-nightly.20251211

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.
@@ -1,4 +1,4 @@
1
- import { NoCommitteeError } from '@aztec/ethereum';
1
+ import { NoCommitteeError } from '@aztec/ethereum/contracts';
2
2
  import { createLogger } from '@aztec/foundation/log';
3
3
  import { PeerErrorSeverity } from '@aztec/stdlib/p2p';
4
4
  export class AttestationValidator {
@@ -1,4 +1,4 @@
1
- import { NoCommitteeError } from '@aztec/ethereum';
1
+ import { NoCommitteeError } from '@aztec/ethereum/contracts';
2
2
  import { createLogger } from '@aztec/foundation/log';
3
3
  import { PeerErrorSeverity } from '@aztec/stdlib/p2p';
4
4
  export class BlockProposalValidator {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/p2p",
3
- "version": "3.0.0-nightly.20251210",
3
+ "version": "3.0.0-nightly.20251211",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -67,17 +67,17 @@
67
67
  ]
68
68
  },
69
69
  "dependencies": {
70
- "@aztec/constants": "3.0.0-nightly.20251210",
71
- "@aztec/epoch-cache": "3.0.0-nightly.20251210",
72
- "@aztec/ethereum": "3.0.0-nightly.20251210",
73
- "@aztec/foundation": "3.0.0-nightly.20251210",
74
- "@aztec/kv-store": "3.0.0-nightly.20251210",
75
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251210",
76
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251210",
77
- "@aztec/protocol-contracts": "3.0.0-nightly.20251210",
78
- "@aztec/simulator": "3.0.0-nightly.20251210",
79
- "@aztec/stdlib": "3.0.0-nightly.20251210",
80
- "@aztec/telemetry-client": "3.0.0-nightly.20251210",
70
+ "@aztec/constants": "3.0.0-nightly.20251211",
71
+ "@aztec/epoch-cache": "3.0.0-nightly.20251211",
72
+ "@aztec/ethereum": "3.0.0-nightly.20251211",
73
+ "@aztec/foundation": "3.0.0-nightly.20251211",
74
+ "@aztec/kv-store": "3.0.0-nightly.20251211",
75
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251211",
76
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251211",
77
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251211",
78
+ "@aztec/simulator": "3.0.0-nightly.20251211",
79
+ "@aztec/stdlib": "3.0.0-nightly.20251211",
80
+ "@aztec/telemetry-client": "3.0.0-nightly.20251211",
81
81
  "@chainsafe/libp2p-gossipsub": "13.0.0",
82
82
  "@chainsafe/libp2p-noise": "^15.0.0",
83
83
  "@chainsafe/libp2p-yamux": "^6.0.2",
@@ -104,8 +104,8 @@
104
104
  "xxhash-wasm": "^1.1.0"
105
105
  },
106
106
  "devDependencies": {
107
- "@aztec/archiver": "3.0.0-nightly.20251210",
108
- "@aztec/world-state": "3.0.0-nightly.20251210",
107
+ "@aztec/archiver": "3.0.0-nightly.20251211",
108
+ "@aztec/world-state": "3.0.0-nightly.20251211",
109
109
  "@jest/globals": "^30.0.0",
110
110
  "@types/jest": "^30.0.0",
111
111
  "@types/node": "^22.15.17",
@@ -1,5 +1,5 @@
1
1
  import type { EpochCacheInterface } from '@aztec/epoch-cache';
2
- import { NoCommitteeError } from '@aztec/ethereum';
2
+ import { NoCommitteeError } from '@aztec/ethereum/contracts';
3
3
  import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { type BlockAttestation, type P2PValidator, PeerErrorSeverity } from '@aztec/stdlib/p2p';
5
5
 
@@ -1,5 +1,5 @@
1
1
  import type { EpochCacheInterface } from '@aztec/epoch-cache';
2
- import { NoCommitteeError } from '@aztec/ethereum';
2
+ import { NoCommitteeError } from '@aztec/ethereum/contracts';
3
3
  import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { type BlockProposal, type P2PValidator, PeerErrorSeverity } from '@aztec/stdlib/p2p';
5
5