File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ async function main() {
46
46
) ) as ContractTransaction
47
47
console . log ( ` - Initializing at transaction with hash:${ tx . hash } ` )
48
48
await tx . wait ( 1 )
49
- console . log ( ` - Initializing done at transaction with hash: ${ tx . hash } ` )
49
+ console . log ( ` - Initializing done. ` )
50
50
console . log ( )
51
51
52
52
// >>> Verify SBTImplementation code >>>
@@ -55,17 +55,20 @@ async function main() {
55
55
address : sbtImplementation . address ,
56
56
constructorArguments : [ ] ,
57
57
} )
58
+ console . log ( )
58
59
59
60
// >>> Verify SBTProxy code >>>
60
61
console . log ( 'Verifying SBT proxy contract' )
61
62
await run ( `verify:verify` , {
62
63
address : sbtProxyInstance . address ,
64
+ contract : 'contracts/SBTProxy.sol:SBTProxy' ,
63
65
constructorArguments : [
64
66
sbtImplementation . address ,
65
67
proxyAdmin ,
66
68
ethers . utils . arrayify ( '0x' ) ,
67
69
] ,
68
70
} )
71
+ console . log ( )
69
72
}
70
73
71
74
main ( )
You can’t perform that action at this time.
0 commit comments