Skip to content

Commit 545251d

Browse files
author
Yash Agrawal
committed
feat: minor fixes
1 parent 5edd4f8 commit 545251d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/deploySBTFactory.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ async function main() {
1111
console.log('Deploying SBTFactory...')
1212
const sbtFactoryFactory = await ethers.getContractFactory('SBTFactory')
1313
const sbtFactoryInstance = await sbtFactoryFactory.deploy()
14+
const sbtFactoryInstanceDeployTxn = sbtFactoryInstance.deployTransaction
15+
console.log(` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`)
1416
await sbtFactoryInstance.deployed()
1517
console.log(` - SBTFactory deployed at address:${sbtFactoryInstance.address}`)
18+
await sbtFactoryInstanceDeployTxn.wait(2)
1619
console.log()
1720

1821
// >>> Verify SBTFactory code >>>

0 commit comments

Comments
 (0)