hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
36 lines • 1.2 kB
JavaScript
import artifacts from "./artifacts/index.js";
import clean from "./clean/index.js";
import console from "./console/index.js";
import coverage from "./coverage/index.js";
import flatten from "./flatten/index.js";
import gasAnalytics from "./gas-analytics/index.js";
// The hhu / `utils` feature is unreleased and intentionally not wired up yet.
// To enable it, uncomment the three `hhu` lines (this import, the type re-export
// below, and the `builtinPlugins` entry) and re-add `bin.hhu` in package.json.
// import hhu from "./hhu/index.js";
import networkManager from "./network-manager/index.js";
import node from "./node/index.js";
import run from "./run/index.js";
import solidity from "./solidity/index.js";
import solidityTest from "./solidity-test/index.js";
import telemetry from "./telemetry/index.js";
import test from "./test/index.js";
// This array should be kept in order, respecting the dependencies between the
// plugins.
export const builtinPlugins = [
artifacts,
solidity,
test,
coverage,
solidityTest,
gasAnalytics,
networkManager,
clean,
console,
run,
node,
flatten,
telemetry,
// hhu,
];
//# sourceMappingURL=index.js.map