hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
31 lines • 910 B
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";
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,
gasAnalytics,
solidityTest,
networkManager,
clean,
console,
run,
node,
flatten,
telemetry,
];
//# sourceMappingURL=index.js.map