UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

8 lines (6 loc) 304 B
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>