MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / main

Function main

kms/auth-eth/scripts/verify.ts:8–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6import { run } from "hardhat";
7
8async function main() {
9 const PROXY_ADDRESS = "0xda1d4bc372FE139d63b85f6160D2F849fFed9c10";
10
11 try {
12 // Verify the proxy contract
13 console.log("\nVerifying proxy contract...");
14 await run("verify:verify", {
15 address: PROXY_ADDRESS,
16 constructorArguments: [],
17 });
18
19 console.log("\nVerification completed successfully!");
20 } catch (error) {
21 console.error("Error during verification:", error);
22 process.exitCode = 1;
23 }
24}
25
26main().catch((error) => {
27 console.error(error);

Callers 1

verify.tsFile · 0.70

Calls 1

runFunction · 0.50

Tested by

no test coverage detected