aave-protocol-v2/tasks/full/6-initialize.ts

119 lines
4.1 KiB
TypeScript
Raw Normal View History

2020-11-19 16:46:23 +00:00
import { task } from 'hardhat/config';
import { getParamPerNetwork } from '../../helpers/contracts-helpers';
import {
2020-09-24 15:48:29 +00:00
deployLendingPoolCollateralManager,
2020-08-21 11:07:32 +00:00
deployWalletBalancerProvider,
deployWETHGateway,
authorizeWETHGateway,
} from '../../helpers/contracts-deployments';
import {
loadPoolConfig,
ConfigNames,
getWethAddress,
getTreasuryAddress,
} from '../../helpers/configuration';
2021-02-22 13:58:16 +00:00
import { getWETHGateway } from '../../helpers/contracts-getters';
import { eNetwork, ICommonConfiguration } from '../../helpers/types';
import { notFalsyOrZeroAddress, waitForTx } from '../../helpers/misc-utils';
import { initReservesByHelper, configureReservesByHelper } from '../../helpers/init-helpers';
2020-11-19 16:46:23 +00:00
import { exit } from 'process';
import {
getAaveProtocolDataProvider,
getLendingPoolAddressesProvider,
} from '../../helpers/contracts-getters';
2020-11-19 16:46:23 +00:00
import { ZERO_ADDRESS } from '../../helpers/constants';
task('full:initialize-lending-pool', 'Initialize lending pool configuration.')
2020-09-24 15:48:29 +00:00
.addFlag('verify', 'Verify contracts at Etherscan')
.addParam('pool', `Pool name to retrieve configuration, supported: ${Object.values(ConfigNames)}`)
2020-11-19 16:46:23 +00:00
.setAction(async ({ verify, pool }, localBRE) => {
2020-09-24 15:48:29 +00:00
try {
await localBRE.run('set-DRE');
const network = <eNetwork>localBRE.network.name;
2020-09-24 15:48:29 +00:00
const poolConfig = loadPoolConfig(pool);
const {
2021-02-19 20:50:06 +00:00
ATokenNamePrefix,
StableDebtTokenNamePrefix,
VariableDebtTokenNamePrefix,
SymbolPrefix,
ReserveAssets,
ReservesConfig,
LendingPoolCollateralManager,
WethGateway,
IncentivesController,
2021-02-19 20:50:06 +00:00
} = poolConfig as ICommonConfiguration;
2020-09-24 15:48:29 +00:00
const reserveAssets = await getParamPerNetwork(ReserveAssets, network);
const incentivesController = await getParamPerNetwork(IncentivesController, network);
2020-09-24 15:48:29 +00:00
const addressesProvider = await getLendingPoolAddressesProvider();
const testHelpers = await getAaveProtocolDataProvider();
2020-10-13 11:41:57 +00:00
2020-11-05 15:15:52 +00:00
const admin = await addressesProvider.getPoolAdmin();
if (!reserveAssets) {
throw 'Reserve assets is undefined. Check ReserveAssets configuration at config directory';
}
2020-11-27 15:40:00 +00:00
const treasuryAddress = await getTreasuryAddress(poolConfig);
2021-02-10 23:36:51 +00:00
await initReservesByHelper(
ReservesConfig,
reserveAssets,
2021-02-19 20:50:06 +00:00
ATokenNamePrefix,
StableDebtTokenNamePrefix,
VariableDebtTokenNamePrefix,
SymbolPrefix,
admin,
treasuryAddress,
incentivesController,
pool,
verify
);
await configureReservesByHelper(ReservesConfig, reserveAssets, testHelpers, admin);
let collateralManagerAddress = await getParamPerNetwork(
LendingPoolCollateralManager,
network
);
if (!notFalsyOrZeroAddress(collateralManagerAddress)) {
const collateralManager = await deployLendingPoolCollateralManager(verify);
collateralManagerAddress = collateralManager.address;
}
// Seems unnecessary to register the collateral manager in the JSON db
2021-01-12 02:15:47 +00:00
console.log(
'\tSetting lending pool collateral manager implementation with address',
collateralManagerAddress
);
2020-09-24 15:48:29 +00:00
await waitForTx(
await addressesProvider.setLendingPoolCollateralManager(collateralManagerAddress)
2020-09-24 15:48:29 +00:00
);
console.log(
'\tSetting AaveProtocolDataProvider at AddressesProvider at id: 0x01',
collateralManagerAddress
);
const aaveProtocolDataProvider = await getAaveProtocolDataProvider();
await waitForTx(
await addressesProvider.setAddress(
'0x0100000000000000000000000000000000000000000000000000000000000000',
aaveProtocolDataProvider.address
)
);
await deployWalletBalancerProvider(verify);
const lendingPoolAddress = await addressesProvider.getLendingPool();
2021-02-22 13:58:16 +00:00
let gateWay = getParamPerNetwork(WethGateway, network);
if (!notFalsyOrZeroAddress(gateWay)) {
2021-02-22 13:58:16 +00:00
gateWay = (await getWETHGateway()).address;
}
console.log('GATEWAY', gateWay);
await authorizeWETHGateway(gateWay, lendingPoolAddress);
2020-09-24 15:48:29 +00:00
} catch (err) {
console.error(err);
exit(1);
}
2020-08-21 11:07:32 +00:00
});