Skip to content

Commit

Permalink
Merge pull request #869 from oasisprotocol/lw/repeated-add-to-metamask
Browse files Browse the repository at this point in the history
Handle repeated AddToMetaMask clicks
  • Loading branch information
lukaw3d authored Jul 10, 2024
2 parents bbd28da + 55f352e commit 93d7172
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions 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 @@ -33,6 +34,10 @@ const AddToMetaMask = (props: {
blockExplorerUrls: props.be,
},
],
}).then(response => {
// 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 93d7172

Please sign in to comment.