@dedot/chaintypes 0.226.0 → 0.228.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 CHANGED
@@ -48,7 +48,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
48
48
 
49
49
  /**
50
50
  * @name: KusamaApi
51
- * @specVersion: 2000004
51
+ * @specVersion: 2000006
52
52
  **/
53
53
  export interface KusamaApi extends GenericSubstrateApi {
54
54
  rpc: ChainJsonRpcApis;
package/kusama/tx.d.ts CHANGED
@@ -60,7 +60,7 @@ import type {
60
60
  PalletNominationPoolsConfigOp,
61
61
  PalletNominationPoolsConfigOpU32,
62
62
  PalletNominationPoolsConfigOpPerbill,
63
- PalletNominationPoolsConfigOp004,
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 {PalletNominationPoolsConfigOp004} newRoot
7220
- * @param {PalletNominationPoolsConfigOp004} newNominator
7221
- * @param {PalletNominationPoolsConfigOp004} newBouncer
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: PalletNominationPoolsConfigOp004,
7227
- newNominator: PalletNominationPoolsConfigOp004,
7228
- newBouncer: PalletNominationPoolsConfigOp004,
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: PalletNominationPoolsConfigOp004;
7237
- newNominator: PalletNominationPoolsConfigOp004;
7238
- newBouncer: PalletNominationPoolsConfigOp004;
7236
+ newRoot: PalletNominationPoolsConfigOpAccountId32;
7237
+ newNominator: PalletNominationPoolsConfigOpAccountId32;
7238
+ newBouncer: PalletNominationPoolsConfigOpAccountId32;
7239
7239
  };
7240
7240
  };
7241
7241
  },