disable name textfield

pull/3747/head
Aniket-Engg 2 years ago committed by Aniket
parent 9e0604a7e4
commit 6d83611075
  1. 3
      apps/etherscan/src/app/views/VerifyView.tsx

@ -66,7 +66,7 @@ export const VerifyView: React.FC<Props> = ({
const constructorTypes = constructorInputs.map(e => e.type) const constructorTypes = constructorInputs.map(e => e.type)
let contractArguments = web3.eth.abi.encodeParameters(constructorTypes, constructorValues) let contractArguments = web3.eth.abi.encodeParameters(constructorTypes, constructorValues)
contractArguments = contractArguments.replace("0x", "") contractArguments = contractArguments.replace("0x", "")
verificationResult.current = await verify( verificationResult.current = await verify(
apiKey, apiKey,
values.contractAddress, values.contractAddress,
@ -166,6 +166,7 @@ export const VerifyView: React.FC<Props> = ({
key={`contractArgName${index}`} key={`contractArgName${index}`}
name={`contractArgName${index}`} name={`contractArgName${index}`}
value={item.name} value={item.name}
disabled={true}
/> />
<Field <Field
className="form-control m-1" className="form-control m-1"

Loading…
Cancel
Save