@dedot/chaintypes 0.0.1-alpha.71 → 0.0.1-alpha.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/moonbeam/rpc.d.ts +85 -8
- package/package.json +2 -2
package/moonbeam/rpc.d.ts
CHANGED
|
@@ -39,6 +39,44 @@ import type {
|
|
|
39
39
|
} from '@dedot/codecs';
|
|
40
40
|
|
|
41
41
|
export interface RpcCalls extends GenericRpcCalls {
|
|
42
|
+
archive: {
|
|
43
|
+
/**
|
|
44
|
+
* @rpcname: archive_unstable_body
|
|
45
|
+
**/
|
|
46
|
+
unstable_body: GenericRpcCall;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @rpcname: archive_unstable_call
|
|
50
|
+
**/
|
|
51
|
+
unstable_call: GenericRpcCall;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @rpcname: archive_unstable_finalizedHeight
|
|
55
|
+
**/
|
|
56
|
+
unstable_finalizedHeight: GenericRpcCall;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @rpcname: archive_unstable_genesisHash
|
|
60
|
+
**/
|
|
61
|
+
unstable_genesisHash: GenericRpcCall;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @rpcname: archive_unstable_hashByHeight
|
|
65
|
+
**/
|
|
66
|
+
unstable_hashByHeight: GenericRpcCall;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @rpcname: archive_unstable_header
|
|
70
|
+
**/
|
|
71
|
+
unstable_header: GenericRpcCall;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @rpcname: archive_unstable_storage
|
|
75
|
+
**/
|
|
76
|
+
unstable_storage: GenericRpcCall;
|
|
77
|
+
|
|
78
|
+
[method: string]: GenericRpcCall;
|
|
79
|
+
};
|
|
42
80
|
author: {
|
|
43
81
|
/**
|
|
44
82
|
* Checks if the keystore has private keys for the given public key and key type. Returns `true` if a private key could be found.
|
|
@@ -130,11 +168,6 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
130
168
|
**/
|
|
131
169
|
unstable_follow: GenericRpcCall;
|
|
132
170
|
|
|
133
|
-
/**
|
|
134
|
-
* @rpcname: chainHead_unstable_genesisHash
|
|
135
|
-
**/
|
|
136
|
-
unstable_genesisHash: GenericRpcCall;
|
|
137
|
-
|
|
138
171
|
/**
|
|
139
172
|
* @rpcname: chainHead_unstable_header
|
|
140
173
|
**/
|
|
@@ -307,6 +340,24 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
307
340
|
|
|
308
341
|
[method: string]: GenericRpcCall;
|
|
309
342
|
};
|
|
343
|
+
debug: {
|
|
344
|
+
/**
|
|
345
|
+
* @rpcname: debug_traceBlockByHash
|
|
346
|
+
**/
|
|
347
|
+
traceBlockByHash: GenericRpcCall;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* @rpcname: debug_traceBlockByNumber
|
|
351
|
+
**/
|
|
352
|
+
traceBlockByNumber: GenericRpcCall;
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* @rpcname: debug_traceTransaction
|
|
356
|
+
**/
|
|
357
|
+
traceTransaction: GenericRpcCall;
|
|
358
|
+
|
|
359
|
+
[method: string]: GenericRpcCall;
|
|
360
|
+
};
|
|
310
361
|
eth: {
|
|
311
362
|
/**
|
|
312
363
|
* @rpcname: eth_accounts
|
|
@@ -942,19 +993,45 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
942
993
|
|
|
943
994
|
[method: string]: GenericRpcCall;
|
|
944
995
|
};
|
|
945
|
-
|
|
996
|
+
trace: {
|
|
946
997
|
/**
|
|
947
|
-
* @rpcname:
|
|
998
|
+
* @rpcname: trace_filter
|
|
999
|
+
**/
|
|
1000
|
+
filter: GenericRpcCall;
|
|
1001
|
+
|
|
1002
|
+
[method: string]: GenericRpcCall;
|
|
1003
|
+
};
|
|
1004
|
+
transactionWatch: {
|
|
1005
|
+
/**
|
|
1006
|
+
* @rpcname: transactionWatch_unstable_submitAndWatch
|
|
948
1007
|
**/
|
|
949
1008
|
unstable_submitAndWatch: GenericRpcCall;
|
|
950
1009
|
|
|
951
1010
|
/**
|
|
952
|
-
* @rpcname:
|
|
1011
|
+
* @rpcname: transactionWatch_unstable_unwatch
|
|
953
1012
|
**/
|
|
954
1013
|
unstable_unwatch: GenericRpcCall;
|
|
955
1014
|
|
|
956
1015
|
[method: string]: GenericRpcCall;
|
|
957
1016
|
};
|
|
1017
|
+
txpool: {
|
|
1018
|
+
/**
|
|
1019
|
+
* @rpcname: txpool_content
|
|
1020
|
+
**/
|
|
1021
|
+
content: GenericRpcCall;
|
|
1022
|
+
|
|
1023
|
+
/**
|
|
1024
|
+
* @rpcname: txpool_inspect
|
|
1025
|
+
**/
|
|
1026
|
+
inspect: GenericRpcCall;
|
|
1027
|
+
|
|
1028
|
+
/**
|
|
1029
|
+
* @rpcname: txpool_status
|
|
1030
|
+
**/
|
|
1031
|
+
status: GenericRpcCall;
|
|
1032
|
+
|
|
1033
|
+
[method: string]: GenericRpcCall;
|
|
1034
|
+
};
|
|
958
1035
|
web3: {
|
|
959
1036
|
/**
|
|
960
1037
|
* @rpcname: web3_clientVersion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.72",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"main": "",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"directory": "dist"
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "eae1c5e92554e139a189a56d440eeb12d57848d7",
|
|
24
24
|
"module": "./index.js",
|
|
25
25
|
"types": "./index.d.ts"
|
|
26
26
|
}
|