UNPKG

soul-wallet-lib

Version:
11 lines (10 loc) 181 B
export interface IRPCError { code: number; message: string; } export interface IRPCResponse<T> { jsonrpc: string; id: number; result: T; error: IRPCError; }