Skip to content

Commit 1adc15d

Browse files
committed
comments
1 parent c44da68 commit 1adc15d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

scripts/verify/my-contract.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
const hre = require("hardhat");
22

3+
// to run the script:
4+
// npx hardhat run scripts/verify/my-contract.js --network zkSyncSepoliaTestnet
5+
36
async function main() {
4-
const contractAddress = "<YOUR CONTRACT ADDRESS>";
5-
const constructorArgs = [];
7+
const contractAddress = "<YOUR CONTRACT ADDRESS>"; // TODO: contract address
8+
const constructorArgs = []; // TODO: add constructor params here, if any
69

710
console.log("Verifying contract.");
811
await verify(

0 commit comments

Comments
 (0)