Skip to content

Commit 8b05682

Browse files
author
Yash Agrawal
committed
feat: minor fixes
1 parent 134f798 commit 8b05682

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/deploy.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function main() {
4646
)) as ContractTransaction
4747
console.log(` - Initializing at transaction with hash:${tx.hash}`)
4848
await tx.wait(1)
49-
console.log(` - Initializing done at transaction with hash:${tx.hash}`)
49+
console.log(` - Initializing done.`)
5050
console.log()
5151

5252
// >>> Verify SBTImplementation code >>>
@@ -55,17 +55,20 @@ async function main() {
5555
address: sbtImplementation.address,
5656
constructorArguments: [],
5757
})
58+
console.log()
5859

5960
// >>> Verify SBTProxy code >>>
6061
console.log('Verifying SBT proxy contract')
6162
await run(`verify:verify`, {
6263
address: sbtProxyInstance.address,
64+
contract: 'contracts/SBTProxy.sol:SBTProxy',
6365
constructorArguments: [
6466
sbtImplementation.address,
6567
proxyAdmin,
6668
ethers.utils.arrayify('0x'),
6769
],
6870
})
71+
console.log()
6972
}
7073

7174
main()

0 commit comments

Comments
 (0)