mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
112 lines
3.9 KiB
TypeScript
112 lines
3.9 KiB
TypeScript
import { task } from 'hardhat/config';
|
|
import { loadPoolConfig, ConfigNames, getWethAddress } from '../../helpers/configuration';
|
|
import { ZERO_ADDRESS } from '../../helpers/constants';
|
|
import {
|
|
getAddressById,
|
|
getLendingPool,
|
|
getLendingPoolAddressesProvider,
|
|
getLendingPoolConfiguratorProxy,
|
|
} from '../../helpers/contracts-getters';
|
|
import { getParamPerNetwork } from '../../helpers/contracts-helpers';
|
|
import { verifyContract } from '../../helpers/etherscan-verification';
|
|
import { eEthereumNetwork, ICommonConfiguration, IReserveParams } from '../../helpers/types';
|
|
|
|
task('verify:tokens', 'Deploy oracles for dev enviroment')
|
|
.addParam('pool', `Pool name to retrieve configuration, supported: ${Object.values(ConfigNames)}`)
|
|
.setAction(async ({ verify, all, pool }, localDRE) => {
|
|
await localDRE.run('set-DRE');
|
|
const network = localDRE.network.name as eEthereumNetwork;
|
|
const poolConfig = loadPoolConfig(pool);
|
|
const { ReserveAssets, ReservesConfig } = poolConfig as ICommonConfiguration;
|
|
|
|
const addressesProvider = await getLendingPoolAddressesProvider();
|
|
const lendingPoolProxy = await getLendingPool();
|
|
const lendingPoolConfigurator = await getLendingPoolConfiguratorProxy();
|
|
|
|
const configs = Object.entries(ReservesConfig) as [string, IReserveParams][];
|
|
for (const entry of Object.entries(getParamPerNetwork(ReserveAssets, network))) {
|
|
const [token, tokenAddress] = entry;
|
|
console.log(`- Verifying ${token} token related contracts`);
|
|
const {
|
|
stableDebtTokenAddress,
|
|
variableDebtTokenAddress,
|
|
aTokenAddress,
|
|
interestRateStrategyAddress,
|
|
} = await lendingPoolProxy.getReserveData(tokenAddress);
|
|
|
|
const tokenConfig = configs.find(([symbol]) => symbol === token);
|
|
if (!tokenConfig) {
|
|
throw `ReservesConfig not found for ${token} token`;
|
|
}
|
|
|
|
const {
|
|
optimalUtilizationRate,
|
|
baseVariableBorrowRate,
|
|
variableRateSlope1,
|
|
variableRateSlope2,
|
|
stableRateSlope1,
|
|
stableRateSlope2,
|
|
} = tokenConfig[1];
|
|
|
|
console.log;
|
|
// Proxy Stable Debt
|
|
console.log(`\n- Verifying Stable Debt Token proxy...\n`);
|
|
await verifyContract(stableDebtTokenAddress, [lendingPoolConfigurator.address]);
|
|
|
|
// Proxy Variable Debt
|
|
console.log(`\n- Verifying Debt Token proxy...\n`);
|
|
await verifyContract(variableDebtTokenAddress, [lendingPoolConfigurator.address]);
|
|
|
|
// Proxy aToken
|
|
console.log('\n- Verifying aToken proxy...\n');
|
|
await verifyContract(aTokenAddress, [lendingPoolConfigurator.address]);
|
|
|
|
// Strategy Rate
|
|
console.log(`\n- Verifying Strategy rate...\n`);
|
|
await verifyContract(interestRateStrategyAddress, [
|
|
addressesProvider.address,
|
|
optimalUtilizationRate,
|
|
baseVariableBorrowRate,
|
|
variableRateSlope1,
|
|
variableRateSlope2,
|
|
stableRateSlope1,
|
|
stableRateSlope2,
|
|
]);
|
|
|
|
const stableDebt = await getAddressById(`stableDebt${token}`);
|
|
const variableDebt = await getAddressById(`variableDebt${token}`);
|
|
const aToken = await getAddressById(`a${token}`);
|
|
|
|
// aToken
|
|
console.log('\n- Verifying aToken...\n');
|
|
await verifyContract(aToken, [
|
|
lendingPoolProxy.address,
|
|
tokenAddress,
|
|
ZERO_ADDRESS,
|
|
`Aave interest bearing ${token}`,
|
|
`a${token}`,
|
|
ZERO_ADDRESS,
|
|
]);
|
|
|
|
// stableDebtToken
|
|
console.log('\n- Verifying StableDebtToken...\n');
|
|
await verifyContract(stableDebt, [
|
|
lendingPoolProxy.address,
|
|
tokenAddress,
|
|
`Aave stable debt bearing ${token}`,
|
|
`stableDebt${token}`,
|
|
ZERO_ADDRESS,
|
|
]);
|
|
|
|
// variableDebtToken
|
|
console.log('\n- Verifying VariableDebtToken...\n');
|
|
await verifyContract(variableDebt, [
|
|
lendingPoolProxy.address,
|
|
tokenAddress,
|
|
`Aave variable debt bearing ${token}`,
|
|
`variableDebt${token}`,
|
|
ZERO_ADDRESS,
|
|
]);
|
|
}
|
|
});
|