Skip to content

Commit

Permalink
don't check verification status on zora
Browse files Browse the repository at this point in the history
  • Loading branch information
arr00 committed Dec 5, 2023
1 parent 7bc1d68 commit 07d5a33
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utils/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,9 @@ export const verify = async (chain: string, skip: boolean) => {
}

if (verificationResults.length > 0) {
if (chain === "zora") {
return; // current explorer not compatible with `verify-check`
}
const timeToWait = Math.max(20 * verificationResults.length, 20);

console.log();
Expand Down

0 comments on commit 07d5a33

Please sign in to comment.