File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,8 @@ Trig deployed to 0xd66fe3deD9d8af22Ea507B18cF8C263F505bbacd
18
18
PerlinNoise deployed to 0x86a24be33e709915a630088E64945936F832B477
19
19
VeArtProxy deployed to 0x74086C4Db9A153b23A8E17DB42d92d9932Ec7eF7
20
20
MarshallGovernor deployed to 0xa45c391d8e4b603b62Fc277049C8Fd22C93BC85C
21
+ EmptyPoolFactory deployed to 0x818FAbFCb09D7F506b937f709754A93d40Cb992D
22
+ VotingRewardsFactory deployed to 0x7ed5337943b9B48542E6b9357937A59EfA212AC9
23
+ GaugeFactory deployed to 0x12fb1f55a5D6B4b9d7b4cAf8125006Cd29a5b77A
24
+ FactoryRegistry deployed to 0xc95e698b2d6b4D675C1AC0683BAf2d00E4893ed0
21
25
```
Original file line number Diff line number Diff line change @@ -2,17 +2,23 @@ import { ethers } from 'hardhat';
2
2
3
3
async function main ( ) {
4
4
const poolFactory = await ethers . deployContract ( 'EmptyPoolFactory' , [ ] ) ;
5
+ await poolFactory . waitForDeployment ( ) ;
5
6
console . log ( `EmptyPoolFactory deployed to ${ poolFactory . target } ` ) ;
7
+
6
8
const votingRewardsFactory = await ethers . deployContract ( 'VotingRewardsFactory' , [ ] ) ;
9
+ await votingRewardsFactory . waitForDeployment ( ) ;
7
10
console . log ( `VotingRewardsFactory deployed to ${ votingRewardsFactory . target } ` ) ;
11
+
8
12
const gaugeFactory = await ethers . deployContract ( 'GaugeFactory' , [ ] ) ;
13
+ await gaugeFactory . waitForDeployment ( ) ;
9
14
console . log ( `GaugeFactory deployed to ${ gaugeFactory . target } ` ) ;
10
15
11
16
const factoryRegistry = await ethers . deployContract ( 'FactoryRegistry' , [
12
17
poolFactory . target ,
13
18
votingRewardsFactory . target ,
14
19
gaugeFactory . target
15
20
] ) ;
21
+ await factoryRegistry . waitForDeployment ( ) ;
16
22
console . log ( `FactoryRegistry deployed to ${ factoryRegistry . target } ` ) ;
17
23
}
18
24
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ async function main() {
7
7
}
8
8
9
9
const governor = await ethers . deployContract ( 'MarshallGovernor' , [ process . env . VE ] ) ;
10
+ await governor . waitForDeployment ( ) ;
10
11
console . log ( `MarshallGovernor deployed to ${ governor . target } ` ) ;
11
12
}
12
13
You can’t perform that action at this time.
0 commit comments