Skip to content

Commit

Permalink
don't verify on masa and masatest networks
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Apr 9, 2024
1 parent 8a86335 commit 0681119
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deploy/SoulboundIdentity.ts
Expand Up @@ -50,7 +50,11 @@ const func: DeployFunction = async ({
});

// verify contract with etherscan, if its not a local network or celo
if (network.name !== "hardhat") {
if (
network.name !== "hardhat" &&
network.name !== "masa" &&
network.name !== "masatest"
) {
try {
await run("verify:verify", {
address: soulboundIdentityDeploymentResult.address,
Expand Down

0 comments on commit 0681119

Please sign in to comment.