@dedot/chaintypes 0.116.0 → 0.117.0

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/astar/consts.d.ts CHANGED
@@ -1187,4 +1187,13 @@ export interface ChainConsts<Rv extends RpcVersion> extends GenericChainConsts<R
1187
1187
  **/
1188
1188
  [name: string]: any;
1189
1189
  };
1190
+ /**
1191
+ * Pallet `DemocracyMBM`'s constants
1192
+ **/
1193
+ democracyMBM: {
1194
+ /**
1195
+ * Generic pallet constant
1196
+ **/
1197
+ [name: string]: any;
1198
+ };
1190
1199
  }
package/astar/index.d.ts CHANGED
@@ -23,7 +23,7 @@ export interface VersionedAstarApi<Rv extends RpcVersion> extends GenericSubstra
23
23
 
24
24
  /**
25
25
  * @name: AstarApi
26
- * @specVersion: 1501
26
+ * @specVersion: 1600
27
27
  **/
28
28
  export interface AstarApi {
29
29
  legacy: VersionedAstarApi<RpcLegacy>;
package/astar/query.d.ts CHANGED
@@ -2502,6 +2502,21 @@ export interface ChainStorage<Rv extends RpcVersion> extends GenericChainStorage
2502
2502
  **/
2503
2503
  historic: GenericStorageQuery<Rv, (arg: BytesLike) => [] | undefined, Bytes>;
2504
2504
 
2505
+ /**
2506
+ * Generic pallet storage query
2507
+ **/
2508
+ [storage: string]: GenericStorageQuery<Rv>;
2509
+ };
2510
+ /**
2511
+ * Pallet `DemocracyMBM`'s storage queries
2512
+ **/
2513
+ democracyMBM: {
2514
+ /**
2515
+ *
2516
+ * @param {Callback<number> =} callback
2517
+ **/
2518
+ migrationBlockNumber: GenericStorageQuery<Rv, () => number>;
2519
+
2505
2520
  /**
2506
2521
  * Generic pallet storage query
2507
2522
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.116.0",
3
+ "version": "0.117.0",
4
4
  "description": "Types for substrate-based chains",
5
5
  "author": "Thang X. Vu <thang@dedot.dev>",
6
6
  "homepage": "https://dedot.dev",
@@ -25,7 +25,7 @@
25
25
  "directory": "dist"
26
26
  },
27
27
  "license": "Apache-2.0",
28
- "gitHead": "5f5ba147e71282d26c91eae6ce592f04dfeba75a",
28
+ "gitHead": "adad5bc9118a8487567fe0b3468cc247330ec5d2",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {