diff --git a/ee/components/web3/CryptoSection.tsx b/ee/components/web3/CryptoSection.tsx index 4bac3693..fcd106b3 100644 --- a/ee/components/web3/CryptoSection.tsx +++ b/ee/components/web3/CryptoSection.tsx @@ -53,7 +53,7 @@ const CryptoSection = (props: CryptoSectionProps) => { const verifyWallet = useCallback(async () => { try { if (!window.web3) { - throw new Error("Metamask is not installed"); + throw new Error("MetaMask Chrome extension is not installed"); } const contract = new window.web3.eth.Contract(genericAbi as AbiItem[], props.smartContractAddress);