Skip to content

Commit 2fcedf7

Browse files
committed
Fix typos
1 parent 95f4a3b commit 2fcedf7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ To deploy to Base Testnet do:
3131

3232
Make 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.

network.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.
5353
interface Tier {
5454
period: bigint;
5555
multiplier: bigint;
5656
};
5757

5858
interface 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
};

scripts/deploy.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)