@sentio/runtime 3.8.0-rc3.3 → 3.8.0-rc3.4
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-GY7OBH64.js → chunk-HLJD4QOP.js} +31 -1
- package/lib/chunk-HLJD4QOP.js.map +1 -0
- package/lib/{chunk-W5SMLSTL.js → chunk-XBNTVOAP.js} +2 -2
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/lib/{processor-D1hP2eBU.d.ts → processor-CNJAQPfh.d.ts} +1 -0
- package/lib/processor-runner.js +8 -2
- package/lib/processor-runner.js.map +1 -1
- package/lib/test-processor.test.d.ts +1 -1
- package/package.json +1 -1
- package/src/full-service.ts +6 -0
- package/src/gen/processor/protos/processor.ts +17 -0
- package/lib/chunk-GY7OBH64.js.map +0 -1
- /package/lib/{chunk-W5SMLSTL.js.map → chunk-XBNTVOAP.js.map} +0 -0
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
require_roots,
|
|
16
16
|
require_rpc,
|
|
17
17
|
require_writer
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-HLJD4QOP.js";
|
|
19
19
|
import {
|
|
20
20
|
init_esm,
|
|
21
21
|
metrics
|
|
@@ -60356,4 +60356,4 @@ long/umd/index.js:
|
|
|
60356
60356
|
@noble/curves/esm/secp256k1.js:
|
|
60357
60357
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
60358
60358
|
*/
|
|
60359
|
-
//# sourceMappingURL=chunk-
|
|
60359
|
+
//# sourceMappingURL=chunk-XBNTVOAP.js.map
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as StoreContext, E as ExecutionConfig } from './processor-
|
|
2
|
-
export { A as AbstractStoreContext, d as DataBindingContext, c as IDataBindingContext, I as IStoreContext, P as Plugin, b as PluginManager, t as timeoutError } from './processor-
|
|
1
|
+
import { S as StoreContext, E as ExecutionConfig } from './processor-CNJAQPfh.js';
|
|
2
|
+
export { A as AbstractStoreContext, d as DataBindingContext, c as IDataBindingContext, I as IStoreContext, P as Plugin, b as PluginManager, t as timeoutError } from './processor-CNJAQPfh.js';
|
|
3
3
|
import * as _sentio_protos from '@sentio/protos';
|
|
4
4
|
import { ProcessResult, EthCallParam, ProcessorServiceImplementation, ProcessConfigRequest, ProcessConfigResponse, StartRequest, Empty, ProcessBindingsRequest, ProcessBindingResponse, DataBinding, PreparedData, PreprocessResult, ProcessStreamRequest, HandlerType, PreprocessStreamRequest, DeepPartial, PreprocessStreamResponse, ProcessStreamResponse } from '@sentio/protos';
|
|
5
5
|
import { Required } from 'utility-types';
|
package/lib/index.js
CHANGED
|
@@ -24,11 +24,11 @@ import {
|
|
|
24
24
|
providerMetrics,
|
|
25
25
|
recordRuntimeInfo,
|
|
26
26
|
timeoutError
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-XBNTVOAP.js";
|
|
28
28
|
import {
|
|
29
29
|
Plugin,
|
|
30
30
|
PluginManager
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-HLJD4QOP.js";
|
|
32
32
|
import "./chunk-I45UXGDM.js";
|
|
33
33
|
import "./chunk-KVSDPGUI.js";
|
|
34
34
|
|
package/lib/processor-runner.js
CHANGED
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
require_lib3,
|
|
21
21
|
require_src,
|
|
22
22
|
withAbort
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-XBNTVOAP.js";
|
|
24
24
|
import {
|
|
25
25
|
ExecutionConfig,
|
|
26
26
|
HandlerType,
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
ProcessorDefinition,
|
|
31
31
|
ProcessorV3Definition,
|
|
32
32
|
require_minimal2 as require_minimal
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-HLJD4QOP.js";
|
|
34
34
|
import {
|
|
35
35
|
DiagConsoleLogger,
|
|
36
36
|
DiagLogLevel,
|
|
@@ -29931,6 +29931,12 @@ var RuntimeServicePatcher = class {
|
|
|
29931
29931
|
}
|
|
29932
29932
|
}
|
|
29933
29933
|
break;
|
|
29934
|
+
case 4 /* SOL_INSTRUCTION */:
|
|
29935
|
+
const solInstruction = dataBinding.data?.solInstruction;
|
|
29936
|
+
if (solInstruction?.parsed == null && solInstruction?.rawParsed) {
|
|
29937
|
+
solInstruction.parsed = getParsedData(solInstruction.rawParsed);
|
|
29938
|
+
}
|
|
29939
|
+
break;
|
|
29934
29940
|
case 20 /* FUEL_TRANSACTION */:
|
|
29935
29941
|
if (compareSemver(this.sdkVersion, FUEL_PROTO_UPDATE_VERSION) < 0) {
|
|
29936
29942
|
dataBinding.handlerType = 13 /* FUEL_CALL */;
|