我无法断开与元掩码帐户的连接。我附上代码片段。
export const logoutUser = () => {
if (window.ethereum && window.ethereum.isMetaMask) {
window.ethereum.on('accountsChanged', function (accounts) {
return () => window.ethereum.removeListener('accountsChanged', accounts);
});
}
}