disable verify for not supported VM

pull/5370/head
Aniket-Engg 1 year ago committed by Aniket
parent 09f35539ca
commit 219f4e25b7
  1. 5
      apps/etherscan/src/app/views/VerifyView.tsx

@ -41,7 +41,7 @@ export const VerifyView: React.FC<Props> = ({
useEffect(() => { useEffect(() => {
if (client && client.on) { if (client && client.on) {
client.on("blockchain" as any, 'networkStatus', (result) => { client.on("blockchain" as any, 'networkStatus', (result) => {
setNetworkName(`${result.network.name} ${result.network.id !== '-' ? `(Chain id: ${result.network.id})` : ''}`) setNetworkName(`${result.network.name} ${result.network.id !== '-' ? `(Chain id: ${result.network.id})` : '(Not supported)'}`)
}) })
} }
return () => { return () => {
@ -248,7 +248,8 @@ export const VerifyView: React.FC<Props> = ({
!touched.contractName || !touched.contractName ||
!touched.contractAddress || !touched.contractAddress ||
(touched.contractName && errors.contractName) || (touched.contractName && errors.contractName) ||
(touched.contractAddress && errors.contractAddress) (touched.contractAddress && errors.contractAddress) ||
(networkName === 'VM (Not supported)')
? true ? true
: false} : false}
/> />

Loading…
Cancel
Save