From 953eda50142c7e9d513e1c6af37d65e1963db1d3 Mon Sep 17 00:00:00 2001 From: Duncan Townsend Date: Wed, 18 Dec 2024 17:37:49 -0500 Subject: [PATCH] Typo --- sh/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/common.sh b/sh/common.sh index fa2f5922..2361d016 100644 --- a/sh/common.sh +++ b/sh/common.sh @@ -92,7 +92,7 @@ function verify_contract { else forge verify-contract --watch --chain $chainid --verifier custom --verifier-api-key "$(get_api_secret etherscanKey)" --verifier-url "$(get_config etherscanApi)" --constructor-args "$_verify_constructor_args" "$_verify_deployed_address" "$_verify_source_path" fi - if (( chainid != 146 )) && (( chainid != 480 )) && (( chainid == 57073 )) && (( chainid != 81457 )) && (( chainid != 167000 )); then # Sourcify doesn't support Sonic, World Chain, Blast, Taiko, or Ink + if (( chainid != 146 )) && (( chainid != 480 )) && (( chainid != 57073 )) && (( chainid != 81457 )) && (( chainid != 167000 )); then # Sourcify doesn't support Sonic, World Chain, Blast, Taiko, or Ink forge verify-contract --watch --chain $chainid --verifier sourcify --constructor-args "$_verify_constructor_args" "$_verify_deployed_address" "$_verify_source_path" fi }