web3-react icon indicating copy to clipboard operation
web3-react copied to clipboard

A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps

Results 213 web3-react issues
Sort by recently updated
recently updated
newest added

When calling the ```connector.activate(...)``` method, if the user cancels the network switch in MetaMask I can see the RPC error in the console, but the error isn't propogated to the...

enhancement

My issue is connecting to WalletConnect. It notified me that. ![image](https://user-images.githubusercontent.com/64793476/172139642-ba46357f-5917-4b2f-980c-54bc6623604b.png)

I have an app wrapped in ``: ```javascript // App.js import ethers from 'ethers'; import { useEffect } from 'react'; import { Web3ReactProvider } from '@web3-react/core'; import { hooks, metaMask...

@NoahZinsmeister - We're actively using web3-react in our project and would like to continue to use it. It looks like there are lots of other projects which rely on web3-react...

discussion

Hi, please add some docs. Like, how do I connect to a smart contract?? 🤔

This one has caused me major headaches. ``` await activate(connectors.metamask, e => console.error('Metamask activation error:', e)) ``` I added the `onError` handler in good faith to have the errors printed...

Im seeing this error on walletconnect-connector 6.2.13 , any insight would be appreciated: /src/components/WalletModal/index.tsx(184,89): Property 'wc' does not exist on type 'WalletConnectProvider'. TS2339 182 | 183 | // if the...

v6

https://github.com/NoahZinsmeister/web3-react/blob/main/packages/example-next/components/connectorCards/MetaMaskCard.tsx ```tsx // attempt to connect eagerly on mount useEffect(() => { // void metaMask.connectEagerly() }, []) ``` it looks to be only an issue with MetaMask - where if...

Has anyone got the working sample of how to properly `activate` connection on mobile browser using deep link? ``` async function connect() { try { await activate(injected); } catch (ex)...