mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
|
import { task } from "@nomiclabs/buidler/config";
|
||
|
import { setBRE } from "../../helpers/misc-utils";
|
||
|
|
||
|
task(
|
||
|
`set-bre`,
|
||
|
`Inits the BRE, to have access to all the plugins' objects`
|
||
|
).setAction(async (_, _BRE) => {
|
||
|
setBRE(_BRE);
|
||
|
return _BRE;
|
||
|
});
|