We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44da68 commit 1adc15dCopy full SHA for 1adc15d
scripts/verify/my-contract.js
@@ -1,8 +1,11 @@
1
const hre = require("hardhat");
2
3
+// to run the script:
4
+// npx hardhat run scripts/verify/my-contract.js --network zkSyncSepoliaTestnet
5
+
6
async function main() {
- const contractAddress = "<YOUR CONTRACT ADDRESS>";
- const constructorArgs = [];
7
+ const contractAddress = "<YOUR CONTRACT ADDRESS>"; // TODO: contract address
8
+ const constructorArgs = []; // TODO: add constructor params here, if any
9
10
console.log("Verifying contract.");
11
await verify(
0 commit comments