ChainState: {
    create<I>(base?): ChainState;
    decode(input, length?): ChainState;
    encode(message, writer?): Writer;
    fromJSON(object): ChainState;
    fromPartial<I>(object): ChainState;
    toJSON(message): unknown;
}

Type declaration

  • create:function
    • Type Parameters

      • I extends {
            activated?: boolean;
            assets?: {
                denom?: string;
                isNativeAsset?: boolean;
            }[];
            chain?: {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            };
            maintainerStates?: {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: (...) | (...);
                        index?: (...) | (...);
                        maxSize?: (...) | (...);
                    };
                };
                missingVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: (...) | (...);
                        index?: (...) | (...);
                        maxSize?: (...) | (...);
                    };
                };
            }[];
        } & {
            activated?: boolean;
            assets?: {
                denom?: string;
                isNativeAsset?: boolean;
            }[] & ({
                denom?: string;
                isNativeAsset?: boolean;
            } & {
                denom?: string;
                isNativeAsset?: boolean;
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
            chain?: {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            } & {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            } & {
                [K in string | number | symbol]: never
            };
            maintainerStates?: {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: ...;
                        index?: ...;
                        maxSize?: ...;
                    };
                };
                missingVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: ...;
                        index?: ...;
                        maxSize?: ...;
                    };
                };
            }[] & ({
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: (...) | (...);
                };
                missingVotes?: {
                    trueCountCache?: (...) | (...);
                };
            } & {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: ...;
                } & {
                    trueCountCache?: ...;
                } & {
                    [K in (...)]: (...)
                };
                missingVotes?: {
                    trueCountCache?: ...;
                } & {
                    trueCountCache?: ...;
                } & {
                    [K in (...)]: (...)
                };
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • Optional base: I

      Returns ChainState

  • decode:function
  • encode:function
  • fromJSON:function
  • fromPartial:function
    • Type Parameters

      • I extends {
            activated?: boolean;
            assets?: {
                denom?: string;
                isNativeAsset?: boolean;
            }[];
            chain?: {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            };
            maintainerStates?: {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: (...) | (...);
                        index?: (...) | (...);
                        maxSize?: (...) | (...);
                    };
                };
                missingVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: (...) | (...);
                        index?: (...) | (...);
                        maxSize?: (...) | (...);
                    };
                };
            }[];
        } & {
            activated?: boolean;
            assets?: {
                denom?: string;
                isNativeAsset?: boolean;
            }[] & ({
                denom?: string;
                isNativeAsset?: boolean;
            } & {
                denom?: string;
                isNativeAsset?: boolean;
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
            chain?: {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            } & {
                keyType?: KeyType;
                module?: string;
                name?: string;
                supportsForeignAssets?: boolean;
            } & {
                [K in string | number | symbol]: never
            };
            maintainerStates?: {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: ...;
                        index?: ...;
                        maxSize?: ...;
                    };
                };
                missingVotes?: {
                    trueCountCache?: {
                        cumulativeValue?: ...;
                        index?: ...;
                        maxSize?: ...;
                    };
                };
            }[] & ({
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: (...) | (...);
                };
                missingVotes?: {
                    trueCountCache?: (...) | (...);
                };
            } & {
                address?: Uint8Array;
                chain?: string;
                incorrectVotes?: {
                    trueCountCache?: ...;
                } & {
                    trueCountCache?: ...;
                } & {
                    [K in (...)]: (...)
                };
                missingVotes?: {
                    trueCountCache?: ...;
                } & {
                    trueCountCache?: ...;
                } & {
                    [K in (...)]: (...)
                };
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • object: I

      Returns ChainState

  • toJSON:function

Generated using TypeDoc