@@ -398,6 +398,24 @@ type _PerformAccountRequest = {
398
398
method : "getStorage" , position : bigint
399
399
}
400
400
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
+
401
419
type CcipArgs = {
402
420
sender : string ;
403
421
urls : Array < string > ;
@@ -436,12 +454,15 @@ export class AbstractProvider implements Provider {
436
454
437
455
#disableCcipRead: boolean ;
438
456
457
+ #options: Required < AbstractProviderOptions > ;
458
+
439
459
/**
440
460
* Create a new **AbstractProvider** connected to %%network%%, or
441
461
* use the various network detection capabilities to discover the
442
462
* [[Network]] if necessary.
443
463
*/
444
- constructor ( _network ?: "any" | Networkish ) {
464
+ constructor ( _network ?: "any" | Networkish , options ?: AbstractProviderOptions ) {
465
+ this . #options = Object . assign ( { } , defaultOptions , options || { } ) ;
445
466
446
467
if ( _network === "any" ) {
447
468
this . #anyNetwork = true ;
@@ -512,19 +533,25 @@ export class AbstractProvider implements Provider {
512
533
513
534
// Shares multiple identical requests made during the same 250ms
514
535
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
+
515
541
// Create a tag
516
542
const tag = getTag ( req . method , req ) ;
517
543
518
544
let perform = this . #performCache. get ( tag ) ;
519
545
if ( ! perform ) {
520
546
perform = this . _perform ( req ) ;
547
+
521
548
this . #performCache. set ( tag , perform ) ;
522
549
523
550
setTimeout ( ( ) => {
524
551
if ( this . #performCache. get ( tag ) === perform ) {
525
552
this . #performCache. delete ( tag ) ;
526
553
}
527
- } , 250 ) ;
554
+ } , timeout ) ;
528
555
}
529
556
530
557
return await perform ;
0 commit comments