mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
235 lines
6.1 KiB
TypeScript
235 lines
6.1 KiB
TypeScript
import { eContractid, IReserveParams} from '../../helpers/types';
|
|
import {
|
|
rateStrategyLpBase,
|
|
rateStrategyStable,
|
|
rateStrategyBaseOne,
|
|
} from './rateStrategies';
|
|
|
|
|
|
export const strategyWETH: IReserveParams = {
|
|
strategy: rateStrategyBaseOne,
|
|
baseLTVAsCollateral: '8000',
|
|
liquidationThreshold: '8250',
|
|
liquidationBonus: '10500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyWBTC: IReserveParams = {
|
|
strategy: rateStrategyBaseOne,
|
|
baseLTVAsCollateral: '7000',
|
|
liquidationThreshold: '7500',
|
|
liquidationBonus: '11000',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '8',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '2000'
|
|
};
|
|
|
|
export const strategyDAI: IReserveParams = {
|
|
strategy: rateStrategyStable,
|
|
baseLTVAsCollateral: '7500',
|
|
liquidationThreshold: '8000',
|
|
liquidationBonus: '10500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyUSDC: IReserveParams = {
|
|
strategy: rateStrategyStable,
|
|
baseLTVAsCollateral: '8000',
|
|
liquidationThreshold: '8500',
|
|
liquidationBonus: '10500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '6',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyUSDT: IReserveParams = {
|
|
strategy: rateStrategyStable,
|
|
baseLTVAsCollateral: '-1',
|
|
liquidationThreshold: '8500',
|
|
liquidationBonus: '10500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '6',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyDAIWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyWBTCWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyAAVEWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '500'
|
|
};
|
|
|
|
export const strategyBATWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyUSDCDAI: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyCRVWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '5000',
|
|
liquidationThreshold: '6000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '500'
|
|
};
|
|
|
|
export const strategyLINKWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyMKRWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyRENWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategySNXWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '4000',
|
|
liquidationThreshold: '6000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '2000'
|
|
};
|
|
|
|
export const strategyUNIWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyUSDCWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1000'
|
|
};
|
|
|
|
export const strategyWBTCUSDC: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '6000',
|
|
liquidationThreshold: '7000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
};
|
|
|
|
export const strategyYFIWETH: IReserveParams = {
|
|
strategy: rateStrategyLpBase,
|
|
baseLTVAsCollateral: '5000',
|
|
liquidationThreshold: '6000',
|
|
liquidationBonus: '11500',
|
|
borrowingEnabled: true,
|
|
stableBorrowRateEnabled: false,
|
|
reserveDecimals: '18',
|
|
aTokenImpl: eContractid.AToken,
|
|
reserveFactor: '1500'
|
|
}; |