UNPKG

@nomiclabs/buidler

Version:

Buidler is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

72 lines 2.7 kB
"use strict"; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const context_1 = require("../../context"); const argumentTypes = __importStar(require("../params/argumentTypes")); const plugins_1 = require("../plugins"); function task(name, descriptionOrAction, action) { const ctx = context_1.BuidlerContext.getBuidlerContext(); const dsl = ctx.tasksDSL; if (descriptionOrAction === undefined) { return dsl.task(name); } if (typeof descriptionOrAction !== "string") { return dsl.task(name, descriptionOrAction); } return dsl.task(name, descriptionOrAction, action); } exports.task = task; function internalTask(name, descriptionOrAction, action) { const ctx = context_1.BuidlerContext.getBuidlerContext(); const dsl = ctx.tasksDSL; if (descriptionOrAction === undefined) { return dsl.internalTask(name); } if (typeof descriptionOrAction !== "string") { return dsl.internalTask(name, descriptionOrAction); } return dsl.internalTask(name, descriptionOrAction, action); } exports.internalTask = internalTask; exports.types = argumentTypes; /** * Register an environment extender what will be run after the * Buidler Runtime Environment is initialized. * * @param extender A function that receives the Buidler Runtime * Environment. */ function extendEnvironment(extender) { const ctx = context_1.BuidlerContext.getBuidlerContext(); const extenderManager = ctx.extendersManager; extenderManager.add(extender); } exports.extendEnvironment = extendEnvironment; function extendConfig(extender) { const ctx = context_1.BuidlerContext.getBuidlerContext(); ctx.configExtenders.push(extender); } exports.extendConfig = extendConfig; // NOTE: This is experimental and will be removed. Please contact our team // if you are planning to use it. function experimentalAddBuidlerEVMMessageTraceHook(hook) { const ctx = context_1.BuidlerContext.getBuidlerContext(); ctx.experimentalBuidlerEVMMessageTraceHooks.push(hook); } exports.experimentalAddBuidlerEVMMessageTraceHook = experimentalAddBuidlerEVMMessageTraceHook; /** * Loads a Buidler plugin * @param pluginName The plugin name. */ function usePlugin(pluginName) { const ctx = context_1.BuidlerContext.getBuidlerContext(); plugins_1.usePlugin(ctx, pluginName); } exports.usePlugin = usePlugin; //# sourceMappingURL=config-env.js.map