UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

9 lines 496 B
import type { JsonRpcResponse } from '@tevm/jsonrpc'; import type { SerializeToJson } from '../utils/SerializeToJson.js'; import type { LoadStateResult } from './LoadStateResult.js'; import type { TevmLoadStateError } from './TevmLoadStateError.js'; /** * Response of the `tevm_loadState` RPC method. */ export type LoadStateJsonRpcResponse = JsonRpcResponse<'tevm_loadState', SerializeToJson<LoadStateResult>, TevmLoadStateError['code']>; //# sourceMappingURL=LoadStateJsonRpcResponse.d.ts.map