export type JsonRpcRequest = { id: number; jsonrpc: "2.0"; method: string; params: T; }; export type JsonRpcResponse = { id: number; jsonrpc: "2.0"; result: T; }; export type Rpc = { id?: number; methodName: string; parameters: { [key: string]: any } | any[]; };