@sentio/sdk
    Preparing search index...

    Variable TransactionHandlerConfig

    TransactionHandlerConfig: {
        create(
            base?: {
                fetchConfig?: {
                    block?: boolean;
                    trace?: boolean;
                    transaction?: boolean;
                    transactionReceipt?: boolean;
                    transactionReceiptLogs?: boolean;
                };
                handlerId?: number;
                handlerName?: string;
            },
        ): TransactionHandlerConfig;
        decode(
            input: Uint8Array<ArrayBufferLike> | Reader,
            length?: number,
        ): TransactionHandlerConfig;
        encode(message: TransactionHandlerConfig, writer?: Writer): Writer;
        fromJSON(object: any): TransactionHandlerConfig;
        fromPartial(
            object: {
                fetchConfig?: {
                    block?: boolean;
                    trace?: boolean;
                    transaction?: boolean;
                    transactionReceipt?: boolean;
                    transactionReceiptLogs?: boolean;
                };
                handlerId?: number;
                handlerName?: string;
            },
        ): TransactionHandlerConfig;
        toJSON(message: TransactionHandlerConfig): unknown;
    }

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              fetchConfig?: {
                  block?: boolean;
                  trace?: boolean;
                  transaction?: boolean;
                  transactionReceipt?: boolean;
                  transactionReceiptLogs?: boolean;
              };
              handlerId?: number;
              handlerName?: string;
          }

        Returns TransactionHandlerConfig

    • decode: function
      • Parameters

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

        Returns TransactionHandlerConfig

    • encode: function
    • fromJSON: function
    • fromPartial: function
      • Parameters

        • object: {
              fetchConfig?: {
                  block?: boolean;
                  trace?: boolean;
                  transaction?: boolean;
                  transactionReceipt?: boolean;
                  transactionReceiptLogs?: boolean;
              };
              handlerId?: number;
              handlerName?: string;
          }

        Returns TransactionHandlerConfig

    • toJSON: function