hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
8 lines • 501 B
JavaScript
import { emptyTask, task } from "../../../../core/config.js";
import { buildUtilsTask } from "../utils-task.js";
export function constants(prefix) {
const constantsTask = emptyTask([...prefix, "constants"], "Commonly used Ethereum constants").build();
const zeroAddressTask = buildUtilsTask(task([...prefix, "constants", "zero-address"], "Print the zero address"), async () => await import("./zero-address.js"));
return [constantsTask, zeroAddressTask];
}
//# sourceMappingURL=index.js.map