UNPKG

hardhat

Version:

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

10 lines (6 loc) 268 B
import type { NewUtilsTaskActionFunction } from "../../types.js"; const zeroAddress = "0x0000000000000000000000000000000000000000"; const zeroAddressAction: NewUtilsTaskActionFunction = async () => { console.log(zeroAddress); }; export default zeroAddressAction;