UNPKG
@kazeblockchain/kazejs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
0.9.1
Javascript libraries for Kaze wallet
kaze.solutions
KAZEBLOCKCHAIN/kazeJs
@kazeblockchain/kazejs
/
src
/
rpc
/
typings
/
rpc.d.ts
15 lines
(12 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** 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
}