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.
|
const main = async () => {
|
|
await hre.run("verify:verify", {
|
|
address: "0xdaDbc4d96E5b418562d85DdAccBE970d0aca4803"
|
|
})
|
|
};
|
|
|
|
const runMain = async () => {
|
|
try {
|
|
await main();
|
|
process.exit(0);
|
|
} catch (error) {
|
|
console.log(error);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
runMain(); |