DVPair
: { decode
(input
: Uint8Array | Reader, length
?: number): DVPair; encode
(message
: DVPair, writer
?: Writer): Writer; fromJSON
(object
: any): DVPair; fromPartial
<I>(object
: I): DVPair; toJSON
(message
: DVPair): unknown; }
Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): DVPair
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
- encode(message: DVPair, writer?: Writer): Writer
-
Returns Writer
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): DVPair
-
Type Parameters
-
I extends {
delegatorAddress?: string;
validatorAddress?: string;
} & {
delegatorAddress?: string;
validatorAddress?: string;
} & { [ K in string | number | symbol]: never }
-
toJSON:function
- toJSON(message: DVPair): unknown
-
Returns unknown