@dedot/chaintypes 0.0.1-alpha.39 → 0.0.1-alpha.40
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 +44 -0
- package/package.json +4 -4
package/moonbeam/rpc.d.ts
CHANGED
|
@@ -307,6 +307,24 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
307
307
|
|
|
308
308
|
[method: string]: GenericRpcCall;
|
|
309
309
|
};
|
|
310
|
+
debug: {
|
|
311
|
+
/**
|
|
312
|
+
* @rpcname: debug_traceBlockByHash
|
|
313
|
+
**/
|
|
314
|
+
traceBlockByHash: GenericRpcCall;
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @rpcname: debug_traceBlockByNumber
|
|
318
|
+
**/
|
|
319
|
+
traceBlockByNumber: GenericRpcCall;
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* @rpcname: debug_traceTransaction
|
|
323
|
+
**/
|
|
324
|
+
traceTransaction: GenericRpcCall;
|
|
325
|
+
|
|
326
|
+
[method: string]: GenericRpcCall;
|
|
327
|
+
};
|
|
310
328
|
eth: {
|
|
311
329
|
/**
|
|
312
330
|
* @rpcname: eth_accounts
|
|
@@ -942,6 +960,14 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
942
960
|
|
|
943
961
|
[method: string]: GenericRpcCall;
|
|
944
962
|
};
|
|
963
|
+
trace: {
|
|
964
|
+
/**
|
|
965
|
+
* @rpcname: trace_filter
|
|
966
|
+
**/
|
|
967
|
+
filter: GenericRpcCall;
|
|
968
|
+
|
|
969
|
+
[method: string]: GenericRpcCall;
|
|
970
|
+
};
|
|
945
971
|
transaction: {
|
|
946
972
|
/**
|
|
947
973
|
* @rpcname: transaction_unstable_submitAndWatch
|
|
@@ -955,6 +981,24 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
955
981
|
|
|
956
982
|
[method: string]: GenericRpcCall;
|
|
957
983
|
};
|
|
984
|
+
txpool: {
|
|
985
|
+
/**
|
|
986
|
+
* @rpcname: txpool_content
|
|
987
|
+
**/
|
|
988
|
+
content: GenericRpcCall;
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* @rpcname: txpool_inspect
|
|
992
|
+
**/
|
|
993
|
+
inspect: GenericRpcCall;
|
|
994
|
+
|
|
995
|
+
/**
|
|
996
|
+
* @rpcname: txpool_status
|
|
997
|
+
**/
|
|
998
|
+
status: GenericRpcCall;
|
|
999
|
+
|
|
1000
|
+
[method: string]: GenericRpcCall;
|
|
1001
|
+
};
|
|
958
1002
|
web3: {
|
|
959
1003
|
/**
|
|
960
1004
|
* @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.40",
|
|
4
4
|
"description": "Types for substrate-based chains",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"main": "",
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
"copy": "cp -R ./src/* ./dist"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@dedot/codecs": "0.0.1-
|
|
16
|
-
"@dedot/types": "0.0.1-
|
|
15
|
+
"@dedot/codecs": "0.0.1-alpha.30",
|
|
16
|
+
"@dedot/types": "0.0.1-alpha.30"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public",
|
|
20
20
|
"directory": "dist"
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "a9f0ba8362f88d35c991cfc87fc10d483ff0e4f3",
|
|
24
24
|
"module": "./index.js",
|
|
25
25
|
"types": "./index.d.ts"
|
|
26
26
|
}
|