@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
17 lines (14 loc) • 384 B
text/typescript
import {BeaconRestApiServerOpts, beaconRestApiServerOpts} from "./rest/index.js";
export type ApiOptions = {
maxGindicesInProof?: number;
rest: BeaconRestApiServerOpts;
commit?: string;
version?: string;
private?: boolean;
};
export const defaultApiOptions: ApiOptions = {
maxGindicesInProof: 512,
rest: beaconRestApiServerOpts,
version: "dev",
private: false,
};