2020-08-24 14:18:10 +00:00
|
|
|
import BigNumber from 'bignumber.js';
|
2020-11-04 19:51:45 +00:00
|
|
|
import {zeroPad} from 'ethers/lib/utils';
|
2020-11-04 10:47:06 +00:00
|
|
|
import {oneEther, oneRay, RAY, ZERO_ADDRESS} from '../helpers/constants';
|
2020-09-15 15:24:50 +00:00
|
|
|
import {ICommonConfiguration, EthereumNetwork, eEthereumNetwork} from '../helpers/types';
|
2020-08-24 14:18:10 +00:00
|
|
|
|
|
|
|
const MOCK_CHAINLINK_AGGREGATORS_PRICES = {
|
2020-11-02 11:37:57 +00:00
|
|
|
AAVE: oneEther.multipliedBy('0.003620948469').toFixed(),
|
2020-08-24 14:18:10 +00:00
|
|
|
BAT: oneEther.multipliedBy('0.00137893825230').toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
BUSD: oneEther.multipliedBy('0.00736484').toFixed(),
|
|
|
|
DAI: oneEther.multipliedBy('0.00369068412860').toFixed(),
|
|
|
|
ENJ: oneEther.multipliedBy('0.00029560').toFixed(),
|
2020-08-24 14:18:10 +00:00
|
|
|
KNC: oneEther.multipliedBy('0.001072').toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
LINK: oneEther.multipliedBy('0.009955').toFixed(),
|
2020-08-24 14:18:10 +00:00
|
|
|
MANA: oneEther.multipliedBy('0.000158').toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
MKR: oneEther.multipliedBy('2.508581').toFixed(),
|
|
|
|
REN: oneEther.multipliedBy('0.00065133').toFixed(),
|
|
|
|
REP: oneEther.multipliedBy('0.048235').toFixed(),
|
2020-08-24 14:18:10 +00:00
|
|
|
SNX: oneEther.multipliedBy('0.00442616').toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
SUSD: oneEther.multipliedBy('0.00364714136416').toFixed(),
|
|
|
|
TUSD: oneEther.multipliedBy('0.00364714136416').toFixed(),
|
|
|
|
UNI: oneEther.multipliedBy('0.00536479').toFixed(),
|
|
|
|
USDC: oneEther.multipliedBy('0.00367714136416').toFixed(),
|
|
|
|
USDT: oneEther.multipliedBy('0.00369068412860').toFixed(),
|
2020-08-24 14:18:10 +00:00
|
|
|
WETH: oneEther.toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
WBTC: oneEther.multipliedBy('47.332685').toFixed(),
|
2020-11-04 10:47:06 +00:00
|
|
|
YFI: oneEther.multipliedBy('22.407436').toFixed(),
|
2020-11-06 10:20:48 +00:00
|
|
|
ZRX: oneEther.multipliedBy('0.001151').toFixed(),
|
|
|
|
USD: '5848466240000000',
|
2020-08-24 14:18:10 +00:00
|
|
|
UNI_DAI_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
|
|
|
UNI_USDC_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
|
|
|
UNI_SETH_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
|
|
|
UNI_LEND_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
|
|
|
UNI_LINK_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
|
|
|
UNI_MKR_ETH: oneEther.multipliedBy('2.1').toFixed(),
|
2020-08-24 08:29:54 +00:00
|
|
|
};
|
2020-08-24 14:18:10 +00:00
|
|
|
// ----------------
|
|
|
|
// PROTOCOL GLOBAL PARAMS
|
|
|
|
// ----------------
|
|
|
|
|
2020-08-25 15:15:27 +00:00
|
|
|
export const CommonsConfig: ICommonConfiguration = {
|
2020-08-25 12:15:35 +00:00
|
|
|
ConfigName: 'Commons',
|
|
|
|
ProviderId: 0,
|
2020-08-24 14:18:10 +00:00
|
|
|
ProtocolGlobalParams: {
|
|
|
|
OptimalUtilizationRate: new BigNumber(0.8).times(RAY),
|
|
|
|
ExcessUtilizationRate: new BigNumber(0.2).times(RAY),
|
|
|
|
ApprovalAmountLendingPoolCore: '1000000000000000000000000000',
|
|
|
|
TokenDistributorPercentageBase: '10000',
|
|
|
|
MockUsdPriceInWei: '5848466240000000',
|
|
|
|
EthereumAddress: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE',
|
|
|
|
UsdAddress: '0x10F7Fc1F91Ba351f9C629c5947AD69bD03C05b96',
|
|
|
|
NilAddress: '0x0000000000000000000000000000000000000000',
|
|
|
|
OneAddress: '0x0000000000000000000000000000000000000001',
|
|
|
|
AaveReferral: '0',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------
|
|
|
|
// COMMON PROTOCOL PARAMS ACROSS POOLS AND NETWORKS
|
|
|
|
// ----------------
|
|
|
|
|
|
|
|
Mocks: {
|
|
|
|
ChainlinkAggregatorPrices: {
|
|
|
|
...MOCK_CHAINLINK_AGGREGATORS_PRICES,
|
|
|
|
},
|
|
|
|
AllAssetsInitialPrices: {
|
|
|
|
...MOCK_CHAINLINK_AGGREGATORS_PRICES,
|
|
|
|
},
|
|
|
|
},
|
2020-11-09 09:05:03 +00:00
|
|
|
// TODO: reorg alphabetically, checking the reason of tests failing
|
2020-08-24 14:18:10 +00:00
|
|
|
LendingRateOracleRatesCommon: {
|
|
|
|
WETH: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
DAI: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.039).toFixed(),
|
|
|
|
},
|
|
|
|
TUSD: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.035).toFixed(),
|
|
|
|
},
|
|
|
|
USDC: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.039).toFixed(),
|
|
|
|
},
|
|
|
|
SUSD: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.035).toFixed(),
|
|
|
|
},
|
|
|
|
USDT: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.035).toFixed(),
|
|
|
|
},
|
|
|
|
BAT: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
2020-11-02 11:37:57 +00:00
|
|
|
AAVE: {
|
2020-08-24 14:18:10 +00:00
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
LINK: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
KNC: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
REP: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
MKR: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
MANA: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
WBTC: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
ZRX: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
SNX: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
2020-11-04 10:47:06 +00:00
|
|
|
YFI: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
REN: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
|
|
|
UNI: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.03).toFixed(),
|
|
|
|
},
|
2020-08-24 14:18:10 +00:00
|
|
|
BUSD: {
|
|
|
|
borrowRate: oneRay.multipliedBy(0.05).toFixed(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// ----------------
|
|
|
|
// COMMON PROTOCOL ADDRESSES ACROSS POOLS
|
|
|
|
// ----------------
|
|
|
|
|
2020-11-05 11:35:50 +00:00
|
|
|
// If PoolAdmin/emergencyAdmin is set, will take priority over PoolAdminIndex/emergencyAdminIndex
|
|
|
|
PoolAdmin: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: undefined,
|
|
|
|
[eEthereumNetwork.buidlerevm]: undefined,
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.coverage]: undefined,
|
|
|
|
[eEthereumNetwork.hardhat]: undefined,
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.kovan]: undefined,
|
|
|
|
[eEthereumNetwork.ropsten]: undefined,
|
|
|
|
[eEthereumNetwork.main]: undefined,
|
2020-08-26 10:38:52 +00:00
|
|
|
},
|
2020-11-05 11:35:50 +00:00
|
|
|
PoolAdminIndex: 0,
|
|
|
|
EmergencyAdmin: {
|
2020-11-05 15:15:52 +00:00
|
|
|
[eEthereumNetwork.hardhat]: undefined,
|
2020-11-05 11:35:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: undefined,
|
|
|
|
[eEthereumNetwork.buidlerevm]: undefined,
|
|
|
|
[eEthereumNetwork.kovan]: undefined,
|
|
|
|
[eEthereumNetwork.ropsten]: undefined,
|
|
|
|
[eEthereumNetwork.main]: undefined,
|
|
|
|
},
|
|
|
|
EmergencyAdminIndex: 1,
|
2020-08-24 14:18:10 +00:00
|
|
|
ProviderRegistry: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.kovan]: '',
|
|
|
|
[eEthereumNetwork.ropsten]: '',
|
|
|
|
[eEthereumNetwork.main]: '',
|
|
|
|
[eEthereumNetwork.coverage]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-08-24 14:18:10 +00:00
|
|
|
},
|
|
|
|
LendingRateOracle: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-11-06 14:19:09 +00:00
|
|
|
[eEthereumNetwork.kovan]: '0xdCde9Bb6a49e37fA433990832AB541AE2d4FEB4a',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.ropsten]: '0x05dcca805a6562c1bdd0423768754acb6993241b',
|
|
|
|
[eEthereumNetwork.main]: '0x4d728a4496e4de35f218d5a214366bde3a62b51c',
|
2020-08-24 14:18:10 +00:00
|
|
|
},
|
|
|
|
TokenDistributor: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: '',
|
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-08-24 14:18:10 +00:00
|
|
|
[EthereumNetwork.kovan]: '0x971efe90088f21dc6a36f610ffed77fc19710708',
|
|
|
|
[EthereumNetwork.ropsten]: '0xeba2ea67942b8250d870b12750b594696d02fc9c',
|
|
|
|
[EthereumNetwork.main]: '0xe3d9988f676457123c5fd01297605efdd0cba1ae',
|
|
|
|
},
|
|
|
|
ChainlinkProxyPriceProvider: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-08-24 14:18:10 +00:00
|
|
|
[EthereumNetwork.kovan]: '0x276C4793F2EE3D5Bf18C5b879529dD4270BA4814',
|
|
|
|
[EthereumNetwork.ropsten]: '0x657372A559c30d236F011239fF9fbB6D76718271',
|
|
|
|
[EthereumNetwork.main]: '0x76B47460d7F7c5222cFb6b6A75615ab10895DDe4',
|
|
|
|
},
|
|
|
|
FallbackOracle: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-08-24 14:18:10 +00:00
|
|
|
[EthereumNetwork.kovan]: '0x50913E8E1c650E790F8a1E741FF9B1B1bB251dfe',
|
|
|
|
[EthereumNetwork.ropsten]: '0xAD1a978cdbb8175b2eaeC47B01404f8AEC5f4F0d',
|
|
|
|
[EthereumNetwork.main]: '0xf67a8b0e3e0ee303422f78b4c5b8da60df80a59c',
|
|
|
|
},
|
|
|
|
ChainlinkAggregator: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: {},
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: {},
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: {},
|
2020-08-24 14:18:10 +00:00
|
|
|
[EthereumNetwork.kovan]: {
|
2020-11-02 11:37:57 +00:00
|
|
|
AAVE: '0xd04647B7CB523bb9f26730E9B6dE1174db7591Ad',
|
2020-11-06 10:20:48 +00:00
|
|
|
BAT: '0x0e4fcEC26c9f85c3D714370c98f43C4E02Fc35Ae',
|
|
|
|
BUSD: '0xbF7A18ea5DE0501f7559144e702b29c55b055CcB',
|
|
|
|
DAI: '0x22B58f1EbEDfCA50feF632bD73368b2FdA96D541',
|
|
|
|
ENJ: '0xfaDbe2ee798889F02d1d39eDaD98Eff4c7fe95D4',
|
|
|
|
KNC: '0xb8E8130d244CFd13a75D6B9Aee029B1C33c808A7',
|
|
|
|
LINK: '0x3Af8C569ab77af5230596Acf0E8c2F9351d24C38',
|
|
|
|
MANA: '0x1b93D8E109cfeDcBb3Cc74eD761DE286d5771511',
|
|
|
|
MKR: '0x0B156192e04bAD92B6C1C13cf8739d14D78D5701',
|
2020-11-05 14:54:45 +00:00
|
|
|
REN: '0xF1939BECE7708382b5fb5e559f630CB8B39a10ee',
|
2020-11-06 10:20:48 +00:00
|
|
|
REP: '0x3A7e6117F2979EFf81855de32819FBba48a63e9e',
|
|
|
|
SNX: '0xF9A76ae7a1075Fe7d646b06fF05Bd48b9FA5582e',
|
|
|
|
SUSD: '0xb343e7a1aF578FA35632435243D814e7497622f7',
|
|
|
|
TUSD: '0x7aeCF1c19661d12E962b69eBC8f6b2E63a55C660',
|
2020-11-05 14:54:45 +00:00
|
|
|
UNI: '0x17756515f112429471F86f98D5052aCB6C47f6ee',
|
2020-11-06 10:20:48 +00:00
|
|
|
USDC: '0x64EaC61A2DFda2c3Fa04eED49AA33D021AeC8838',
|
|
|
|
USDT: '0x0bF499444525a23E7Bb61997539725cA2e928138',
|
|
|
|
WBTC: '0xF7904a295A029a3aBDFFB6F12755974a958C7C25',
|
|
|
|
YFI: '0xC5d1B1DEb2992738C0273408ac43e1e906086B6C',
|
|
|
|
ZRX: '0xBc3f28Ccc21E9b5856E81E6372aFf57307E2E883',
|
|
|
|
USD: '0x9326BFA02ADD2366b30bacB125260Af641031331',
|
2020-08-24 14:18:10 +00:00
|
|
|
UNI_DAI_ETH: '0x0338C40020Bf886c11406115fD1ba205Ef1D9Ff9',
|
|
|
|
UNI_LEND_ETH: '0xB996b1a11BA0aACc4deA57f7f92d1722428f2E90',
|
|
|
|
UNI_LINK_ETH: '0x267490eE9Ad21dfE839aE73A8B1c8C9A36F60d33',
|
|
|
|
UNI_MKR_ETH: '0x6eBF25AB0A18B8F6243619f1AE6b94373169A069',
|
2020-11-09 09:05:03 +00:00
|
|
|
UNI_SETH_ETH: '0xc5F1eA001c1570783b3af418fa775237Eb129EDC',
|
|
|
|
UNI_USDC_ETH: '0x7f5E5D34591e9a70D187BBA94260C30B92aC0961',
|
2020-08-24 14:18:10 +00:00
|
|
|
},
|
|
|
|
[EthereumNetwork.ropsten]: {
|
2020-11-09 09:05:03 +00:00
|
|
|
AAVE: ZERO_ADDRESS,
|
|
|
|
BAT: '0xafd8186c962daf599f171b8600f3e19af7b52c92',
|
|
|
|
BUSD: '0x0A32D96Ff131cd5c3E0E5AAB645BF009Eda61564',
|
2020-08-24 14:18:10 +00:00
|
|
|
DAI: '0x64b8e49baded7bfb2fd5a9235b2440c0ee02971b',
|
2020-11-09 09:05:03 +00:00
|
|
|
ENJ: ZERO_ADDRESS,
|
|
|
|
KNC: '0x19d97ceb36624a31d827032d8216dd2eb15e9845',
|
|
|
|
LINK: '0xb8c99b98913bE2ca4899CdcaF33a3e519C20EeEc',
|
|
|
|
MANA: '0xDab909dedB72573c626481fC98CEE1152b81DEC2',
|
|
|
|
MKR: '0x811B1f727F8F4aE899774B568d2e72916D91F392',
|
|
|
|
REN: ZERO_ADDRESS,
|
|
|
|
REP: '0xa949ee9ba80c0f381481f2eab538bc5547a5ac67',
|
|
|
|
SNX: '0xA95674a8Ed9aa9D2E445eb0024a9aa05ab44f6bf',
|
|
|
|
SUSD: '0xe054b4aee7ac7645642dd52f1c892ff0128c98f0',
|
2020-08-24 14:18:10 +00:00
|
|
|
TUSD: '0x523ac85618df56e940534443125ef16daf785620',
|
2020-11-09 09:05:03 +00:00
|
|
|
UNI: ZERO_ADDRESS,
|
2020-08-24 14:18:10 +00:00
|
|
|
USDC: '0xe1480303dde539e2c241bdc527649f37c9cbef7d',
|
|
|
|
USDT: '0xc08fe0c4d97ccda6b40649c6da621761b628c288',
|
|
|
|
WBTC: '0x5b8B87A0abA4be247e660B0e0143bB30Cdf566AF',
|
2020-11-04 10:47:06 +00:00
|
|
|
YFI: ZERO_ADDRESS,
|
2020-11-09 09:05:03 +00:00
|
|
|
ZRX: '0x1d0052e4ae5b4ae4563cbac50edc3627ca0460d7',
|
2020-08-24 14:18:10 +00:00
|
|
|
UNI_DAI_ETH: '0x16048819e3f77b7112eB033624A0bA9d33743028',
|
|
|
|
UNI_LEND_ETH: '0x43c44B27376Afedee06Bae2A003e979FC3B3Da6C',
|
|
|
|
UNI_LINK_ETH: '0xb60c29714146EA3539261f599Eb30f62904108Fa',
|
|
|
|
UNI_MKR_ETH: '0x594ae5421f378b8B4AF9e758C461d2A1FF990BC5',
|
2020-11-09 09:05:03 +00:00
|
|
|
UNI_SETH_ETH: '0x23Ee5188806BD2D31103368B0EA0259bc6706Af1',
|
|
|
|
UNI_USDC_ETH: '0x6952A2678D574073DB97963886c2F38CD09C8Ba3',
|
|
|
|
USD: '0x8468b2bDCE073A157E560AA4D9CcF6dB1DB98507',
|
2020-08-24 14:18:10 +00:00
|
|
|
},
|
|
|
|
[EthereumNetwork.main]: {
|
2020-11-02 11:37:57 +00:00
|
|
|
AAVE: '0x6Df09E975c830ECae5bd4eD9d90f3A95a4f88012',
|
2020-08-24 14:18:10 +00:00
|
|
|
BAT: '0x9b4e2579895efa2b4765063310Dc4109a7641129',
|
2020-11-09 09:05:03 +00:00
|
|
|
BUSD: '0x5d4BB541EED49D0290730b4aB332aA46bd27d888',
|
|
|
|
DAI: '0x037E8F2125bF532F3e228991e051c8A7253B642c',
|
|
|
|
ENJ: '0x24D9aB51950F3d62E9144fdC2f3135DAA6Ce8D1B',
|
2020-08-24 14:18:10 +00:00
|
|
|
KNC: '0xd0e785973390fF8E77a83961efDb4F271E6B8152',
|
2020-11-09 09:05:03 +00:00
|
|
|
LINK: '0xeCfA53A8bdA4F0c4dd39c55CC8deF3757aCFDD07',
|
2020-08-24 14:18:10 +00:00
|
|
|
MANA: '0xc89c4ed8f52Bb17314022f6c0dCB26210C905C97',
|
2020-11-09 09:05:03 +00:00
|
|
|
MKR: '0xda3d675d50ff6c555973c4f0424964e1f6a4e7d3',
|
2020-11-04 10:47:06 +00:00
|
|
|
REN: '0x3147D7203354Dc06D9fd350c7a2437bcA92387a4',
|
2020-11-09 09:05:03 +00:00
|
|
|
REP: '0xb8b513d9cf440C1b6f5C7142120d611C94fC220c',
|
|
|
|
SNX: '0xE23d1142dE4E83C08bb048bcab54d50907390828',
|
|
|
|
SUSD: '0x6d626Ff97f0E89F6f983dE425dc5B24A18DE26Ea',
|
|
|
|
TUSD: '0x73ead35fd6A572EF763B13Be65a9db96f7643577',
|
2020-11-04 10:47:06 +00:00
|
|
|
UNI: '0xD6aA3D25116d8dA79Ea0246c4826EB951872e02e',
|
2020-11-09 09:05:03 +00:00
|
|
|
USDC: '0xdE54467873c3BCAA76421061036053e371721708',
|
|
|
|
USDT: '0xa874fe207DF445ff19E7482C746C4D3fD0CB9AcE',
|
|
|
|
WBTC: '0x0133Aa47B6197D0BA090Bf2CD96626Eb71fFd13c',
|
|
|
|
YFI: '0x7c5d4F8345e66f68099581Db340cd65B078C41f4',
|
|
|
|
ZRX: '0xA0F9D94f060836756FFC84Db4C78d097cA8C23E8',
|
2020-08-24 14:18:10 +00:00
|
|
|
UNI_DAI_ETH: '0x1bAB293850289Bf161C5DA79ff3d1F02A950555b',
|
|
|
|
UNI_LEND_ETH: '0xF4C8Db2d999b024bBB6c6022566503eD41f2AC1E',
|
|
|
|
UNI_LINK_ETH: '0xE2A639Beb647d7F709ca805ABa760bBEfdbE37e3',
|
|
|
|
UNI_MKR_ETH: '0xEe40a5E8F3732bE6ECDb5A90e23D0b7bF0D4a73c',
|
2020-11-09 09:05:03 +00:00
|
|
|
UNI_SETH_ETH: '0x517D40E49660c7705b2e99eEFA6d7B0E9Ba5BF10',
|
|
|
|
UNI_USDC_ETH: '0x444315Ee92F2bb3579293C17B07194227fA99bF0',
|
|
|
|
USD: '0x59b826c214aBa7125bFA52970d97736c105Cc375',
|
2020-08-24 14:18:10 +00:00
|
|
|
},
|
|
|
|
},
|
2020-08-31 10:10:40 +00:00
|
|
|
ReserveAssets: {
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.coverage]: {},
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: {},
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: {},
|
2020-08-31 10:10:40 +00:00
|
|
|
[EthereumNetwork.main]: {},
|
|
|
|
[EthereumNetwork.kovan]: {},
|
|
|
|
[EthereumNetwork.ropsten]: {},
|
|
|
|
},
|
|
|
|
ReservesConfig: {},
|
2020-09-15 15:24:50 +00:00
|
|
|
ATokenDomainSeparator: {
|
|
|
|
[eEthereumNetwork.coverage]:
|
|
|
|
'0x95b73a72c6ecf4ccbbba5178800023260bad8e75cdccdb8e4827a2977a37c820',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]:
|
2020-11-09 09:05:03 +00:00
|
|
|
'0xa14895ab432a9d0712a041fdcea77f7f65826945dc90bf29ea819c2a01e7c5f9',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]:
|
2020-11-09 09:05:03 +00:00
|
|
|
'0xa14895ab432a9d0712a041fdcea77f7f65826945dc90bf29ea819c2a01e7c5f9',
|
2020-09-15 15:24:50 +00:00
|
|
|
[eEthereumNetwork.kovan]: '',
|
|
|
|
[eEthereumNetwork.ropsten]: '',
|
|
|
|
[eEthereumNetwork.main]: '',
|
|
|
|
},
|
2020-10-20 10:19:07 +00:00
|
|
|
ProxyPriceProvider: {
|
|
|
|
[eEthereumNetwork.coverage]: '',
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '',
|
2020-10-20 10:19:07 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '',
|
2020-11-06 14:19:09 +00:00
|
|
|
[eEthereumNetwork.kovan]: '0xB8bE51E6563BB312Cbb2aa26e352516c25c26ac1',
|
2020-10-20 10:19:07 +00:00
|
|
|
[eEthereumNetwork.ropsten]: '',
|
|
|
|
[eEthereumNetwork.main]: '',
|
|
|
|
},
|
2020-10-28 17:06:24 +00:00
|
|
|
WETH: {
|
|
|
|
[eEthereumNetwork.coverage]: '', // deployed in local evm
|
2020-11-05 11:18:20 +00:00
|
|
|
[eEthereumNetwork.hardhat]: '', // deployed in local evm
|
2020-10-28 17:06:24 +00:00
|
|
|
[eEthereumNetwork.buidlerevm]: '', // deployed in local evm
|
|
|
|
[eEthereumNetwork.kovan]: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
|
|
|
|
[eEthereumNetwork.ropsten]: '0xc778417e063141139fce010982780140aa0cd5ab',
|
|
|
|
[eEthereumNetwork.main]: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',
|
|
|
|
},
|
2020-08-24 14:18:10 +00:00
|
|
|
};
|