mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import {task} from '@nomiclabs/buidler/config';
|
|
import {printContracts} from '../../helpers/misc-utils';
|
|
|
|
task('print-contracts', 'Inits the BRE, to have access to all the plugins').setAction(
|
|
async ({}, localBRE) => {
|
|
await localBRE.run('set-bre');
|
|
printContracts();
|
|
}
|
|
);
|