17 lines
651 B
TypeScript
17 lines
651 B
TypeScript
import * as _m0 from "protobufjs/minimal";
|
|
import { DeepPartial } from "../../../helpers";
|
|
/** GenesisState defines the raw genesis transaction in JSON. */
|
|
export interface GenesisState {
|
|
/** gen_txs defines the genesis transactions. */
|
|
genTxs: Uint8Array[];
|
|
}
|
|
/** GenesisState defines the raw genesis transaction in JSON. */
|
|
export interface GenesisStateSDKType {
|
|
gen_txs: Uint8Array[];
|
|
}
|
|
export declare const GenesisState: {
|
|
encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState;
|
|
fromPartial(object: DeepPartial<GenesisState>): GenesisState;
|
|
};
|