@aztec/kv-store 3.0.0-nightly.20250928 → 3.0.0-nightly.20250930

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
@@ -7,7 +7,7 @@ export const dataConfigMappings = {
7
7
  },
8
8
  dataStoreMapSizeKB: {
9
9
  env: 'DATA_STORE_MAP_SIZE_KB',
10
- description: 'DB mapping size to be applied to all key/value stores',
10
+ description: 'The maximum possible size of a data store DB in KB. Can be overridden by component-specific options.',
11
11
  ...numberConfigHelper(128 * 1_024 * 1_024)
12
12
  },
13
13
  l1Contracts: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/kv-store",
3
- "version": "3.0.0-nightly.20250928",
3
+ "version": "3.0.0-nightly.20250930",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/interfaces/index.js",
@@ -24,10 +24,10 @@
24
24
  "./package.local.json"
25
25
  ],
26
26
  "dependencies": {
27
- "@aztec/ethereum": "3.0.0-nightly.20250928",
28
- "@aztec/foundation": "3.0.0-nightly.20250928",
29
- "@aztec/native": "3.0.0-nightly.20250928",
30
- "@aztec/stdlib": "3.0.0-nightly.20250928",
27
+ "@aztec/ethereum": "3.0.0-nightly.20250930",
28
+ "@aztec/foundation": "3.0.0-nightly.20250930",
29
+ "@aztec/native": "3.0.0-nightly.20250930",
30
+ "@aztec/stdlib": "3.0.0-nightly.20250930",
31
31
  "idb": "^8.0.0",
32
32
  "lmdb": "^3.2.0",
33
33
  "msgpackr": "^1.11.2",
package/src/config.ts CHANGED
@@ -15,7 +15,7 @@ export const dataConfigMappings: ConfigMappingsType<DataStoreConfig> = {
15
15
  },
16
16
  dataStoreMapSizeKB: {
17
17
  env: 'DATA_STORE_MAP_SIZE_KB',
18
- description: 'DB mapping size to be applied to all key/value stores',
18
+ description: 'The maximum possible size of a data store DB in KB. Can be overridden by component-specific options.',
19
19
  ...numberConfigHelper(128 * 1_024 * 1_024), // Defaulted to 128 GB
20
20
  },
21
21
  l1Contracts: {