feat: Rename Etherscan in deployment verification

This could also be Basescan. Abstract away to blockchain explorer.
This commit is contained in:
TAMARA LIPOWSKI
2025-03-03 17:14:39 -05:00
parent ceef683202
commit bc54eac110
5 changed files with 9 additions and 10 deletions

View File

@@ -52,9 +52,9 @@ async function main() {
address: router.address,
constructorArguments: [permit2, weth],
});
console.log(`TychoRouter verified successfully on Etherscan!`);
console.log(`TychoRouter verified successfully on blockchain explorer!`);
} catch (error) {
console.error(`Error during Etherscan verification:`, error);
console.error(`Error during blockchain explorer verification:`, error);
}
}