diff --git a/scripts/review/verifyDeployment.ts b/scripts/review/verifyDeployment.ts index 3af70e72c..d5efb1793 100644 --- a/scripts/review/verifyDeployment.ts +++ b/scripts/review/verifyDeployment.ts @@ -43,8 +43,12 @@ async function main() { } }; + debug('Parsed options:'); + debug(options); + await fetch(`https://chainlist.org/chain/${options.chainId}`).then((response) => { if (!response.ok) { + debug(response); throw new Error(`chain is not registered on Chainlist`); } });