| 6 | import { run } from "hardhat"; |
| 7 | |
| 8 | async function main() { |
| 9 | const PROXY_ADDRESS = "0xda1d4bc372FE139d63b85f6160D2F849fFed9c10"; |
| 10 | |
| 11 | try { |
| 12 | // Verify the proxy contract |
| 13 | console.log("\nVerifying proxy contract..."); |
| 14 | await run("verify:verify", { |
| 15 | address: PROXY_ADDRESS, |
| 16 | constructorArguments: [], |
| 17 | }); |
| 18 | |
| 19 | console.log("\nVerification completed successfully!"); |
| 20 | } catch (error) { |
| 21 | console.error("Error during verification:", error); |
| 22 | process.exitCode = 1; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | main().catch((error) => { |
| 27 | console.error(error); |