Variable EthFetchConfig

EthFetchConfig: {
    create(
        base?: {
            block?: boolean;
            trace?: boolean;
            transaction?: boolean;
            transactionReceipt?: boolean;
            transactionReceiptLogs?: boolean;
        },
    ): EthFetchConfig;
    decode(input: Uint8Array | Reader, length?: number): EthFetchConfig;
    encode(message: EthFetchConfig, writer?: Writer): Writer;
    fromJSON(object: any): EthFetchConfig;
    fromPartial(
        object: {
            block?: boolean;
            trace?: boolean;
            transaction?: boolean;
            transactionReceipt?: boolean;
            transactionReceiptLogs?: boolean;
        },
    ): EthFetchConfig;
    toJSON(message: EthFetchConfig): unknown;
}