fix: Fix Avalanche deployment params

This commit is contained in:
miguelmtzinf 2021-08-24 10:38:24 +02:00
parent 90d51338f4
commit 6d7be2f559
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export const CommonsConfig: ICommonConfiguration = {
ATokenNamePrefix: 'Aave Avalanche Market',
StableDebtTokenNamePrefix: 'Aave Avalanche Market stable debt',
VariableDebtTokenNamePrefix: 'Aave Avalanche Market variable debt',
SymbolPrefix: '', // TODO: add a symbol?
SymbolPrefix: 'ava',
ProviderId: 0, // Overriden in index.ts
OracleQuoteCurrency: 'USD',
OracleQuoteUnit: oneUsd.toString(),

View File

@ -19,7 +19,7 @@ import {
export const AvalancheConfig: IAvalancheConfiguration = {
...CommonsConfig,
MarketId: 'Avalanche market',
ProviderId: 5, // TODO: What is this?
ProviderId: 4,
ReservesConfig: {
WETH: strategyWETH,
DAI: strategyDAI,