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 545251d commit f7b396cCopy full SHA for f7b396c
scripts/deploySBTFactory.ts
@@ -12,7 +12,9 @@ async function main() {
12
const sbtFactoryFactory = await ethers.getContractFactory('SBTFactory')
13
const sbtFactoryInstance = await sbtFactoryFactory.deploy()
14
const sbtFactoryInstanceDeployTxn = sbtFactoryInstance.deployTransaction
15
- console.log(` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`)
+ console.log(
16
+ ` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`
17
+ )
18
await sbtFactoryInstance.deployed()
19
console.log(` - SBTFactory deployed at address:${sbtFactoryInstance.address}`)
20
await sbtFactoryInstanceDeployTxn.wait(2)
0 commit comments