@dedot/chaintypes 0.116.0 → 0.118.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 +9 -0
- package/astar/index.d.ts +1 -1
- package/astar/query.d.ts +15 -0
- package/moonbeam/json-rpc.d.ts +3 -0
- package/package.json +2 -2
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
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/moonbeam/json-rpc.d.ts
CHANGED
|
@@ -11,7 +11,10 @@ export type ChainJsonRpcApis<Rv extends RpcVersion> = Pick<
|
|
|
11
11
|
| 'archive_unstable_genesisHash'
|
|
12
12
|
| 'archive_unstable_hashByHeight'
|
|
13
13
|
| 'archive_unstable_header'
|
|
14
|
+
| 'archive_unstable_stopStorage'
|
|
14
15
|
| 'archive_unstable_storage'
|
|
16
|
+
| 'archive_unstable_storageDiff'
|
|
17
|
+
| 'archive_unstable_storageDiff_stopStorageDiff'
|
|
15
18
|
| 'author_hasKey'
|
|
16
19
|
| 'author_hasSessionKeys'
|
|
17
20
|
| 'author_insertKey'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.118.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": "
|
|
28
|
+
"gitHead": "831e8b4394acd49c1539e60809fead3e8af66719",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|