mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { task } from 'hardhat/config';
|
|
import { checkVerification } from '../../helpers/etherscan-verification';
|
|
import { ConfigNames } from '../../helpers/configuration';
|
|
import { printContracts } from '../../helpers/misc-utils';
|
|
|
|
task('aave:dev', 'Deploy development enviroment')
|
|
.addFlag('verify', 'Verify contracts at Etherscan')
|
|
.setAction(async ({ verify }, localBRE) => {
|
|
const POOL_NAME = ConfigNames.Aave;
|
|
|
|
await localBRE.run('set-DRE');
|
|
|
|
// 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');
|
|
await localBRE.run('dev:deploy-mock-tokens', { verify });
|
|
|
|
console.log('2. Deploy address provider');
|
|
await localBRE.run('dev:deploy-address-provider', { verify });
|
|
|
|
console.log('3. Deploy lending pool');
|
|
await localBRE.run('dev:deploy-lending-pool', { verify, pool: POOL_NAME });
|
|
|
|
console.log('4. Deploy oracles');
|
|
await localBRE.run('dev:deploy-oracles', { verify, pool: POOL_NAME });
|
|
|
|
console.log('5. Deploy WETH Gateway');
|
|
await localBRE.run('full-deploy-weth-gateway', { verify, pool: POOL_NAME });
|
|
|
|
console.log('6. Initialize lending pool');
|
|
await localBRE.run('dev:initialize-lending-pool', { verify, pool: POOL_NAME });
|
|
|
|
console.log('\nFinished migration');
|
|
printContracts();
|
|
});
|