mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
|
import {task} from '@nomiclabs/buidler/config';
|
||
|
|
||
|
import {UiPoolDataProviderFactory} from '../../types';
|
||
|
import {verifyContract} from '../../helpers/etherscan-verification';
|
||
|
import {eContractid} from '../../helpers/types';
|
||
|
|
||
|
task(`deploy-${eContractid.UiPoolDataProvider}`, `Deploys the UiPoolDataProvider contract`)
|
||
|
.addFlag('verify', 'Verify UiPoolDataProvider contract via Etherscan API.')
|
||
|
.setAction(async ({verify}, localBRE) => {
|
||
|
await localBRE.run('set-bre');
|
||
|
|
||
|
if (!localBRE.network.config.chainId) {
|
||
|
throw new Error('INVALID_CHAIN_ID');
|
||
|
}
|
||
|
|
||
|
console.log(`\n- UiPoolDataProvider deployment`);
|
||
|
|
||
|
console.log(`\tDeploying UiPoolDataProvider implementation ...`);
|
||
|
const uiPoolDataProvider = await new UiPoolDataProviderFactory(
|
||
|
await localBRE.ethers.provider.getSigner()
|
||
|
).deploy();
|
||
|
await uiPoolDataProvider.deployTransaction.wait();
|
||
|
console.log('uiPoolDataProvider.address', uiPoolDataProvider.address);
|
||
|
await verifyContract(eContractid.UiPoolDataProvider, uiPoolDataProvider.address, []);
|
||
|
|
||
|
console.log(`\tFinished UiPoolDataProvider proxy and implementation deployment`);
|
||
|
});
|