UNPKG

@skybit/hardhat-yul

Version:

Compile Yul smart contracts in Hardhat

14 lines (10 loc) 244 B
import "hardhat/types/config"; import { YulConfig } from "./types"; declare module "hardhat/types/config" { interface HardhatUserConfig { yul?: Partial<YulConfig>; } interface HardhatConfig { yul: YulConfig; } }