@aztec/blob-client 0.0.1-commit.f5d02921e → 0.0.1-commit.f7ea82942

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.
@@ -24,7 +24,7 @@ export const blobClientConfigMapping = {
24
24
  blobSinkMapSizeKb: {
25
25
  env: 'BLOB_SINK_MAP_SIZE_KB',
26
26
  description: 'The maximum possible size of the blob sink DB in KB. Overwrites the general dataStoreMapSizeKb.',
27
- parseEnv: (val)=>val ? +val : undefined
27
+ parseEnv: (val)=>+val
28
28
  },
29
29
  blobAllowEmptySources: {
30
30
  env: 'BLOB_ALLOW_EMPTY_SOURCES',
@@ -43,7 +43,7 @@ export const blobClientConfigMapping = {
43
43
  blobHealthcheckUploadIntervalMinutes: {
44
44
  env: 'BLOB_HEALTHCHECK_UPLOAD_INTERVAL_MINUTES',
45
45
  description: 'Interval in minutes for uploading healthcheck file to file store (default: 60 = 1 hour)',
46
- parseEnv: (val)=>val ? +val : undefined
46
+ parseEnv: (val)=>+val
47
47
  },
48
48
  l1HttpTimeoutMS: {
49
49
  env: 'ETHEREUM_HTTP_TIMEOUT_MS',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/blob-client",
3
- "version": "0.0.1-commit.f5d02921e",
3
+ "version": "0.0.1-commit.f7ea82942",
4
4
  "type": "module",
5
5
  "bin": "./dest/client/bin/index.js",
6
6
  "exports": {
@@ -56,12 +56,12 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@aztec/blob-lib": "0.0.1-commit.f5d02921e",
60
- "@aztec/ethereum": "0.0.1-commit.f5d02921e",
61
- "@aztec/foundation": "0.0.1-commit.f5d02921e",
62
- "@aztec/kv-store": "0.0.1-commit.f5d02921e",
63
- "@aztec/stdlib": "0.0.1-commit.f5d02921e",
64
- "@aztec/telemetry-client": "0.0.1-commit.f5d02921e",
59
+ "@aztec/blob-lib": "0.0.1-commit.f7ea82942",
60
+ "@aztec/ethereum": "0.0.1-commit.f7ea82942",
61
+ "@aztec/foundation": "0.0.1-commit.f7ea82942",
62
+ "@aztec/kv-store": "0.0.1-commit.f7ea82942",
63
+ "@aztec/stdlib": "0.0.1-commit.f7ea82942",
64
+ "@aztec/telemetry-client": "0.0.1-commit.f7ea82942",
65
65
  "express": "^4.21.2",
66
66
  "snappy": "^7.2.2",
67
67
  "source-map-support": "^0.5.21",
@@ -93,7 +93,7 @@ export const blobClientConfigMapping: ConfigMappingsType<BlobClientConfig> = {
93
93
  blobSinkMapSizeKb: {
94
94
  env: 'BLOB_SINK_MAP_SIZE_KB',
95
95
  description: 'The maximum possible size of the blob sink DB in KB. Overwrites the general dataStoreMapSizeKb.',
96
- parseEnv: (val: string | undefined) => (val ? +val : undefined),
96
+ parseEnv: (val: string) => +val,
97
97
  },
98
98
  blobAllowEmptySources: {
99
99
  env: 'BLOB_ALLOW_EMPTY_SOURCES',
@@ -116,7 +116,7 @@ export const blobClientConfigMapping: ConfigMappingsType<BlobClientConfig> = {
116
116
  blobHealthcheckUploadIntervalMinutes: {
117
117
  env: 'BLOB_HEALTHCHECK_UPLOAD_INTERVAL_MINUTES',
118
118
  description: 'Interval in minutes for uploading healthcheck file to file store (default: 60 = 1 hour)',
119
- parseEnv: (val: string | undefined) => (val ? +val : undefined),
119
+ parseEnv: (val: string) => +val,
120
120
  },
121
121
  l1HttpTimeoutMS: {
122
122
  env: 'ETHEREUM_HTTP_TIMEOUT_MS',