@aztec/p2p 3.0.0-nightly.20251212 → 3.0.0-nightly.20251213

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/config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { booleanConfigHelper, floatConfigHelper, getConfigFromMappings, getDefaultConfig, numberConfigHelper, pickConfigMappings, secretStringConfigHelper } from '@aztec/foundation/config';
2
2
  import { Fr } from '@aztec/foundation/curves/bn254';
3
3
  import { dataConfigMappings } from '@aztec/kv-store/config';
4
- import { FunctionSelector } from '@aztec/stdlib/abi';
4
+ import { FunctionSelector } from '@aztec/stdlib/abi/function-selector';
5
5
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
6
6
  import { chainConfigMappings } from '@aztec/stdlib/config';
7
7
  import { p2pReqRespConfigMappings } from './services/reqresp/config.js';
@@ -1,5 +1,5 @@
1
1
  import { booleanConfigHelper, numberConfigHelper } from '@aztec/foundation/config';
2
- import { MAX_RPC_TXS_LEN } from '@aztec/stdlib/interfaces/server';
2
+ import { MAX_RPC_TXS_LEN } from '@aztec/stdlib/interfaces/api-limit';
3
3
  export const txCollectionConfigMappings = {
4
4
  txCollectionFastNodesTimeoutBeforeReqRespMs: {
5
5
  env: 'TX_COLLECTION_FAST_NODES_TIMEOUT_BEFORE_REQ_RESP_MS',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/p2p",
3
- "version": "3.0.0-nightly.20251212",
3
+ "version": "3.0.0-nightly.20251213",
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.20251212",
71
- "@aztec/epoch-cache": "3.0.0-nightly.20251212",
72
- "@aztec/ethereum": "3.0.0-nightly.20251212",
73
- "@aztec/foundation": "3.0.0-nightly.20251212",
74
- "@aztec/kv-store": "3.0.0-nightly.20251212",
75
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251212",
76
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251212",
77
- "@aztec/protocol-contracts": "3.0.0-nightly.20251212",
78
- "@aztec/simulator": "3.0.0-nightly.20251212",
79
- "@aztec/stdlib": "3.0.0-nightly.20251212",
80
- "@aztec/telemetry-client": "3.0.0-nightly.20251212",
70
+ "@aztec/constants": "3.0.0-nightly.20251213",
71
+ "@aztec/epoch-cache": "3.0.0-nightly.20251213",
72
+ "@aztec/ethereum": "3.0.0-nightly.20251213",
73
+ "@aztec/foundation": "3.0.0-nightly.20251213",
74
+ "@aztec/kv-store": "3.0.0-nightly.20251213",
75
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251213",
76
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251213",
77
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251213",
78
+ "@aztec/simulator": "3.0.0-nightly.20251213",
79
+ "@aztec/stdlib": "3.0.0-nightly.20251213",
80
+ "@aztec/telemetry-client": "3.0.0-nightly.20251213",
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.20251212",
108
- "@aztec/world-state": "3.0.0-nightly.20251212",
107
+ "@aztec/archiver": "3.0.0-nightly.20251213",
108
+ "@aztec/world-state": "3.0.0-nightly.20251213",
109
109
  "@jest/globals": "^30.0.0",
110
110
  "@types/jest": "^30.0.0",
111
111
  "@types/node": "^22.15.17",
package/src/config.ts CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  } from '@aztec/foundation/config';
12
12
  import { Fr } from '@aztec/foundation/curves/bn254';
13
13
  import { type DataStoreConfig, dataConfigMappings } from '@aztec/kv-store/config';
14
- import { FunctionSelector } from '@aztec/stdlib/abi';
14
+ import { FunctionSelector } from '@aztec/stdlib/abi/function-selector';
15
15
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
16
16
  import { type AllowedElement, type ChainConfig, chainConfigMappings } from '@aztec/stdlib/config';
17
17
 
@@ -1,5 +1,5 @@
1
1
  import { type ConfigMappingsType, booleanConfigHelper, numberConfigHelper } from '@aztec/foundation/config';
2
- import { MAX_RPC_TXS_LEN } from '@aztec/stdlib/interfaces/server';
2
+ import { MAX_RPC_TXS_LEN } from '@aztec/stdlib/interfaces/api-limit';
3
3
 
4
4
  export type TxCollectionConfig = {
5
5
  /** How long to wait before starting reqresp for fast collection */