Variable ValidatorMissedBlocks
Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): ValidatorMissedBlocks
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): ValidatorMissedBlocks
-
Type Parameters
-
I extends {
address?: string;
missedBlocks?: ({ index?: number | undefined; missed?: boolean | undefined; })[];
} & {
address?: string;
missedBlocks?: {
index?: number;
missed?: boolean;
}[] & ({
index?: number;
missed?: boolean;
} & ({ index?: number | undefined; missed?: boolean | undefined; }) & { [ K in string | number | symbol]: never })[] & { [ K in string | symbol]: never };
} & { [ K in string | number | symbol]: never }
-
toJSON:function