Merge pull request #3733 from ethereum/fix_etherscan_1

Misc fix etherscan
pull/3739/head
yann300 2 years ago committed by GitHub
commit f6db76e454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 63
      apps/etherscan/src/app/app.tsx
  2. 2
      apps/etherscan/src/app/types/Receipt.ts
  3. 6
      apps/etherscan/src/app/views/ReceiptsView.tsx
  4. 2
      libs/remix-ui/workspace/src/lib/components/workspace-hamburger-item.tsx

@ -36,6 +36,7 @@ const App = () => {
const [receipts, setReceipts] = useLocalStorage("receipts", []) const [receipts, setReceipts] = useLocalStorage("receipts", [])
const [contracts, setContracts] = useState([] as string[]) const [contracts, setContracts] = useState([] as string[])
const [themeType, setThemeType] = useState("dark" as ThemeType) const [themeType, setThemeType] = useState("dark" as ThemeType)
const timer = useRef(null)
const clientInstanceRef = useRef(clientInstance) const clientInstanceRef = useRef(clientInstance)
clientInstanceRef.current = clientInstance clientInstanceRef.current = clientInstance
@ -80,31 +81,35 @@ const App = () => {
}, []) }, [])
useEffect(() => { useEffect(() => {
if (!clientInstance) { let receiptsNotVerified: Receipt[] = receipts.filter((item: Receipt) => {
return return item.status === "Pending in queue" || item.status === "Max rate limit reached"
}
const receiptsNotVerified: Receipt[] = receipts.filter((item: Receipt) => {
return item.status === "Pending in queue"
}) })
if (receiptsNotVerified.length > 0) { if (receiptsNotVerified.length > 0) {
const timer1 = setInterval(() => { if (timer.current) {
receiptsNotVerified.forEach(async (item) => { clearInterval(timer.current)
if (!clientInstanceRef.current) { timer.current = null
return {} }
} timer.current = setInterval(async () => {
const { network, networkId } = await getNetworkName(clientInstanceRef.current) const { network, networkId } = await getNetworkName(clientInstanceRef.current)
if (network === "vm") { if (!clientInstanceRef.current) {
return {} return
} }
if (network === "vm") {
return
}
let newReceipts = receipts
for (const item of receiptsNotVerified) {
await new Promise(r => setTimeout(r, 500)) // avoid api rate limit exceed.
console.log('checking receipt', item.guid)
const status = await getReceiptStatus( const status = await getReceiptStatus(
item.guid, item.guid,
apiKey, apiKey,
getEtherScanApi(network, networkId) getEtherScanApi(network, networkId)
) )
if (status.result === "Pass - Verified" || status.result === "Already Verified") { if (status.result === "Pass - Verified" || status.result === "Already Verified") {
const newReceipts = receipts.map((currentReceipt: Receipt) => { newReceipts = newReceipts.map((currentReceipt: Receipt) => {
if (currentReceipt.guid === item.guid) { if (currentReceipt.guid === item.guid) {
return { return {
...currentReceipt, ...currentReceipt,
@ -112,20 +117,20 @@ const App = () => {
} }
} }
return currentReceipt return currentReceipt
}) })
}
clearInterval(timer1) }
setReceipts(newReceipts) receiptsNotVerified = newReceipts.filter((item: Receipt) => {
return item.status === "Pending in queue" || item.status === "Max rate limit reached"
return () => {
clearInterval(timer1)
}
}
return {}
}) })
}, 5000) if (timer.current && receiptsNotVerified.length === 0) {
clearInterval(timer.current)
timer.current = null
}
setReceipts(newReceipts)
}, 10000)
} }
}, [receipts, clientInstance, apiKey, setReceipts]) }, [receipts])
return ( return (
<AppContext.Provider <AppContext.Provider
@ -146,4 +151,4 @@ const App = () => {
) )
} }
export default App export default App

@ -1,4 +1,4 @@
export type ReceiptStatus = "Pending in queue" | "Pass - Verified" | "Already Verified" export type ReceiptStatus = "Pending in queue" | "Pass - Verified" | "Already Verified" | "Max rate limit reached"
export interface Receipt { export interface Receipt {
guid: string guid: string

@ -6,6 +6,7 @@ import { Receipt } from "../types"
import { AppContext } from "../AppContext" import { AppContext } from "../AppContext"
import { SubmitButton } from "../components" import { SubmitButton } from "../components"
import { Navigate } from "react-router-dom" import { Navigate } from "react-router-dom"
import { Button } from "react-bootstrap"
interface FormValues { interface FormValues {
receiptGuid: string receiptGuid: string
@ -35,7 +36,7 @@ export const ReceiptsView: React.FC = () => {
) )
setResults({ setResults({
succeed: result.status === '1' ? true : false, succeed: result.status === '1' ? true : false,
message: result.result message: result.result || (result.status === '0' ? 'Verification failed' : result.message)
}) })
} catch (error: any) { } catch (error: any) {
setResults({ setResults({
@ -47,7 +48,7 @@ export const ReceiptsView: React.FC = () => {
return ( return (
<AppContext.Consumer> <AppContext.Consumer>
{({ apiKey, clientInstance, receipts }) => { {({ apiKey, clientInstance, receipts, setReceipts }) => {
if (!apiKey && clientInstance && clientInstance.call) clientInstance.call('notification' as any, 'toast', 'Please add API key to continue') if (!apiKey && clientInstance && clientInstance.call) clientInstance.call('notification' as any, 'toast', 'Please add API key to continue')
return !apiKey ? ( return !apiKey ? (
<Navigate <Navigate
@ -108,6 +109,7 @@ export const ReceiptsView: React.FC = () => {
/> />
<ReceiptsTable receipts={receipts} /> <ReceiptsTable receipts={receipts} />
<Button title="Clear the list of receipt" onClick={() => { setReceipts([]) }} >Clear</Button>
</div> </div>
) )
} }

@ -48,4 +48,4 @@ export function HamburgerMenuItem (props: HamburgerMenuItemProps) {
</Dropdown.Item> </Dropdown.Item>
</> </>
) )
} }
Loading…
Cancel
Save