@dedot/chaintypes 0.0.1-alpha.77 → 0.0.1-alpha.78

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.
Files changed (2) hide show
  1. package/moonbeam/rpc.d.ts +44 -0
  2. package/package.json +2 -2
package/moonbeam/rpc.d.ts CHANGED
@@ -340,6 +340,24 @@ export interface RpcCalls extends GenericRpcCalls {
340
340
 
341
341
  [method: string]: GenericRpcCall;
342
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
+ };
343
361
  eth: {
344
362
  /**
345
363
  * @rpcname: eth_accounts
@@ -975,6 +993,14 @@ export interface RpcCalls extends GenericRpcCalls {
975
993
 
976
994
  [method: string]: GenericRpcCall;
977
995
  };
996
+ trace: {
997
+ /**
998
+ * @rpcname: trace_filter
999
+ **/
1000
+ filter: GenericRpcCall;
1001
+
1002
+ [method: string]: GenericRpcCall;
1003
+ };
978
1004
  transactionWatch: {
979
1005
  /**
980
1006
  * @rpcname: transactionWatch_unstable_submitAndWatch
@@ -988,6 +1014,24 @@ export interface RpcCalls extends GenericRpcCalls {
988
1014
 
989
1015
  [method: string]: GenericRpcCall;
990
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
+ };
991
1035
  web3: {
992
1036
  /**
993
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.77",
3
+ "version": "0.0.1-alpha.78",
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": "50003f494df8d7e1d247240148203464cf59088b",
23
+ "gitHead": "bc2599ca95be970b40bacd988cb0c8d0e490a604",
24
24
  "module": "./index.js",
25
25
  "types": "./index.d.ts"
26
26
  }