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 428 B
import { resolveTestUserConfig } from "../config.js"; export default async () => { const handlers = { resolveUserConfig: async (userConfig, resolveConfigurationVariable, next) => { const resolvedConfig = await next(userConfig, resolveConfigurationVariable); return resolveTestUserConfig(userConfig, resolvedConfig); }, }; return handlers; }; //# sourceMappingURL=config.js.map