Commit 48ad8e52 authored by Moody Salem's avatar Moody Salem

more flexible detection of network

parent b669ec69
import { Web3Provider } from '@ethersproject/providers'
import { MiniRpcProvider } from '../connectors/NetworkConnector'
export default function getLibrary(provider: any): Web3Provider {
// ethers tries to detect the network which fails and is unnecessary with our mini rpc provider if we do not pass the correct network id
if (provider instanceof MiniRpcProvider) {
return new Web3Provider(provider as any, provider.chainId)
}
const library = new Web3Provider(provider, 'any')
// latest ethers version tries to detect the network which fails
const library = new Web3Provider(
provider,
typeof provider.chainId === 'number'
? provider.chainId
: typeof provider.chainId === 'string'
? parseInt(provider.chainId)
: 'any'
)
library.pollingInterval = 15000
return library
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment