mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
141 lines
4.4 KiB
TypeScript
141 lines
4.4 KiB
TypeScript
import {
|
|
AavePools,
|
|
iMultiPoolsAssets,
|
|
IReserveParams,
|
|
PoolConfiguration,
|
|
ICommonConfiguration,
|
|
eNetwork,
|
|
} from './types';
|
|
import { getParamPerPool } from './contracts-helpers';
|
|
import AaveConfig from '../markets/aave';
|
|
import MaticConfig from '../markets/matic';
|
|
import AmmConfig from '../markets/amm';
|
|
import { CommonsConfig } from '../markets/aave/commons';
|
|
import { DRE, filterMapBy } from './misc-utils';
|
|
import { tEthereumAddress } from './types';
|
|
import { getParamPerNetwork } from './contracts-helpers';
|
|
import { deployWETHMocked } from './contracts-deployments';
|
|
|
|
export enum ConfigNames {
|
|
Commons = 'Commons',
|
|
Aave = 'Aave',
|
|
Matic = 'Matic',
|
|
Amm = 'Amm',
|
|
}
|
|
|
|
export const loadPoolConfig = (configName: ConfigNames): PoolConfiguration => {
|
|
switch (configName) {
|
|
case ConfigNames.Aave:
|
|
return AaveConfig;
|
|
case ConfigNames.Matic:
|
|
return MaticConfig;
|
|
case ConfigNames.Amm:
|
|
return AmmConfig;
|
|
case ConfigNames.Commons:
|
|
return CommonsConfig;
|
|
default:
|
|
throw new Error(`Unsupported pool configuration: ${Object.values(ConfigNames)}`);
|
|
}
|
|
};
|
|
|
|
// ----------------
|
|
// PROTOCOL PARAMS PER POOL
|
|
// ----------------
|
|
|
|
export const getReservesConfigByPool = (pool: AavePools): iMultiPoolsAssets<IReserveParams> =>
|
|
getParamPerPool<iMultiPoolsAssets<IReserveParams>>(
|
|
{
|
|
[AavePools.proto]: {
|
|
...AaveConfig.ReservesConfig,
|
|
},
|
|
[AavePools.amm]: {
|
|
...AmmConfig.ReservesConfig,
|
|
},
|
|
[AavePools.matic]: {
|
|
...MaticConfig.ReservesConfig,
|
|
},
|
|
},
|
|
pool
|
|
);
|
|
|
|
export const getGenesisPoolAdmin = async (
|
|
config: ICommonConfiguration
|
|
): Promise<tEthereumAddress> => {
|
|
const currentNetwork = process.env.FORK ? process.env.FORK : DRE.network.name;
|
|
const targetAddress = getParamPerNetwork(config.PoolAdmin, <eNetwork>currentNetwork);
|
|
if (targetAddress) {
|
|
return targetAddress;
|
|
}
|
|
const addressList = await Promise.all(
|
|
(await DRE.ethers.getSigners()).map((signer) => signer.getAddress())
|
|
);
|
|
const addressIndex = config.PoolAdminIndex;
|
|
return addressList[addressIndex];
|
|
};
|
|
|
|
export const getEmergencyAdmin = async (
|
|
config: ICommonConfiguration
|
|
): Promise<tEthereumAddress> => {
|
|
const currentNetwork = process.env.FORK ? process.env.FORK : DRE.network.name;
|
|
const targetAddress = getParamPerNetwork(config.EmergencyAdmin, <eNetwork>currentNetwork);
|
|
if (targetAddress) {
|
|
return targetAddress;
|
|
}
|
|
const addressList = await Promise.all(
|
|
(await DRE.ethers.getSigners()).map((signer) => signer.getAddress())
|
|
);
|
|
const addressIndex = config.EmergencyAdminIndex;
|
|
return addressList[addressIndex];
|
|
};
|
|
|
|
export const getTreasuryAddress = async (
|
|
config: ICommonConfiguration
|
|
): Promise<tEthereumAddress> => {
|
|
const currentNetwork = process.env.FORK ? process.env.FORK : DRE.network.name;
|
|
return getParamPerNetwork(config.ReserveFactorTreasuryAddress, <eNetwork>currentNetwork);
|
|
};
|
|
|
|
export const getATokenDomainSeparatorPerNetwork = (
|
|
network: eNetwork,
|
|
config: ICommonConfiguration
|
|
): tEthereumAddress => getParamPerNetwork<tEthereumAddress>(config.ATokenDomainSeparator, network);
|
|
|
|
export const getWethAddress = async (config: ICommonConfiguration) => {
|
|
const currentNetwork = process.env.FORK ? process.env.FORK : DRE.network.name;
|
|
const wethAddress = getParamPerNetwork(config.WETH, <eNetwork>currentNetwork);
|
|
if (wethAddress) {
|
|
return wethAddress;
|
|
}
|
|
if (currentNetwork.includes('main')) {
|
|
throw new Error('WETH not set at mainnet configuration.');
|
|
}
|
|
const weth = await deployWETHMocked();
|
|
return weth.address;
|
|
};
|
|
|
|
export const getWrappedNativeTokenAddress = async (config: ICommonConfiguration) => {
|
|
const currentNetwork = process.env.MAINNET_FORK === 'true' ? 'main' : DRE.network.name;
|
|
const wethAddress = getParamPerNetwork(config.WrappedNativeToken, <eNetwork>currentNetwork);
|
|
if (wethAddress) {
|
|
return wethAddress;
|
|
}
|
|
if (currentNetwork.includes('main')) {
|
|
throw new Error('WETH not set at mainnet configuration.');
|
|
}
|
|
const weth = await deployWETHMocked();
|
|
return weth.address;
|
|
};
|
|
|
|
export const getLendingRateOracles = (poolConfig: ICommonConfiguration) => {
|
|
const {
|
|
ProtocolGlobalParams: { UsdAddress },
|
|
LendingRateOracleRatesCommon,
|
|
ReserveAssets,
|
|
} = poolConfig;
|
|
|
|
const network = process.env.FORK ? process.env.FORK : DRE.network.name;
|
|
return filterMapBy(LendingRateOracleRatesCommon, (key) =>
|
|
Object.keys(ReserveAssets[network]).includes(key)
|
|
);
|
|
};
|