mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import {task} from '@nomiclabs/buidler/config';
|
|
import {checkVerification} from '../../helpers/etherscan-verification';
|
|
import {ConfigNames} from '../../helpers/configuration';
|
|
|
|
task('aave:dev', 'Deploy development enviroment')
|
|
.addOptionalParam('verify', 'Verify contracts at Etherscan')
|
|
.setAction(async ({verify}, localBRE) => {
|
|
const POOL_NAME = ConfigNames.Aave;
|
|
|
|
await localBRE.run('set-bre');
|
|
|
|
// 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});
|
|
|
|
console.log('4. Deploy oracles');
|
|
await localBRE.run('dev:deploy-oracles', {verify, pool: POOL_NAME});
|
|
|
|
console.log('5. Initialize lending pool');
|
|
await localBRE.run('dev:initialize-lending-pool', {verify});
|
|
|
|
console.log('\nFinished migration');
|
|
});
|