File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export const BULL_STRATEGY: Address = {
186
186
export const BULL_NETTING : Address = {
187
187
1 : '' ,
188
188
3 : '' ,
189
- 5 : '0x4a26C9EEf4d3487AACf40C5815b88EC88a5E885A ' ,
189
+ 5 : '0x9b6e3F5aeed72eC7C42097BC324DF43baac08645 ' ,
190
190
421611 : '' ,
191
191
31337 : '' ,
192
192
}
Original file line number Diff line number Diff line change
1
+ // SPDX-License-Identifier: UNLICENSED
2
+ pragma solidity ^ 0.8.13 ;
3
+
4
+ import { DeployScript } from "./DeployScript.s.sol " ;
5
+
6
+ contract GoerliDeployScript is DeployScript {
7
+ address public constant ownerAddress = 0x56a847c21a4FA937c11258d94C8B1650cdbA21F7 ;
8
+ address public constant zenBullAddress = 0x2a5AD7582a9e42944Ee32671436593D16999c70a ;
9
+ address public constant eulerSimpleLensAddress = 0x62626a0f051B547b3182e55D1Eba667138790D8D ;
10
+ address public constant flashZenAddress = 0x3876aF971560FD4c4ba3FB18632AcC0570B745b1 ;
11
+ address public constant uniFactoryAddress = 0x55C0ceF3cc64F511C34b18c720bCf38feC6C6fFa ;
12
+
13
+ uint256 public constant initialMinEthAmount = 1e18 ;
14
+ uint256 public constant initialMinZenBullAmount = 1 ;
15
+
16
+ constructor ()
17
+ DeployScript (
18
+ ownerAddress,
19
+ zenBullAddress,
20
+ eulerSimpleLensAddress,
21
+ flashZenAddress,
22
+ uniFactoryAddress,
23
+ initialMinEthAmount,
24
+ initialMinZenBullAmount
25
+ )
26
+ { }
27
+ }
You can’t perform that action at this time.
0 commit comments