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 5edd4f8 commit 545251dCopy full SHA for 545251d
scripts/deploySBTFactory.ts
@@ -11,8 +11,11 @@ async function main() {
11
console.log('Deploying SBTFactory...')
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}`)
16
await sbtFactoryInstance.deployed()
17
console.log(` - SBTFactory deployed at address:${sbtFactoryInstance.address}`)
18
+ await sbtFactoryInstanceDeployTxn.wait(2)
19
console.log()
20
21
// >>> Verify SBTFactory code >>>
0 commit comments