@dedot/chaintypes 0.213.0 → 0.214.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/package.json +2 -2
- package/westend/index.d.ts +1 -1
- package/westend/tx.d.ts +10 -10
- package/westend/types.d.ts +9642 -9642
- package/westend-people/index.d.ts +1 -1
- package/westend-people/types.d.ts +4148 -4148
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.214.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": "c29c4dd50417fc277b2eda70d302e6f2bae5dd73",
|
|
29
29
|
"module": "./index.js",
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"exports": {
|
package/westend/index.d.ts
CHANGED
package/westend/tx.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ import type {
|
|
|
54
54
|
PalletNominationPoolsConfigOp,
|
|
55
55
|
PalletNominationPoolsConfigOpU32,
|
|
56
56
|
PalletNominationPoolsConfigOpPerbill,
|
|
57
|
-
|
|
57
|
+
PalletNominationPoolsConfigOpAccountId32,
|
|
58
58
|
PalletNominationPoolsClaimPermission,
|
|
59
59
|
PalletNominationPoolsCommissionChangeRate,
|
|
60
60
|
PalletNominationPoolsCommissionClaimPermission,
|
|
@@ -5323,16 +5323,16 @@ export interface ChainTx<
|
|
|
5323
5323
|
* most pool members and they should be informed of changes to pool roles.
|
|
5324
5324
|
*
|
|
5325
5325
|
* @param {number} poolId
|
|
5326
|
-
* @param {
|
|
5327
|
-
* @param {
|
|
5328
|
-
* @param {
|
|
5326
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newRoot
|
|
5327
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newNominator
|
|
5328
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newBouncer
|
|
5329
5329
|
**/
|
|
5330
5330
|
updateRoles: GenericTxCall<
|
|
5331
5331
|
(
|
|
5332
5332
|
poolId: number,
|
|
5333
|
-
newRoot:
|
|
5334
|
-
newNominator:
|
|
5335
|
-
newBouncer:
|
|
5333
|
+
newRoot: PalletNominationPoolsConfigOpAccountId32,
|
|
5334
|
+
newNominator: PalletNominationPoolsConfigOpAccountId32,
|
|
5335
|
+
newBouncer: PalletNominationPoolsConfigOpAccountId32,
|
|
5336
5336
|
) => ChainSubmittableExtrinsic<
|
|
5337
5337
|
{
|
|
5338
5338
|
pallet: 'NominationPools';
|
|
@@ -5340,9 +5340,9 @@ export interface ChainTx<
|
|
|
5340
5340
|
name: 'UpdateRoles';
|
|
5341
5341
|
params: {
|
|
5342
5342
|
poolId: number;
|
|
5343
|
-
newRoot:
|
|
5344
|
-
newNominator:
|
|
5345
|
-
newBouncer:
|
|
5343
|
+
newRoot: PalletNominationPoolsConfigOpAccountId32;
|
|
5344
|
+
newNominator: PalletNominationPoolsConfigOpAccountId32;
|
|
5345
|
+
newBouncer: PalletNominationPoolsConfigOpAccountId32;
|
|
5346
5346
|
};
|
|
5347
5347
|
};
|
|
5348
5348
|
},
|