File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ To deploy to Base Testnet do:
3131
3232Make sure to save the output of the deployment. You can use those later in the ` .env ` file to run other scripts on the already deployed system.
3333
34- You could optionally set VERIFY to ` true ` in order to publish the source code after deployemnt to Etherscan.
34+ You could optionally set VERIFY to ` true ` in order to publish the source code after deployment to Etherscan.
Original file line number Diff line number Diff line change @@ -49,14 +49,14 @@ interface AavePoolConfig {
4949// Liquidity mining tiers.
5050// Period is in seconds.
5151// Multiplier will be divided by 1000,000,000. So 1750000000 will result in 1.75x.
52- // There is no limit to the number of tiers, but has to be atleast one.
52+ // There is no limit to the number of tiers, but has to be at least one.
5353interface Tier {
5454 period : bigint ;
5555 multiplier : bigint ;
5656} ;
5757
5858interface HubConfig {
59- AssetsAdjuster : string ; // Address that can increase/decerease LP conversion rate.
59+ AssetsAdjuster : string ; // Address that can increase/decrease LP conversion rate.
6060 AssetsLimit : number ; // Deposits to Liquidity Hub are only allowed till this limit is reached.
6161 Tiers : Tier [ ] ;
6262} ;
Original file line number Diff line number Diff line change @@ -139,7 +139,9 @@ export async function main() {
139139 config . Routes . Domains . push ( network ) ;
140140 config . Routes . Providers . push ( Provider . LOCAL ) ;
141141
142- mainPool = usdcPool ;
142+ if ( ! config . AavePool ) {
143+ mainPool = usdcPool ;
144+ }
143145 }
144146
145147 const rebalancerVersion = config . IsTest ? "TestRebalancer" : "Rebalancer" ;
You can’t perform that action at this time.
0 commit comments