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> {
7171}
7272
7373export 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 >
7676}
7777
7878export 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 >
8181}
8282
8383export async function deployServiceRegistry ( ) : Promise < ServiceRegistry > {
You can’t perform that action at this time.
0 commit comments