@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
14 lines (12 loc) • 443 B
text/typescript
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']
>