@secondlayer/subgraphs 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
declare function startSubgraphOperationRunner(opts?: {
|
|
2
|
+
concurrency?: number
|
|
3
|
+
}): Promise<() => Promise<void>>;
|
|
1
4
|
/**
|
|
2
5
|
* Start the subgraph processor service.
|
|
3
6
|
* Listens for new blocks via NOTIFY and processes them through all active subgraphs.
|
|
@@ -5,4 +8,4 @@
|
|
|
5
8
|
declare function startSubgraphProcessor(opts?: {
|
|
6
9
|
concurrency?: number
|
|
7
10
|
}): Promise<() => Promise<void>>;
|
|
8
|
-
export { startSubgraphProcessor };
|
|
11
|
+
export { startSubgraphProcessor, startSubgraphOperationRunner };
|