UNPKG

@lodestar/prover

Version:

A Typescript implementation of the Ethereum Consensus light client

12 lines 528 B
import http from "node:http"; import { VerifiedExecutionInitOptions } from "./interfaces.js"; import { ProofProvider } from "./proof_provider/proof_provider.js"; export type VerifiedProxyOptions = Exclude<VerifiedExecutionInitOptions<false>, "mutateProvider" | "providerTypes"> & { executionRpcUrl: string; requestTimeout: number; }; export declare function createVerifiedExecutionProxy(opts: VerifiedProxyOptions): { server: http.Server; proofProvider: ProofProvider; }; //# sourceMappingURL=web3_proxy.d.ts.map