@sentio/runtime 3.9.0-rc.7 → 3.9.0-rc.9
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.
- package/lib/{chunk-4ZC4G6EI.js → chunk-VNWNJ423.js} +8 -3
- package/lib/{chunk-4ZC4G6EI.js.map → chunk-VNWNJ423.js.map} +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +1044 -1220
- package/lib/processor-runner.js.map +1 -1
- package/package.json +2 -2
- package/src/db-context.ts +4 -2
- package/src/full-service.ts +1 -1
- package/src/logger.ts +5 -5
- package/src/processor-runner.ts +1 -1
- package/src/provider.ts +1 -1
- package/src/service-v3.ts +1 -1
- package/src/service.ts +1 -1
- package/src/utils.ts +5 -2
package/lib/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ declare abstract class ListStateStorage<T> extends StateStorage<T[]> {
|
|
|
39
39
|
|
|
40
40
|
declare function mergeProcessResults(results: ProcessResult[]): Required<ProcessResult, 'states'>;
|
|
41
41
|
declare function mergeProcessResultsInPlace(res: ProcessResult, results: ProcessResult[]): Required<ProcessResult, 'states'>;
|
|
42
|
-
declare function errorString(e:
|
|
42
|
+
declare function errorString(e: unknown): string;
|
|
43
43
|
declare const USER_PROCESSOR = "user_processor";
|
|
44
44
|
declare function makeEthCallKey(param: EthCallParam): string;
|
|
45
45
|
type Semver = {
|