@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.213.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": "8fa9789f2720f2f1c68682c9ddd199bdb6b6adb4",
28
+ "gitHead": "c29c4dd50417fc277b2eda70d302e6f2bae5dd73",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
@@ -52,7 +52,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
52
52
 
53
53
  /**
54
54
  * @name: WestendApi
55
- * @specVersion: 1021000
55
+ * @specVersion: 1021001
56
56
  **/
57
57
  export interface WestendApi extends GenericSubstrateApi {
58
58
  rpc: ChainJsonRpcApis;
package/westend/tx.d.ts CHANGED
@@ -54,7 +54,7 @@ import type {
54
54
  PalletNominationPoolsConfigOp,
55
55
  PalletNominationPoolsConfigOpU32,
56
56
  PalletNominationPoolsConfigOpPerbill,
57
- PalletNominationPoolsConfigOp004,
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 {PalletNominationPoolsConfigOp004} newRoot
5327
- * @param {PalletNominationPoolsConfigOp004} newNominator
5328
- * @param {PalletNominationPoolsConfigOp004} newBouncer
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: PalletNominationPoolsConfigOp004,
5334
- newNominator: PalletNominationPoolsConfigOp004,
5335
- newBouncer: PalletNominationPoolsConfigOp004,
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: PalletNominationPoolsConfigOp004;
5344
- newNominator: PalletNominationPoolsConfigOp004;
5345
- newBouncer: PalletNominationPoolsConfigOp004;
5343
+ newRoot: PalletNominationPoolsConfigOpAccountId32;
5344
+ newNominator: PalletNominationPoolsConfigOpAccountId32;
5345
+ newBouncer: PalletNominationPoolsConfigOpAccountId32;
5346
5346
  };
5347
5347
  };
5348
5348
  },