UNPKG

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 (6 loc) 208 B
import { getHardhatVersion } from "../utils/package.js"; export async function printVersionMessage( print: (message: string) => void = console.log, ): Promise<void> { print(await getHardhatVersion()); }