aave-protocol-v2/markets/amm/reservesConfigs.ts

247 lines
6.4 KiB
TypeScript
Raw Normal View History

import { eContractid, IReserveParams} from '../../helpers/types';
import {
rateStrategyAmmBase,
rateStrategyStable,
rateStrategyBaseOne,
} from './rateStrategies';
2020-12-22 23:48:02 +00:00
export const strategyWETH: IReserveParams = {
strategy: rateStrategyBaseOne,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '8000',
liquidationThreshold: '8250',
liquidationBonus: '10500',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
reserveFactor: '1000'
};
export const strategyWBTC: IReserveParams = {
strategy: rateStrategyBaseOne,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '7000',
liquidationThreshold: '7500',
liquidationBonus: '11000',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '8',
aTokenImpl: eContractid.AToken,
reserveFactor: '2000'
};
export const strategyDAI: IReserveParams = {
strategy: rateStrategyStable,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '7500',
liquidationThreshold: '8000',
liquidationBonus: '10500',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
reserveFactor: '1000'
};
export const strategyUSDC: IReserveParams = {
strategy: rateStrategyStable,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '8000',
liquidationThreshold: '8500',
liquidationBonus: '10500',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '6',
aTokenImpl: eContractid.AToken,
reserveFactor: '1000'
};
export const strategyUSDT: IReserveParams = {
strategy: rateStrategyStable,
baseLTVAsCollateral: '-1',
2020-12-22 23:48:02 +00:00
liquidationThreshold: '8500',
liquidationBonus: '10500',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '6',
aTokenImpl: eContractid.AToken,
reserveFactor: '1000'
};
2021-01-20 01:58:21 +00:00
export const strategyDAIWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
reserveFactor: '1000'
2021-01-20 01:58:21 +00:00
};
export const strategyWBTCWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyAAVEWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '500'
2021-01-20 01:58:21 +00:00
};
export const strategyBATWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyDAIUSDC: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1000'
2021-01-20 01:58:21 +00:00
};
export const strategyCRVWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '5000',
2021-01-20 01:58:21 +00:00
liquidationThreshold: '6000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyLINKWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2020-12-22 23:48:02 +00:00
};
2021-01-20 01:58:21 +00:00
export const strategyMKRWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyRENWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategySNXWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '4000',
liquidationThreshold: '6000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '2000'
2021-01-20 01:58:21 +00:00
};
export const strategyUNIWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyUSDCWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1000'
2021-01-20 01:58:21 +00:00
};
export const strategyWBTCUSDC: IReserveParams = {
strategy: rateStrategyAmmBase,
2021-01-20 01:58:21 +00:00
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2021-01-20 01:58:21 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-01-20 01:58:21 +00:00
};
export const strategyYFIWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
2020-12-22 23:48:02 +00:00
baseLTVAsCollateral: '5000',
2021-01-20 01:58:21 +00:00
liquidationThreshold: '6000',
liquidationBonus: '11500',
2021-01-29 03:06:09 +00:00
borrowingEnabled: true,
stableBorrowRateEnabled: false,
2020-12-22 23:48:02 +00:00
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
2021-01-29 03:06:09 +00:00
reserveFactor: '1500'
2021-02-24 22:58:20 +00:00
};
export const strategyBALWETH: IReserveParams = {
strategy: rateStrategyAmmBase,
baseLTVAsCollateral: '6000',
liquidationThreshold: '7000',
2021-02-24 22:58:20 +00:00
liquidationBonus: '11500',
borrowingEnabled: true,
stableBorrowRateEnabled: false,
reserveDecimals: '18',
aTokenImpl: eContractid.AToken,
reserveFactor: '1500'
}