@dedot/chaintypes 0.226.0 → 0.227.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/kusama/index.d.ts +1 -1
- package/kusama/tx.d.ts +10 -10
- package/kusama/types.d.ts +7251 -7251
- package/kusama-asset-hub/errors.d.ts +20 -0
- package/kusama-asset-hub/events.d.ts +8 -3
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/tx.d.ts +73 -14
- package/kusama-asset-hub/types.d.ts +15150 -15087
- package/kusama-people/index.d.ts +1 -1
- package/kusama-people/types.d.ts +4309 -4309
- package/package.json +2 -2
- package/polkadot-people/index.d.ts +1 -1
package/kusama/index.d.ts
CHANGED
package/kusama/tx.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ import type {
|
|
|
60
60
|
PalletNominationPoolsConfigOp,
|
|
61
61
|
PalletNominationPoolsConfigOpU32,
|
|
62
62
|
PalletNominationPoolsConfigOpPerbill,
|
|
63
|
-
|
|
63
|
+
PalletNominationPoolsConfigOpAccountId32,
|
|
64
64
|
PalletNominationPoolsClaimPermission,
|
|
65
65
|
PalletNominationPoolsCommissionChangeRate,
|
|
66
66
|
PalletNominationPoolsCommissionClaimPermission,
|
|
@@ -7216,16 +7216,16 @@ export interface ChainTx<
|
|
|
7216
7216
|
* most pool members and they should be informed of changes to pool roles.
|
|
7217
7217
|
*
|
|
7218
7218
|
* @param {number} poolId
|
|
7219
|
-
* @param {
|
|
7220
|
-
* @param {
|
|
7221
|
-
* @param {
|
|
7219
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newRoot
|
|
7220
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newNominator
|
|
7221
|
+
* @param {PalletNominationPoolsConfigOpAccountId32} newBouncer
|
|
7222
7222
|
**/
|
|
7223
7223
|
updateRoles: GenericTxCall<
|
|
7224
7224
|
(
|
|
7225
7225
|
poolId: number,
|
|
7226
|
-
newRoot:
|
|
7227
|
-
newNominator:
|
|
7228
|
-
newBouncer:
|
|
7226
|
+
newRoot: PalletNominationPoolsConfigOpAccountId32,
|
|
7227
|
+
newNominator: PalletNominationPoolsConfigOpAccountId32,
|
|
7228
|
+
newBouncer: PalletNominationPoolsConfigOpAccountId32,
|
|
7229
7229
|
) => ChainSubmittableExtrinsic<
|
|
7230
7230
|
{
|
|
7231
7231
|
pallet: 'NominationPools';
|
|
@@ -7233,9 +7233,9 @@ export interface ChainTx<
|
|
|
7233
7233
|
name: 'UpdateRoles';
|
|
7234
7234
|
params: {
|
|
7235
7235
|
poolId: number;
|
|
7236
|
-
newRoot:
|
|
7237
|
-
newNominator:
|
|
7238
|
-
newBouncer:
|
|
7236
|
+
newRoot: PalletNominationPoolsConfigOpAccountId32;
|
|
7237
|
+
newNominator: PalletNominationPoolsConfigOpAccountId32;
|
|
7238
|
+
newBouncer: PalletNominationPoolsConfigOpAccountId32;
|
|
7239
7239
|
};
|
|
7240
7240
|
};
|
|
7241
7241
|
},
|