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 134f798 commit 8b05682
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function main() {
)) as ContractTransaction
console.log(` - Initializing at transaction with hash:${tx.hash}`)
await tx.wait(1)
console.log(` - Initializing done at transaction with hash:${tx.hash}`)
console.log(` - Initializing done.`)
console.log()

// >>> Verify SBTImplementation code >>>
Expand All @@ -55,17 +55,20 @@ async function main() {
address: sbtImplementation.address,
constructorArguments: [],
})
console.log()

// >>> Verify SBTProxy code >>>
console.log('Verifying SBT proxy contract')
await run(`verify:verify`, {
address: sbtProxyInstance.address,
contract: 'contracts/SBTProxy.sol:SBTProxy',
constructorArguments: [
sbtImplementation.address,
proxyAdmin,
ethers.utils.arrayify('0x'),
],
})
console.log()
}

main()
Expand Down

0 comments on commit 8b05682

Please sign in to comment.