@sentio/sdk
    Preparing search index...

    Variable EthFetchConfig

    EthFetchConfig: {
        create(
            base?: {
                block?: boolean;
                trace?: boolean;
                transaction?: boolean;
                transactionReceipt?: boolean;
                transactionReceiptLogs?: boolean;
            },
        ): EthFetchConfig;
        decode(
            input: Uint8Array<ArrayBufferLike> | 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;
    }

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              block?: boolean;
              trace?: boolean;
              transaction?: boolean;
              transactionReceipt?: boolean;
              transactionReceiptLogs?: boolean;
          }

        Returns EthFetchConfig

    • decode: function
      • Parameters

        • input: Uint8Array<ArrayBufferLike> | Reader
        • Optionallength: number

        Returns EthFetchConfig

    • encode: function
      • Parameters

        Returns Writer

    • fromJSON: function
      • Parameters

        • object: any

        Returns EthFetchConfig

    • fromPartial: function
      • Parameters

        • object: {
              block?: boolean;
              trace?: boolean;
              transaction?: boolean;
              transactionReceipt?: boolean;
              transactionReceiptLogs?: boolean;
          }

        Returns EthFetchConfig

    • toJSON: function
      • Parameters

        Returns unknown