mrrohit1

Results 2 issues of mrrohit1

``` fun getGlobalFetchInstance(context : Context?) : Fetch?{ return context?.let { FetchConfiguration.Builder(it) .setDownloadConcurrentLimit(2) .enableFileExistChecks(true) .enableHashCheck(true) .enableRetryOnNetworkGain(true) .setInternetAccessUrlCheck("https://www.google.com") .setAutoRetryMaxAttempts(3) .setGlobalNetworkType(NetworkType.ALL) .setHttpDownloader(OkHttpDownloader(OkHttpClient.Builder().build())) .build() }?.let { Fetch.getInstance(it) } } ``` I am using above...

### Link to minimal reproducible example https://appkit-lab.reown.com/library/multichain-ethers-solana/ ### Summary When using multichain with MetaMask or Phantom, if the network in the wallet differs from the one selected in AppKit, instead...

bug
needs review