@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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as StoreContext, E as ExecutionConfig } from './processor-C-5LJT6m.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-C-5LJT6m.js';
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-FLUYK6N3.js";
33
+ } from "./chunk-3IULUWFB.js";
34
34
  import {
35
35
  Plugin,
36
36
  PluginManager
37
- } from "./chunk-36V5YZUD.js";
37
+ } from "./chunk-WJM2EBJH.js";
38
38
  import "./chunk-MV6JXS2P.js";
39
39
  import "./chunk-KVSDPGUI.js";
40
40
 
@@ -462,6 +462,7 @@ interface Data_SolInstruction {
462
462
  parsed?: {
463
463
  [key: string]: any;
464
464
  } | undefined;
465
+ rawParsed?: string | undefined;
465
466
  }
466
467
  declare const Data_SolInstruction: {
467
468
  encode(message: Data_SolInstruction, writer?: _m0.Writer): _m0.Writer;
@@ -29,7 +29,7 @@ import {
29
29
  require_lib4,
30
30
  require_src,
31
31
  withAbort
32
- } from "./chunk-FLUYK6N3.js";
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-36V5YZUD.js";
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 */;