@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
7 lines • 356 B
TypeScript
import type { CallJsonRpcRequest } from './CallJsonRpcRequest.js';
import type { CallJsonRpcResponse } from './CallJsonRpcResponse.js';
/**
* Call JSON-RPC procedure executes a call against the tevm EVM
*/
export type CallJsonRpcProcedure = (request: CallJsonRpcRequest) => Promise<CallJsonRpcResponse>;
//# sourceMappingURL=CallJsonRpcProcedure.d.ts.map