Gerhard Steenkamp
Gerhard Steenkamp
Removing Web3-React as a dependency seems like it was a good move. In the console I get the following warning: "Using web3-react connectors is deprecated and may lead to unexpected...
Expected bahavior: We can use user's injected provider for reads & writes once connected. **without** the need for a *readOnlyUrl* inside config. Current behaviour: Now it seems we **must** provide...
Consider the following simple example where I am reading the user's balance: ```typescript const { account, active } = useEthers(); const balance = useEtherBalance(account); {`Balance: ${balance ? formatEther(balance).slice(0, 5) :...