How to get the current selected account in Metamask?
I've seen things like this as the answer to this..
const accounts = await web3.eth.getAccounts();
const account = accounts[0];
But doesn't this just select the first account? Not the current selected account?