Typeberry by Fluffy Labs - v0.4.0
    Preparing search index...

    Class DisputesRecords

    A set of judgements over particular work reports identified by hashes.

    https://graypaper.fluffylabs.dev/#/579bd12/122b00124700

    Index

    Properties

    badSet: ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>

    badSet: all work-reports hashes which were judged to be incorrect

    goodSet: ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>

    goodSet: all work-reports hashes which were judged to be correct

    punishSet: ImmutableSortedSet<Bytes<32> & pvm.WithOpaque<"Ed25519Key">>

    punishSet: set of Ed25519 keys representing validators which were found to have misjudged a work-report

    wonkySet: ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>

    wonkySet: all work-reports hashes which appear to be impossible to judge

    Codec: Descriptor<
        DisputesRecords,
        ViewOf<
            DisputesRecords,
            {
                badSet: Descriptor<
                    ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>,
                    SequenceView<Bytes<32>, Bytes<32>>,
                >;
                goodSet: Descriptor<
                    ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>,
                    SequenceView<Bytes<32>, Bytes<32>>,
                >;
                punishSet: Descriptor<
                    ImmutableSortedSet<Bytes<32> & pvm.WithOpaque<"Ed25519Key">>,
                    SequenceView<Bytes<32>, Bytes<32>>,
                >;
                wonkySet: Descriptor<
                    ImmutableSortedSet<OpaqueHash & pvm.WithOpaque<"WorkReportHash">>,
                    SequenceView<Bytes<32>, Bytes<32>>,
                >;
            },
        >,
    > = ...

    Methods