import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ethermint.types.v1"; /** * ExtensionOptionsWeb3Tx is an extension option that specifies the typed chain id, * the fee payer as well as its signature data. */ export interface ExtensionOptionsWeb3Tx { /** * typed_data_chain_id is used only in EIP712 Domain and should match * Ethereum network ID in a Web3 provider (e.g. Metamask). */ typedDataChainId: Long; /** * fee_payer is an account address for the fee payer. It will be validated * during EIP712 signature checking. */ feePayer: string; /** * fee_payer_sig is a signature data from the fee paying account, * allows to perform fee delegation when using EIP712 Domain. */ feePayerSig: Uint8Array; } export declare const ExtensionOptionsWeb3Tx: { encode(message: ExtensionOptionsWeb3Tx, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionOptionsWeb3Tx; fromJSON(object: any): ExtensionOptionsWeb3Tx; toJSON(message: ExtensionOptionsWeb3Tx): unknown; create(base?: DeepPartial): ExtensionOptionsWeb3Tx; fromPartial(object: DeepPartial): ExtensionOptionsWeb3Tx; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};