@sentio/runtime 2.60.1-rc.1 → 2.60.2-rc.1

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.js CHANGED
@@ -30,7 +30,7 @@ import {
30
30
  providerMetrics,
31
31
  recordRuntimeInfo,
32
32
  timeoutError
33
- } from "./chunk-OJKZJGLN.js";
33
+ } from "./chunk-HGBQUZC6.js";
34
34
  import {
35
35
  Plugin,
36
36
  PluginManager
@@ -50,7 +50,7 @@ import {
50
50
  require_src,
51
51
  trace,
52
52
  withAbort
53
- } from "./chunk-OJKZJGLN.js";
53
+ } from "./chunk-HGBQUZC6.js";
54
54
  import {
55
55
  ExecutionConfig,
56
56
  HandlerType,
@@ -10,7 +10,7 @@ import {
10
10
  require_cjs,
11
11
  require_lib3 as require_lib,
12
12
  require_lib4 as require_lib2
13
- } from "./chunk-OJKZJGLN.js";
13
+ } from "./chunk-HGBQUZC6.js";
14
14
  import {
15
15
  __toESM
16
16
  } from "./chunk-ZTW66EYL.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.60.1-rc.1",
3
+ "version": "2.60.2-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
package/src/provider.ts CHANGED
@@ -116,7 +116,7 @@ export class QueuedStaticJsonRpcProvider extends JsonRpcProvider {
116
116
  }
117
117
 
118
118
  async send(method: string, params: Array<any>): Promise<any> {
119
- if (method !== 'eth_call') {
119
+ if (method !== 'eth_call' || params.length > 2) {
120
120
  return await this.executor.add(() => super.send(method, params))
121
121
  }
122
122
  const tag = getTag(method, params)