Skip to content

Commit

Permalink
feat: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yashdesu committed Mar 26, 2024
1 parent 5edd4f8 commit 545251d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/deploySBTFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ async function main() {
console.log('Deploying SBTFactory...')
const sbtFactoryFactory = await ethers.getContractFactory('SBTFactory')
const sbtFactoryInstance = await sbtFactoryFactory.deploy()
const sbtFactoryInstanceDeployTxn = sbtFactoryInstance.deployTransaction
console.log(` - SBTFactory deploying at txn:${sbtFactoryInstanceDeployTxn.hash}`)
await sbtFactoryInstance.deployed()
console.log(` - SBTFactory deployed at address:${sbtFactoryInstance.address}`)
await sbtFactoryInstanceDeployTxn.wait(2)
console.log()

// >>> Verify SBTFactory code >>>
Expand Down

0 comments on commit 545251d

Please sign in to comment.