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

I tried to connect with `WalletConnect` but it failed to connect ``` Error on wallet connect Error: WebSocket connection failed for URL: wss://relay.walletconnect.com?auth=eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkaWQ6a2V5Ono2TWtoelhxTXJiYmFVR3U5aENadTdoN0NOZmNZZFdnN3lFWWRYNlVtTFVHOHUzSyIsInN1YiI6Ijg0ZjQwMzc2OTNjMmQ4MWNhMzVmN2E2MWJlMWNmNTUzYzY0OGRmNTczNzc3YzIyM2Q5ODJiYTBjZDQyMzIwMjgiLCJhdWQiOiJ3c3M6Ly9yZWxheS53YWxsZXRjb25uZWN0LmNvbSIsImlhdCI6MTY3MDUwOTk1OSwiZXhwIjoxNjcwNTk2MzU5fQ.R3AYpXN0kOBJRfcVrkbjOgfsd3SaatELuPQPdHgD_lm-6vF_bEzij0eV9k6N9QOZnb-Vg5-gAO9JTZo4tYkOCQ&ua=wc-2%2Fjs-2.1.3%2Fmacos-chrome-107.0.0%2Fbrowser%3Alocalhost%3A3000 at socket.onerror (ws.js?dc4f:99:1) ``` I was able...

I'm new here and my current work around is by adding ``` if (typeof chainId == "string" && !chainId.indexOf("0x")) { chainId = parseInt(chainId); } ```

Hi, when I try to create an instance of ```InjectedConnector```, my applications brokes and get an error in the console. I'm working with React + Ts, and react-router dom. I'm...

How can I use INJECTED package in v8? And when the version gets into stable version? I want to add binance wallet into my dapp using v8.

Hi There! I want to add Trust Wallet, i see the eip1193 is here but seems not working yet, Can anyone explain to us how we can use trust wallet?...

I have use v8 beta for a while, but there is a bug here. Just try these steps: 1. connect network on demo page(https://web3-react-mu.vercel.app/) 2. switch network from one to...

I am getting that error when I refresh the page, do you know the reason ``` vendors~main.chunk.js:49202 Uncaught (in promise) NoMetaMaskError: MetaMask not installed at MetaMask. (vendors~main.chunk.js:49202:35) at Generator.next ()...

Hello everyone, I have been using web3-react for a while on the web and I would like to export it to react-native and I am facing a lot of problems....

`const [web3Network, web3NetworkHooks] = initializeConnector( (actions) => new Network({ actions, urlMap: RPC_PROVIDERS, defaultChainId: 5554 }) );` `export const networkConnection: Connection = { connector: web3Network, hooks: web3NetworkHooks, type: ConnectionType.NETWORK, };` Expected...