build errors

pull/4355/head
filip mertens 11 months ago
parent 14ae16f71e
commit 858a2ee11e
  1. 4
      apps/etherscan/src/app/app.tsx
  2. 2
      apps/etherscan/src/app/views/ReceiptsView.tsx
  3. 2
      apps/etherscan/src/app/views/VerifyView.tsx

@ -41,7 +41,7 @@ const App = () => {
contractsRef.current = contracts
useEffect(() => {
plugin.internalEvents.on('etherscan_activated', () => {
plugin.on('solidity', 'compilationFinished', (fileName: string, source: CompilationFileSources, languageVersion: string, data: CompilationResult) => {
const newContractsNames = getNewContractNames(data)
@ -56,7 +56,7 @@ const App = () => {
})
// @ts-ignore
plugin.call('blockchain', 'getCurrentNetworkStatus').then((result: any) => setNetworkName(`${result.network.name} ${result.network.id !== '-' ? `(Chain id: ${result.network.id})` : '(Not supported)'}`))
})
}, [])
useEffect(() => {

@ -96,7 +96,7 @@ export const ReceiptsView = () => {
It's a proxy contract GUID
</label>
</div>
<SubmitButton text="Check" disable={!touched.receiptGuid || (touched.receiptGuid && errors.receiptGuid) ? true : false} />
<SubmitButton dataId={null} text="Check" disable={!touched.receiptGuid || (touched.receiptGuid && errors.receiptGuid) ? true : false} />
</form>
)}
</Formik>

@ -24,7 +24,7 @@ interface FormValues {
expectedImplAddress?: string
}
export const VerifyView ({apiKey, client, contracts, onVerifiedContract, networkName}) => {
export const VerifyView = ({apiKey, client, contracts, onVerifiedContract, networkName}) => {
const [results, setResults] = useState('')
const [selectedContract, setSelectedContract] = useState('')
const [showConstructorArgs, setShowConstructorArgs] = useState(false)

Loading…
Cancel
Save