UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

16 lines 699 B
import { GossipActionError } from "./gossipValidation.js"; export declare enum BlsToExecutionChangeErrorCode { ALREADY_EXISTS = "BLS_TO_EXECUTION_CHANGE_ERROR_ALREADY_EXISTS", INVALID = "BLS_TO_EXECUTION_CHANGE_ERROR_INVALID", INVALID_SIGNATURE = "BLS_TO_EXECUTION_CHANGE_ERROR_INVALID_SIGNATURE" } export type BlsToExecutionChangeErrorType = { code: BlsToExecutionChangeErrorCode.ALREADY_EXISTS; } | { code: BlsToExecutionChangeErrorCode.INVALID; } | { code: BlsToExecutionChangeErrorCode.INVALID_SIGNATURE; }; export declare class BlsToExecutionChangeError extends GossipActionError<BlsToExecutionChangeErrorType> { } //# sourceMappingURL=blsToExecutionChangeError.d.ts.map