Skip to content

Commit

Permalink
Differentiate first AddToMetaMask success and repeated clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed Jul 10, 2024
1 parent 325b4ab commit 55f352e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/AddToMetaMask.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const AddToMetaMask = (props: {
if (!window.ethereum?.request) {
return alert('Have you installed MetaMask yet? If not, please do so.\n\nComputer: Once it is installed, you will be able to add the ParaTime to your MetaMask.\n\nPhone: Open the website through your MetaMask Browser to add the ParaTime.')
}
const startTime = Date.now()
window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [
Expand All @@ -34,7 +35,9 @@ const AddToMetaMask = (props: {
},
],
}).then(response => {
if (response === null) alert('Added')
// XXX: A workaround to figure out if the RPC already exists.
const isAutomatedResponse = Date.now() - startTime < 100
if (response === null && isAutomatedResponse) alert(`The ${props.name} RPC already added.`)
})
}}
>
Expand Down

0 comments on commit 55f352e

Please sign in to comment.