Commit 133282d9 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: deploy log

Adds a logline that logs the deployed contract name
and address when doing a deployment. This will give
better visual feedback when doing deployments.
It matches the logline that happens when a deployment
is skipped.
parent 74a63c94
...@@ -53,6 +53,7 @@ export const deploy = async ({ ...@@ -53,6 +53,7 @@ export const deploy = async ({
log: true, log: true,
waitConfirmations: hre.deployConfig.numDeployConfirmations, waitConfirmations: hre.deployConfig.numDeployConfirmations,
}) })
console.log(`Deployed ${name} at ${result.address}`)
} }
// Always wait for the transaction to be mined, just in case. // Always wait for the transaction to be mined, just in case.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment