@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
9 lines • 523 B
TypeScript
import { ChainForkConfig } from "@lodestar/config";
import { Db, Repository } from "@lodestar/db";
import { ValidatorIndex } from "@lodestar/types";
import { SignedBLSToExecutionChangeVersioned } from "../../util/types.js";
export declare class BLSToExecutionChangeRepository extends Repository<ValidatorIndex, SignedBLSToExecutionChangeVersioned> {
constructor(config: ChainForkConfig, db: Db);
getId(value: SignedBLSToExecutionChangeVersioned): ValidatorIndex;
}
//# sourceMappingURL=blsToExecutionChange.d.ts.map