@@ -190,7 +190,7 @@ export type DebugEventJsonRpcApiProvider = {
190
190
*/
191
191
export type JsonRpcApiProviderOptions = {
192
192
polling ?: boolean ;
193
- staticNetwork ?: null | Network ;
193
+ staticNetwork ?: null | boolean | Network ;
194
194
batchStallTime ?: number ;
195
195
batchMaxSize ?: number ;
196
196
batchMaxCount ?: number ;
@@ -463,6 +463,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
463
463
} ;
464
464
465
465
#network: null | Network ;
466
+ #pendingDetectNetwork: null | Promise < Network > ;
466
467
467
468
#scheduleDrain( ) : void {
468
469
if ( this . #drainTimer) { return ; }
@@ -554,6 +555,7 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
554
555
this . #drainTimer = null ;
555
556
556
557
this . #network = null ;
558
+ this . #pendingDetectNetwork = null ;
557
559
558
560
{
559
561
let resolve : null | ( ( value : void ) => void ) = null ;
@@ -563,9 +565,15 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
563
565
this . #notReady = { promise, resolve } ;
564
566
}
565
567
566
- // Make sure any static network is compatbile with the provided netwrok
567
568
const staticNetwork = this . _getOption ( "staticNetwork" ) ;
568
- if ( staticNetwork ) {
569
+ if ( typeof ( staticNetwork ) === "boolean" ) {
570
+ assertArgument ( ! staticNetwork || network !== "any" , "staticNetwork cannot be used on special network 'any'" , "options" , options ) ;
571
+ if ( staticNetwork && network != null ) {
572
+ this . #network = Network . from ( network ) ;
573
+ }
574
+
575
+ } else if ( staticNetwork ) {
576
+ // Make sure any static network is compatbile with the provided netwrok
569
577
assertArgument ( network == null || staticNetwork . matches ( network ) ,
570
578
"staticNetwork MUST match network object" , "options" , options ) ;
571
579
this . #network = staticNetwork ;
@@ -641,36 +649,56 @@ export abstract class JsonRpcApiProvider extends AbstractProvider {
641
649
*/
642
650
async _detectNetwork ( ) : Promise < Network > {
643
651
const network = this . _getOption ( "staticNetwork" ) ;
644
- if ( network ) { return network ; }
652
+ if ( network ) {
653
+ if ( network === true ) {
654
+ if ( this . #network) { return this . #network; }
655
+ } else {
656
+ return network ;
657
+ }
658
+ }
659
+
660
+ if ( this . #pendingDetectNetwork) {
661
+ return await this . #pendingDetectNetwork;
662
+ }
645
663
646
664
// If we are ready, use ``send``, which enabled requests to be batched
647
665
if ( this . ready ) {
648
- return Network . from ( getBigInt ( await this . send ( "eth_chainId" , [ ] ) ) ) ;
666
+ this . #pendingDetectNetwork = ( async ( ) => {
667
+ const result = Network . from ( getBigInt ( await this . send ( "eth_chainId" , [ ] ) ) ) ;
668
+ this . #pendingDetectNetwork = null ;
669
+ return result ;
670
+ } ) ( ) ;
671
+ return await this . #pendingDetectNetwork;
649
672
}
650
673
651
674
// We are not ready yet; use the primitive _send
675
+ this . #pendingDetectNetwork = ( async ( ) => {
676
+ const payload : JsonRpcPayload = {
677
+ id : this . #nextId++ , method : "eth_chainId" , params : [ ] , jsonrpc : "2.0"
678
+ } ;
652
679
653
- const payload : JsonRpcPayload = {
654
- id : this . #nextId++ , method : "eth_chainId" , params : [ ] , jsonrpc : "2.0"
655
- } ;
680
+ this . emit ( "debug" , { action : "sendRpcPayload" , payload } ) ;
656
681
657
- this . emit ( "debug" , { action : "sendRpcPayload" , payload } ) ;
682
+ let result : JsonRpcResult | JsonRpcError ;
683
+ try {
684
+ result = ( await this . _send ( payload ) ) [ 0 ] ;
685
+ this . #pendingDetectNetwork = null ;
686
+ } catch ( error ) {
687
+ this . #pendingDetectNetwork = null ;
688
+ this . emit ( "debug" , { action : "receiveRpcError" , error } ) ;
689
+ throw error ;
690
+ }
658
691
659
- let result : JsonRpcResult | JsonRpcError ;
660
- try {
661
- result = ( await this . _send ( payload ) ) [ 0 ] ;
662
- } catch ( error ) {
663
- this . emit ( "debug" , { action : "receiveRpcError" , error } ) ;
664
- throw error ;
665
- }
692
+ this . emit ( "debug" , { action : "receiveRpcResult" , result } ) ;
666
693
667
- this . emit ( "debug" , { action : "receiveRpcResult" , result } ) ;
694
+ if ( "result" in result ) {
695
+ return Network . from ( getBigInt ( result . result ) ) ;
696
+ }
668
697
669
- if ( "result" in result ) {
670
- return Network . from ( getBigInt ( result . result ) ) ;
671
- }
698
+ throw this . getRpcError ( payload , result ) ;
699
+ } ) ( ) ;
672
700
673
- throw this . getRpcError ( payload , result ) ;
701
+ return await this . #pendingDetectNetwork ;
674
702
}
675
703
676
704
/**
0 commit comments