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

Type declaration

  • create:function
    • Type Parameters

      • I extends {
            govAccounts?: {
                address?: Uint8Array;
                role?: Role;
            }[];
            governanceKey?: {
                publicKeys?: {
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                threshold?: number;
            };
            params?: {};
        } & {
            govAccounts?: {
                address?: Uint8Array;
                role?: Role;
            }[] & ({
                address?: Uint8Array;
                role?: Role;
            } & {
                address?: Uint8Array;
                role?: Role;
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
            governanceKey?: {
                publicKeys?: {
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                threshold?: number;
            } & {
                publicKeys?: {
                    typeUrl?: (...) | (...);
                    value?: (...) | (...);
                }[] & ({
                    typeUrl?: ...;
                    value?: ...;
                } & {
                    typeUrl?: ...;
                    value?: ...;
                } & {
                    [K in (...)]: (...)
                })[] & {
                    [K in string | symbol]: never
                };
                threshold?: number;
            } & {
                [K in string | number | symbol]: never
            };
            params?: {} & {} & {
                [K in string | number | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • Optional base: I

      Returns GenesisState

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

      • I extends {
            govAccounts?: {
                address?: Uint8Array;
                role?: Role;
            }[];
            governanceKey?: {
                publicKeys?: {
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                threshold?: number;
            };
            params?: {};
        } & {
            govAccounts?: {
                address?: Uint8Array;
                role?: Role;
            }[] & ({
                address?: Uint8Array;
                role?: Role;
            } & {
                address?: Uint8Array;
                role?: Role;
            } & {
                [K in string | number | symbol]: never
            })[] & {
                [K in string | symbol]: never
            };
            governanceKey?: {
                publicKeys?: {
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                threshold?: number;
            } & {
                publicKeys?: {
                    typeUrl?: (...) | (...);
                    value?: (...) | (...);
                }[] & ({
                    typeUrl?: ...;
                    value?: ...;
                } & {
                    typeUrl?: ...;
                    value?: ...;
                } & {
                    [K in (...)]: (...)
                })[] & {
                    [K in string | symbol]: never
                };
                threshold?: number;
            } & {
                [K in string | number | symbol]: never
            };
            params?: {} & {} & {
                [K in string | number | symbol]: never
            };
        } & {
            [K in string | number | symbol]: never
        }

      Parameters

      • object: I

      Returns GenesisState

  • toJSON:function

Generated using TypeDoc