2020-11-05 11:18:20 +00:00
|
|
|
import {task} from 'hardhat/config';
|
2020-08-20 15:35:05 +00:00
|
|
|
import {checkVerification} from '../../helpers/etherscan-verification';
|
2020-08-25 15:15:27 +00:00
|
|
|
import {ConfigNames} from '../../helpers/configuration';
|
2020-11-02 13:45:00 +00:00
|
|
|
import {printContracts} from '../../helpers/misc-utils';
|
2020-08-20 15:35:05 +00:00
|
|
|
|
2020-08-25 12:15:35 +00:00
|
|
|
task('aave:dev', 'Deploy development enviroment')
|
2020-08-20 15:35:05 +00:00
|
|
|
.addOptionalParam('verify', 'Verify contracts at Etherscan')
|
|
|
|
.setAction(async ({verify}, localBRE) => {
|
2020-08-31 10:10:40 +00:00
|
|
|
const POOL_NAME = ConfigNames.Aave;
|
|
|
|
|
2020-11-05 12:44:20 +00:00
|
|
|
await localBRE.run('set-DRE');
|
2020-08-20 15:35:05 +00:00
|
|
|
|
|
|
|
// Prevent loss of gas verifying all the needed ENVs for Etherscan verification
|
|
|
|
if (verify) {
|
|
|
|
checkVerification();
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Migration started\n');
|
|
|
|
|
|
|
|
console.log('1. Deploy mock tokens');
|
2020-08-31 10:10:40 +00:00
|
|
|
await localBRE.run('dev:deploy-mock-tokens', {verify});
|
2020-08-20 15:35:05 +00:00
|
|
|
|
|
|
|
console.log('2. Deploy address provider');
|
2020-08-31 10:10:40 +00:00
|
|
|
await localBRE.run('dev:deploy-address-provider', {verify});
|
2020-08-20 15:35:05 +00:00
|
|
|
|
|
|
|
console.log('3. Deploy lending pool');
|
2020-08-31 10:10:40 +00:00
|
|
|
await localBRE.run('dev:deploy-lending-pool', {verify});
|
2020-08-20 15:35:05 +00:00
|
|
|
|
|
|
|
console.log('4. Deploy oracles');
|
2020-08-31 10:10:40 +00:00
|
|
|
await localBRE.run('dev:deploy-oracles', {verify, pool: POOL_NAME});
|
2020-08-20 15:35:05 +00:00
|
|
|
|
2020-08-21 11:07:32 +00:00
|
|
|
console.log('5. Initialize lending pool');
|
2020-10-28 17:06:24 +00:00
|
|
|
await localBRE.run('dev:initialize-lending-pool', {verify, pool: POOL_NAME});
|
2020-08-20 15:35:05 +00:00
|
|
|
|
|
|
|
console.log('\nFinished migration');
|
2020-11-02 13:45:00 +00:00
|
|
|
printContracts();
|
2020-08-20 15:35:05 +00:00
|
|
|
});
|