UNPKG

@factorial-finance/blueprint-node

Version:

blueprint-node-plugin

11 lines (10 loc) 222 B
export interface JsonRpcResponse<T = any> { jsonrpc: string; result?: T; error?: { code: number; message: string; }; id?: string | number; } export type Maybe<T> = T | null | undefined;