UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

11 lines 561 B
import { ByteVectorType, CompositeViewDU, ListCompositeType } from "@chainsafe/ssz"; import { ChainConfig } from "@lodestar/config"; import { phase0 } from "@lodestar/types"; export type DepositTree = CompositeViewDU<ListCompositeType<ByteVectorType>>; /** * Compute and return deposit data from other validators. */ export declare function interopDeposits(config: ChainConfig, depositDataRootList: DepositTree, validatorCount: number, { withEth1Credentials }?: { withEth1Credentials?: boolean; }): phase0.Deposit[]; //# sourceMappingURL=deposits.d.ts.map