import { EthereumProvider, JsonRpcRequest } from "hardhat/types"; import { JsonRpcResponse } from "hardhat/internal/util/jsonrpc"; import "hardhat/types/config"; import "hardhat/types/runtime"; declare module "hardhat/types/config" { interface HardhatConfig { ctfResponseHook?: (provider: EthereumProvider, rpcReq: JsonRpcRequest, rpcResp: JsonRpcResponse) => Promise; ctfRemoteNode?: string; } interface HardhatUserConfig { ctfResponseHook?: (provider: EthereumProvider, rpcReq: JsonRpcRequest, rpcResp: JsonRpcResponse) => Promise; ctfRemoteNode?: string; } } //# sourceMappingURL=type-extensions.d.ts.map