You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
419 B
20 lines
419 B
const main = async () => {
|
|
await hre.run("verify:verify", {
|
|
address: "0x43D5576CF364eAc467Da4644C123C81A34DA1034",
|
|
constructorArguments: [
|
|
"0x069255299Bb729399f3CECaBdc73d15d3D10a2A3"
|
|
]
|
|
})
|
|
};
|
|
|
|
const runMain = async () => {
|
|
try {
|
|
await main();
|
|
process.exit(0);
|
|
} catch (error) {
|
|
console.log(error);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
runMain(); |