UNPKG

@kazeblockchain/kazejs

Version:

Javascript libraries for Kaze wallet

15 lines (12 loc) 269 B
/** Format of request object sent to node for RPC call */ export interface RPCRequest { method: string, params: Array<any>, id: number } /** Response returned from node RPC call */ export interface RPCResponse { jsonrpc: string, id: number, result: any }