Skip to content

Commit 60938e3

Browse files
authored
Merge pull request #2 from hyphacoop/improve-ux-fix
Fix QR code bug on ARB token, Improve UX
2 parents 7830922 + df9308a commit 60938e3

File tree

2 files changed

+148
-23
lines changed

2 files changed

+148
-23
lines changed

config.js

+37-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const donationConfigs = {
3939
explorer: 'https://optimistic.etherscan.io/tx/',
4040
chainId: 10
4141
},
42-
ARBI: {
42+
ARB: {
4343
donationWallet: '0xBFCe3465fBEBC928c922362CBCdC32bEF8BCbE41',
4444
tokenContract: '0x912ce59144191c1204e64559fe8253a0e49e6548',
4545
decimals: 18,
@@ -48,3 +48,39 @@ const donationConfigs = {
4848
chainId: 42161
4949
}
5050
}
51+
52+
const networkConfigs = {
53+
1: {
54+
chainId: "0x1",
55+
chainName: "Ethereum Mainnet",
56+
rpcUrls: ["https://mainnet.infura.io"],
57+
nativeCurrency: {
58+
name: "ETH",
59+
symbol: "ETH",
60+
decimals: 18
61+
},
62+
blockExplorerUrls: ["https://etherscan.io"]
63+
},
64+
10: {
65+
chainId: "0xa",
66+
chainName: "Optimism",
67+
rpcUrls: ["https://mainnet.optimism.io"],
68+
nativeCurrency: {
69+
name: "ETH",
70+
symbol: "ETH",
71+
decimals: 18
72+
},
73+
blockExplorerUrls: ["https://optimistic.etherscan.io"]
74+
},
75+
42161: {
76+
chainId: "0xa4b1",
77+
chainName: "Arbitrum One",
78+
rpcUrls: ["https://arb1.arbitrum.io/rpc"],
79+
nativeCurrency: {
80+
name: "ETH",
81+
symbol: "ETH",
82+
decimals: 18
83+
},
84+
blockExplorerUrls: ["https://arbiscan.io"]
85+
}
86+
};

script.js

+111-22
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,118 @@ window.addEventListener('load', () => {
1616
})
1717

1818
connectWalletButton.addEventListener('click', async () => {
19-
if (typeof window.ethereum !== 'undefined') {
20-
try {
21-
// Request account access from MetaMask
22-
await window.ethereum.request({ method: 'eth_requestAccounts' })
23-
// In ethers v6, use BrowserProvider
24-
provider = new ethers.BrowserProvider(window.ethereum)
25-
signer = await provider.getSigner()
26-
userAddress = await signer.getAddress()
27-
statusDiv.innerHTML = `<p>Wallet connected: ${userAddress}</p>`
28-
donateButton.disabled = false
29-
// Optionally change Donate button background to green after connection
30-
donateButton.style.backgroundColor = '#28a745'
31-
} catch (err) {
32-
console.error('Error connecting wallet:', err)
33-
statusDiv.innerHTML = '<p>Error connecting wallet.</p>'
19+
if (connectWalletButton.innerText === 'Connect Wallet') {
20+
if (typeof window.ethereum !== 'undefined') {
21+
try {
22+
// Request account access from MetaMask
23+
await window.ethereum.request({ method: 'eth_requestAccounts' })
24+
// In ethers v6, use BrowserProvider
25+
provider = new ethers.BrowserProvider(window.ethereum)
26+
signer = await provider.getSigner()
27+
userAddress = await signer.getAddress()
28+
statusDiv.innerHTML = `<p>Wallet connected: ${userAddress}</p>`
29+
donateButton.disabled = false
30+
// Optionally change Donate button background to green after connection
31+
donateButton.style.backgroundColor = '#28a745'
32+
connectWalletButton.innerText = 'Disconnect Wallet'
33+
} catch (err) {
34+
console.error('Error connecting wallet:', err)
35+
statusDiv.innerHTML = '<p>Error connecting wallet.</p>'
36+
}
37+
} else {
38+
statusDiv.innerHTML = '<p>No Ethereum provider found. Please install <a href="https://metamask.io/" target="_blank">MetaMask</a>!</p>'
3439
}
3540
} else {
36-
statusDiv.innerHTML = '<p>No Ethereum provider found. Please install <a href="https://metamask.io/" target="_blank">MetaMask</a>!</p>'
41+
disconnectWallet()
3742
}
3843
})
3944

40-
async function checkNetwork (expectedChainId) {
41-
const network = await provider.getNetwork()
45+
async function addNetwork(chainId) {
46+
const networkDetails = networkConfigs[chainId];
47+
48+
if (!networkDetails) {
49+
console.error(`Network details not found for chainId: ${chainId}`);
50+
statusDiv.innerHTML = `<p>Network details not available. Please add manually .</p>`;
51+
return;
52+
}
53+
54+
try {
55+
await window.ethereum.request({
56+
method: "wallet_addEthereumChain",
57+
params: [networkDetails]
58+
});
59+
statusDiv.innerHTML = "<p>Network added successfully.</p>";
60+
} catch (addError) {
61+
console.error("Error adding network:", addError);
62+
statusDiv.innerHTML = "<p>Error adding network. Please add it manually.</p>";
63+
}
64+
}
65+
66+
async function checkNetwork(expectedChainId) {
67+
let network = await provider.getNetwork();
68+
4269
if (Number(network.chainId) !== Number(expectedChainId)) {
43-
throw new Error(`Please switch your wallet network. Expected chain ID ${expectedChainId}, but connected chain ID is ${network.chainId}. You can add the network via https://chainlist.org/`
44-
)
70+
try {
71+
await window.ethereum.request({
72+
method: "wallet_switchEthereumChain",
73+
params: [{ chainId: `0x${expectedChainId.toString(16)}` }]
74+
});
75+
} catch (switchError) {
76+
if (switchError.code === 4902) {
77+
console.log("Network not found, attempting to add it...");
78+
await addNetwork(expectedChainId);
79+
80+
// Wait for MetaMask to complete the network addition
81+
await new Promise(resolve => setTimeout(resolve, 2000));
82+
83+
// Refresh provider **after adding the network**
84+
provider = new ethers.BrowserProvider(window.ethereum);
85+
signer = await provider.getSigner();
86+
} else {
87+
console.error("Error switching network:", switchError);
88+
statusDiv.innerHTML = "<p>Error switching network. Please switch manually.</p>";
89+
return false;
90+
}
91+
}
92+
93+
// Final verification after any change
94+
await new Promise(resolve => setTimeout(resolve, 1000)); // delay to allow provider update
95+
provider = new ethers.BrowserProvider(window.ethereum);
96+
signer = await provider.getSigner();
97+
network = await provider.getNetwork();
98+
99+
if (Number(network.chainId) !== Number(expectedChainId)) {
100+
console.error("Network switch failed.");
101+
statusDiv.innerHTML = "<p>Error confirming network switch. Please switch manually.</p>";
102+
return false;
103+
}
104+
}
105+
106+
// Final network confirmation message
107+
const networkName = networkConfigs[expectedChainId]?.chainName || `Chain ID ${expectedChainId}`;
108+
console.log(`Switched network successfully to ${networkName}`);
109+
statusDiv.innerHTML = `<p>Network switched successfully to <strong>${networkName}</strong>.</p>`;
110+
111+
112+
return true;
113+
}
114+
115+
async function disconnectWallet() {
116+
try {
117+
await window.ethereum.request({
118+
method: 'eth_requestAccounts',
119+
params: [{ eth_accounts: {} }]
120+
})
121+
provider = null
122+
signer = null
123+
userAddress = null
124+
statusDiv.innerHTML = '<p>Wallet disconnected.</p>'
125+
donateButton.disabled = true
126+
donateButton.style.backgroundColor = ''
127+
connectWalletButton.innerText = 'Connect Wallet'
128+
} catch (err) {
129+
console.error('Error disconnecting wallet:', err)
130+
statusDiv.innerHTML = '<p>Error disconnecting wallet.</p>'
45131
}
46132
}
47133

@@ -63,8 +149,11 @@ donateButton.addEventListener('click', async () => {
63149
}
64150

65151
try {
66-
// Check if the wallet is connected to the expected network
67-
await checkNetwork(config.chainId)
152+
// Ensure we successfully switch networks before sending the transaction
153+
const networkReady = await checkNetwork(config.chainId)
154+
if (!networkReady) {
155+
return
156+
}
68157

69158
let tx
70159
if (config.isNative) {

0 commit comments

Comments
 (0)