Variable IdentifiedChannel
Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): IdentifiedChannel
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): IdentifiedChannel
-
Type Parameters
-
I extends {
channelId?: string;
connectionHops?: string[];
counterparty?: { portId?: string | undefined; channelId?: string | undefined; };
ordering?: Order;
portId?: string;
state?: State;
version?: string;
} & {
channelId?: string;
connectionHops?: string[] & string[] & { [ K in string | symbol]: never };
counterparty?: {
channelId?: string;
portId?: string;
} & ({ portId?: string | undefined; channelId?: string | undefined; }) & { [ K in string | number | symbol]: never };
ordering?: Order;
portId?: string;
state?: State;
version?: string;
} & { [ K in string | number | symbol]: never }
-
toJSON:function