web3-react
web3-react copied to clipboard
A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
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...
My issue is connecting to WalletConnect. It notified me that. 
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...
No Docs
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...
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)...