File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,13 @@ export async function deployEpochManager(owner: string): Promise<EpochManager> {
71
71
}
72
72
73
73
export async function deployGNS ( owner : string , didRegistry : string ) : Promise < Gns > {
74
- const Gns = await ethers . getContractFactory ( 'Gns ' )
75
- return Gns . deploy ( owner , didRegistry ) as Promise < Gns >
74
+ const GNS = await ethers . getContractFactory ( 'GNS ' )
75
+ return GNS . deploy ( owner , didRegistry ) as Promise < Gns >
76
76
}
77
77
78
78
export async function deployEthereumDIDRegistry ( ) : Promise < EthereumDidRegistry > {
79
- const EthereumDidRegistry = await ethers . getContractFactory ( 'EthereumDidRegistry ' )
80
- return EthereumDidRegistry . deploy ( ) as Promise < EthereumDidRegistry >
79
+ const EthereumDIDRegistry = await ethers . getContractFactory ( 'EthereumDIDRegistry ' )
80
+ return EthereumDIDRegistry . deploy ( ) as Promise < EthereumDidRegistry >
81
81
}
82
82
83
83
export async function deployServiceRegistry ( ) : Promise < ServiceRegistry > {
You can’t perform that action at this time.
0 commit comments