UNPKG

hardhat

Version:

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

11 lines (8 loc) 284 B
import type { CompilerInput, CompilerOutput } from "./compiler-io.js"; export interface Compiler { readonly version: string; readonly longVersion: string; readonly compilerPath: string; readonly isSolcJs: boolean; compile(input: CompilerInput): Promise<CompilerOutput>; }