@@ -16,32 +16,118 @@ window.addEventListener('load', () => {
16
16
} )
17
17
18
18
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>'
34
39
}
35
40
} else {
36
- statusDiv . innerHTML = '<p>No Ethereum provider found. Please install <a href="https://metamask.io/" target="_blank">MetaMask</a>!</p>'
41
+ disconnectWallet ( )
37
42
}
38
43
} )
39
44
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
+
42
69
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>'
45
131
}
46
132
}
47
133
@@ -63,8 +149,11 @@ donateButton.addEventListener('click', async () => {
63
149
}
64
150
65
151
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
+ }
68
157
69
158
let tx
70
159
if ( config . isNative ) {
0 commit comments