feat: Deploy to mainnet. Update all addresses

--- don't change below this line ---
ENG-4260 Took 27 minutes


Took 10 seconds
This commit is contained in:
Diana Carvalho
2025-02-27 16:56:46 +00:00
parent 79045e2689
commit 3d65ac8cd9
4 changed files with 17 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ async function main() {
try {
await hre.tenderly.verify({
name: exchange,
address: address,
address: deployedExecutor.address,
});
console.log("Contract verified successfully on Tenderly");
} catch (error) {
@@ -41,7 +41,7 @@ async function main() {
// Verify on Etherscan
try {
await hre.run("verify:verify", {
address: address,
address: deployedExecutor.address,
constructorArguments: args,
});
console.log(`${exchange} verified successfully on Etherscan!`);