@dedot/chaintypes 0.0.1-alpha.71 → 0.0.1-alpha.73

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 +41 -8
  2. 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
  **/
@@ -942,14 +975,14 @@ export interface RpcCalls extends GenericRpcCalls {
942
975
 
943
976
  [method: string]: GenericRpcCall;
944
977
  };
945
- transaction: {
978
+ transactionWatch: {
946
979
  /**
947
- * @rpcname: transaction_unstable_submitAndWatch
980
+ * @rpcname: transactionWatch_unstable_submitAndWatch
948
981
  **/
949
982
  unstable_submitAndWatch: GenericRpcCall;
950
983
 
951
984
  /**
952
- * @rpcname: transaction_unstable_unwatch
985
+ * @rpcname: transactionWatch_unstable_unwatch
953
986
  **/
954
987
  unstable_unwatch: GenericRpcCall;
955
988
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.0.1-alpha.71",
3
+ "version": "0.0.1-alpha.73",
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": "1e14f2946c9d003d4d785fa333207060fd4fd7a2",
23
+ "gitHead": "76eab4832391eb0b4813efc99db82c5e0c3900a7",
24
24
  "module": "./index.js",
25
25
  "types": "./index.d.ts"
26
26
  }