@sentio/runtime 2.63.0-rc2.2 → 2.63.0-rc2.3
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-FLUYK6N3.js → chunk-3IULUWFB.js} +2 -2
- package/lib/{chunk-36V5YZUD.js → chunk-WJM2EBJH.js} +47 -5
- package/lib/chunk-WJM2EBJH.js.map +1 -0
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/lib/{processor-C-5LJT6m.d.ts → processor-HP-BeI2_.d.ts} +1 -0
- package/lib/processor-runner.js +8 -2
- package/lib/processor-runner.js.map +1 -1
- package/lib/service-worker.js +2 -2
- 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 +24 -1
- package/lib/chunk-36V5YZUD.js.map +0 -1
- /package/lib/{chunk-FLUYK6N3.js.map → chunk-3IULUWFB.js.map} +0 -0
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-HP-BeI2_.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-HP-BeI2_.js';
|
|
3
3
|
import * as _sentio_protos from '@sentio/protos';
|
|
4
4
|
import { TemplateInstance, 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
|
@@ -30,11 +30,11 @@ import {
|
|
|
30
30
|
providerMetrics,
|
|
31
31
|
recordRuntimeInfo,
|
|
32
32
|
timeoutError
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-3IULUWFB.js";
|
|
34
34
|
import {
|
|
35
35
|
Plugin,
|
|
36
36
|
PluginManager
|
|
37
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-WJM2EBJH.js";
|
|
38
38
|
import "./chunk-MV6JXS2P.js";
|
|
39
39
|
import "./chunk-KVSDPGUI.js";
|
|
40
40
|
|
package/lib/processor-runner.js
CHANGED
|
@@ -29,7 +29,7 @@ import {
|
|
|
29
29
|
require_lib4,
|
|
30
30
|
require_src,
|
|
31
31
|
withAbort
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-3IULUWFB.js";
|
|
33
33
|
import {
|
|
34
34
|
ExecutionConfig,
|
|
35
35
|
HandlerType,
|
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
ProcessorV3Definition,
|
|
41
41
|
StartRequest,
|
|
42
42
|
require_minimal2 as require_minimal
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-WJM2EBJH.js";
|
|
44
44
|
import {
|
|
45
45
|
DiagConsoleLogger,
|
|
46
46
|
DiagLogLevel,
|
|
@@ -32194,6 +32194,12 @@ var RuntimeServicePatcher = class {
|
|
|
32194
32194
|
}
|
|
32195
32195
|
}
|
|
32196
32196
|
break;
|
|
32197
|
+
case 4 /* SOL_INSTRUCTION */:
|
|
32198
|
+
const solInstruction = dataBinding.data?.solInstruction;
|
|
32199
|
+
if (solInstruction?.parsed == null && solInstruction?.rawParsed) {
|
|
32200
|
+
solInstruction.parsed = getParsedData(solInstruction.rawParsed);
|
|
32201
|
+
}
|
|
32202
|
+
break;
|
|
32197
32203
|
case 20 /* FUEL_TRANSACTION */:
|
|
32198
32204
|
if (compareSemver(this.sdkVersion, FUEL_PROTO_UPDATE_VERSION) < 0) {
|
|
32199
32205
|
dataBinding.handlerType = 13 /* FUEL_CALL */;
|