diff --git a/scripts/2_verify_contracts.js b/scripts/2_verify_contracts.js index 5a3b2aef..ed94e774 100644 --- a/scripts/2_verify_contracts.js +++ b/scripts/2_verify_contracts.js @@ -1,14 +1,24 @@ const { verifyOnExplorer } = require('./utils') async function main () { + const CMTATProxyAdminAddress = '0xFe0D2F86cE8854C1c2081aB9e47D08374afB737F' + const CMTATImplementationAddress = '0xF2753202BA39dD25eA8D6D1D609a9021234943Fc' + + await verifyOnExplorer( + CMTATProxyAdminAddress + ) await verifyOnExplorer( - '0x141a233615117C5F669dB790bC25fC69d0047F08', - [ - '0x45E36B26a2717c131c6F9b2B3720A9241Da1714E', - '0xdb1d9B95D72e5cb4B007C7f23BcAec215e9a6Fc9', - '0x91d0f6ed000000000000000000000000f58ad41f563e6cc1df8218101b3b3be28fa77d61000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5465737420434d544120546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754434d5441543300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54434d5441545f4953494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f636d74612e63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54434d5441545f696e666f000000000000000000000000000000000000000000' - ] + CMTATImplementationAddress ) + + // await verifyOnExplorer( + // '0x141a233615117C5F669dB790bC25fC69d0047F08', + // [ + // '0x45E36B26a2717c131c6F9b2B3720A9241Da1714E', + // '0xdb1d9B95D72e5cb4B007C7f23BcAec215e9a6Fc9', + // '0x91d0f6ed000000000000000000000000f58ad41f563e6cc1df8218101b3b3be28fa77d61000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5465737420434d544120546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754434d5441543300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54434d5441545f4953494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f636d74612e63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b54434d5441545f696e666f000000000000000000000000000000000000000000' + // ] + // ) } main().then(() => process.exit(0))