Type Alias report_equivocation

report_equivocation: TxDescriptor<
    {
        equivocation_proof: {
            first_header: {
                digest: DigestItem[];
                extrinsics_root: FixedSizeBinary<32>;
                number: number;
                parent_hash: FixedSizeBinary<32>;
                state_root: FixedSizeBinary<32>;
            };
            offender: FixedSizeBinary<32>;
            second_header: {
                digest: DigestItem[];
                extrinsics_root: FixedSizeBinary<32>;
                number: number;
                parent_hash: FixedSizeBinary<32>;
                state_root: FixedSizeBinary<32>;
            };
            slot: bigint;
        };
        key_owner_proof: {
            session: number;
            trie_nodes: Binary[];
            validator_count: number;
        };
    },
>

Report authority equivocation/misbehavior. This method will verify the equivocation proof and validate the given key ownership proof against the extracted offender. If both are valid, the offence will be reported.