web3modal
web3modal copied to clipboard
Using web3modal with web3-react
So does it work now? Can we easily use web3modal with web3-react?
I tried doing something like this:
const web3Modal = useWeb3Modal();
const { active, account, library, activate, deactivate } = useWeb3React()
...
const provider = web3Modal.connect();
await activate(provider);
But I get "TypeError: connectors is not iterable"
Is there something we have to do with injectConnectors?
Any help would be greatly appreciated!