UNPKG

@nomicfoundation/hardhat-ethers

Version:
12 lines 460 B
import { initializeEthers } from "../initialization.js"; export default async () => { const handlers = { async newConnection(context, next) { const connection = await next(context); connection.ethers = await initializeEthers(connection.provider, connection.networkName, connection.networkConfig, context.artifacts); return connection; }, }; return handlers; }; //# sourceMappingURL=network.js.map