UNPKG

@kazeblockchain/krypton-js

Version:

Javascript libraries for kaze wallet using https://github.com/kazechainio/kazewallet/blob/master/js/wallet.js as the original source.

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 }