All chains
    Preparing search index...

    Type Alias BabeDigestsPreDigest

    BabeDigestsPreDigest: Enum<
        {
            Primary: {
                authority_index: number;
                slot: bigint;
                vrf_signature: {
                    pre_output: FixedSizeBinary<32>;
                    proof: FixedSizeBinary<64>;
                };
            };
            SecondaryPlain: { authority_index: number; slot: bigint };
            SecondaryVRF: {
                authority_index: number;
                slot: bigint;
                vrf_signature: {
                    pre_output: FixedSizeBinary<32>;
                    proof: FixedSizeBinary<64>;
                };
            };
        },
    >