import { BinaryReader, BinaryWriter } from "../../../binary.js"; import { DeepPartial } from "../../../helpers.js"; import { Params, ParamsAmino } from "./feemarket.js"; //#region src/ethermint/feemarket/v1/genesis.d.ts /** * GenesisState defines the feemarket module's genesis state. * @name GenesisState * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.GenesisState */ interface GenesisState { /** * params defines all the parameters of the feemarket module. */ params: Params; /** * block_gas is the amount of gas wanted on the last block before the upgrade. * Zero by default. */ blockGas: bigint; } interface GenesisStateProtoMsg { typeUrl: "/ethermint.feemarket.v1.GenesisState"; value: Uint8Array; } /** * GenesisState defines the feemarket module's genesis state. * @name GenesisStateAmino * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.GenesisState */ interface GenesisStateAmino { /** * params defines all the parameters of the feemarket module. */ params: ParamsAmino; /** * block_gas is the amount of gas wanted on the last block before the upgrade. * Zero by default. */ block_gas: string; } interface GenesisStateAminoMsg { type: "/ethermint.feemarket.v1.GenesisState"; value: GenesisStateAmino; } /** * GenesisState defines the feemarket module's genesis state. * @name GenesisState * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.GenesisState */ declare const GenesisState: { typeUrl: string; is(o: any): o is GenesisState; isAmino(o: any): o is GenesisStateAmino; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromPartial(object: DeepPartial): GenesisState; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; registerTypeUrl(): void; }; //#endregion export { GenesisState, GenesisStateAmino, GenesisStateAminoMsg, GenesisStateProtoMsg };