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 39c9b63 commit 9400b26Copy full SHA for 9400b26
contract_manager/scripts/common.ts
@@ -22,7 +22,7 @@ export interface BaseDeployConfig {
22
// Deploys a contract if it was not deployed before.
23
// It will check for the past deployments in file `cacheFile` against a key
24
// If `cacheKey` is provided it will be used as the key, else it will use
25
-// a - `${chain.getId()}-${artifactName}`
+// a key of the form `${chain.getId()}-${artifactName}`
26
export async function deployIfNotCached(
27
cacheFile: string,
28
chain: EvmChain,
@@ -56,6 +56,7 @@ export async function deployIfNotCached(
56
bytecode = `0x${bytecode}`;
57
}
58
59
+ console.log("deploying", artifactName, "on", chain.getId());
60
const addr = await chain.deploy(
61
config.privateKey,
62
artifact["abi"],
0 commit comments