mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
13 lines
477 B
TypeScript
13 lines
477 B
TypeScript
import { task } from 'hardhat/config';
|
|
import { deployWalletBalancerProvider } from '../../helpers/contracts-deployments';
|
|
|
|
import { getLendingPoolAddressesProvider } from '../../helpers/contracts-getters';
|
|
|
|
task('dev:wallet-balance-provider', 'Initialize lending pool configuration.')
|
|
.addFlag('verify', 'Verify contracts at Etherscan')
|
|
.setAction(async ({ verify }, localBRE) => {
|
|
await localBRE.run('set-DRE');
|
|
|
|
await deployWalletBalancerProvider(verify);
|
|
});
|