@sentio/runtime 2.58.2-rc.1 → 2.58.2-rc.2
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-NLEBXJPP.js → chunk-GAHZFTVC.js} +1 -1
- package/lib/{chunk-NLEBXJPP.js.map → chunk-GAHZFTVC.js.map} +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +1 -1
- package/lib/service-worker.js +1 -1
- package/package.json +1 -1
- package/src/provider.ts +2 -2
package/lib/index.d.ts
CHANGED
@@ -5,7 +5,7 @@ import { AsyncLocalStorage } from 'node:async_hooks';
|
|
5
5
|
import { Required } from 'utility-types';
|
6
6
|
import { CallContext } from 'nice-grpc';
|
7
7
|
import _m0 from 'protobufjs/minimal.js';
|
8
|
-
import { JsonRpcProvider,
|
8
|
+
import { JsonRpcProvider, Network } from 'ethers';
|
9
9
|
import PQueue from 'p-queue';
|
10
10
|
import { EthChainId } from '@sentio/chain';
|
11
11
|
import { Counter, Attributes, Gauge, Histogram } from '@opentelemetry/api';
|
@@ -526,7 +526,7 @@ interface GlobalConfig {
|
|
526
526
|
declare const GLOBAL_CONFIG: GlobalConfig;
|
527
527
|
|
528
528
|
declare const DummyProvider: JsonRpcProvider;
|
529
|
-
declare function getProvider(chainId?: EthChainId):
|
529
|
+
declare function getProvider(chainId?: EthChainId): JsonRpcProvider;
|
530
530
|
declare class QueuedStaticJsonRpcProvider extends JsonRpcProvider {
|
531
531
|
#private;
|
532
532
|
executor: PQueue;
|
package/lib/index.js
CHANGED
package/lib/processor-runner.js
CHANGED
package/lib/service-worker.js
CHANGED
package/package.json
CHANGED
package/src/provider.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { JsonRpcProvider, Network
|
1
|
+
import { JsonRpcProvider, Network } from 'ethers'
|
2
2
|
|
3
3
|
import PQueue from 'p-queue'
|
4
4
|
import { Endpoints } from './endpoints.js'
|
@@ -22,7 +22,7 @@ const providers = new Map<string, JsonRpcProvider>()
|
|
22
22
|
// return networkish
|
23
23
|
// }
|
24
24
|
|
25
|
-
export function getProvider(chainId?: EthChainId):
|
25
|
+
export function getProvider(chainId?: EthChainId): JsonRpcProvider {
|
26
26
|
// const network = getNetworkFromCtxOrNetworkish(networkish)
|
27
27
|
if (!chainId) {
|
28
28
|
chainId = EthChainId.ETHEREUM
|