Skip to content

Commit

Permalink
fix(wallet): workaround for coinbase wallet / fortmatic
Browse files Browse the repository at this point in the history
  • Loading branch information
moodysalem committed May 6, 2021
1 parent b8f61d5 commit d3898cf
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/utils/getLibrary.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import { Web3Provider } from '@ethersproject/providers'
import { Web3ReactContextInterface } from '@web3-react/core/dist/types'

export default function getLibrary(provider: any): Web3Provider {
export default function getLibrary(
provider: any,
connector?: Required<Web3ReactContextInterface>['connector']
): Web3Provider {
// todo: need to add types to this function and fix the issue with latest version of ethers not able to detect network if we pass in 'any'
const chainId =
provider?.chainId ?? connector?.supportedChainIds?.length === 1 ? connector?.supportedChainIds?.[0] : undefined
// 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'
typeof chainId === 'number' ? chainId : typeof chainId === 'string' ? parseInt(chainId) : 'any'
)
library.pollingInterval = 15000
return library
Expand Down

1 comment on commit d3898cf

@vercel
Copy link

@vercel vercel bot commented on d3898cf May 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.