@sentio/runtime 2.40.0-rc.25 → 2.40.0-rc.27

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.
@@ -59792,8 +59792,7 @@ var _StoreContext = class {
59792
59792
  }
59793
59793
  close() {
59794
59794
  for (const [opId, defer] of this.defers) {
59795
- console.warn("context closed before db response", opId);
59796
- defer.reject(new Error("context closed"));
59795
+ defer.reject(new Error("context closed before db response, processId: " + this.processId + " opId: " + opId));
59797
59796
  }
59798
59797
  this.defers.clear();
59799
59798
  if (this.statsInterval) {
@@ -80101,7 +80100,6 @@ var chainToDeploymentMap = Object.fromEntries(
80101
80100
  );
80102
80101
  var iface = new Interface(ABI);
80103
80102
  function encodeMulticallData(calls) {
80104
- console.log(calls);
80105
80103
  return iface.encodeFunctionData("aggregate", [calls]);
80106
80104
  }
80107
80105
  function decodeMulticallResult(data) {
package/lib/index.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  makeEthCallKey,
15
15
  mergeProcessResults,
16
16
  timeoutError
17
- } from "./chunk-WAHNA3UH.js";
17
+ } from "./chunk-RWKMPYZ7.js";
18
18
 
19
19
  // src/state.ts
20
20
  var _State = class {
@@ -41,7 +41,7 @@ import {
41
41
  require_minimal,
42
42
  require_src,
43
43
  trace
44
- } from "./chunk-WAHNA3UH.js";
44
+ } from "./chunk-RWKMPYZ7.js";
45
45
 
46
46
  // ../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
47
47
  var require_universalify = __commonJS({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.40.0-rc.25",
3
+ "version": "2.40.0-rc.27",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
package/src/db-context.ts CHANGED
@@ -131,8 +131,8 @@ export class StoreContext {
131
131
 
132
132
  close() {
133
133
  for (const [opId, defer] of this.defers) {
134
- console.warn('context closed before db response', opId)
135
- defer.reject(new Error('context closed'))
134
+ // console.warn('context closed before db response', opId)
135
+ defer.reject(new Error('context closed before db response, processId: ' + this.processId + ' opId: ' + opId))
136
136
  }
137
137
  this.defers.clear()
138
138
  if (this.statsInterval) {
package/src/multicall.ts CHANGED
@@ -1603,7 +1603,6 @@ export interface AggregateResult {
1603
1603
  const iface = new Interface(ABI)
1604
1604
 
1605
1605
  export function encodeMulticallData(calls: Array<Multicall3Call>) {
1606
- console.log(calls)
1607
1606
  return iface.encodeFunctionData('aggregate', [calls])
1608
1607
  }
1609
1608