mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { IAaveProConfiguration, eEthereumNetwork } from '../../helpers/types';
|
|
|
|
import { CommonsConfig } from './commons';
|
|
import {
|
|
strategyUSDC,
|
|
strategyUSDT,
|
|
strategyWBTC,
|
|
strategyWETH,
|
|
} from './reservesConfigs';
|
|
|
|
// ----------------
|
|
// POOL--SPECIFIC PARAMS
|
|
// ----------------
|
|
|
|
export const AaveConfig: IAaveProConfiguration = {
|
|
...CommonsConfig,
|
|
MarketId: 'Aave Pro market',
|
|
ProviderId: 1,
|
|
ReservesConfig: {
|
|
USDC: strategyUSDC,
|
|
USDT: strategyUSDT,
|
|
WBTC: strategyWBTC,
|
|
WETH: strategyWETH,
|
|
},
|
|
ReserveAssets: {
|
|
[eEthereumNetwork.buidlerevm]: {},
|
|
[eEthereumNetwork.hardhat]: {},
|
|
[eEthereumNetwork.coverage]: {},
|
|
[eEthereumNetwork.kovan]: {
|
|
USDC: '0xe22da380ee6B445bb8273C81944ADEB6E8450422',
|
|
USDT: '0x13512979ADE267AB5100878E2e0f485B568328a4',
|
|
WBTC: '0xD1B98B6607330172f1D991521145A22BCe793277',
|
|
WETH: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
|
|
},
|
|
[eEthereumNetwork.ropsten]: {
|
|
USDC: '0x851dEf71f0e6A903375C1e536Bd9ff1684BAD802',
|
|
USDT: '0xB404c51BBC10dcBE948077F18a4B8E553D160084',
|
|
WBTC: '0xa0E54Ab6AA5f0bf1D62EC3526436F3c05b3348A0',
|
|
WETH: '0xc778417e063141139fce010982780140aa0cd5ab',
|
|
},
|
|
[eEthereumNetwork.main]: {
|
|
USDC: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
|
|
USDT: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
|
|
WBTC: '0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599',
|
|
WETH: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
|
|
},
|
|
[eEthereumNetwork.tenderlyMain]: {
|
|
USDC: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
|
|
USDT: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
|
|
WBTC: '0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599',
|
|
WETH: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default AaveConfig;
|