Skip to content

Commit de0f518

Browse files
committedJun 14, 2023
Add option to adjust perform cache timeout in AbstractProvider.
1 parent 84375be commit de0f518

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed
 

‎src.ts/providers/abstract-provider.ts

+29-2
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,24 @@ type _PerformAccountRequest = {
398398
method: "getStorage", position: bigint
399399
}
400400

401+
/**
402+
* Options for configuring some internal aspects of an [[AbstractProvider]].
403+
*
404+
* **``cacheTimeout``** - how long to cache a low-level ``_perform``
405+
* for, based on input parameters. This reduces the number of calls
406+
* to getChainId and getBlockNumber, but may break test chains which
407+
* can perform operations (internally) synchronously. Use ``-1`` to
408+
* disable, ``0`` will only buffer within the same event loop and
409+
* any other value is in ms. (default: ``250``)
410+
*/
411+
export type AbstractProviderOptions = {
412+
cacheTimeout?: number;
413+
};
414+
415+
const defaultOptions = {
416+
cacheTimeout: 250
417+
};
418+
401419
type CcipArgs = {
402420
sender: string;
403421
urls: Array<string>;
@@ -436,12 +454,15 @@ export class AbstractProvider implements Provider {
436454

437455
#disableCcipRead: boolean;
438456

457+
#options: Required<AbstractProviderOptions>;
458+
439459
/**
440460
* Create a new **AbstractProvider** connected to %%network%%, or
441461
* use the various network detection capabilities to discover the
442462
* [[Network]] if necessary.
443463
*/
444-
constructor(_network?: "any" | Networkish) {
464+
constructor(_network?: "any" | Networkish, options?: AbstractProviderOptions) {
465+
this.#options = Object.assign({ }, defaultOptions, options || { });
445466

446467
if (_network === "any") {
447468
this.#anyNetwork = true;
@@ -512,19 +533,25 @@ export class AbstractProvider implements Provider {
512533

513534
// Shares multiple identical requests made during the same 250ms
514535
async #perform<T = any>(req: PerformActionRequest): Promise<T> {
536+
const timeout = this.#options.cacheTimeout;
537+
538+
// Caching disabled
539+
if (timeout < 0) { return await this._perform(req); }
540+
515541
// Create a tag
516542
const tag = getTag(req.method, req);
517543

518544
let perform = this.#performCache.get(tag);
519545
if (!perform) {
520546
perform = this._perform(req);
547+
521548
this.#performCache.set(tag, perform);
522549

523550
setTimeout(() => {
524551
if (this.#performCache.get(tag) === perform) {
525552
this.#performCache.delete(tag);
526553
}
527-
}, 250);
554+
}, timeout);
528555
}
529556

530557
return await perform;

‎src.ts/providers/provider-jsonrpc.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { PollingEventSubscriber } from "./subscriber-polling.js";
3434
import type { TypedDataDomain, TypedDataField } from "../hash/index.js";
3535
import type { TransactionLike } from "../transaction/index.js";
3636

37-
import type { PerformActionRequest, Subscriber, Subscription } from "./abstract-provider.js";
37+
import type { AbstractProviderOptions, PerformActionRequest, Subscriber, Subscription } from "./abstract-provider.js";
3838
import type { Networkish } from "./network.js";
3939
import type { Provider, TransactionRequest, TransactionResponse } from "./provider.js";
4040
import type { Signer } from "./signer.js";
@@ -185,13 +185,17 @@ export type DebugEventJsonRpcApiProvider = {
185185
*
186186
* **``batchMaxCount``** - maximum number of requests to allow in a batch.
187187
* If ``batchMaxCount = 1``, then batching is disabled. (default: ``100``)
188+
*
189+
* **``cacheTimeout``** - passed as [[AbstractProviderOptions]].
188190
*/
189191
export type JsonRpcApiProviderOptions = {
190192
polling?: boolean;
191193
staticNetwork?: null | Network;
192194
batchStallTime?: number;
193195
batchMaxSize?: number;
194196
batchMaxCount?: number;
197+
198+
cacheTimeout?: number;
195199
};
196200

197201
const defaultOptions = {
@@ -200,7 +204,9 @@ const defaultOptions = {
200204

201205
batchStallTime: 10, // 10ms
202206
batchMaxSize: (1 << 20), // 1Mb
203-
batchMaxCount: 100 // 100 requests
207+
batchMaxCount: 100, // 100 requests
208+
209+
cacheTimeout: 250
204210
}
205211

206212
/**
@@ -537,7 +543,11 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
537543
}
538544

539545
constructor(network?: Networkish, options?: JsonRpcApiProviderOptions) {
540-
super(network);
546+
const superOptions: AbstractProviderOptions = { };
547+
if (options && options.cacheTimeout != null) {
548+
superOptions.cacheTimeout = options.cacheTimeout;
549+
}
550+
super(network, superOptions);
541551

542552
this.#nextId = 1;
543553
this.#options = Object.assign({ }, defaultOptions, options || { });

0 commit comments

Comments
 (0)
Please sign in to comment.