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 621852a commit 49b5a66Copy full SHA for 49b5a66
deploy/0_deploy.ts
@@ -51,6 +51,8 @@ export default async function deploy() {
51
const network = await ethers.provider.getNetwork();
52
const chainId = network.chainId;
53
const [deployer] = await ethers.getSigners();
54
+ console.log(`Deployer: ${deployer.address}`);
55
+ console.log(`Network: ${network.name} (${chainId})`);
56
const deploymentOptions = config.getChainConfigOrDefault(chainId);
57
// TODO: remove the fallback on deployer address to avoid deployement
58
// misconfiguration.
0 commit comments