@lodestar/api 1.28.0-dev.e68cae8fa0 → 1.28.0-dev.f6146b8509

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.
@@ -4,5 +4,5 @@ export { routes };
4
4
  export { getClient, type ApiClient } from "./client/index.js";
5
5
  export type { Endpoints };
6
6
  export type ApiNamespace = keyof Endpoints;
7
- export declare const allNamespaces: (keyof Endpoints)[];
7
+ export declare const allNamespaces: ApiNamespace[];
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -60,7 +60,7 @@ declare const HistoricalSummariesResponseType: ContainerType<{
60
60
  blockSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
61
61
  stateSummaryRoot: import("@chainsafe/ssz").ByteVectorType;
62
62
  }>>;
63
- proof: import("@chainsafe/ssz").ArrayType<import("@chainsafe/ssz").Type<Uint8Array>, unknown, unknown>;
63
+ proof: import("@chainsafe/ssz").ArrayType<import("@chainsafe/ssz").Type<Uint8Array<ArrayBufferLike>>, unknown, unknown>;
64
64
  }>;
65
65
  export type HistoricalSummariesResponse = ValueOf<typeof HistoricalSummariesResponseType>;
66
66
  export type Endpoints = {
@@ -4,7 +4,7 @@ import { ChainForkConfig } from "@lodestar/config";
4
4
  import { Endpoint, RouteDefinitions } from "../../utils/index.js";
5
5
  import { VersionMeta } from "../../utils/metadata.js";
6
6
  export declare const CompactMultiProofType: ContainerType<{
7
- leaves: import("@chainsafe/ssz").ArrayType<import("@chainsafe/ssz").Type<Uint8Array>, unknown, unknown>;
7
+ leaves: import("@chainsafe/ssz").ArrayType<import("@chainsafe/ssz").Type<Uint8Array<ArrayBufferLike>>, unknown, unknown>;
8
8
  descriptor: ByteListType;
9
9
  }>;
10
10
  export type Endpoints = {
@@ -200,7 +200,7 @@ export declare const SignedContributionAndProofListType: import("@chainsafe/ssz"
200
200
  aggregationBits: import("@chainsafe/ssz").BitVectorType;
201
201
  signature: import("@chainsafe/ssz").ByteVectorType;
202
202
  }>;
203
- selectionProof: import("@chainsafe/ssz").ByteVectorType; /** Lodestar-specific (non-standardized) value */
203
+ selectionProof: import("@chainsafe/ssz").ByteVectorType;
204
204
  }>;
205
205
  signature: import("@chainsafe/ssz").ByteVectorType;
206
206
  }>>, unknown, unknown>;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.28.0-dev.e68cae8fa0",
14
+ "version": "1.28.0-dev.f6146b8509",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -66,16 +66,16 @@
66
66
  "lint": "biome check src/ test/",
67
67
  "lint:fix": "yarn run lint --write",
68
68
  "test": "yarn test:unit",
69
- "test:unit": "vitest --run --dir test/unit/",
69
+ "test:unit": "vitest run --dir test/unit/",
70
70
  "check-readme": "typescript-docs-verifier"
71
71
  },
72
72
  "dependencies": {
73
73
  "@chainsafe/persistent-merkle-tree": "^1.0.1",
74
74
  "@chainsafe/ssz": "^1.0.2",
75
- "@lodestar/config": "1.28.0-dev.e68cae8fa0",
76
- "@lodestar/params": "1.28.0-dev.e68cae8fa0",
77
- "@lodestar/types": "1.28.0-dev.e68cae8fa0",
78
- "@lodestar/utils": "1.28.0-dev.e68cae8fa0",
75
+ "@lodestar/config": "1.28.0-dev.f6146b8509",
76
+ "@lodestar/params": "1.28.0-dev.f6146b8509",
77
+ "@lodestar/types": "1.28.0-dev.f6146b8509",
78
+ "@lodestar/utils": "1.28.0-dev.f6146b8509",
79
79
  "eventsource": "^2.0.2",
80
80
  "qs": "^6.11.1"
81
81
  },
@@ -83,7 +83,7 @@
83
83
  "@types/eventsource": "^1.1.11",
84
84
  "@types/qs": "^6.9.7",
85
85
  "ajv": "^8.12.0",
86
- "fastify": "^5.0.0"
86
+ "fastify": "^5.2.1"
87
87
  },
88
88
  "keywords": [
89
89
  "ethereum",
@@ -92,5 +92,5 @@
92
92
  "api",
93
93
  "blockchain"
94
94
  ],
95
- "gitHead": "661b2b13634bc179295f43a632f353a9f6cb235d"
95
+ "gitHead": "4f58cf9afb99f521a722afc71830e8f52a303f1a"
96
96
  }