@sentio/sdk
    Preparing search index...

    Variable OnIntervalConfig

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

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              fetchConfig?: {
                  block?: boolean;
                  trace?: boolean;
                  transaction?: boolean;
                  transactionReceipt?: boolean;
                  transactionReceiptLogs?: boolean;
              };
              handlerId?: number;
              handlerName?: string;
              minutes?: number;
              minutesInterval?: { backfillInterval?: number; recentInterval?: number };
              slot?: number;
              slotInterval?: { backfillInterval?: number; recentInterval?: number };
          }

        Returns OnIntervalConfig

    • decode: function
      • Parameters

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

        Returns OnIntervalConfig

    • encode: function
      • Parameters

        Returns Writer

    • fromJSON: function
    • fromPartial: function
      • Parameters

        • object: {
              fetchConfig?: {
                  block?: boolean;
                  trace?: boolean;
                  transaction?: boolean;
                  transactionReceipt?: boolean;
                  transactionReceiptLogs?: boolean;
              };
              handlerId?: number;
              handlerName?: string;
              minutes?: number;
              minutesInterval?: { backfillInterval?: number; recentInterval?: number };
              slot?: number;
              slotInterval?: { backfillInterval?: number; recentInterval?: number };
          }

        Returns OnIntervalConfig

    • toJSON: function