@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.
@@ -15,7 +15,7 @@ import {
15
15
  require_roots,
16
16
  require_rpc,
17
17
  require_writer
18
- } from "./chunk-GY7OBH64.js";
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-W5SMLSTL.js.map
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-D1hP2eBU.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-D1hP2eBU.js';
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-W5SMLSTL.js";
27
+ } from "./chunk-XBNTVOAP.js";
28
28
  import {
29
29
  Plugin,
30
30
  PluginManager
31
- } from "./chunk-GY7OBH64.js";
31
+ } from "./chunk-HLJD4QOP.js";
32
32
  import "./chunk-I45UXGDM.js";
33
33
  import "./chunk-KVSDPGUI.js";
34
34
 
@@ -464,6 +464,7 @@ interface Data_SolInstruction {
464
464
  parsed?: {
465
465
  [key: string]: any;
466
466
  } | undefined;
467
+ rawParsed?: string | undefined;
467
468
  rawTransaction?: string | undefined;
468
469
  }
469
470
  declare const Data_SolInstruction: {
@@ -20,7 +20,7 @@ import {
20
20
  require_lib3,
21
21
  require_src,
22
22
  withAbort
23
- } from "./chunk-W5SMLSTL.js";
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-GY7OBH64.js";
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 */;