@webb-tools/tangle-substrate-types 0.9.8 → 0.9.9

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/build/index.d.ts CHANGED
@@ -2525,6 +2525,10 @@ declare module '@polkadot/api-base/types/errors' {
2525
2525
  * A reward pool does not exist. In all cases this is a system logic error.
2526
2526
  **/
2527
2527
  RewardPoolNotFound: AugmentedError<ApiType>;
2528
+ /**
2529
+ * The slash amount is too low to be applied.
2530
+ **/
2531
+ SlashTooLow: AugmentedError<ApiType>;
2528
2532
  /**
2529
2533
  * A sub pool does not exist.
2530
2534
  **/
@@ -4385,8 +4389,8 @@ declare module '@polkadot/api-base/types/events' {
4385
4389
  /**
4386
4390
  * Event emitted when a blueprint is whitelisted for rewards
4387
4391
  **/
4388
- BlueprintWhitelisted: AugmentedEvent<ApiType, [blueprintId: u32], {
4389
- blueprintId: u32;
4392
+ BlueprintWhitelisted: AugmentedEvent<ApiType, [blueprintId: u64], {
4393
+ blueprintId: u64;
4390
4394
  }>;
4391
4395
  /**
4392
4396
  * A delegator unstake request has been cancelled.
@@ -10536,7 +10540,7 @@ declare module '@polkadot/api-base/types/submittable' {
10536
10540
  /**
10537
10541
  * Whitelists a blueprint for rewards.
10538
10542
  **/
10539
- whitelistBlueprintForRewards: AugmentedSubmittable<(blueprintId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
10543
+ whitelistBlueprintForRewards: AugmentedSubmittable<(blueprintId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
10540
10544
  /**
10541
10545
  * Generic tx
10542
10546
  **/
@@ -10694,8 +10698,10 @@ declare module '@polkadot/api-base/types/submittable' {
10694
10698
  * Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
10695
10699
  * [`adapter::StakeStrategyType::Delegate`].
10696
10700
  *
10697
- * This call can be dispatched permissionlessly (i.e. by any account). If the member has
10698
- * slash to be applied, caller may be rewarded with the part of the slash.
10701
+ * The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
10702
+ * This call can be dispatched permissionlessly (i.e. by any account). If the execution
10703
+ * is successful, fee is refunded and caller may be rewarded with a part of the slash
10704
+ * based on the [`crate::pallet::Config::StakeAdapter`] configuration.
10699
10705
  **/
10700
10706
  applySlash: AugmentedSubmittable<(memberAccount: MultiAddress | {
10701
10707
  Id: any;
@@ -17028,7 +17034,7 @@ declare module '@polkadot/types/lookup' {
17028
17034
  } & Struct;
17029
17035
  readonly isBlueprintWhitelisted: boolean;
17030
17036
  readonly asBlueprintWhitelisted: {
17031
- readonly blueprintId: u32;
17037
+ readonly blueprintId: u64;
17032
17038
  } & Struct;
17033
17039
  readonly isAssetUpdatedInVault: boolean;
17034
17040
  readonly asAssetUpdatedInVault: {
@@ -18921,7 +18927,7 @@ declare module '@polkadot/types/lookup' {
18921
18927
  readonly asEcdsa: U8aFixed;
18922
18928
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
18923
18929
  }
18924
- /** @name PalletUtilityCall (346) */
18930
+ /** @name PalletUtilityCall (345) */
18925
18931
  interface PalletUtilityCall extends Enum {
18926
18932
  readonly isBatch: boolean;
18927
18933
  readonly asBatch: {
@@ -18952,7 +18958,7 @@ declare module '@polkadot/types/lookup' {
18952
18958
  } & Struct;
18953
18959
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
18954
18960
  }
18955
- /** @name TangleTestnetRuntimeOriginCaller (348) */
18961
+ /** @name TangleTestnetRuntimeOriginCaller (347) */
18956
18962
  interface TangleTestnetRuntimeOriginCaller extends Enum {
18957
18963
  readonly isSystem: boolean;
18958
18964
  readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -18963,7 +18969,7 @@ declare module '@polkadot/types/lookup' {
18963
18969
  readonly asEthereum: PalletEthereumRawOrigin;
18964
18970
  readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
18965
18971
  }
18966
- /** @name FrameSupportDispatchRawOrigin (349) */
18972
+ /** @name FrameSupportDispatchRawOrigin (348) */
18967
18973
  interface FrameSupportDispatchRawOrigin extends Enum {
18968
18974
  readonly isRoot: boolean;
18969
18975
  readonly isSigned: boolean;
@@ -18971,7 +18977,7 @@ declare module '@polkadot/types/lookup' {
18971
18977
  readonly isNone: boolean;
18972
18978
  readonly type: 'Root' | 'Signed' | 'None';
18973
18979
  }
18974
- /** @name PalletCollectiveRawOrigin (350) */
18980
+ /** @name PalletCollectiveRawOrigin (349) */
18975
18981
  interface PalletCollectiveRawOrigin extends Enum {
18976
18982
  readonly isMembers: boolean;
18977
18983
  readonly asMembers: ITuple<[u32, u32]>;
@@ -18980,13 +18986,13 @@ declare module '@polkadot/types/lookup' {
18980
18986
  readonly isPhantom: boolean;
18981
18987
  readonly type: 'Members' | 'Member' | 'Phantom';
18982
18988
  }
18983
- /** @name PalletEthereumRawOrigin (351) */
18989
+ /** @name PalletEthereumRawOrigin (350) */
18984
18990
  interface PalletEthereumRawOrigin extends Enum {
18985
18991
  readonly isEthereumTransaction: boolean;
18986
18992
  readonly asEthereumTransaction: H160;
18987
18993
  readonly type: 'EthereumTransaction';
18988
18994
  }
18989
- /** @name PalletMultisigCall (352) */
18995
+ /** @name PalletMultisigCall (351) */
18990
18996
  interface PalletMultisigCall extends Enum {
18991
18997
  readonly isAsMultiThreshold1: boolean;
18992
18998
  readonly asAsMultiThreshold1: {
@@ -19018,7 +19024,7 @@ declare module '@polkadot/types/lookup' {
19018
19024
  } & Struct;
19019
19025
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
19020
19026
  }
19021
- /** @name PalletEthereumCall (354) */
19027
+ /** @name PalletEthereumCall (353) */
19022
19028
  interface PalletEthereumCall extends Enum {
19023
19029
  readonly isTransact: boolean;
19024
19030
  readonly asTransact: {
@@ -19026,7 +19032,7 @@ declare module '@polkadot/types/lookup' {
19026
19032
  } & Struct;
19027
19033
  readonly type: 'Transact';
19028
19034
  }
19029
- /** @name EthereumTransactionTransactionV2 (355) */
19035
+ /** @name EthereumTransactionTransactionV2 (354) */
19030
19036
  interface EthereumTransactionTransactionV2 extends Enum {
19031
19037
  readonly isLegacy: boolean;
19032
19038
  readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -19036,7 +19042,7 @@ declare module '@polkadot/types/lookup' {
19036
19042
  readonly asEip1559: EthereumTransactionEip1559Transaction;
19037
19043
  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
19038
19044
  }
19039
- /** @name EthereumTransactionLegacyTransaction (356) */
19045
+ /** @name EthereumTransactionLegacyTransaction (355) */
19040
19046
  interface EthereumTransactionLegacyTransaction extends Struct {
19041
19047
  readonly nonce: U256;
19042
19048
  readonly gasPrice: U256;
@@ -19046,20 +19052,20 @@ declare module '@polkadot/types/lookup' {
19046
19052
  readonly input: Bytes;
19047
19053
  readonly signature: EthereumTransactionTransactionSignature;
19048
19054
  }
19049
- /** @name EthereumTransactionTransactionAction (357) */
19055
+ /** @name EthereumTransactionTransactionAction (356) */
19050
19056
  interface EthereumTransactionTransactionAction extends Enum {
19051
19057
  readonly isCall: boolean;
19052
19058
  readonly asCall: H160;
19053
19059
  readonly isCreate: boolean;
19054
19060
  readonly type: 'Call' | 'Create';
19055
19061
  }
19056
- /** @name EthereumTransactionTransactionSignature (358) */
19062
+ /** @name EthereumTransactionTransactionSignature (357) */
19057
19063
  interface EthereumTransactionTransactionSignature extends Struct {
19058
19064
  readonly v: u64;
19059
19065
  readonly r: H256;
19060
19066
  readonly s: H256;
19061
19067
  }
19062
- /** @name EthereumTransactionEip2930Transaction (360) */
19068
+ /** @name EthereumTransactionEip2930Transaction (359) */
19063
19069
  interface EthereumTransactionEip2930Transaction extends Struct {
19064
19070
  readonly chainId: u64;
19065
19071
  readonly nonce: U256;
@@ -19073,12 +19079,12 @@ declare module '@polkadot/types/lookup' {
19073
19079
  readonly r: H256;
19074
19080
  readonly s: H256;
19075
19081
  }
19076
- /** @name EthereumTransactionAccessListItem (362) */
19082
+ /** @name EthereumTransactionAccessListItem (361) */
19077
19083
  interface EthereumTransactionAccessListItem extends Struct {
19078
19084
  readonly address: H160;
19079
19085
  readonly storageKeys: Vec<H256>;
19080
19086
  }
19081
- /** @name EthereumTransactionEip1559Transaction (363) */
19087
+ /** @name EthereumTransactionEip1559Transaction (362) */
19082
19088
  interface EthereumTransactionEip1559Transaction extends Struct {
19083
19089
  readonly chainId: u64;
19084
19090
  readonly nonce: U256;
@@ -19093,7 +19099,7 @@ declare module '@polkadot/types/lookup' {
19093
19099
  readonly r: H256;
19094
19100
  readonly s: H256;
19095
19101
  }
19096
- /** @name PalletEvmCall (364) */
19102
+ /** @name PalletEvmCall (363) */
19097
19103
  interface PalletEvmCall extends Enum {
19098
19104
  readonly isWithdraw: boolean;
19099
19105
  readonly asWithdraw: {
@@ -19137,7 +19143,7 @@ declare module '@polkadot/types/lookup' {
19137
19143
  } & Struct;
19138
19144
  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
19139
19145
  }
19140
- /** @name PalletDynamicFeeCall (368) */
19146
+ /** @name PalletDynamicFeeCall (367) */
19141
19147
  interface PalletDynamicFeeCall extends Enum {
19142
19148
  readonly isNoteMinGasPriceTarget: boolean;
19143
19149
  readonly asNoteMinGasPriceTarget: {
@@ -19145,7 +19151,7 @@ declare module '@polkadot/types/lookup' {
19145
19151
  } & Struct;
19146
19152
  readonly type: 'NoteMinGasPriceTarget';
19147
19153
  }
19148
- /** @name PalletBaseFeeCall (369) */
19154
+ /** @name PalletBaseFeeCall (368) */
19149
19155
  interface PalletBaseFeeCall extends Enum {
19150
19156
  readonly isSetBaseFeePerGas: boolean;
19151
19157
  readonly asSetBaseFeePerGas: {
@@ -19157,7 +19163,7 @@ declare module '@polkadot/types/lookup' {
19157
19163
  } & Struct;
19158
19164
  readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
19159
19165
  }
19160
- /** @name PalletHotfixSufficientsCall (370) */
19166
+ /** @name PalletHotfixSufficientsCall (369) */
19161
19167
  interface PalletHotfixSufficientsCall extends Enum {
19162
19168
  readonly isHotfixIncAccountSufficients: boolean;
19163
19169
  readonly asHotfixIncAccountSufficients: {
@@ -19165,7 +19171,7 @@ declare module '@polkadot/types/lookup' {
19165
19171
  } & Struct;
19166
19172
  readonly type: 'HotfixIncAccountSufficients';
19167
19173
  }
19168
- /** @name PalletAirdropClaimsCall (372) */
19174
+ /** @name PalletAirdropClaimsCall (371) */
19169
19175
  interface PalletAirdropClaimsCall extends Enum {
19170
19176
  readonly isClaim: boolean;
19171
19177
  readonly asClaim: {
@@ -19203,7 +19209,7 @@ declare module '@polkadot/types/lookup' {
19203
19209
  } & Struct;
19204
19210
  readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig' | 'ClaimSigned';
19205
19211
  }
19206
- /** @name PalletAirdropClaimsUtilsMultiAddressSignature (374) */
19212
+ /** @name PalletAirdropClaimsUtilsMultiAddressSignature (373) */
19207
19213
  interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
19208
19214
  readonly isEvm: boolean;
19209
19215
  readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
@@ -19211,19 +19217,19 @@ declare module '@polkadot/types/lookup' {
19211
19217
  readonly asNative: PalletAirdropClaimsUtilsSr25519Signature;
19212
19218
  readonly type: 'Evm' | 'Native';
19213
19219
  }
19214
- /** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (375) */
19220
+ /** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (374) */
19215
19221
  interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {
19216
19222
  }
19217
- /** @name PalletAirdropClaimsUtilsSr25519Signature (376) */
19223
+ /** @name PalletAirdropClaimsUtilsSr25519Signature (375) */
19218
19224
  interface PalletAirdropClaimsUtilsSr25519Signature extends U8aFixed {
19219
19225
  }
19220
- /** @name PalletAirdropClaimsStatementKind (382) */
19226
+ /** @name PalletAirdropClaimsStatementKind (381) */
19221
19227
  interface PalletAirdropClaimsStatementKind extends Enum {
19222
19228
  readonly isRegular: boolean;
19223
19229
  readonly isSafe: boolean;
19224
19230
  readonly type: 'Regular' | 'Safe';
19225
19231
  }
19226
- /** @name PalletProxyCall (383) */
19232
+ /** @name PalletProxyCall (382) */
19227
19233
  interface PalletProxyCall extends Enum {
19228
19234
  readonly isProxy: boolean;
19229
19235
  readonly asProxy: {
@@ -19282,7 +19288,7 @@ declare module '@polkadot/types/lookup' {
19282
19288
  } & Struct;
19283
19289
  readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
19284
19290
  }
19285
- /** @name PalletMultiAssetDelegationCall (385) */
19291
+ /** @name PalletMultiAssetDelegationCall (384) */
19286
19292
  interface PalletMultiAssetDelegationCall extends Enum {
19287
19293
  readonly isJoinOperators: boolean;
19288
19294
  readonly asJoinOperators: {
@@ -19351,7 +19357,7 @@ declare module '@polkadot/types/lookup' {
19351
19357
  } & Struct;
19352
19358
  readonly isWhitelistBlueprintForRewards: boolean;
19353
19359
  readonly asWhitelistBlueprintForRewards: {
19354
- readonly blueprintId: u32;
19360
+ readonly blueprintId: u64;
19355
19361
  } & Struct;
19356
19362
  readonly isManageAssetInVault: boolean;
19357
19363
  readonly asManageAssetInVault: {
@@ -19369,16 +19375,16 @@ declare module '@polkadot/types/lookup' {
19369
19375
  } & Struct;
19370
19376
  readonly type: 'JoinOperators' | 'ScheduleLeaveOperators' | 'CancelLeaveOperators' | 'ExecuteLeaveOperators' | 'OperatorBondMore' | 'ScheduleOperatorUnstake' | 'ExecuteOperatorUnstake' | 'CancelOperatorUnstake' | 'GoOffline' | 'GoOnline' | 'Deposit' | 'ScheduleWithdraw' | 'ExecuteWithdraw' | 'CancelWithdraw' | 'Delegate' | 'ScheduleDelegatorUnstake' | 'ExecuteDelegatorUnstake' | 'CancelDelegatorUnstake' | 'SetIncentiveApyAndCap' | 'WhitelistBlueprintForRewards' | 'ManageAssetInVault' | 'AddBlueprintId' | 'RemoveBlueprintId';
19371
19377
  }
19372
- /** @name PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection (387) */
19378
+ /** @name PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection (386) */
19373
19379
  interface PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection extends Enum {
19374
19380
  readonly isFixed: boolean;
19375
19381
  readonly asFixed: Vec<u64>;
19376
19382
  readonly isAll: boolean;
19377
19383
  readonly type: 'Fixed' | 'All';
19378
19384
  }
19379
- /** @name TangleTestnetRuntimeMaxDelegatorBlueprints (388) */
19385
+ /** @name TangleTestnetRuntimeMaxDelegatorBlueprints (387) */
19380
19386
  type TangleTestnetRuntimeMaxDelegatorBlueprints = Null;
19381
- /** @name PalletServicesModuleCall (391) */
19387
+ /** @name PalletServicesModuleCall (390) */
19382
19388
  interface PalletServicesModuleCall extends Enum {
19383
19389
  readonly isCreateBlueprint: boolean;
19384
19390
  readonly asCreateBlueprint: {
@@ -19458,7 +19464,7 @@ declare module '@polkadot/types/lookup' {
19458
19464
  } & Struct;
19459
19465
  readonly type: 'CreateBlueprint' | 'PreRegister' | 'Register' | 'Unregister' | 'UpdatePriceTargets' | 'Request' | 'Approve' | 'Reject' | 'Terminate' | 'Call' | 'SubmitResult' | 'Slash' | 'Dispute' | 'UpdateMasterBlueprintServiceManager';
19460
19466
  }
19461
- /** @name TanglePrimitivesServicesServiceBlueprint (392) */
19467
+ /** @name TanglePrimitivesServicesServiceBlueprint (391) */
19462
19468
  interface TanglePrimitivesServicesServiceBlueprint extends Struct {
19463
19469
  readonly metadata: TanglePrimitivesServicesServiceMetadata;
19464
19470
  readonly jobs: Vec<TanglePrimitivesServicesJobDefinition>;
@@ -19468,7 +19474,7 @@ declare module '@polkadot/types/lookup' {
19468
19474
  readonly masterManagerRevision: TanglePrimitivesServicesMasterBlueprintServiceManagerRevision;
19469
19475
  readonly gadget: TanglePrimitivesServicesGadget;
19470
19476
  }
19471
- /** @name TanglePrimitivesServicesServiceMetadata (393) */
19477
+ /** @name TanglePrimitivesServicesServiceMetadata (392) */
19472
19478
  interface TanglePrimitivesServicesServiceMetadata extends Struct {
19473
19479
  readonly name: Bytes;
19474
19480
  readonly description: Option<Bytes>;
@@ -19479,18 +19485,18 @@ declare module '@polkadot/types/lookup' {
19479
19485
  readonly website: Option<Bytes>;
19480
19486
  readonly license: Option<Bytes>;
19481
19487
  }
19482
- /** @name TanglePrimitivesServicesJobDefinition (398) */
19488
+ /** @name TanglePrimitivesServicesJobDefinition (397) */
19483
19489
  interface TanglePrimitivesServicesJobDefinition extends Struct {
19484
19490
  readonly metadata: TanglePrimitivesServicesJobMetadata;
19485
19491
  readonly params: Vec<TanglePrimitivesServicesFieldFieldType>;
19486
19492
  readonly result: Vec<TanglePrimitivesServicesFieldFieldType>;
19487
19493
  }
19488
- /** @name TanglePrimitivesServicesJobMetadata (399) */
19494
+ /** @name TanglePrimitivesServicesJobMetadata (398) */
19489
19495
  interface TanglePrimitivesServicesJobMetadata extends Struct {
19490
19496
  readonly name: Bytes;
19491
19497
  readonly description: Option<Bytes>;
19492
19498
  }
19493
- /** @name TanglePrimitivesServicesFieldFieldType (401) */
19499
+ /** @name TanglePrimitivesServicesFieldFieldType (400) */
19494
19500
  interface TanglePrimitivesServicesFieldFieldType extends Enum {
19495
19501
  readonly isVoid: boolean;
19496
19502
  readonly isBool: boolean;
@@ -19515,20 +19521,20 @@ declare module '@polkadot/types/lookup' {
19515
19521
  readonly isAccountId: boolean;
19516
19522
  readonly type: 'Void' | 'Bool' | 'Uint8' | 'Int8' | 'Uint16' | 'Int16' | 'Uint32' | 'Int32' | 'Uint64' | 'Int64' | 'String' | 'Bytes' | 'Optional' | 'Array' | 'List' | 'Struct' | 'AccountId';
19517
19523
  }
19518
- /** @name TanglePrimitivesServicesBlueprintServiceManager (407) */
19524
+ /** @name TanglePrimitivesServicesBlueprintServiceManager (406) */
19519
19525
  interface TanglePrimitivesServicesBlueprintServiceManager extends Enum {
19520
19526
  readonly isEvm: boolean;
19521
19527
  readonly asEvm: H160;
19522
19528
  readonly type: 'Evm';
19523
19529
  }
19524
- /** @name TanglePrimitivesServicesMasterBlueprintServiceManagerRevision (408) */
19530
+ /** @name TanglePrimitivesServicesMasterBlueprintServiceManagerRevision (407) */
19525
19531
  interface TanglePrimitivesServicesMasterBlueprintServiceManagerRevision extends Enum {
19526
19532
  readonly isLatest: boolean;
19527
19533
  readonly isSpecific: boolean;
19528
19534
  readonly asSpecific: u32;
19529
19535
  readonly type: 'Latest' | 'Specific';
19530
19536
  }
19531
- /** @name TanglePrimitivesServicesGadget (409) */
19537
+ /** @name TanglePrimitivesServicesGadget (408) */
19532
19538
  interface TanglePrimitivesServicesGadget extends Enum {
19533
19539
  readonly isWasm: boolean;
19534
19540
  readonly asWasm: TanglePrimitivesServicesWasmGadget;
@@ -19538,22 +19544,22 @@ declare module '@polkadot/types/lookup' {
19538
19544
  readonly asContainer: TanglePrimitivesServicesContainerGadget;
19539
19545
  readonly type: 'Wasm' | 'Native' | 'Container';
19540
19546
  }
19541
- /** @name TanglePrimitivesServicesWasmGadget (410) */
19547
+ /** @name TanglePrimitivesServicesWasmGadget (409) */
19542
19548
  interface TanglePrimitivesServicesWasmGadget extends Struct {
19543
19549
  readonly runtime: TanglePrimitivesServicesWasmRuntime;
19544
19550
  readonly sources: Vec<TanglePrimitivesServicesGadgetSource>;
19545
19551
  }
19546
- /** @name TanglePrimitivesServicesWasmRuntime (411) */
19552
+ /** @name TanglePrimitivesServicesWasmRuntime (410) */
19547
19553
  interface TanglePrimitivesServicesWasmRuntime extends Enum {
19548
19554
  readonly isWasmtime: boolean;
19549
19555
  readonly isWasmer: boolean;
19550
19556
  readonly type: 'Wasmtime' | 'Wasmer';
19551
19557
  }
19552
- /** @name TanglePrimitivesServicesGadgetSource (413) */
19558
+ /** @name TanglePrimitivesServicesGadgetSource (412) */
19553
19559
  interface TanglePrimitivesServicesGadgetSource extends Struct {
19554
19560
  readonly fetcher: TanglePrimitivesServicesGadgetSourceFetcher;
19555
19561
  }
19556
- /** @name TanglePrimitivesServicesGadgetSourceFetcher (414) */
19562
+ /** @name TanglePrimitivesServicesGadgetSourceFetcher (413) */
19557
19563
  interface TanglePrimitivesServicesGadgetSourceFetcher extends Enum {
19558
19564
  readonly isIpfs: boolean;
19559
19565
  readonly asIpfs: Bytes;
@@ -19565,21 +19571,21 @@ declare module '@polkadot/types/lookup' {
19565
19571
  readonly asTesting: TanglePrimitivesServicesTestFetcher;
19566
19572
  readonly type: 'Ipfs' | 'Github' | 'ContainerImage' | 'Testing';
19567
19573
  }
19568
- /** @name TanglePrimitivesServicesGithubFetcher (416) */
19574
+ /** @name TanglePrimitivesServicesGithubFetcher (415) */
19569
19575
  interface TanglePrimitivesServicesGithubFetcher extends Struct {
19570
19576
  readonly owner: Bytes;
19571
19577
  readonly repo: Bytes;
19572
19578
  readonly tag: Bytes;
19573
19579
  readonly binaries: Vec<TanglePrimitivesServicesGadgetBinary>;
19574
19580
  }
19575
- /** @name TanglePrimitivesServicesGadgetBinary (424) */
19581
+ /** @name TanglePrimitivesServicesGadgetBinary (423) */
19576
19582
  interface TanglePrimitivesServicesGadgetBinary extends Struct {
19577
19583
  readonly arch: TanglePrimitivesServicesArchitecture;
19578
19584
  readonly os: TanglePrimitivesServicesOperatingSystem;
19579
19585
  readonly name: Bytes;
19580
19586
  readonly sha256: U8aFixed;
19581
19587
  }
19582
- /** @name TanglePrimitivesServicesArchitecture (425) */
19588
+ /** @name TanglePrimitivesServicesArchitecture (424) */
19583
19589
  interface TanglePrimitivesServicesArchitecture extends Enum {
19584
19590
  readonly isWasm: boolean;
19585
19591
  readonly isWasm64: boolean;
@@ -19593,7 +19599,7 @@ declare module '@polkadot/types/lookup' {
19593
19599
  readonly isRiscV64: boolean;
19594
19600
  readonly type: 'Wasm' | 'Wasm64' | 'Wasi' | 'Wasi64' | 'Amd' | 'Amd64' | 'Arm' | 'Arm64' | 'RiscV' | 'RiscV64';
19595
19601
  }
19596
- /** @name TanglePrimitivesServicesOperatingSystem (426) */
19602
+ /** @name TanglePrimitivesServicesOperatingSystem (425) */
19597
19603
  interface TanglePrimitivesServicesOperatingSystem extends Enum {
19598
19604
  readonly isUnknown: boolean;
19599
19605
  readonly isLinux: boolean;
@@ -19602,27 +19608,27 @@ declare module '@polkadot/types/lookup' {
19602
19608
  readonly isBsd: boolean;
19603
19609
  readonly type: 'Unknown' | 'Linux' | 'Windows' | 'MacOS' | 'Bsd';
19604
19610
  }
19605
- /** @name TanglePrimitivesServicesImageRegistryFetcher (430) */
19611
+ /** @name TanglePrimitivesServicesImageRegistryFetcher (429) */
19606
19612
  interface TanglePrimitivesServicesImageRegistryFetcher extends Struct {
19607
19613
  readonly registry_: Bytes;
19608
19614
  readonly image: Bytes;
19609
19615
  readonly tag: Bytes;
19610
19616
  }
19611
- /** @name TanglePrimitivesServicesTestFetcher (437) */
19617
+ /** @name TanglePrimitivesServicesTestFetcher (436) */
19612
19618
  interface TanglePrimitivesServicesTestFetcher extends Struct {
19613
19619
  readonly cargoPackage: Bytes;
19614
19620
  readonly cargoBin: Bytes;
19615
19621
  readonly basePath: Bytes;
19616
19622
  }
19617
- /** @name TanglePrimitivesServicesNativeGadget (439) */
19623
+ /** @name TanglePrimitivesServicesNativeGadget (438) */
19618
19624
  interface TanglePrimitivesServicesNativeGadget extends Struct {
19619
19625
  readonly sources: Vec<TanglePrimitivesServicesGadgetSource>;
19620
19626
  }
19621
- /** @name TanglePrimitivesServicesContainerGadget (440) */
19627
+ /** @name TanglePrimitivesServicesContainerGadget (439) */
19622
19628
  interface TanglePrimitivesServicesContainerGadget extends Struct {
19623
19629
  readonly sources: Vec<TanglePrimitivesServicesGadgetSource>;
19624
19630
  }
19625
- /** @name PalletTangleLstCall (443) */
19631
+ /** @name PalletTangleLstCall (442) */
19626
19632
  interface PalletTangleLstCall extends Enum {
19627
19633
  readonly isJoin: boolean;
19628
19634
  readonly asJoin: {
@@ -19739,13 +19745,13 @@ declare module '@polkadot/types/lookup' {
19739
19745
  } & Struct;
19740
19746
  readonly type: 'Join' | 'BondExtra' | 'Unbond' | 'PoolWithdrawUnbonded' | 'WithdrawUnbonded' | 'Create' | 'CreateWithPoolId' | 'Nominate' | 'SetState' | 'SetMetadata' | 'SetConfigs' | 'UpdateRoles' | 'Chill' | 'BondExtraOther' | 'SetCommission' | 'SetCommissionMax' | 'SetCommissionChangeRate' | 'ClaimCommission' | 'AdjustPoolDeposit' | 'SetCommissionClaimPermission';
19741
19747
  }
19742
- /** @name PalletTangleLstBondExtra (444) */
19748
+ /** @name PalletTangleLstBondExtra (443) */
19743
19749
  interface PalletTangleLstBondExtra extends Enum {
19744
19750
  readonly isFreeBalance: boolean;
19745
19751
  readonly asFreeBalance: u128;
19746
19752
  readonly type: 'FreeBalance';
19747
19753
  }
19748
- /** @name PalletTangleLstConfigOpU128 (449) */
19754
+ /** @name PalletTangleLstConfigOpU128 (448) */
19749
19755
  interface PalletTangleLstConfigOpU128 extends Enum {
19750
19756
  readonly isNoop: boolean;
19751
19757
  readonly isSet: boolean;
@@ -19753,7 +19759,7 @@ declare module '@polkadot/types/lookup' {
19753
19759
  readonly isRemove: boolean;
19754
19760
  readonly type: 'Noop' | 'Set' | 'Remove';
19755
19761
  }
19756
- /** @name PalletTangleLstConfigOpU32 (450) */
19762
+ /** @name PalletTangleLstConfigOpU32 (449) */
19757
19763
  interface PalletTangleLstConfigOpU32 extends Enum {
19758
19764
  readonly isNoop: boolean;
19759
19765
  readonly isSet: boolean;
@@ -19761,7 +19767,7 @@ declare module '@polkadot/types/lookup' {
19761
19767
  readonly isRemove: boolean;
19762
19768
  readonly type: 'Noop' | 'Set' | 'Remove';
19763
19769
  }
19764
- /** @name PalletTangleLstConfigOpPerbill (451) */
19770
+ /** @name PalletTangleLstConfigOpPerbill (450) */
19765
19771
  interface PalletTangleLstConfigOpPerbill extends Enum {
19766
19772
  readonly isNoop: boolean;
19767
19773
  readonly isSet: boolean;
@@ -19769,7 +19775,7 @@ declare module '@polkadot/types/lookup' {
19769
19775
  readonly isRemove: boolean;
19770
19776
  readonly type: 'Noop' | 'Set' | 'Remove';
19771
19777
  }
19772
- /** @name PalletTangleLstConfigOpAccountId32 (452) */
19778
+ /** @name PalletTangleLstConfigOpAccountId32 (451) */
19773
19779
  interface PalletTangleLstConfigOpAccountId32 extends Enum {
19774
19780
  readonly isNoop: boolean;
19775
19781
  readonly isSet: boolean;
@@ -19777,12 +19783,12 @@ declare module '@polkadot/types/lookup' {
19777
19783
  readonly isRemove: boolean;
19778
19784
  readonly type: 'Noop' | 'Set' | 'Remove';
19779
19785
  }
19780
- /** @name PalletSudoError (453) */
19786
+ /** @name PalletSudoError (452) */
19781
19787
  interface PalletSudoError extends Enum {
19782
19788
  readonly isRequireSudo: boolean;
19783
19789
  readonly type: 'RequireSudo';
19784
19790
  }
19785
- /** @name PalletAssetsAssetDetails (455) */
19791
+ /** @name PalletAssetsAssetDetails (454) */
19786
19792
  interface PalletAssetsAssetDetails extends Struct {
19787
19793
  readonly owner: AccountId32;
19788
19794
  readonly issuer: AccountId32;
@@ -19797,28 +19803,28 @@ declare module '@polkadot/types/lookup' {
19797
19803
  readonly approvals: u32;
19798
19804
  readonly status: PalletAssetsAssetStatus;
19799
19805
  }
19800
- /** @name PalletAssetsAssetStatus (456) */
19806
+ /** @name PalletAssetsAssetStatus (455) */
19801
19807
  interface PalletAssetsAssetStatus extends Enum {
19802
19808
  readonly isLive: boolean;
19803
19809
  readonly isFrozen: boolean;
19804
19810
  readonly isDestroying: boolean;
19805
19811
  readonly type: 'Live' | 'Frozen' | 'Destroying';
19806
19812
  }
19807
- /** @name PalletAssetsAssetAccount (458) */
19813
+ /** @name PalletAssetsAssetAccount (457) */
19808
19814
  interface PalletAssetsAssetAccount extends Struct {
19809
19815
  readonly balance: u128;
19810
19816
  readonly status: PalletAssetsAccountStatus;
19811
19817
  readonly reason: PalletAssetsExistenceReason;
19812
19818
  readonly extra: Null;
19813
19819
  }
19814
- /** @name PalletAssetsAccountStatus (459) */
19820
+ /** @name PalletAssetsAccountStatus (458) */
19815
19821
  interface PalletAssetsAccountStatus extends Enum {
19816
19822
  readonly isLiquid: boolean;
19817
19823
  readonly isFrozen: boolean;
19818
19824
  readonly isBlocked: boolean;
19819
19825
  readonly type: 'Liquid' | 'Frozen' | 'Blocked';
19820
19826
  }
19821
- /** @name PalletAssetsExistenceReason (460) */
19827
+ /** @name PalletAssetsExistenceReason (459) */
19822
19828
  interface PalletAssetsExistenceReason extends Enum {
19823
19829
  readonly isConsumer: boolean;
19824
19830
  readonly isSufficient: boolean;
@@ -19829,12 +19835,12 @@ declare module '@polkadot/types/lookup' {
19829
19835
  readonly asDepositFrom: ITuple<[AccountId32, u128]>;
19830
19836
  readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded' | 'DepositFrom';
19831
19837
  }
19832
- /** @name PalletAssetsApproval (462) */
19838
+ /** @name PalletAssetsApproval (461) */
19833
19839
  interface PalletAssetsApproval extends Struct {
19834
19840
  readonly amount: u128;
19835
19841
  readonly deposit: u128;
19836
19842
  }
19837
- /** @name PalletAssetsAssetMetadata (463) */
19843
+ /** @name PalletAssetsAssetMetadata (462) */
19838
19844
  interface PalletAssetsAssetMetadata extends Struct {
19839
19845
  readonly deposit: u128;
19840
19846
  readonly name: Bytes;
@@ -19842,7 +19848,7 @@ declare module '@polkadot/types/lookup' {
19842
19848
  readonly decimals: u8;
19843
19849
  readonly isFrozen: bool;
19844
19850
  }
19845
- /** @name PalletAssetsError (465) */
19851
+ /** @name PalletAssetsError (464) */
19846
19852
  interface PalletAssetsError extends Enum {
19847
19853
  readonly isBalanceLow: boolean;
19848
19854
  readonly isNoAccount: boolean;
@@ -19867,46 +19873,46 @@ declare module '@polkadot/types/lookup' {
19867
19873
  readonly isBadAssetId: boolean;
19868
19874
  readonly type: 'BalanceLow' | 'NoAccount' | 'NoPermission' | 'Unknown' | 'Frozen' | 'InUse' | 'BadWitness' | 'MinBalanceZero' | 'UnavailableConsumer' | 'BadMetadata' | 'Unapproved' | 'WouldDie' | 'AlreadyExists' | 'NoDeposit' | 'WouldBurn' | 'LiveAsset' | 'AssetNotLive' | 'IncorrectStatus' | 'NotFrozen' | 'CallbackFailed' | 'BadAssetId';
19869
19875
  }
19870
- /** @name PalletBalancesBalanceLock (467) */
19876
+ /** @name PalletBalancesBalanceLock (466) */
19871
19877
  interface PalletBalancesBalanceLock extends Struct {
19872
19878
  readonly id: U8aFixed;
19873
19879
  readonly amount: u128;
19874
19880
  readonly reasons: PalletBalancesReasons;
19875
19881
  }
19876
- /** @name PalletBalancesReasons (468) */
19882
+ /** @name PalletBalancesReasons (467) */
19877
19883
  interface PalletBalancesReasons extends Enum {
19878
19884
  readonly isFee: boolean;
19879
19885
  readonly isMisc: boolean;
19880
19886
  readonly isAll: boolean;
19881
19887
  readonly type: 'Fee' | 'Misc' | 'All';
19882
19888
  }
19883
- /** @name PalletBalancesReserveData (471) */
19889
+ /** @name PalletBalancesReserveData (470) */
19884
19890
  interface PalletBalancesReserveData extends Struct {
19885
19891
  readonly id: U8aFixed;
19886
19892
  readonly amount: u128;
19887
19893
  }
19888
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (474) */
19894
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (473) */
19889
19895
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
19890
19896
  readonly id: TangleTestnetRuntimeRuntimeHoldReason;
19891
19897
  readonly amount: u128;
19892
19898
  }
19893
- /** @name TangleTestnetRuntimeRuntimeHoldReason (475) */
19899
+ /** @name TangleTestnetRuntimeRuntimeHoldReason (474) */
19894
19900
  interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
19895
19901
  readonly isPreimage: boolean;
19896
19902
  readonly asPreimage: PalletPreimageHoldReason;
19897
19903
  readonly type: 'Preimage';
19898
19904
  }
19899
- /** @name PalletPreimageHoldReason (476) */
19905
+ /** @name PalletPreimageHoldReason (475) */
19900
19906
  interface PalletPreimageHoldReason extends Enum {
19901
19907
  readonly isPreimage: boolean;
19902
19908
  readonly type: 'Preimage';
19903
19909
  }
19904
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (479) */
19910
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (478) */
19905
19911
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
19906
19912
  readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
19907
19913
  readonly amount: u128;
19908
19914
  }
19909
- /** @name TangleTestnetRuntimeRuntimeFreezeReason (480) */
19915
+ /** @name TangleTestnetRuntimeRuntimeFreezeReason (479) */
19910
19916
  interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
19911
19917
  readonly isNominationPools: boolean;
19912
19918
  readonly asNominationPools: PalletNominationPoolsFreezeReason;
@@ -19914,17 +19920,17 @@ declare module '@polkadot/types/lookup' {
19914
19920
  readonly asLst: PalletTangleLstFreezeReason;
19915
19921
  readonly type: 'NominationPools' | 'Lst';
19916
19922
  }
19917
- /** @name PalletNominationPoolsFreezeReason (481) */
19923
+ /** @name PalletNominationPoolsFreezeReason (480) */
19918
19924
  interface PalletNominationPoolsFreezeReason extends Enum {
19919
19925
  readonly isPoolMinBalance: boolean;
19920
19926
  readonly type: 'PoolMinBalance';
19921
19927
  }
19922
- /** @name PalletTangleLstFreezeReason (482) */
19928
+ /** @name PalletTangleLstFreezeReason (481) */
19923
19929
  interface PalletTangleLstFreezeReason extends Enum {
19924
19930
  readonly isPoolMinBalance: boolean;
19925
19931
  readonly type: 'PoolMinBalance';
19926
19932
  }
19927
- /** @name PalletBalancesError (484) */
19933
+ /** @name PalletBalancesError (483) */
19928
19934
  interface PalletBalancesError extends Enum {
19929
19935
  readonly isVestingBalance: boolean;
19930
19936
  readonly isLiquidityRestrictions: boolean;
@@ -19940,13 +19946,13 @@ declare module '@polkadot/types/lookup' {
19940
19946
  readonly isDeltaZero: boolean;
19941
19947
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
19942
19948
  }
19943
- /** @name PalletTransactionPaymentReleases (486) */
19949
+ /** @name PalletTransactionPaymentReleases (485) */
19944
19950
  interface PalletTransactionPaymentReleases extends Enum {
19945
19951
  readonly isV1Ancient: boolean;
19946
19952
  readonly isV2: boolean;
19947
19953
  readonly type: 'V1Ancient' | 'V2';
19948
19954
  }
19949
- /** @name SpConsensusBabeDigestsPreDigest (493) */
19955
+ /** @name SpConsensusBabeDigestsPreDigest (492) */
19950
19956
  interface SpConsensusBabeDigestsPreDigest extends Enum {
19951
19957
  readonly isPrimary: boolean;
19952
19958
  readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
@@ -19956,34 +19962,34 @@ declare module '@polkadot/types/lookup' {
19956
19962
  readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
19957
19963
  readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
19958
19964
  }
19959
- /** @name SpConsensusBabeDigestsPrimaryPreDigest (494) */
19965
+ /** @name SpConsensusBabeDigestsPrimaryPreDigest (493) */
19960
19966
  interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
19961
19967
  readonly authorityIndex: u32;
19962
19968
  readonly slot: u64;
19963
19969
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
19964
19970
  }
19965
- /** @name SpCoreSr25519VrfVrfSignature (495) */
19971
+ /** @name SpCoreSr25519VrfVrfSignature (494) */
19966
19972
  interface SpCoreSr25519VrfVrfSignature extends Struct {
19967
19973
  readonly preOutput: U8aFixed;
19968
19974
  readonly proof: U8aFixed;
19969
19975
  }
19970
- /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (496) */
19976
+ /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (495) */
19971
19977
  interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
19972
19978
  readonly authorityIndex: u32;
19973
19979
  readonly slot: u64;
19974
19980
  }
19975
- /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (497) */
19981
+ /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (496) */
19976
19982
  interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
19977
19983
  readonly authorityIndex: u32;
19978
19984
  readonly slot: u64;
19979
19985
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
19980
19986
  }
19981
- /** @name SpConsensusBabeBabeEpochConfiguration (498) */
19987
+ /** @name SpConsensusBabeBabeEpochConfiguration (497) */
19982
19988
  interface SpConsensusBabeBabeEpochConfiguration extends Struct {
19983
19989
  readonly c: ITuple<[u64, u64]>;
19984
19990
  readonly allowedSlots: SpConsensusBabeAllowedSlots;
19985
19991
  }
19986
- /** @name PalletBabeError (500) */
19992
+ /** @name PalletBabeError (499) */
19987
19993
  interface PalletBabeError extends Enum {
19988
19994
  readonly isInvalidEquivocationProof: boolean;
19989
19995
  readonly isInvalidKeyOwnershipProof: boolean;
@@ -19991,7 +19997,7 @@ declare module '@polkadot/types/lookup' {
19991
19997
  readonly isInvalidConfiguration: boolean;
19992
19998
  readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
19993
19999
  }
19994
- /** @name PalletGrandpaStoredState (501) */
20000
+ /** @name PalletGrandpaStoredState (500) */
19995
20001
  interface PalletGrandpaStoredState extends Enum {
19996
20002
  readonly isLive: boolean;
19997
20003
  readonly isPendingPause: boolean;
@@ -20007,14 +20013,14 @@ declare module '@polkadot/types/lookup' {
20007
20013
  } & Struct;
20008
20014
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
20009
20015
  }
20010
- /** @name PalletGrandpaStoredPendingChange (502) */
20016
+ /** @name PalletGrandpaStoredPendingChange (501) */
20011
20017
  interface PalletGrandpaStoredPendingChange extends Struct {
20012
20018
  readonly scheduledAt: u64;
20013
20019
  readonly delay: u64;
20014
20020
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
20015
20021
  readonly forced: Option<u64>;
20016
20022
  }
20017
- /** @name PalletGrandpaError (504) */
20023
+ /** @name PalletGrandpaError (503) */
20018
20024
  interface PalletGrandpaError extends Enum {
20019
20025
  readonly isPauseFailed: boolean;
20020
20026
  readonly isResumeFailed: boolean;
@@ -20025,7 +20031,7 @@ declare module '@polkadot/types/lookup' {
20025
20031
  readonly isDuplicateOffenceReport: boolean;
20026
20032
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
20027
20033
  }
20028
- /** @name PalletIndicesError (506) */
20034
+ /** @name PalletIndicesError (505) */
20029
20035
  interface PalletIndicesError extends Enum {
20030
20036
  readonly isNotAssigned: boolean;
20031
20037
  readonly isNotOwner: boolean;
@@ -20034,7 +20040,7 @@ declare module '@polkadot/types/lookup' {
20034
20040
  readonly isPermanent: boolean;
20035
20041
  readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
20036
20042
  }
20037
- /** @name PalletDemocracyReferendumInfo (511) */
20043
+ /** @name PalletDemocracyReferendumInfo (510) */
20038
20044
  interface PalletDemocracyReferendumInfo extends Enum {
20039
20045
  readonly isOngoing: boolean;
20040
20046
  readonly asOngoing: PalletDemocracyReferendumStatus;
@@ -20045,7 +20051,7 @@ declare module '@polkadot/types/lookup' {
20045
20051
  } & Struct;
20046
20052
  readonly type: 'Ongoing' | 'Finished';
20047
20053
  }
20048
- /** @name PalletDemocracyReferendumStatus (512) */
20054
+ /** @name PalletDemocracyReferendumStatus (511) */
20049
20055
  interface PalletDemocracyReferendumStatus extends Struct {
20050
20056
  readonly end: u64;
20051
20057
  readonly proposal: FrameSupportPreimagesBounded;
@@ -20053,13 +20059,13 @@ declare module '@polkadot/types/lookup' {
20053
20059
  readonly delay: u64;
20054
20060
  readonly tally: PalletDemocracyTally;
20055
20061
  }
20056
- /** @name PalletDemocracyTally (513) */
20062
+ /** @name PalletDemocracyTally (512) */
20057
20063
  interface PalletDemocracyTally extends Struct {
20058
20064
  readonly ayes: u128;
20059
20065
  readonly nays: u128;
20060
20066
  readonly turnout: u128;
20061
20067
  }
20062
- /** @name PalletDemocracyVoteVoting (514) */
20068
+ /** @name PalletDemocracyVoteVoting (513) */
20063
20069
  interface PalletDemocracyVoteVoting extends Enum {
20064
20070
  readonly isDirect: boolean;
20065
20071
  readonly asDirect: {
@@ -20077,15 +20083,15 @@ declare module '@polkadot/types/lookup' {
20077
20083
  } & Struct;
20078
20084
  readonly type: 'Direct' | 'Delegating';
20079
20085
  }
20080
- /** @name PalletDemocracyDelegations (518) */
20086
+ /** @name PalletDemocracyDelegations (517) */
20081
20087
  interface PalletDemocracyDelegations extends Struct {
20082
20088
  readonly votes: u128;
20083
20089
  readonly capital: u128;
20084
20090
  }
20085
- /** @name PalletDemocracyVotePriorLock (519) */
20091
+ /** @name PalletDemocracyVotePriorLock (518) */
20086
20092
  interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {
20087
20093
  }
20088
- /** @name PalletDemocracyError (522) */
20094
+ /** @name PalletDemocracyError (521) */
20089
20095
  interface PalletDemocracyError extends Enum {
20090
20096
  readonly isValueLow: boolean;
20091
20097
  readonly isProposalMissing: boolean;
@@ -20113,7 +20119,7 @@ declare module '@polkadot/types/lookup' {
20113
20119
  readonly isPreimageNotExist: boolean;
20114
20120
  readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist';
20115
20121
  }
20116
- /** @name PalletCollectiveVotes (524) */
20122
+ /** @name PalletCollectiveVotes (523) */
20117
20123
  interface PalletCollectiveVotes extends Struct {
20118
20124
  readonly index: u32;
20119
20125
  readonly threshold: u32;
@@ -20121,7 +20127,7 @@ declare module '@polkadot/types/lookup' {
20121
20127
  readonly nays: Vec<AccountId32>;
20122
20128
  readonly end: u64;
20123
20129
  }
20124
- /** @name PalletCollectiveError (525) */
20130
+ /** @name PalletCollectiveError (524) */
20125
20131
  interface PalletCollectiveError extends Enum {
20126
20132
  readonly isNotMember: boolean;
20127
20133
  readonly isDuplicateProposal: boolean;
@@ -20136,13 +20142,13 @@ declare module '@polkadot/types/lookup' {
20136
20142
  readonly isPrimeAccountNotMember: boolean;
20137
20143
  readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
20138
20144
  }
20139
- /** @name PalletVestingReleases (528) */
20145
+ /** @name PalletVestingReleases (527) */
20140
20146
  interface PalletVestingReleases extends Enum {
20141
20147
  readonly isV0: boolean;
20142
20148
  readonly isV1: boolean;
20143
20149
  readonly type: 'V0' | 'V1';
20144
20150
  }
20145
- /** @name PalletVestingError (529) */
20151
+ /** @name PalletVestingError (528) */
20146
20152
  interface PalletVestingError extends Enum {
20147
20153
  readonly isNotVesting: boolean;
20148
20154
  readonly isAtMaxVestingSchedules: boolean;
@@ -20151,19 +20157,19 @@ declare module '@polkadot/types/lookup' {
20151
20157
  readonly isInvalidScheduleParams: boolean;
20152
20158
  readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
20153
20159
  }
20154
- /** @name PalletElectionsPhragmenSeatHolder (531) */
20160
+ /** @name PalletElectionsPhragmenSeatHolder (530) */
20155
20161
  interface PalletElectionsPhragmenSeatHolder extends Struct {
20156
20162
  readonly who: AccountId32;
20157
20163
  readonly stake: u128;
20158
20164
  readonly deposit: u128;
20159
20165
  }
20160
- /** @name PalletElectionsPhragmenVoter (532) */
20166
+ /** @name PalletElectionsPhragmenVoter (531) */
20161
20167
  interface PalletElectionsPhragmenVoter extends Struct {
20162
20168
  readonly votes: Vec<AccountId32>;
20163
20169
  readonly stake: u128;
20164
20170
  readonly deposit: u128;
20165
20171
  }
20166
- /** @name PalletElectionsPhragmenError (533) */
20172
+ /** @name PalletElectionsPhragmenError (532) */
20167
20173
  interface PalletElectionsPhragmenError extends Enum {
20168
20174
  readonly isUnableToVote: boolean;
20169
20175
  readonly isNoVotes: boolean;
@@ -20184,25 +20190,25 @@ declare module '@polkadot/types/lookup' {
20184
20190
  readonly isInvalidReplacement: boolean;
20185
20191
  readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
20186
20192
  }
20187
- /** @name PalletElectionProviderMultiPhaseReadySolution (534) */
20193
+ /** @name PalletElectionProviderMultiPhaseReadySolution (533) */
20188
20194
  interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
20189
20195
  readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
20190
20196
  readonly score: SpNposElectionsElectionScore;
20191
20197
  readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
20192
20198
  }
20193
- /** @name PalletElectionProviderMultiPhaseRoundSnapshot (536) */
20199
+ /** @name PalletElectionProviderMultiPhaseRoundSnapshot (535) */
20194
20200
  interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
20195
20201
  readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
20196
20202
  readonly targets: Vec<AccountId32>;
20197
20203
  }
20198
- /** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (543) */
20204
+ /** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (542) */
20199
20205
  interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
20200
20206
  readonly who: AccountId32;
20201
20207
  readonly deposit: u128;
20202
20208
  readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
20203
20209
  readonly callFee: u128;
20204
20210
  }
20205
- /** @name PalletElectionProviderMultiPhaseError (544) */
20211
+ /** @name PalletElectionProviderMultiPhaseError (543) */
20206
20212
  interface PalletElectionProviderMultiPhaseError extends Enum {
20207
20213
  readonly isPreDispatchEarlySubmission: boolean;
20208
20214
  readonly isPreDispatchWrongWinnerCount: boolean;
@@ -20221,7 +20227,7 @@ declare module '@polkadot/types/lookup' {
20221
20227
  readonly isPreDispatchDifferentRound: boolean;
20222
20228
  readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
20223
20229
  }
20224
- /** @name PalletStakingStakingLedger (545) */
20230
+ /** @name PalletStakingStakingLedger (544) */
20225
20231
  interface PalletStakingStakingLedger extends Struct {
20226
20232
  readonly stash: AccountId32;
20227
20233
  readonly total: Compact<u128>;
@@ -20229,35 +20235,35 @@ declare module '@polkadot/types/lookup' {
20229
20235
  readonly unlocking: Vec<PalletStakingUnlockChunk>;
20230
20236
  readonly legacyClaimedRewards: Vec<u32>;
20231
20237
  }
20232
- /** @name PalletStakingNominations (547) */
20238
+ /** @name PalletStakingNominations (546) */
20233
20239
  interface PalletStakingNominations extends Struct {
20234
20240
  readonly targets: Vec<AccountId32>;
20235
20241
  readonly submittedIn: u32;
20236
20242
  readonly suppressed: bool;
20237
20243
  }
20238
- /** @name PalletStakingActiveEraInfo (548) */
20244
+ /** @name PalletStakingActiveEraInfo (547) */
20239
20245
  interface PalletStakingActiveEraInfo extends Struct {
20240
20246
  readonly index: u32;
20241
20247
  readonly start: Option<u64>;
20242
20248
  }
20243
- /** @name SpStakingPagedExposureMetadata (550) */
20249
+ /** @name SpStakingPagedExposureMetadata (549) */
20244
20250
  interface SpStakingPagedExposureMetadata extends Struct {
20245
20251
  readonly total: Compact<u128>;
20246
20252
  readonly own: Compact<u128>;
20247
20253
  readonly nominatorCount: u32;
20248
20254
  readonly pageCount: u32;
20249
20255
  }
20250
- /** @name SpStakingExposurePage (552) */
20256
+ /** @name SpStakingExposurePage (551) */
20251
20257
  interface SpStakingExposurePage extends Struct {
20252
20258
  readonly pageTotal: Compact<u128>;
20253
20259
  readonly others: Vec<SpStakingIndividualExposure>;
20254
20260
  }
20255
- /** @name PalletStakingEraRewardPoints (553) */
20261
+ /** @name PalletStakingEraRewardPoints (552) */
20256
20262
  interface PalletStakingEraRewardPoints extends Struct {
20257
20263
  readonly total: u32;
20258
20264
  readonly individual: BTreeMap<AccountId32, u32>;
20259
20265
  }
20260
- /** @name PalletStakingUnappliedSlash (558) */
20266
+ /** @name PalletStakingUnappliedSlash (557) */
20261
20267
  interface PalletStakingUnappliedSlash extends Struct {
20262
20268
  readonly validator: AccountId32;
20263
20269
  readonly own: u128;
@@ -20265,19 +20271,19 @@ declare module '@polkadot/types/lookup' {
20265
20271
  readonly reporters: Vec<AccountId32>;
20266
20272
  readonly payout: u128;
20267
20273
  }
20268
- /** @name PalletStakingSlashingSlashingSpans (562) */
20274
+ /** @name PalletStakingSlashingSlashingSpans (561) */
20269
20275
  interface PalletStakingSlashingSlashingSpans extends Struct {
20270
20276
  readonly spanIndex: u32;
20271
20277
  readonly lastStart: u32;
20272
20278
  readonly lastNonzeroSlash: u32;
20273
20279
  readonly prior: Vec<u32>;
20274
20280
  }
20275
- /** @name PalletStakingSlashingSpanRecord (563) */
20281
+ /** @name PalletStakingSlashingSpanRecord (562) */
20276
20282
  interface PalletStakingSlashingSpanRecord extends Struct {
20277
20283
  readonly slashed: u128;
20278
20284
  readonly paidOut: u128;
20279
20285
  }
20280
- /** @name PalletStakingPalletError (564) */
20286
+ /** @name PalletStakingPalletError (563) */
20281
20287
  interface PalletStakingPalletError extends Enum {
20282
20288
  readonly isNotController: boolean;
20283
20289
  readonly isNotStash: boolean;
@@ -20312,10 +20318,10 @@ declare module '@polkadot/types/lookup' {
20312
20318
  readonly isVirtualStakerNotAllowed: boolean;
20313
20319
  readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'DuplicateIndex' | 'InvalidSlashIndex' | 'InsufficientBond' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'InvalidNumberOfNominations' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'InvalidPage' | 'IncorrectHistoryDepth' | 'IncorrectSlashingSpans' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'CannotChillOther' | 'TooManyNominators' | 'TooManyValidators' | 'CommissionTooLow' | 'BoundNotMet' | 'ControllerDeprecated' | 'CannotRestoreLedger' | 'RewardDestinationRestricted' | 'NotEnoughFunds' | 'VirtualStakerNotAllowed';
20314
20320
  }
20315
- /** @name SpCoreCryptoKeyTypeId (568) */
20321
+ /** @name SpCoreCryptoKeyTypeId (567) */
20316
20322
  interface SpCoreCryptoKeyTypeId extends U8aFixed {
20317
20323
  }
20318
- /** @name PalletSessionError (569) */
20324
+ /** @name PalletSessionError (568) */
20319
20325
  interface PalletSessionError extends Enum {
20320
20326
  readonly isInvalidProof: boolean;
20321
20327
  readonly isNoAssociatedValidatorId: boolean;
@@ -20324,14 +20330,14 @@ declare module '@polkadot/types/lookup' {
20324
20330
  readonly isNoAccount: boolean;
20325
20331
  readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
20326
20332
  }
20327
- /** @name PalletTreasuryProposal (571) */
20333
+ /** @name PalletTreasuryProposal (570) */
20328
20334
  interface PalletTreasuryProposal extends Struct {
20329
20335
  readonly proposer: AccountId32;
20330
20336
  readonly value: u128;
20331
20337
  readonly beneficiary: AccountId32;
20332
20338
  readonly bond: u128;
20333
20339
  }
20334
- /** @name PalletTreasurySpendStatus (573) */
20340
+ /** @name PalletTreasurySpendStatus (572) */
20335
20341
  interface PalletTreasurySpendStatus extends Struct {
20336
20342
  readonly assetKind: Null;
20337
20343
  readonly amount: u128;
@@ -20340,7 +20346,7 @@ declare module '@polkadot/types/lookup' {
20340
20346
  readonly expireAt: u64;
20341
20347
  readonly status: PalletTreasuryPaymentState;
20342
20348
  }
20343
- /** @name PalletTreasuryPaymentState (574) */
20349
+ /** @name PalletTreasuryPaymentState (573) */
20344
20350
  interface PalletTreasuryPaymentState extends Enum {
20345
20351
  readonly isPending: boolean;
20346
20352
  readonly isAttempted: boolean;
@@ -20350,10 +20356,10 @@ declare module '@polkadot/types/lookup' {
20350
20356
  readonly isFailed: boolean;
20351
20357
  readonly type: 'Pending' | 'Attempted' | 'Failed';
20352
20358
  }
20353
- /** @name FrameSupportPalletId (575) */
20359
+ /** @name FrameSupportPalletId (574) */
20354
20360
  interface FrameSupportPalletId extends U8aFixed {
20355
20361
  }
20356
- /** @name PalletTreasuryError (576) */
20362
+ /** @name PalletTreasuryError (575) */
20357
20363
  interface PalletTreasuryError extends Enum {
20358
20364
  readonly isInvalidIndex: boolean;
20359
20365
  readonly isTooManyApprovals: boolean;
@@ -20368,7 +20374,7 @@ declare module '@polkadot/types/lookup' {
20368
20374
  readonly isInconclusive: boolean;
20369
20375
  readonly type: 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
20370
20376
  }
20371
- /** @name PalletBountiesBounty (577) */
20377
+ /** @name PalletBountiesBounty (576) */
20372
20378
  interface PalletBountiesBounty extends Struct {
20373
20379
  readonly proposer: AccountId32;
20374
20380
  readonly value: u128;
@@ -20377,7 +20383,7 @@ declare module '@polkadot/types/lookup' {
20377
20383
  readonly bond: u128;
20378
20384
  readonly status: PalletBountiesBountyStatus;
20379
20385
  }
20380
- /** @name PalletBountiesBountyStatus (578) */
20386
+ /** @name PalletBountiesBountyStatus (577) */
20381
20387
  interface PalletBountiesBountyStatus extends Enum {
20382
20388
  readonly isProposed: boolean;
20383
20389
  readonly isApproved: boolean;
@@ -20399,7 +20405,7 @@ declare module '@polkadot/types/lookup' {
20399
20405
  } & Struct;
20400
20406
  readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
20401
20407
  }
20402
- /** @name PalletBountiesError (580) */
20408
+ /** @name PalletBountiesError (579) */
20403
20409
  interface PalletBountiesError extends Enum {
20404
20410
  readonly isInsufficientProposersBalance: boolean;
20405
20411
  readonly isInvalidIndex: boolean;
@@ -20414,7 +20420,7 @@ declare module '@polkadot/types/lookup' {
20414
20420
  readonly isTooManyQueued: boolean;
20415
20421
  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
20416
20422
  }
20417
- /** @name PalletChildBountiesChildBounty (581) */
20423
+ /** @name PalletChildBountiesChildBounty (580) */
20418
20424
  interface PalletChildBountiesChildBounty extends Struct {
20419
20425
  readonly parentBounty: u32;
20420
20426
  readonly value: u128;
@@ -20422,7 +20428,7 @@ declare module '@polkadot/types/lookup' {
20422
20428
  readonly curatorDeposit: u128;
20423
20429
  readonly status: PalletChildBountiesChildBountyStatus;
20424
20430
  }
20425
- /** @name PalletChildBountiesChildBountyStatus (582) */
20431
+ /** @name PalletChildBountiesChildBountyStatus (581) */
20426
20432
  interface PalletChildBountiesChildBountyStatus extends Enum {
20427
20433
  readonly isAdded: boolean;
20428
20434
  readonly isCuratorProposed: boolean;
@@ -20441,14 +20447,14 @@ declare module '@polkadot/types/lookup' {
20441
20447
  } & Struct;
20442
20448
  readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
20443
20449
  }
20444
- /** @name PalletChildBountiesError (583) */
20450
+ /** @name PalletChildBountiesError (582) */
20445
20451
  interface PalletChildBountiesError extends Enum {
20446
20452
  readonly isParentBountyNotActive: boolean;
20447
20453
  readonly isInsufficientBountyBalance: boolean;
20448
20454
  readonly isTooManyChildBounties: boolean;
20449
20455
  readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
20450
20456
  }
20451
- /** @name PalletBagsListListNode (584) */
20457
+ /** @name PalletBagsListListNode (583) */
20452
20458
  interface PalletBagsListListNode extends Struct {
20453
20459
  readonly id: AccountId32;
20454
20460
  readonly prev: Option<AccountId32>;
@@ -20456,18 +20462,18 @@ declare module '@polkadot/types/lookup' {
20456
20462
  readonly bagUpper: u64;
20457
20463
  readonly score: u64;
20458
20464
  }
20459
- /** @name PalletBagsListListBag (585) */
20465
+ /** @name PalletBagsListListBag (584) */
20460
20466
  interface PalletBagsListListBag extends Struct {
20461
20467
  readonly head: Option<AccountId32>;
20462
20468
  readonly tail: Option<AccountId32>;
20463
20469
  }
20464
- /** @name PalletBagsListError (586) */
20470
+ /** @name PalletBagsListError (585) */
20465
20471
  interface PalletBagsListError extends Enum {
20466
20472
  readonly isList: boolean;
20467
20473
  readonly asList: PalletBagsListListListError;
20468
20474
  readonly type: 'List';
20469
20475
  }
20470
- /** @name PalletBagsListListListError (587) */
20476
+ /** @name PalletBagsListListListError (586) */
20471
20477
  interface PalletBagsListListListError extends Enum {
20472
20478
  readonly isDuplicate: boolean;
20473
20479
  readonly isNotHeavier: boolean;
@@ -20475,14 +20481,14 @@ declare module '@polkadot/types/lookup' {
20475
20481
  readonly isNodeNotFound: boolean;
20476
20482
  readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
20477
20483
  }
20478
- /** @name PalletNominationPoolsPoolMember (588) */
20484
+ /** @name PalletNominationPoolsPoolMember (587) */
20479
20485
  interface PalletNominationPoolsPoolMember extends Struct {
20480
20486
  readonly poolId: u32;
20481
20487
  readonly points: u128;
20482
20488
  readonly lastRecordedRewardCounter: u128;
20483
20489
  readonly unbondingEras: BTreeMap<u32, u128>;
20484
20490
  }
20485
- /** @name PalletNominationPoolsBondedPoolInner (593) */
20491
+ /** @name PalletNominationPoolsBondedPoolInner (592) */
20486
20492
  interface PalletNominationPoolsBondedPoolInner extends Struct {
20487
20493
  readonly commission: PalletNominationPoolsCommission;
20488
20494
  readonly memberCounter: u32;
@@ -20490,7 +20496,7 @@ declare module '@polkadot/types/lookup' {
20490
20496
  readonly roles: PalletNominationPoolsPoolRoles;
20491
20497
  readonly state: PalletNominationPoolsPoolState;
20492
20498
  }
20493
- /** @name PalletNominationPoolsCommission (594) */
20499
+ /** @name PalletNominationPoolsCommission (593) */
20494
20500
  interface PalletNominationPoolsCommission extends Struct {
20495
20501
  readonly current: Option<ITuple<[Perbill, AccountId32]>>;
20496
20502
  readonly max: Option<Perbill>;
@@ -20498,14 +20504,14 @@ declare module '@polkadot/types/lookup' {
20498
20504
  readonly throttleFrom: Option<u64>;
20499
20505
  readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
20500
20506
  }
20501
- /** @name PalletNominationPoolsPoolRoles (597) */
20507
+ /** @name PalletNominationPoolsPoolRoles (596) */
20502
20508
  interface PalletNominationPoolsPoolRoles extends Struct {
20503
20509
  readonly depositor: AccountId32;
20504
20510
  readonly root: Option<AccountId32>;
20505
20511
  readonly nominator: Option<AccountId32>;
20506
20512
  readonly bouncer: Option<AccountId32>;
20507
20513
  }
20508
- /** @name PalletNominationPoolsRewardPool (598) */
20514
+ /** @name PalletNominationPoolsRewardPool (597) */
20509
20515
  interface PalletNominationPoolsRewardPool extends Struct {
20510
20516
  readonly lastRecordedRewardCounter: u128;
20511
20517
  readonly lastRecordedTotalPayouts: u128;
@@ -20513,17 +20519,17 @@ declare module '@polkadot/types/lookup' {
20513
20519
  readonly totalCommissionPending: u128;
20514
20520
  readonly totalCommissionClaimed: u128;
20515
20521
  }
20516
- /** @name PalletNominationPoolsSubPools (599) */
20522
+ /** @name PalletNominationPoolsSubPools (598) */
20517
20523
  interface PalletNominationPoolsSubPools extends Struct {
20518
20524
  readonly noEra: PalletNominationPoolsUnbondPool;
20519
20525
  readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
20520
20526
  }
20521
- /** @name PalletNominationPoolsUnbondPool (600) */
20527
+ /** @name PalletNominationPoolsUnbondPool (599) */
20522
20528
  interface PalletNominationPoolsUnbondPool extends Struct {
20523
20529
  readonly points: u128;
20524
20530
  readonly balance: u128;
20525
20531
  }
20526
- /** @name PalletNominationPoolsError (605) */
20532
+ /** @name PalletNominationPoolsError (604) */
20527
20533
  interface PalletNominationPoolsError extends Enum {
20528
20534
  readonly isPoolNotFound: boolean;
20529
20535
  readonly isPoolMemberNotFound: boolean;
@@ -20559,12 +20565,13 @@ declare module '@polkadot/types/lookup' {
20559
20565
  readonly isBondExtraRestricted: boolean;
20560
20566
  readonly isNothingToAdjust: boolean;
20561
20567
  readonly isNothingToSlash: boolean;
20568
+ readonly isSlashTooLow: boolean;
20562
20569
  readonly isAlreadyMigrated: boolean;
20563
20570
  readonly isNotMigrated: boolean;
20564
20571
  readonly isNotSupported: boolean;
20565
- readonly type: 'PoolNotFound' | 'PoolMemberNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'AccountBelongsToOtherPool' | 'FullyUnbonding' | 'MaxUnbondingLimit' | 'CannotWithdrawAny' | 'MinimumBondNotMet' | 'OverflowRisk' | 'NotDestroying' | 'NotNominator' | 'NotKickerOrDestroying' | 'NotOpen' | 'MaxPools' | 'MaxPoolMembers' | 'CanNotChangeState' | 'DoesNotHavePermission' | 'MetadataExceedsMaxLen' | 'Defensive' | 'PartialUnbondNotAllowedPermissionlessly' | 'MaxCommissionRestricted' | 'CommissionExceedsMaximum' | 'CommissionExceedsGlobalMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted' | 'NothingToAdjust' | 'NothingToSlash' | 'AlreadyMigrated' | 'NotMigrated' | 'NotSupported';
20572
+ readonly type: 'PoolNotFound' | 'PoolMemberNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'AccountBelongsToOtherPool' | 'FullyUnbonding' | 'MaxUnbondingLimit' | 'CannotWithdrawAny' | 'MinimumBondNotMet' | 'OverflowRisk' | 'NotDestroying' | 'NotNominator' | 'NotKickerOrDestroying' | 'NotOpen' | 'MaxPools' | 'MaxPoolMembers' | 'CanNotChangeState' | 'DoesNotHavePermission' | 'MetadataExceedsMaxLen' | 'Defensive' | 'PartialUnbondNotAllowedPermissionlessly' | 'MaxCommissionRestricted' | 'CommissionExceedsMaximum' | 'CommissionExceedsGlobalMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted' | 'NothingToAdjust' | 'NothingToSlash' | 'SlashTooLow' | 'AlreadyMigrated' | 'NotMigrated' | 'NotSupported';
20566
20573
  }
20567
- /** @name PalletNominationPoolsDefensiveError (606) */
20574
+ /** @name PalletNominationPoolsDefensiveError (605) */
20568
20575
  interface PalletNominationPoolsDefensiveError extends Enum {
20569
20576
  readonly isNotEnoughSpaceInUnbondPool: boolean;
20570
20577
  readonly isPoolNotFound: boolean;
@@ -20575,7 +20582,7 @@ declare module '@polkadot/types/lookup' {
20575
20582
  readonly isSlashNotApplied: boolean;
20576
20583
  readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely' | 'DelegationUnsupported' | 'SlashNotApplied';
20577
20584
  }
20578
- /** @name PalletSchedulerScheduled (609) */
20585
+ /** @name PalletSchedulerScheduled (608) */
20579
20586
  interface PalletSchedulerScheduled extends Struct {
20580
20587
  readonly maybeId: Option<U8aFixed>;
20581
20588
  readonly priority: u8;
@@ -20583,13 +20590,13 @@ declare module '@polkadot/types/lookup' {
20583
20590
  readonly maybePeriodic: Option<ITuple<[u64, u32]>>;
20584
20591
  readonly origin: TangleTestnetRuntimeOriginCaller;
20585
20592
  }
20586
- /** @name PalletSchedulerRetryConfig (611) */
20593
+ /** @name PalletSchedulerRetryConfig (610) */
20587
20594
  interface PalletSchedulerRetryConfig extends Struct {
20588
20595
  readonly totalRetries: u8;
20589
20596
  readonly remaining: u8;
20590
20597
  readonly period: u64;
20591
20598
  }
20592
- /** @name PalletSchedulerError (612) */
20599
+ /** @name PalletSchedulerError (611) */
20593
20600
  interface PalletSchedulerError extends Enum {
20594
20601
  readonly isFailedToSchedule: boolean;
20595
20602
  readonly isNotFound: boolean;
@@ -20598,7 +20605,7 @@ declare module '@polkadot/types/lookup' {
20598
20605
  readonly isNamed: boolean;
20599
20606
  readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
20600
20607
  }
20601
- /** @name PalletPreimageOldRequestStatus (613) */
20608
+ /** @name PalletPreimageOldRequestStatus (612) */
20602
20609
  interface PalletPreimageOldRequestStatus extends Enum {
20603
20610
  readonly isUnrequested: boolean;
20604
20611
  readonly asUnrequested: {
@@ -20613,7 +20620,7 @@ declare module '@polkadot/types/lookup' {
20613
20620
  } & Struct;
20614
20621
  readonly type: 'Unrequested' | 'Requested';
20615
20622
  }
20616
- /** @name PalletPreimageRequestStatus (615) */
20623
+ /** @name PalletPreimageRequestStatus (614) */
20617
20624
  interface PalletPreimageRequestStatus extends Enum {
20618
20625
  readonly isUnrequested: boolean;
20619
20626
  readonly asUnrequested: {
@@ -20628,7 +20635,7 @@ declare module '@polkadot/types/lookup' {
20628
20635
  } & Struct;
20629
20636
  readonly type: 'Unrequested' | 'Requested';
20630
20637
  }
20631
- /** @name PalletPreimageError (619) */
20638
+ /** @name PalletPreimageError (618) */
20632
20639
  interface PalletPreimageError extends Enum {
20633
20640
  readonly isTooBig: boolean;
20634
20641
  readonly isAlreadyNoted: boolean;
@@ -20641,12 +20648,12 @@ declare module '@polkadot/types/lookup' {
20641
20648
  readonly isNoCost: boolean;
20642
20649
  readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew' | 'NoCost';
20643
20650
  }
20644
- /** @name SpStakingOffenceOffenceDetails (620) */
20651
+ /** @name SpStakingOffenceOffenceDetails (619) */
20645
20652
  interface SpStakingOffenceOffenceDetails extends Struct {
20646
20653
  readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
20647
20654
  readonly reporters: Vec<AccountId32>;
20648
20655
  }
20649
- /** @name PalletTxPauseError (622) */
20656
+ /** @name PalletTxPauseError (621) */
20650
20657
  interface PalletTxPauseError extends Enum {
20651
20658
  readonly isIsPaused: boolean;
20652
20659
  readonly isIsUnpaused: boolean;
@@ -20654,30 +20661,30 @@ declare module '@polkadot/types/lookup' {
20654
20661
  readonly isNotFound: boolean;
20655
20662
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
20656
20663
  }
20657
- /** @name PalletImOnlineError (625) */
20664
+ /** @name PalletImOnlineError (624) */
20658
20665
  interface PalletImOnlineError extends Enum {
20659
20666
  readonly isInvalidKey: boolean;
20660
20667
  readonly isDuplicatedHeartbeat: boolean;
20661
20668
  readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
20662
20669
  }
20663
- /** @name PalletIdentityRegistration (627) */
20670
+ /** @name PalletIdentityRegistration (626) */
20664
20671
  interface PalletIdentityRegistration extends Struct {
20665
20672
  readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
20666
20673
  readonly deposit: u128;
20667
20674
  readonly info: PalletIdentityLegacyIdentityInfo;
20668
20675
  }
20669
- /** @name PalletIdentityRegistrarInfo (636) */
20676
+ /** @name PalletIdentityRegistrarInfo (635) */
20670
20677
  interface PalletIdentityRegistrarInfo extends Struct {
20671
20678
  readonly account: AccountId32;
20672
20679
  readonly fee: u128;
20673
20680
  readonly fields: u64;
20674
20681
  }
20675
- /** @name PalletIdentityAuthorityProperties (638) */
20682
+ /** @name PalletIdentityAuthorityProperties (637) */
20676
20683
  interface PalletIdentityAuthorityProperties extends Struct {
20677
20684
  readonly suffix: Bytes;
20678
20685
  readonly allocation: u32;
20679
20686
  }
20680
- /** @name PalletIdentityError (641) */
20687
+ /** @name PalletIdentityError (640) */
20681
20688
  interface PalletIdentityError extends Enum {
20682
20689
  readonly isTooManySubAccounts: boolean;
20683
20690
  readonly isNotFound: boolean;
@@ -20707,19 +20714,19 @@ declare module '@polkadot/types/lookup' {
20707
20714
  readonly isNotExpired: boolean;
20708
20715
  readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed' | 'InvalidSuffix' | 'NotUsernameAuthority' | 'NoAllocation' | 'InvalidSignature' | 'RequiresSignature' | 'InvalidUsername' | 'UsernameTaken' | 'NoUsername' | 'NotExpired';
20709
20716
  }
20710
- /** @name PalletUtilityError (642) */
20717
+ /** @name PalletUtilityError (641) */
20711
20718
  interface PalletUtilityError extends Enum {
20712
20719
  readonly isTooManyCalls: boolean;
20713
20720
  readonly type: 'TooManyCalls';
20714
20721
  }
20715
- /** @name PalletMultisigMultisig (644) */
20722
+ /** @name PalletMultisigMultisig (643) */
20716
20723
  interface PalletMultisigMultisig extends Struct {
20717
20724
  readonly when: PalletMultisigTimepoint;
20718
20725
  readonly deposit: u128;
20719
20726
  readonly depositor: AccountId32;
20720
20727
  readonly approvals: Vec<AccountId32>;
20721
20728
  }
20722
- /** @name PalletMultisigError (645) */
20729
+ /** @name PalletMultisigError (644) */
20723
20730
  interface PalletMultisigError extends Enum {
20724
20731
  readonly isMinimumThreshold: boolean;
20725
20732
  readonly isAlreadyApproved: boolean;
@@ -20737,7 +20744,7 @@ declare module '@polkadot/types/lookup' {
20737
20744
  readonly isAlreadyStored: boolean;
20738
20745
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
20739
20746
  }
20740
- /** @name FpRpcTransactionStatus (648) */
20747
+ /** @name FpRpcTransactionStatus (647) */
20741
20748
  interface FpRpcTransactionStatus extends Struct {
20742
20749
  readonly transactionHash: H256;
20743
20750
  readonly transactionIndex: u32;
@@ -20747,10 +20754,10 @@ declare module '@polkadot/types/lookup' {
20747
20754
  readonly logs: Vec<EthereumLog>;
20748
20755
  readonly logsBloom: EthbloomBloom;
20749
20756
  }
20750
- /** @name EthbloomBloom (650) */
20757
+ /** @name EthbloomBloom (649) */
20751
20758
  interface EthbloomBloom extends U8aFixed {
20752
20759
  }
20753
- /** @name EthereumReceiptReceiptV3 (652) */
20760
+ /** @name EthereumReceiptReceiptV3 (651) */
20754
20761
  interface EthereumReceiptReceiptV3 extends Enum {
20755
20762
  readonly isLegacy: boolean;
20756
20763
  readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -20760,20 +20767,20 @@ declare module '@polkadot/types/lookup' {
20760
20767
  readonly asEip1559: EthereumReceiptEip658ReceiptData;
20761
20768
  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
20762
20769
  }
20763
- /** @name EthereumReceiptEip658ReceiptData (653) */
20770
+ /** @name EthereumReceiptEip658ReceiptData (652) */
20764
20771
  interface EthereumReceiptEip658ReceiptData extends Struct {
20765
20772
  readonly statusCode: u8;
20766
20773
  readonly usedGas: U256;
20767
20774
  readonly logsBloom: EthbloomBloom;
20768
20775
  readonly logs: Vec<EthereumLog>;
20769
20776
  }
20770
- /** @name EthereumBlock (654) */
20777
+ /** @name EthereumBlock (653) */
20771
20778
  interface EthereumBlock extends Struct {
20772
20779
  readonly header: EthereumHeader;
20773
20780
  readonly transactions: Vec<EthereumTransactionTransactionV2>;
20774
20781
  readonly ommers: Vec<EthereumHeader>;
20775
20782
  }
20776
- /** @name EthereumHeader (655) */
20783
+ /** @name EthereumHeader (654) */
20777
20784
  interface EthereumHeader extends Struct {
20778
20785
  readonly parentHash: H256;
20779
20786
  readonly ommersHash: H256;
@@ -20791,21 +20798,21 @@ declare module '@polkadot/types/lookup' {
20791
20798
  readonly mixHash: H256;
20792
20799
  readonly nonce: EthereumTypesHashH64;
20793
20800
  }
20794
- /** @name EthereumTypesHashH64 (656) */
20801
+ /** @name EthereumTypesHashH64 (655) */
20795
20802
  interface EthereumTypesHashH64 extends U8aFixed {
20796
20803
  }
20797
- /** @name PalletEthereumError (661) */
20804
+ /** @name PalletEthereumError (660) */
20798
20805
  interface PalletEthereumError extends Enum {
20799
20806
  readonly isInvalidSignature: boolean;
20800
20807
  readonly isPreLogExists: boolean;
20801
20808
  readonly type: 'InvalidSignature' | 'PreLogExists';
20802
20809
  }
20803
- /** @name PalletEvmCodeMetadata (662) */
20810
+ /** @name PalletEvmCodeMetadata (661) */
20804
20811
  interface PalletEvmCodeMetadata extends Struct {
20805
20812
  readonly size_: u64;
20806
20813
  readonly hash_: H256;
20807
20814
  }
20808
- /** @name PalletEvmError (664) */
20815
+ /** @name PalletEvmError (663) */
20809
20816
  interface PalletEvmError extends Enum {
20810
20817
  readonly isBalanceLow: boolean;
20811
20818
  readonly isFeeOverflow: boolean;
@@ -20822,12 +20829,12 @@ declare module '@polkadot/types/lookup' {
20822
20829
  readonly isUndefined: boolean;
20823
20830
  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
20824
20831
  }
20825
- /** @name PalletHotfixSufficientsError (665) */
20832
+ /** @name PalletHotfixSufficientsError (664) */
20826
20833
  interface PalletHotfixSufficientsError extends Enum {
20827
20834
  readonly isMaxAddressCountExceeded: boolean;
20828
20835
  readonly type: 'MaxAddressCountExceeded';
20829
20836
  }
20830
- /** @name PalletAirdropClaimsError (667) */
20837
+ /** @name PalletAirdropClaimsError (666) */
20831
20838
  interface PalletAirdropClaimsError extends Enum {
20832
20839
  readonly isInvalidEthereumSignature: boolean;
20833
20840
  readonly isInvalidNativeSignature: boolean;
@@ -20839,19 +20846,19 @@ declare module '@polkadot/types/lookup' {
20839
20846
  readonly isVestedBalanceExists: boolean;
20840
20847
  readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
20841
20848
  }
20842
- /** @name PalletProxyProxyDefinition (670) */
20849
+ /** @name PalletProxyProxyDefinition (669) */
20843
20850
  interface PalletProxyProxyDefinition extends Struct {
20844
20851
  readonly delegate: AccountId32;
20845
20852
  readonly proxyType: TangleTestnetRuntimeProxyType;
20846
20853
  readonly delay: u64;
20847
20854
  }
20848
- /** @name PalletProxyAnnouncement (674) */
20855
+ /** @name PalletProxyAnnouncement (673) */
20849
20856
  interface PalletProxyAnnouncement extends Struct {
20850
20857
  readonly real: AccountId32;
20851
20858
  readonly callHash: H256;
20852
20859
  readonly height: u64;
20853
20860
  }
20854
- /** @name PalletProxyError (676) */
20861
+ /** @name PalletProxyError (675) */
20855
20862
  interface PalletProxyError extends Enum {
20856
20863
  readonly isTooMany: boolean;
20857
20864
  readonly isNotFound: boolean;
@@ -20863,7 +20870,7 @@ declare module '@polkadot/types/lookup' {
20863
20870
  readonly isNoSelfProxy: boolean;
20864
20871
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
20865
20872
  }
20866
- /** @name PalletMultiAssetDelegationOperatorOperatorMetadata (677) */
20873
+ /** @name PalletMultiAssetDelegationOperatorOperatorMetadata (676) */
20867
20874
  interface PalletMultiAssetDelegationOperatorOperatorMetadata extends Struct {
20868
20875
  readonly stake: u128;
20869
20876
  readonly delegationCount: u32;
@@ -20872,22 +20879,22 @@ declare module '@polkadot/types/lookup' {
20872
20879
  readonly status: PalletMultiAssetDelegationOperatorOperatorStatus;
20873
20880
  readonly blueprintIds: Vec<u32>;
20874
20881
  }
20875
- /** @name TangleTestnetRuntimeMaxDelegations (678) */
20882
+ /** @name TangleTestnetRuntimeMaxDelegations (677) */
20876
20883
  type TangleTestnetRuntimeMaxDelegations = Null;
20877
- /** @name TangleTestnetRuntimeMaxOperatorBlueprints (679) */
20884
+ /** @name TangleTestnetRuntimeMaxOperatorBlueprints (678) */
20878
20885
  type TangleTestnetRuntimeMaxOperatorBlueprints = Null;
20879
- /** @name PalletMultiAssetDelegationOperatorOperatorBondLessRequest (681) */
20886
+ /** @name PalletMultiAssetDelegationOperatorOperatorBondLessRequest (680) */
20880
20887
  interface PalletMultiAssetDelegationOperatorOperatorBondLessRequest extends Struct {
20881
20888
  readonly amount: u128;
20882
20889
  readonly requestTime: u32;
20883
20890
  }
20884
- /** @name PalletMultiAssetDelegationOperatorDelegatorBond (683) */
20891
+ /** @name PalletMultiAssetDelegationOperatorDelegatorBond (682) */
20885
20892
  interface PalletMultiAssetDelegationOperatorDelegatorBond extends Struct {
20886
20893
  readonly delegator: AccountId32;
20887
20894
  readonly amount: u128;
20888
20895
  readonly assetId: TanglePrimitivesServicesAsset;
20889
20896
  }
20890
- /** @name PalletMultiAssetDelegationOperatorOperatorStatus (685) */
20897
+ /** @name PalletMultiAssetDelegationOperatorOperatorStatus (684) */
20891
20898
  interface PalletMultiAssetDelegationOperatorOperatorStatus extends Enum {
20892
20899
  readonly isActive: boolean;
20893
20900
  readonly isInactive: boolean;
@@ -20895,12 +20902,12 @@ declare module '@polkadot/types/lookup' {
20895
20902
  readonly asLeaving: u32;
20896
20903
  readonly type: 'Active' | 'Inactive' | 'Leaving';
20897
20904
  }
20898
- /** @name PalletMultiAssetDelegationOperatorOperatorSnapshot (687) */
20905
+ /** @name PalletMultiAssetDelegationOperatorOperatorSnapshot (686) */
20899
20906
  interface PalletMultiAssetDelegationOperatorOperatorSnapshot extends Struct {
20900
20907
  readonly stake: u128;
20901
20908
  readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
20902
20909
  }
20903
- /** @name PalletMultiAssetDelegationDelegatorDelegatorMetadata (688) */
20910
+ /** @name PalletMultiAssetDelegationDelegatorDelegatorMetadata (687) */
20904
20911
  interface PalletMultiAssetDelegationDelegatorDelegatorMetadata extends Struct {
20905
20912
  readonly deposits: BTreeMap<TanglePrimitivesServicesAsset, u128>;
20906
20913
  readonly withdrawRequests: Vec<PalletMultiAssetDelegationDelegatorWithdrawRequest>;
@@ -20908,24 +20915,24 @@ declare module '@polkadot/types/lookup' {
20908
20915
  readonly delegatorUnstakeRequests: Vec<PalletMultiAssetDelegationDelegatorBondLessRequest>;
20909
20916
  readonly status: PalletMultiAssetDelegationDelegatorDelegatorStatus;
20910
20917
  }
20911
- /** @name TangleTestnetRuntimeMaxWithdrawRequests (689) */
20918
+ /** @name TangleTestnetRuntimeMaxWithdrawRequests (688) */
20912
20919
  type TangleTestnetRuntimeMaxWithdrawRequests = Null;
20913
- /** @name TangleTestnetRuntimeMaxUnstakeRequests (690) */
20920
+ /** @name TangleTestnetRuntimeMaxUnstakeRequests (689) */
20914
20921
  type TangleTestnetRuntimeMaxUnstakeRequests = Null;
20915
- /** @name PalletMultiAssetDelegationDelegatorWithdrawRequest (695) */
20922
+ /** @name PalletMultiAssetDelegationDelegatorWithdrawRequest (694) */
20916
20923
  interface PalletMultiAssetDelegationDelegatorWithdrawRequest extends Struct {
20917
20924
  readonly assetId: TanglePrimitivesServicesAsset;
20918
20925
  readonly amount: u128;
20919
20926
  readonly requestedRound: u32;
20920
20927
  }
20921
- /** @name PalletMultiAssetDelegationDelegatorBondInfoDelegator (698) */
20928
+ /** @name PalletMultiAssetDelegationDelegatorBondInfoDelegator (697) */
20922
20929
  interface PalletMultiAssetDelegationDelegatorBondInfoDelegator extends Struct {
20923
20930
  readonly operator: AccountId32;
20924
20931
  readonly amount: u128;
20925
20932
  readonly assetId: TanglePrimitivesServicesAsset;
20926
20933
  readonly blueprintSelection: PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection;
20927
20934
  }
20928
- /** @name PalletMultiAssetDelegationDelegatorBondLessRequest (701) */
20935
+ /** @name PalletMultiAssetDelegationDelegatorBondLessRequest (700) */
20929
20936
  interface PalletMultiAssetDelegationDelegatorBondLessRequest extends Struct {
20930
20937
  readonly operator: AccountId32;
20931
20938
  readonly assetId: TanglePrimitivesServicesAsset;
@@ -20933,24 +20940,24 @@ declare module '@polkadot/types/lookup' {
20933
20940
  readonly requestedRound: u32;
20934
20941
  readonly blueprintSelection: PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection;
20935
20942
  }
20936
- /** @name PalletMultiAssetDelegationDelegatorDelegatorStatus (703) */
20943
+ /** @name PalletMultiAssetDelegationDelegatorDelegatorStatus (702) */
20937
20944
  interface PalletMultiAssetDelegationDelegatorDelegatorStatus extends Enum {
20938
20945
  readonly isActive: boolean;
20939
20946
  readonly isLeavingScheduled: boolean;
20940
20947
  readonly asLeavingScheduled: u32;
20941
20948
  readonly type: 'Active' | 'LeavingScheduled';
20942
20949
  }
20943
- /** @name PalletMultiAssetDelegationRewardsRewardConfig (705) */
20950
+ /** @name PalletMultiAssetDelegationRewardsRewardConfig (704) */
20944
20951
  interface PalletMultiAssetDelegationRewardsRewardConfig extends Struct {
20945
20952
  readonly configs: BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAssetVault>;
20946
- readonly whitelistedBlueprintIds: Vec<u32>;
20953
+ readonly whitelistedBlueprintIds: Vec<u64>;
20947
20954
  }
20948
- /** @name PalletMultiAssetDelegationRewardsRewardConfigForAssetVault (707) */
20955
+ /** @name PalletMultiAssetDelegationRewardsRewardConfigForAssetVault (706) */
20949
20956
  interface PalletMultiAssetDelegationRewardsRewardConfigForAssetVault extends Struct {
20950
20957
  readonly apy: Percent;
20951
20958
  readonly cap: u128;
20952
20959
  }
20953
- /** @name PalletMultiAssetDelegationError (710) */
20960
+ /** @name PalletMultiAssetDelegationError (709) */
20954
20961
  interface PalletMultiAssetDelegationError extends Enum {
20955
20962
  readonly isAlreadyOperator: boolean;
20956
20963
  readonly isBondTooLow: boolean;
@@ -21004,7 +21011,7 @@ declare module '@polkadot/types/lookup' {
21004
21011
  readonly isEvmAbiDecode: boolean;
21005
21012
  readonly type: 'AlreadyOperator' | 'BondTooLow' | 'NotAnOperator' | 'CannotExit' | 'AlreadyLeaving' | 'NotLeavingOperator' | 'NotLeavingRound' | 'LeavingRoundNotReached' | 'NoScheduledBondLess' | 'BondLessRequestNotSatisfied' | 'NotActiveOperator' | 'NotOfflineOperator' | 'AlreadyDelegator' | 'NotDelegator' | 'WithdrawRequestAlreadyExists' | 'InsufficientBalance' | 'NoWithdrawRequest' | 'NoBondLessRequest' | 'BondLessNotReady' | 'BondLessRequestAlreadyExists' | 'ActiveServicesUsingAsset' | 'NoActiveDelegation' | 'AssetNotWhitelisted' | 'NotAuthorized' | 'MaxBlueprintsExceeded' | 'AssetNotFound' | 'BlueprintAlreadyWhitelisted' | 'NowithdrawRequests' | 'NoMatchingwithdrawRequest' | 'AssetAlreadyInVault' | 'AssetNotInVault' | 'VaultNotFound' | 'DuplicateBlueprintId' | 'BlueprintIdNotFound' | 'NotInFixedMode' | 'MaxDelegationsExceeded' | 'MaxUnstakeRequestsExceeded' | 'MaxWithdrawRequestsExceeded' | 'DepositOverflow' | 'UnstakeAmountTooLarge' | 'StakeOverflow' | 'InsufficientStakeRemaining' | 'ApyExceedsMaximum' | 'CapCannotBeZero' | 'CapExceedsTotalSupply' | 'PendingUnstakeRequestExists' | 'BlueprintNotSelected' | 'Erc20TransferFailed' | 'EvmAbiEncode' | 'EvmAbiDecode';
21006
21013
  }
21007
- /** @name TanglePrimitivesServicesServiceRequest (713) */
21014
+ /** @name TanglePrimitivesServicesServiceRequest (712) */
21008
21015
  interface TanglePrimitivesServicesServiceRequest extends Struct {
21009
21016
  readonly blueprint: u64;
21010
21017
  readonly owner: AccountId32;
@@ -21014,7 +21021,7 @@ declare module '@polkadot/types/lookup' {
21014
21021
  readonly args: Vec<TanglePrimitivesServicesField>;
21015
21022
  readonly operatorsWithApprovalState: Vec<ITuple<[AccountId32, TanglePrimitivesServicesApprovalState]>>;
21016
21023
  }
21017
- /** @name TanglePrimitivesServicesApprovalState (719) */
21024
+ /** @name TanglePrimitivesServicesApprovalState (718) */
21018
21025
  interface TanglePrimitivesServicesApprovalState extends Enum {
21019
21026
  readonly isPending: boolean;
21020
21027
  readonly isApproved: boolean;
@@ -21024,7 +21031,7 @@ declare module '@polkadot/types/lookup' {
21024
21031
  readonly isRejected: boolean;
21025
21032
  readonly type: 'Pending' | 'Approved' | 'Rejected';
21026
21033
  }
21027
- /** @name TanglePrimitivesServicesService (721) */
21034
+ /** @name TanglePrimitivesServicesService (720) */
21028
21035
  interface TanglePrimitivesServicesService extends Struct {
21029
21036
  readonly id: u64;
21030
21037
  readonly blueprint: u64;
@@ -21034,19 +21041,19 @@ declare module '@polkadot/types/lookup' {
21034
21041
  readonly assets: Vec<u128>;
21035
21042
  readonly ttl: u64;
21036
21043
  }
21037
- /** @name TanglePrimitivesServicesJobCall (727) */
21044
+ /** @name TanglePrimitivesServicesJobCall (726) */
21038
21045
  interface TanglePrimitivesServicesJobCall extends Struct {
21039
21046
  readonly serviceId: u64;
21040
21047
  readonly job: u8;
21041
21048
  readonly args: Vec<TanglePrimitivesServicesField>;
21042
21049
  }
21043
- /** @name TanglePrimitivesServicesJobCallResult (728) */
21050
+ /** @name TanglePrimitivesServicesJobCallResult (727) */
21044
21051
  interface TanglePrimitivesServicesJobCallResult extends Struct {
21045
21052
  readonly serviceId: u64;
21046
21053
  readonly callId: u64;
21047
21054
  readonly result: Vec<TanglePrimitivesServicesField>;
21048
21055
  }
21049
- /** @name PalletServicesUnappliedSlash (729) */
21056
+ /** @name PalletServicesUnappliedSlash (728) */
21050
21057
  interface PalletServicesUnappliedSlash extends Struct {
21051
21058
  readonly serviceId: u64;
21052
21059
  readonly operator: AccountId32;
@@ -21055,19 +21062,19 @@ declare module '@polkadot/types/lookup' {
21055
21062
  readonly reporters: Vec<AccountId32>;
21056
21063
  readonly payout: u128;
21057
21064
  }
21058
- /** @name TanglePrimitivesServicesOperatorProfile (731) */
21065
+ /** @name TanglePrimitivesServicesOperatorProfile (730) */
21059
21066
  interface TanglePrimitivesServicesOperatorProfile extends Struct {
21060
21067
  readonly services: BTreeSet<u64>;
21061
21068
  readonly blueprints: BTreeSet<u64>;
21062
21069
  }
21063
- /** @name TanglePrimitivesServicesStagingServicePayment (734) */
21070
+ /** @name TanglePrimitivesServicesStagingServicePayment (733) */
21064
21071
  interface TanglePrimitivesServicesStagingServicePayment extends Struct {
21065
21072
  readonly requestId: u64;
21066
21073
  readonly refundTo: TanglePrimitivesAccount;
21067
21074
  readonly asset: TanglePrimitivesServicesAsset;
21068
21075
  readonly amount: u128;
21069
21076
  }
21070
- /** @name TanglePrimitivesAccount (735) */
21077
+ /** @name TanglePrimitivesAccount (734) */
21071
21078
  interface TanglePrimitivesAccount extends Enum {
21072
21079
  readonly isId: boolean;
21073
21080
  readonly asId: AccountId32;
@@ -21075,7 +21082,7 @@ declare module '@polkadot/types/lookup' {
21075
21082
  readonly asAddress: H160;
21076
21083
  readonly type: 'Id' | 'Address';
21077
21084
  }
21078
- /** @name PalletServicesModuleError (736) */
21085
+ /** @name PalletServicesModuleError (735) */
21079
21086
  interface PalletServicesModuleError extends Enum {
21080
21087
  readonly isBlueprintNotFound: boolean;
21081
21088
  readonly isBlueprintCreationInterrupted: boolean;
@@ -21123,7 +21130,7 @@ declare module '@polkadot/types/lookup' {
21123
21130
  readonly isExpectedAccountId: boolean;
21124
21131
  readonly type: 'BlueprintNotFound' | 'BlueprintCreationInterrupted' | 'AlreadyRegistered' | 'InvalidRegistrationInput' | 'NotAllowedToUnregister' | 'NotAllowedToUpdatePriceTargets' | 'InvalidRequestInput' | 'InvalidJobCallInput' | 'InvalidJobResult' | 'NotRegistered' | 'ApprovalInterrupted' | 'RejectionInterrupted' | 'ServiceRequestNotFound' | 'ServiceInitializationInterrupted' | 'ServiceNotFound' | 'TerminationInterrupted' | 'TypeCheck' | 'MaxPermittedCallersExceeded' | 'MaxServiceProvidersExceeded' | 'MaxServicesPerUserExceeded' | 'MaxFieldsExceeded' | 'ApprovalNotRequested' | 'JobDefinitionNotFound' | 'ServiceOrJobCallNotFound' | 'JobCallResultNotFound' | 'EvmAbiEncode' | 'EvmAbiDecode' | 'OperatorProfileNotFound' | 'MaxServicesPerProviderExceeded' | 'OperatorNotActive' | 'NoAssetsProvided' | 'MaxAssetsPerServiceExceeded' | 'OffenderNotOperator' | 'OffenderNotActiveOperator' | 'NoSlashingOrigin' | 'NoDisputeOrigin' | 'UnappliedSlashNotFound' | 'MasterBlueprintServiceManagerRevisionNotFound' | 'MaxMasterBlueprintServiceManagerVersionsExceeded' | 'Erc20TransferFailed' | 'MissingEVMOrigin' | 'ExpectedEVMAddress' | 'ExpectedAccountId';
21125
21132
  }
21126
- /** @name TanglePrimitivesServicesTypeCheckError (737) */
21133
+ /** @name TanglePrimitivesServicesTypeCheckError (736) */
21127
21134
  interface TanglePrimitivesServicesTypeCheckError extends Enum {
21128
21135
  readonly isArgumentTypeMismatch: boolean;
21129
21136
  readonly asArgumentTypeMismatch: {
@@ -21144,14 +21151,14 @@ declare module '@polkadot/types/lookup' {
21144
21151
  } & Struct;
21145
21152
  readonly type: 'ArgumentTypeMismatch' | 'NotEnoughArguments' | 'ResultTypeMismatch';
21146
21153
  }
21147
- /** @name PalletTangleLstBondedPoolBondedPoolInner (738) */
21154
+ /** @name PalletTangleLstBondedPoolBondedPoolInner (737) */
21148
21155
  interface PalletTangleLstBondedPoolBondedPoolInner extends Struct {
21149
21156
  readonly commission: PalletTangleLstCommission;
21150
21157
  readonly roles: PalletTangleLstPoolsPoolRoles;
21151
21158
  readonly state: PalletTangleLstPoolsPoolState;
21152
21159
  readonly metadata: PalletTangleLstBondedPoolPoolMetadata;
21153
21160
  }
21154
- /** @name PalletTangleLstCommission (739) */
21161
+ /** @name PalletTangleLstCommission (738) */
21155
21162
  interface PalletTangleLstCommission extends Struct {
21156
21163
  readonly current: Option<ITuple<[Perbill, AccountId32]>>;
21157
21164
  readonly max: Option<Perbill>;
@@ -21159,19 +21166,19 @@ declare module '@polkadot/types/lookup' {
21159
21166
  readonly throttleFrom: Option<u64>;
21160
21167
  readonly claimPermission: Option<PalletTangleLstCommissionCommissionClaimPermission>;
21161
21168
  }
21162
- /** @name PalletTangleLstPoolsPoolRoles (741) */
21169
+ /** @name PalletTangleLstPoolsPoolRoles (740) */
21163
21170
  interface PalletTangleLstPoolsPoolRoles extends Struct {
21164
21171
  readonly depositor: AccountId32;
21165
21172
  readonly root: Option<AccountId32>;
21166
21173
  readonly nominator: Option<AccountId32>;
21167
21174
  readonly bouncer: Option<AccountId32>;
21168
21175
  }
21169
- /** @name PalletTangleLstBondedPoolPoolMetadata (742) */
21176
+ /** @name PalletTangleLstBondedPoolPoolMetadata (741) */
21170
21177
  interface PalletTangleLstBondedPoolPoolMetadata extends Struct {
21171
21178
  readonly name: Option<Bytes>;
21172
21179
  readonly icon: Option<Bytes>;
21173
21180
  }
21174
- /** @name PalletTangleLstSubPoolsRewardPool (743) */
21181
+ /** @name PalletTangleLstSubPoolsRewardPool (742) */
21175
21182
  interface PalletTangleLstSubPoolsRewardPool extends Struct {
21176
21183
  readonly lastRecordedRewardCounter: u128;
21177
21184
  readonly lastRecordedTotalPayouts: u128;
@@ -21179,21 +21186,21 @@ declare module '@polkadot/types/lookup' {
21179
21186
  readonly totalCommissionPending: u128;
21180
21187
  readonly totalCommissionClaimed: u128;
21181
21188
  }
21182
- /** @name PalletTangleLstSubPools (744) */
21189
+ /** @name PalletTangleLstSubPools (743) */
21183
21190
  interface PalletTangleLstSubPools extends Struct {
21184
21191
  readonly noEra: PalletTangleLstSubPoolsUnbondPool;
21185
21192
  readonly withEra: BTreeMap<u32, PalletTangleLstSubPoolsUnbondPool>;
21186
21193
  }
21187
- /** @name PalletTangleLstSubPoolsUnbondPool (745) */
21194
+ /** @name PalletTangleLstSubPoolsUnbondPool (744) */
21188
21195
  interface PalletTangleLstSubPoolsUnbondPool extends Struct {
21189
21196
  readonly points: u128;
21190
21197
  readonly balance: u128;
21191
21198
  }
21192
- /** @name PalletTangleLstPoolsPoolMember (751) */
21199
+ /** @name PalletTangleLstPoolsPoolMember (750) */
21193
21200
  interface PalletTangleLstPoolsPoolMember extends Struct {
21194
21201
  readonly unbondingEras: BTreeMap<u32, ITuple<[u32, u128]>>;
21195
21202
  }
21196
- /** @name PalletTangleLstClaimPermission (756) */
21203
+ /** @name PalletTangleLstClaimPermission (755) */
21197
21204
  interface PalletTangleLstClaimPermission extends Enum {
21198
21205
  readonly isPermissioned: boolean;
21199
21206
  readonly isPermissionlessCompound: boolean;
@@ -21201,7 +21208,7 @@ declare module '@polkadot/types/lookup' {
21201
21208
  readonly isPermissionlessAll: boolean;
21202
21209
  readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
21203
21210
  }
21204
- /** @name PalletTangleLstError (757) */
21211
+ /** @name PalletTangleLstError (756) */
21205
21212
  interface PalletTangleLstError extends Enum {
21206
21213
  readonly isPoolNotFound: boolean;
21207
21214
  readonly isPoolMemberNotFound: boolean;
@@ -21239,7 +21246,7 @@ declare module '@polkadot/types/lookup' {
21239
21246
  readonly isNoBalanceToUnbond: boolean;
21240
21247
  readonly type: 'PoolNotFound' | 'PoolMemberNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'FullyUnbonding' | 'MaxUnbondingLimit' | 'CannotWithdrawAny' | 'MinimumBondNotMet' | 'OverflowRisk' | 'NotDestroying' | 'NotNominator' | 'NotKickerOrDestroying' | 'NotOpen' | 'MaxPools' | 'MaxPoolMembers' | 'CanNotChangeState' | 'DoesNotHavePermission' | 'MetadataExceedsMaxLen' | 'Defensive' | 'PartialUnbondNotAllowedPermissionlessly' | 'MaxCommissionRestricted' | 'CommissionExceedsMaximum' | 'CommissionExceedsGlobalMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted' | 'NothingToAdjust' | 'PoolTokenCreationFailed' | 'NoBalanceToUnbond';
21241
21248
  }
21242
- /** @name PalletTangleLstDefensiveError (758) */
21249
+ /** @name PalletTangleLstDefensiveError (757) */
21243
21250
  interface PalletTangleLstDefensiveError extends Enum {
21244
21251
  readonly isNotEnoughSpaceInUnbondPool: boolean;
21245
21252
  readonly isPoolNotFound: boolean;
@@ -21248,33 +21255,33 @@ declare module '@polkadot/types/lookup' {
21248
21255
  readonly isBondedStashKilledPrematurely: boolean;
21249
21256
  readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
21250
21257
  }
21251
- /** @name FrameSystemExtensionsCheckNonZeroSender (761) */
21258
+ /** @name FrameSystemExtensionsCheckNonZeroSender (760) */
21252
21259
  type FrameSystemExtensionsCheckNonZeroSender = Null;
21253
- /** @name FrameSystemExtensionsCheckSpecVersion (762) */
21260
+ /** @name FrameSystemExtensionsCheckSpecVersion (761) */
21254
21261
  type FrameSystemExtensionsCheckSpecVersion = Null;
21255
- /** @name FrameSystemExtensionsCheckTxVersion (763) */
21262
+ /** @name FrameSystemExtensionsCheckTxVersion (762) */
21256
21263
  type FrameSystemExtensionsCheckTxVersion = Null;
21257
- /** @name FrameSystemExtensionsCheckGenesis (764) */
21264
+ /** @name FrameSystemExtensionsCheckGenesis (763) */
21258
21265
  type FrameSystemExtensionsCheckGenesis = Null;
21259
- /** @name FrameSystemExtensionsCheckNonce (767) */
21266
+ /** @name FrameSystemExtensionsCheckNonce (766) */
21260
21267
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
21261
21268
  }
21262
- /** @name FrameSystemExtensionsCheckWeight (768) */
21269
+ /** @name FrameSystemExtensionsCheckWeight (767) */
21263
21270
  type FrameSystemExtensionsCheckWeight = Null;
21264
- /** @name PalletTransactionPaymentChargeTransactionPayment (769) */
21271
+ /** @name PalletTransactionPaymentChargeTransactionPayment (768) */
21265
21272
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
21266
21273
  }
21267
- /** @name FrameMetadataHashExtensionCheckMetadataHash (770) */
21274
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (769) */
21268
21275
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
21269
21276
  readonly mode: FrameMetadataHashExtensionMode;
21270
21277
  }
21271
- /** @name FrameMetadataHashExtensionMode (771) */
21278
+ /** @name FrameMetadataHashExtensionMode (770) */
21272
21279
  interface FrameMetadataHashExtensionMode extends Enum {
21273
21280
  readonly isDisabled: boolean;
21274
21281
  readonly isEnabled: boolean;
21275
21282
  readonly type: 'Disabled' | 'Enabled';
21276
21283
  }
21277
- /** @name TangleTestnetRuntimeRuntime (773) */
21284
+ /** @name TangleTestnetRuntimeRuntime (772) */
21278
21285
  type TangleTestnetRuntimeRuntime = Null;
21279
21286
  }
21280
21287
 
@@ -24777,7 +24784,7 @@ declare const _default: {
24777
24784
  };
24778
24785
  };
24779
24786
  /**
24780
- * Lookup346: pallet_utility::pallet::Call<T>
24787
+ * Lookup345: pallet_utility::pallet::Call<T>
24781
24788
  **/
24782
24789
  PalletUtilityCall: {
24783
24790
  _enum: {
@@ -24805,7 +24812,7 @@ declare const _default: {
24805
24812
  };
24806
24813
  };
24807
24814
  /**
24808
- * Lookup348: tangle_testnet_runtime::OriginCaller
24815
+ * Lookup347: tangle_testnet_runtime::OriginCaller
24809
24816
  **/
24810
24817
  TangleTestnetRuntimeOriginCaller: {
24811
24818
  _enum: {
@@ -24846,7 +24853,7 @@ declare const _default: {
24846
24853
  };
24847
24854
  };
24848
24855
  /**
24849
- * Lookup349: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
24856
+ * Lookup348: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
24850
24857
  **/
24851
24858
  FrameSupportDispatchRawOrigin: {
24852
24859
  _enum: {
@@ -24856,7 +24863,7 @@ declare const _default: {
24856
24863
  };
24857
24864
  };
24858
24865
  /**
24859
- * Lookup350: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
24866
+ * Lookup349: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
24860
24867
  **/
24861
24868
  PalletCollectiveRawOrigin: {
24862
24869
  _enum: {
@@ -24866,7 +24873,7 @@ declare const _default: {
24866
24873
  };
24867
24874
  };
24868
24875
  /**
24869
- * Lookup351: pallet_ethereum::RawOrigin
24876
+ * Lookup350: pallet_ethereum::RawOrigin
24870
24877
  **/
24871
24878
  PalletEthereumRawOrigin: {
24872
24879
  _enum: {
@@ -24874,7 +24881,7 @@ declare const _default: {
24874
24881
  };
24875
24882
  };
24876
24883
  /**
24877
- * Lookup352: pallet_multisig::pallet::Call<T>
24884
+ * Lookup351: pallet_multisig::pallet::Call<T>
24878
24885
  **/
24879
24886
  PalletMultisigCall: {
24880
24887
  _enum: {
@@ -24905,7 +24912,7 @@ declare const _default: {
24905
24912
  };
24906
24913
  };
24907
24914
  /**
24908
- * Lookup354: pallet_ethereum::pallet::Call<T>
24915
+ * Lookup353: pallet_ethereum::pallet::Call<T>
24909
24916
  **/
24910
24917
  PalletEthereumCall: {
24911
24918
  _enum: {
@@ -24915,7 +24922,7 @@ declare const _default: {
24915
24922
  };
24916
24923
  };
24917
24924
  /**
24918
- * Lookup355: ethereum::transaction::TransactionV2
24925
+ * Lookup354: ethereum::transaction::TransactionV2
24919
24926
  **/
24920
24927
  EthereumTransactionTransactionV2: {
24921
24928
  _enum: {
@@ -24925,7 +24932,7 @@ declare const _default: {
24925
24932
  };
24926
24933
  };
24927
24934
  /**
24928
- * Lookup356: ethereum::transaction::LegacyTransaction
24935
+ * Lookup355: ethereum::transaction::LegacyTransaction
24929
24936
  **/
24930
24937
  EthereumTransactionLegacyTransaction: {
24931
24938
  nonce: string;
@@ -24937,7 +24944,7 @@ declare const _default: {
24937
24944
  signature: string;
24938
24945
  };
24939
24946
  /**
24940
- * Lookup357: ethereum::transaction::TransactionAction
24947
+ * Lookup356: ethereum::transaction::TransactionAction
24941
24948
  **/
24942
24949
  EthereumTransactionTransactionAction: {
24943
24950
  _enum: {
@@ -24946,7 +24953,7 @@ declare const _default: {
24946
24953
  };
24947
24954
  };
24948
24955
  /**
24949
- * Lookup358: ethereum::transaction::TransactionSignature
24956
+ * Lookup357: ethereum::transaction::TransactionSignature
24950
24957
  **/
24951
24958
  EthereumTransactionTransactionSignature: {
24952
24959
  v: string;
@@ -24954,7 +24961,7 @@ declare const _default: {
24954
24961
  s: string;
24955
24962
  };
24956
24963
  /**
24957
- * Lookup360: ethereum::transaction::EIP2930Transaction
24964
+ * Lookup359: ethereum::transaction::EIP2930Transaction
24958
24965
  **/
24959
24966
  EthereumTransactionEip2930Transaction: {
24960
24967
  chainId: string;
@@ -24970,14 +24977,14 @@ declare const _default: {
24970
24977
  s: string;
24971
24978
  };
24972
24979
  /**
24973
- * Lookup362: ethereum::transaction::AccessListItem
24980
+ * Lookup361: ethereum::transaction::AccessListItem
24974
24981
  **/
24975
24982
  EthereumTransactionAccessListItem: {
24976
24983
  address: string;
24977
24984
  storageKeys: string;
24978
24985
  };
24979
24986
  /**
24980
- * Lookup363: ethereum::transaction::EIP1559Transaction
24987
+ * Lookup362: ethereum::transaction::EIP1559Transaction
24981
24988
  **/
24982
24989
  EthereumTransactionEip1559Transaction: {
24983
24990
  chainId: string;
@@ -24994,7 +25001,7 @@ declare const _default: {
24994
25001
  s: string;
24995
25002
  };
24996
25003
  /**
24997
- * Lookup364: pallet_evm::pallet::Call<T>
25004
+ * Lookup363: pallet_evm::pallet::Call<T>
24998
25005
  **/
24999
25006
  PalletEvmCall: {
25000
25007
  _enum: {
@@ -25037,7 +25044,7 @@ declare const _default: {
25037
25044
  };
25038
25045
  };
25039
25046
  /**
25040
- * Lookup368: pallet_dynamic_fee::pallet::Call<T>
25047
+ * Lookup367: pallet_dynamic_fee::pallet::Call<T>
25041
25048
  **/
25042
25049
  PalletDynamicFeeCall: {
25043
25050
  _enum: {
@@ -25047,7 +25054,7 @@ declare const _default: {
25047
25054
  };
25048
25055
  };
25049
25056
  /**
25050
- * Lookup369: pallet_base_fee::pallet::Call<T>
25057
+ * Lookup368: pallet_base_fee::pallet::Call<T>
25051
25058
  **/
25052
25059
  PalletBaseFeeCall: {
25053
25060
  _enum: {
@@ -25060,7 +25067,7 @@ declare const _default: {
25060
25067
  };
25061
25068
  };
25062
25069
  /**
25063
- * Lookup370: pallet_hotfix_sufficients::pallet::Call<T>
25070
+ * Lookup369: pallet_hotfix_sufficients::pallet::Call<T>
25064
25071
  **/
25065
25072
  PalletHotfixSufficientsCall: {
25066
25073
  _enum: {
@@ -25070,7 +25077,7 @@ declare const _default: {
25070
25077
  };
25071
25078
  };
25072
25079
  /**
25073
- * Lookup372: pallet_airdrop_claims::pallet::Call<T>
25080
+ * Lookup371: pallet_airdrop_claims::pallet::Call<T>
25074
25081
  **/
25075
25082
  PalletAirdropClaimsCall: {
25076
25083
  _enum: {
@@ -25109,7 +25116,7 @@ declare const _default: {
25109
25116
  };
25110
25117
  };
25111
25118
  /**
25112
- * Lookup374: pallet_airdrop_claims::utils::MultiAddressSignature
25119
+ * Lookup373: pallet_airdrop_claims::utils::MultiAddressSignature
25113
25120
  **/
25114
25121
  PalletAirdropClaimsUtilsMultiAddressSignature: {
25115
25122
  _enum: {
@@ -25118,21 +25125,21 @@ declare const _default: {
25118
25125
  };
25119
25126
  };
25120
25127
  /**
25121
- * Lookup375: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
25128
+ * Lookup374: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
25122
25129
  **/
25123
25130
  PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: string;
25124
25131
  /**
25125
- * Lookup376: pallet_airdrop_claims::utils::Sr25519Signature
25132
+ * Lookup375: pallet_airdrop_claims::utils::Sr25519Signature
25126
25133
  **/
25127
25134
  PalletAirdropClaimsUtilsSr25519Signature: string;
25128
25135
  /**
25129
- * Lookup382: pallet_airdrop_claims::StatementKind
25136
+ * Lookup381: pallet_airdrop_claims::StatementKind
25130
25137
  **/
25131
25138
  PalletAirdropClaimsStatementKind: {
25132
25139
  _enum: string[];
25133
25140
  };
25134
25141
  /**
25135
- * Lookup383: pallet_proxy::pallet::Call<T>
25142
+ * Lookup382: pallet_proxy::pallet::Call<T>
25136
25143
  **/
25137
25144
  PalletProxyCall: {
25138
25145
  _enum: {
@@ -25185,7 +25192,7 @@ declare const _default: {
25185
25192
  };
25186
25193
  };
25187
25194
  /**
25188
- * Lookup385: pallet_multi_asset_delegation::pallet::Call<T>
25195
+ * Lookup384: pallet_multi_asset_delegation::pallet::Call<T>
25189
25196
  **/
25190
25197
  PalletMultiAssetDelegationCall: {
25191
25198
  _enum: {
@@ -25261,7 +25268,7 @@ declare const _default: {
25261
25268
  };
25262
25269
  };
25263
25270
  /**
25264
- * Lookup387: pallet_multi_asset_delegation::types::delegator::DelegatorBlueprintSelection<tangle_testnet_runtime::MaxDelegatorBlueprints>
25271
+ * Lookup386: pallet_multi_asset_delegation::types::delegator::DelegatorBlueprintSelection<tangle_testnet_runtime::MaxDelegatorBlueprints>
25265
25272
  **/
25266
25273
  PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection: {
25267
25274
  _enum: {
@@ -25270,11 +25277,11 @@ declare const _default: {
25270
25277
  };
25271
25278
  };
25272
25279
  /**
25273
- * Lookup388: tangle_testnet_runtime::MaxDelegatorBlueprints
25280
+ * Lookup387: tangle_testnet_runtime::MaxDelegatorBlueprints
25274
25281
  **/
25275
25282
  TangleTestnetRuntimeMaxDelegatorBlueprints: string;
25276
25283
  /**
25277
- * Lookup391: pallet_services::module::Call<T>
25284
+ * Lookup390: pallet_services::module::Call<T>
25278
25285
  **/
25279
25286
  PalletServicesModuleCall: {
25280
25287
  _enum: {
@@ -25343,7 +25350,7 @@ declare const _default: {
25343
25350
  };
25344
25351
  };
25345
25352
  /**
25346
- * Lookup392: tangle_primitives::services::ServiceBlueprint<C>
25353
+ * Lookup391: tangle_primitives::services::ServiceBlueprint<C>
25347
25354
  **/
25348
25355
  TanglePrimitivesServicesServiceBlueprint: {
25349
25356
  metadata: string;
@@ -25355,7 +25362,7 @@ declare const _default: {
25355
25362
  gadget: string;
25356
25363
  };
25357
25364
  /**
25358
- * Lookup393: tangle_primitives::services::ServiceMetadata<C>
25365
+ * Lookup392: tangle_primitives::services::ServiceMetadata<C>
25359
25366
  **/
25360
25367
  TanglePrimitivesServicesServiceMetadata: {
25361
25368
  name: string;
@@ -25368,7 +25375,7 @@ declare const _default: {
25368
25375
  license: string;
25369
25376
  };
25370
25377
  /**
25371
- * Lookup398: tangle_primitives::services::JobDefinition<C>
25378
+ * Lookup397: tangle_primitives::services::JobDefinition<C>
25372
25379
  **/
25373
25380
  TanglePrimitivesServicesJobDefinition: {
25374
25381
  metadata: string;
@@ -25376,14 +25383,14 @@ declare const _default: {
25376
25383
  result: string;
25377
25384
  };
25378
25385
  /**
25379
- * Lookup399: tangle_primitives::services::JobMetadata<C>
25386
+ * Lookup398: tangle_primitives::services::JobMetadata<C>
25380
25387
  **/
25381
25388
  TanglePrimitivesServicesJobMetadata: {
25382
25389
  name: string;
25383
25390
  description: string;
25384
25391
  };
25385
25392
  /**
25386
- * Lookup401: tangle_primitives::services::field::FieldType
25393
+ * Lookup400: tangle_primitives::services::field::FieldType
25387
25394
  **/
25388
25395
  TanglePrimitivesServicesFieldFieldType: {
25389
25396
  _enum: {
@@ -25491,7 +25498,7 @@ declare const _default: {
25491
25498
  };
25492
25499
  };
25493
25500
  /**
25494
- * Lookup407: tangle_primitives::services::BlueprintServiceManager
25501
+ * Lookup406: tangle_primitives::services::BlueprintServiceManager
25495
25502
  **/
25496
25503
  TanglePrimitivesServicesBlueprintServiceManager: {
25497
25504
  _enum: {
@@ -25499,7 +25506,7 @@ declare const _default: {
25499
25506
  };
25500
25507
  };
25501
25508
  /**
25502
- * Lookup408: tangle_primitives::services::MasterBlueprintServiceManagerRevision
25509
+ * Lookup407: tangle_primitives::services::MasterBlueprintServiceManagerRevision
25503
25510
  **/
25504
25511
  TanglePrimitivesServicesMasterBlueprintServiceManagerRevision: {
25505
25512
  _enum: {
@@ -25508,7 +25515,7 @@ declare const _default: {
25508
25515
  };
25509
25516
  };
25510
25517
  /**
25511
- * Lookup409: tangle_primitives::services::Gadget<C>
25518
+ * Lookup408: tangle_primitives::services::Gadget<C>
25512
25519
  **/
25513
25520
  TanglePrimitivesServicesGadget: {
25514
25521
  _enum: {
@@ -25518,26 +25525,26 @@ declare const _default: {
25518
25525
  };
25519
25526
  };
25520
25527
  /**
25521
- * Lookup410: tangle_primitives::services::WasmGadget<C>
25528
+ * Lookup409: tangle_primitives::services::WasmGadget<C>
25522
25529
  **/
25523
25530
  TanglePrimitivesServicesWasmGadget: {
25524
25531
  runtime: string;
25525
25532
  sources: string;
25526
25533
  };
25527
25534
  /**
25528
- * Lookup411: tangle_primitives::services::WasmRuntime
25535
+ * Lookup410: tangle_primitives::services::WasmRuntime
25529
25536
  **/
25530
25537
  TanglePrimitivesServicesWasmRuntime: {
25531
25538
  _enum: string[];
25532
25539
  };
25533
25540
  /**
25534
- * Lookup413: tangle_primitives::services::GadgetSource<C>
25541
+ * Lookup412: tangle_primitives::services::GadgetSource<C>
25535
25542
  **/
25536
25543
  TanglePrimitivesServicesGadgetSource: {
25537
25544
  fetcher: string;
25538
25545
  };
25539
25546
  /**
25540
- * Lookup414: tangle_primitives::services::GadgetSourceFetcher<C>
25547
+ * Lookup413: tangle_primitives::services::GadgetSourceFetcher<C>
25541
25548
  **/
25542
25549
  TanglePrimitivesServicesGadgetSourceFetcher: {
25543
25550
  _enum: {
@@ -25548,7 +25555,7 @@ declare const _default: {
25548
25555
  };
25549
25556
  };
25550
25557
  /**
25551
- * Lookup416: tangle_primitives::services::GithubFetcher<C>
25558
+ * Lookup415: tangle_primitives::services::GithubFetcher<C>
25552
25559
  **/
25553
25560
  TanglePrimitivesServicesGithubFetcher: {
25554
25561
  owner: string;
@@ -25557,7 +25564,7 @@ declare const _default: {
25557
25564
  binaries: string;
25558
25565
  };
25559
25566
  /**
25560
- * Lookup424: tangle_primitives::services::GadgetBinary<C>
25567
+ * Lookup423: tangle_primitives::services::GadgetBinary<C>
25561
25568
  **/
25562
25569
  TanglePrimitivesServicesGadgetBinary: {
25563
25570
  arch: string;
@@ -25566,19 +25573,19 @@ declare const _default: {
25566
25573
  sha256: string;
25567
25574
  };
25568
25575
  /**
25569
- * Lookup425: tangle_primitives::services::Architecture
25576
+ * Lookup424: tangle_primitives::services::Architecture
25570
25577
  **/
25571
25578
  TanglePrimitivesServicesArchitecture: {
25572
25579
  _enum: string[];
25573
25580
  };
25574
25581
  /**
25575
- * Lookup426: tangle_primitives::services::OperatingSystem
25582
+ * Lookup425: tangle_primitives::services::OperatingSystem
25576
25583
  **/
25577
25584
  TanglePrimitivesServicesOperatingSystem: {
25578
25585
  _enum: string[];
25579
25586
  };
25580
25587
  /**
25581
- * Lookup430: tangle_primitives::services::ImageRegistryFetcher<C>
25588
+ * Lookup429: tangle_primitives::services::ImageRegistryFetcher<C>
25582
25589
  **/
25583
25590
  TanglePrimitivesServicesImageRegistryFetcher: {
25584
25591
  _alias: {
@@ -25589,7 +25596,7 @@ declare const _default: {
25589
25596
  tag: string;
25590
25597
  };
25591
25598
  /**
25592
- * Lookup437: tangle_primitives::services::TestFetcher<C>
25599
+ * Lookup436: tangle_primitives::services::TestFetcher<C>
25593
25600
  **/
25594
25601
  TanglePrimitivesServicesTestFetcher: {
25595
25602
  cargoPackage: string;
@@ -25597,19 +25604,19 @@ declare const _default: {
25597
25604
  basePath: string;
25598
25605
  };
25599
25606
  /**
25600
- * Lookup439: tangle_primitives::services::NativeGadget<C>
25607
+ * Lookup438: tangle_primitives::services::NativeGadget<C>
25601
25608
  **/
25602
25609
  TanglePrimitivesServicesNativeGadget: {
25603
25610
  sources: string;
25604
25611
  };
25605
25612
  /**
25606
- * Lookup440: tangle_primitives::services::ContainerGadget<C>
25613
+ * Lookup439: tangle_primitives::services::ContainerGadget<C>
25607
25614
  **/
25608
25615
  TanglePrimitivesServicesContainerGadget: {
25609
25616
  sources: string;
25610
25617
  };
25611
25618
  /**
25612
- * Lookup443: pallet_tangle_lst::pallet::Call<T>
25619
+ * Lookup442: pallet_tangle_lst::pallet::Call<T>
25613
25620
  **/
25614
25621
  PalletTangleLstCall: {
25615
25622
  _enum: {
@@ -25712,7 +25719,7 @@ declare const _default: {
25712
25719
  };
25713
25720
  };
25714
25721
  /**
25715
- * Lookup444: pallet_tangle_lst::types::BondExtra<Balance>
25722
+ * Lookup443: pallet_tangle_lst::types::BondExtra<Balance>
25716
25723
  **/
25717
25724
  PalletTangleLstBondExtra: {
25718
25725
  _enum: {
@@ -25720,7 +25727,7 @@ declare const _default: {
25720
25727
  };
25721
25728
  };
25722
25729
  /**
25723
- * Lookup449: pallet_tangle_lst::types::ConfigOp<T>
25730
+ * Lookup448: pallet_tangle_lst::types::ConfigOp<T>
25724
25731
  **/
25725
25732
  PalletTangleLstConfigOpU128: {
25726
25733
  _enum: {
@@ -25730,7 +25737,7 @@ declare const _default: {
25730
25737
  };
25731
25738
  };
25732
25739
  /**
25733
- * Lookup450: pallet_tangle_lst::types::ConfigOp<T>
25740
+ * Lookup449: pallet_tangle_lst::types::ConfigOp<T>
25734
25741
  **/
25735
25742
  PalletTangleLstConfigOpU32: {
25736
25743
  _enum: {
@@ -25740,7 +25747,7 @@ declare const _default: {
25740
25747
  };
25741
25748
  };
25742
25749
  /**
25743
- * Lookup451: pallet_tangle_lst::types::ConfigOp<sp_arithmetic::per_things::Perbill>
25750
+ * Lookup450: pallet_tangle_lst::types::ConfigOp<sp_arithmetic::per_things::Perbill>
25744
25751
  **/
25745
25752
  PalletTangleLstConfigOpPerbill: {
25746
25753
  _enum: {
@@ -25750,7 +25757,7 @@ declare const _default: {
25750
25757
  };
25751
25758
  };
25752
25759
  /**
25753
- * Lookup452: pallet_tangle_lst::types::ConfigOp<sp_core::crypto::AccountId32>
25760
+ * Lookup451: pallet_tangle_lst::types::ConfigOp<sp_core::crypto::AccountId32>
25754
25761
  **/
25755
25762
  PalletTangleLstConfigOpAccountId32: {
25756
25763
  _enum: {
@@ -25760,13 +25767,13 @@ declare const _default: {
25760
25767
  };
25761
25768
  };
25762
25769
  /**
25763
- * Lookup453: pallet_sudo::pallet::Error<T>
25770
+ * Lookup452: pallet_sudo::pallet::Error<T>
25764
25771
  **/
25765
25772
  PalletSudoError: {
25766
25773
  _enum: string[];
25767
25774
  };
25768
25775
  /**
25769
- * Lookup455: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
25776
+ * Lookup454: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
25770
25777
  **/
25771
25778
  PalletAssetsAssetDetails: {
25772
25779
  owner: string;
@@ -25783,13 +25790,13 @@ declare const _default: {
25783
25790
  status: string;
25784
25791
  };
25785
25792
  /**
25786
- * Lookup456: pallet_assets::types::AssetStatus
25793
+ * Lookup455: pallet_assets::types::AssetStatus
25787
25794
  **/
25788
25795
  PalletAssetsAssetStatus: {
25789
25796
  _enum: string[];
25790
25797
  };
25791
25798
  /**
25792
- * Lookup458: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra, sp_core::crypto::AccountId32>
25799
+ * Lookup457: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra, sp_core::crypto::AccountId32>
25793
25800
  **/
25794
25801
  PalletAssetsAssetAccount: {
25795
25802
  balance: string;
@@ -25798,13 +25805,13 @@ declare const _default: {
25798
25805
  extra: string;
25799
25806
  };
25800
25807
  /**
25801
- * Lookup459: pallet_assets::types::AccountStatus
25808
+ * Lookup458: pallet_assets::types::AccountStatus
25802
25809
  **/
25803
25810
  PalletAssetsAccountStatus: {
25804
25811
  _enum: string[];
25805
25812
  };
25806
25813
  /**
25807
- * Lookup460: pallet_assets::types::ExistenceReason<Balance, sp_core::crypto::AccountId32>
25814
+ * Lookup459: pallet_assets::types::ExistenceReason<Balance, sp_core::crypto::AccountId32>
25808
25815
  **/
25809
25816
  PalletAssetsExistenceReason: {
25810
25817
  _enum: {
@@ -25816,14 +25823,14 @@ declare const _default: {
25816
25823
  };
25817
25824
  };
25818
25825
  /**
25819
- * Lookup462: pallet_assets::types::Approval<Balance, DepositBalance>
25826
+ * Lookup461: pallet_assets::types::Approval<Balance, DepositBalance>
25820
25827
  **/
25821
25828
  PalletAssetsApproval: {
25822
25829
  amount: string;
25823
25830
  deposit: string;
25824
25831
  };
25825
25832
  /**
25826
- * Lookup463: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
25833
+ * Lookup462: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
25827
25834
  **/
25828
25835
  PalletAssetsAssetMetadata: {
25829
25836
  deposit: string;
@@ -25833,13 +25840,13 @@ declare const _default: {
25833
25840
  isFrozen: string;
25834
25841
  };
25835
25842
  /**
25836
- * Lookup465: pallet_assets::pallet::Error<T, I>
25843
+ * Lookup464: pallet_assets::pallet::Error<T, I>
25837
25844
  **/
25838
25845
  PalletAssetsError: {
25839
25846
  _enum: string[];
25840
25847
  };
25841
25848
  /**
25842
- * Lookup467: pallet_balances::types::BalanceLock<Balance>
25849
+ * Lookup466: pallet_balances::types::BalanceLock<Balance>
25843
25850
  **/
25844
25851
  PalletBalancesBalanceLock: {
25845
25852
  id: string;
@@ -25847,27 +25854,27 @@ declare const _default: {
25847
25854
  reasons: string;
25848
25855
  };
25849
25856
  /**
25850
- * Lookup468: pallet_balances::types::Reasons
25857
+ * Lookup467: pallet_balances::types::Reasons
25851
25858
  **/
25852
25859
  PalletBalancesReasons: {
25853
25860
  _enum: string[];
25854
25861
  };
25855
25862
  /**
25856
- * Lookup471: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
25863
+ * Lookup470: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
25857
25864
  **/
25858
25865
  PalletBalancesReserveData: {
25859
25866
  id: string;
25860
25867
  amount: string;
25861
25868
  };
25862
25869
  /**
25863
- * Lookup474: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
25870
+ * Lookup473: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
25864
25871
  **/
25865
25872
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
25866
25873
  id: string;
25867
25874
  amount: string;
25868
25875
  };
25869
25876
  /**
25870
- * Lookup475: tangle_testnet_runtime::RuntimeHoldReason
25877
+ * Lookup474: tangle_testnet_runtime::RuntimeHoldReason
25871
25878
  **/
25872
25879
  TangleTestnetRuntimeRuntimeHoldReason: {
25873
25880
  _enum: {
@@ -25901,20 +25908,20 @@ declare const _default: {
25901
25908
  };
25902
25909
  };
25903
25910
  /**
25904
- * Lookup476: pallet_preimage::pallet::HoldReason
25911
+ * Lookup475: pallet_preimage::pallet::HoldReason
25905
25912
  **/
25906
25913
  PalletPreimageHoldReason: {
25907
25914
  _enum: string[];
25908
25915
  };
25909
25916
  /**
25910
- * Lookup479: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
25917
+ * Lookup478: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
25911
25918
  **/
25912
25919
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
25913
25920
  id: string;
25914
25921
  amount: string;
25915
25922
  };
25916
25923
  /**
25917
- * Lookup480: tangle_testnet_runtime::RuntimeFreezeReason
25924
+ * Lookup479: tangle_testnet_runtime::RuntimeFreezeReason
25918
25925
  **/
25919
25926
  TangleTestnetRuntimeRuntimeFreezeReason: {
25920
25927
  _enum: {
@@ -25974,31 +25981,31 @@ declare const _default: {
25974
25981
  };
25975
25982
  };
25976
25983
  /**
25977
- * Lookup481: pallet_nomination_pools::pallet::FreezeReason
25984
+ * Lookup480: pallet_nomination_pools::pallet::FreezeReason
25978
25985
  **/
25979
25986
  PalletNominationPoolsFreezeReason: {
25980
25987
  _enum: string[];
25981
25988
  };
25982
25989
  /**
25983
- * Lookup482: pallet_tangle_lst::pallet::FreezeReason
25990
+ * Lookup481: pallet_tangle_lst::pallet::FreezeReason
25984
25991
  **/
25985
25992
  PalletTangleLstFreezeReason: {
25986
25993
  _enum: string[];
25987
25994
  };
25988
25995
  /**
25989
- * Lookup484: pallet_balances::pallet::Error<T, I>
25996
+ * Lookup483: pallet_balances::pallet::Error<T, I>
25990
25997
  **/
25991
25998
  PalletBalancesError: {
25992
25999
  _enum: string[];
25993
26000
  };
25994
26001
  /**
25995
- * Lookup486: pallet_transaction_payment::Releases
26002
+ * Lookup485: pallet_transaction_payment::Releases
25996
26003
  **/
25997
26004
  PalletTransactionPaymentReleases: {
25998
26005
  _enum: string[];
25999
26006
  };
26000
26007
  /**
26001
- * Lookup493: sp_consensus_babe::digests::PreDigest
26008
+ * Lookup492: sp_consensus_babe::digests::PreDigest
26002
26009
  **/
26003
26010
  SpConsensusBabeDigestsPreDigest: {
26004
26011
  _enum: {
@@ -26009,7 +26016,7 @@ declare const _default: {
26009
26016
  };
26010
26017
  };
26011
26018
  /**
26012
- * Lookup494: sp_consensus_babe::digests::PrimaryPreDigest
26019
+ * Lookup493: sp_consensus_babe::digests::PrimaryPreDigest
26013
26020
  **/
26014
26021
  SpConsensusBabeDigestsPrimaryPreDigest: {
26015
26022
  authorityIndex: string;
@@ -26017,21 +26024,21 @@ declare const _default: {
26017
26024
  vrfSignature: string;
26018
26025
  };
26019
26026
  /**
26020
- * Lookup495: sp_core::sr25519::vrf::VrfSignature
26027
+ * Lookup494: sp_core::sr25519::vrf::VrfSignature
26021
26028
  **/
26022
26029
  SpCoreSr25519VrfVrfSignature: {
26023
26030
  preOutput: string;
26024
26031
  proof: string;
26025
26032
  };
26026
26033
  /**
26027
- * Lookup496: sp_consensus_babe::digests::SecondaryPlainPreDigest
26034
+ * Lookup495: sp_consensus_babe::digests::SecondaryPlainPreDigest
26028
26035
  **/
26029
26036
  SpConsensusBabeDigestsSecondaryPlainPreDigest: {
26030
26037
  authorityIndex: string;
26031
26038
  slot: string;
26032
26039
  };
26033
26040
  /**
26034
- * Lookup497: sp_consensus_babe::digests::SecondaryVRFPreDigest
26041
+ * Lookup496: sp_consensus_babe::digests::SecondaryVRFPreDigest
26035
26042
  **/
26036
26043
  SpConsensusBabeDigestsSecondaryVRFPreDigest: {
26037
26044
  authorityIndex: string;
@@ -26039,20 +26046,20 @@ declare const _default: {
26039
26046
  vrfSignature: string;
26040
26047
  };
26041
26048
  /**
26042
- * Lookup498: sp_consensus_babe::BabeEpochConfiguration
26049
+ * Lookup497: sp_consensus_babe::BabeEpochConfiguration
26043
26050
  **/
26044
26051
  SpConsensusBabeBabeEpochConfiguration: {
26045
26052
  c: string;
26046
26053
  allowedSlots: string;
26047
26054
  };
26048
26055
  /**
26049
- * Lookup500: pallet_babe::pallet::Error<T>
26056
+ * Lookup499: pallet_babe::pallet::Error<T>
26050
26057
  **/
26051
26058
  PalletBabeError: {
26052
26059
  _enum: string[];
26053
26060
  };
26054
26061
  /**
26055
- * Lookup501: pallet_grandpa::StoredState<N>
26062
+ * Lookup500: pallet_grandpa::StoredState<N>
26056
26063
  **/
26057
26064
  PalletGrandpaStoredState: {
26058
26065
  _enum: {
@@ -26069,7 +26076,7 @@ declare const _default: {
26069
26076
  };
26070
26077
  };
26071
26078
  /**
26072
- * Lookup502: pallet_grandpa::StoredPendingChange<N, Limit>
26079
+ * Lookup501: pallet_grandpa::StoredPendingChange<N, Limit>
26073
26080
  **/
26074
26081
  PalletGrandpaStoredPendingChange: {
26075
26082
  scheduledAt: string;
@@ -26078,19 +26085,19 @@ declare const _default: {
26078
26085
  forced: string;
26079
26086
  };
26080
26087
  /**
26081
- * Lookup504: pallet_grandpa::pallet::Error<T>
26088
+ * Lookup503: pallet_grandpa::pallet::Error<T>
26082
26089
  **/
26083
26090
  PalletGrandpaError: {
26084
26091
  _enum: string[];
26085
26092
  };
26086
26093
  /**
26087
- * Lookup506: pallet_indices::pallet::Error<T>
26094
+ * Lookup505: pallet_indices::pallet::Error<T>
26088
26095
  **/
26089
26096
  PalletIndicesError: {
26090
26097
  _enum: string[];
26091
26098
  };
26092
26099
  /**
26093
- * Lookup511: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
26100
+ * Lookup510: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
26094
26101
  **/
26095
26102
  PalletDemocracyReferendumInfo: {
26096
26103
  _enum: {
@@ -26102,7 +26109,7 @@ declare const _default: {
26102
26109
  };
26103
26110
  };
26104
26111
  /**
26105
- * Lookup512: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
26112
+ * Lookup511: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
26106
26113
  **/
26107
26114
  PalletDemocracyReferendumStatus: {
26108
26115
  end: string;
@@ -26112,7 +26119,7 @@ declare const _default: {
26112
26119
  tally: string;
26113
26120
  };
26114
26121
  /**
26115
- * Lookup513: pallet_democracy::types::Tally<Balance>
26122
+ * Lookup512: pallet_democracy::types::Tally<Balance>
26116
26123
  **/
26117
26124
  PalletDemocracyTally: {
26118
26125
  ayes: string;
@@ -26120,7 +26127,7 @@ declare const _default: {
26120
26127
  turnout: string;
26121
26128
  };
26122
26129
  /**
26123
- * Lookup514: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
26130
+ * Lookup513: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
26124
26131
  **/
26125
26132
  PalletDemocracyVoteVoting: {
26126
26133
  _enum: {
@@ -26139,24 +26146,24 @@ declare const _default: {
26139
26146
  };
26140
26147
  };
26141
26148
  /**
26142
- * Lookup518: pallet_democracy::types::Delegations<Balance>
26149
+ * Lookup517: pallet_democracy::types::Delegations<Balance>
26143
26150
  **/
26144
26151
  PalletDemocracyDelegations: {
26145
26152
  votes: string;
26146
26153
  capital: string;
26147
26154
  };
26148
26155
  /**
26149
- * Lookup519: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
26156
+ * Lookup518: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
26150
26157
  **/
26151
26158
  PalletDemocracyVotePriorLock: string;
26152
26159
  /**
26153
- * Lookup522: pallet_democracy::pallet::Error<T>
26160
+ * Lookup521: pallet_democracy::pallet::Error<T>
26154
26161
  **/
26155
26162
  PalletDemocracyError: {
26156
26163
  _enum: string[];
26157
26164
  };
26158
26165
  /**
26159
- * Lookup524: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
26166
+ * Lookup523: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
26160
26167
  **/
26161
26168
  PalletCollectiveVotes: {
26162
26169
  index: string;
@@ -26166,25 +26173,25 @@ declare const _default: {
26166
26173
  end: string;
26167
26174
  };
26168
26175
  /**
26169
- * Lookup525: pallet_collective::pallet::Error<T, I>
26176
+ * Lookup524: pallet_collective::pallet::Error<T, I>
26170
26177
  **/
26171
26178
  PalletCollectiveError: {
26172
26179
  _enum: string[];
26173
26180
  };
26174
26181
  /**
26175
- * Lookup528: pallet_vesting::Releases
26182
+ * Lookup527: pallet_vesting::Releases
26176
26183
  **/
26177
26184
  PalletVestingReleases: {
26178
26185
  _enum: string[];
26179
26186
  };
26180
26187
  /**
26181
- * Lookup529: pallet_vesting::pallet::Error<T>
26188
+ * Lookup528: pallet_vesting::pallet::Error<T>
26182
26189
  **/
26183
26190
  PalletVestingError: {
26184
26191
  _enum: string[];
26185
26192
  };
26186
26193
  /**
26187
- * Lookup531: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
26194
+ * Lookup530: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
26188
26195
  **/
26189
26196
  PalletElectionsPhragmenSeatHolder: {
26190
26197
  who: string;
@@ -26192,7 +26199,7 @@ declare const _default: {
26192
26199
  deposit: string;
26193
26200
  };
26194
26201
  /**
26195
- * Lookup532: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
26202
+ * Lookup531: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
26196
26203
  **/
26197
26204
  PalletElectionsPhragmenVoter: {
26198
26205
  votes: string;
@@ -26200,13 +26207,13 @@ declare const _default: {
26200
26207
  deposit: string;
26201
26208
  };
26202
26209
  /**
26203
- * Lookup533: pallet_elections_phragmen::pallet::Error<T>
26210
+ * Lookup532: pallet_elections_phragmen::pallet::Error<T>
26204
26211
  **/
26205
26212
  PalletElectionsPhragmenError: {
26206
26213
  _enum: string[];
26207
26214
  };
26208
26215
  /**
26209
- * Lookup534: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
26216
+ * Lookup533: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
26210
26217
  **/
26211
26218
  PalletElectionProviderMultiPhaseReadySolution: {
26212
26219
  supports: string;
@@ -26214,14 +26221,14 @@ declare const _default: {
26214
26221
  compute: string;
26215
26222
  };
26216
26223
  /**
26217
- * Lookup536: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
26224
+ * Lookup535: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
26218
26225
  **/
26219
26226
  PalletElectionProviderMultiPhaseRoundSnapshot: {
26220
26227
  voters: string;
26221
26228
  targets: string;
26222
26229
  };
26223
26230
  /**
26224
- * Lookup543: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
26231
+ * Lookup542: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
26225
26232
  **/
26226
26233
  PalletElectionProviderMultiPhaseSignedSignedSubmission: {
26227
26234
  who: string;
@@ -26230,13 +26237,13 @@ declare const _default: {
26230
26237
  callFee: string;
26231
26238
  };
26232
26239
  /**
26233
- * Lookup544: pallet_election_provider_multi_phase::pallet::Error<T>
26240
+ * Lookup543: pallet_election_provider_multi_phase::pallet::Error<T>
26234
26241
  **/
26235
26242
  PalletElectionProviderMultiPhaseError: {
26236
26243
  _enum: string[];
26237
26244
  };
26238
26245
  /**
26239
- * Lookup545: pallet_staking::StakingLedger<T>
26246
+ * Lookup544: pallet_staking::StakingLedger<T>
26240
26247
  **/
26241
26248
  PalletStakingStakingLedger: {
26242
26249
  stash: string;
@@ -26246,7 +26253,7 @@ declare const _default: {
26246
26253
  legacyClaimedRewards: string;
26247
26254
  };
26248
26255
  /**
26249
- * Lookup547: pallet_staking::Nominations<T>
26256
+ * Lookup546: pallet_staking::Nominations<T>
26250
26257
  **/
26251
26258
  PalletStakingNominations: {
26252
26259
  targets: string;
@@ -26254,14 +26261,14 @@ declare const _default: {
26254
26261
  suppressed: string;
26255
26262
  };
26256
26263
  /**
26257
- * Lookup548: pallet_staking::ActiveEraInfo
26264
+ * Lookup547: pallet_staking::ActiveEraInfo
26258
26265
  **/
26259
26266
  PalletStakingActiveEraInfo: {
26260
26267
  index: string;
26261
26268
  start: string;
26262
26269
  };
26263
26270
  /**
26264
- * Lookup550: sp_staking::PagedExposureMetadata<Balance>
26271
+ * Lookup549: sp_staking::PagedExposureMetadata<Balance>
26265
26272
  **/
26266
26273
  SpStakingPagedExposureMetadata: {
26267
26274
  total: string;
@@ -26270,21 +26277,21 @@ declare const _default: {
26270
26277
  pageCount: string;
26271
26278
  };
26272
26279
  /**
26273
- * Lookup552: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
26280
+ * Lookup551: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
26274
26281
  **/
26275
26282
  SpStakingExposurePage: {
26276
26283
  pageTotal: string;
26277
26284
  others: string;
26278
26285
  };
26279
26286
  /**
26280
- * Lookup553: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
26287
+ * Lookup552: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
26281
26288
  **/
26282
26289
  PalletStakingEraRewardPoints: {
26283
26290
  total: string;
26284
26291
  individual: string;
26285
26292
  };
26286
26293
  /**
26287
- * Lookup558: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
26294
+ * Lookup557: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
26288
26295
  **/
26289
26296
  PalletStakingUnappliedSlash: {
26290
26297
  validator: string;
@@ -26294,7 +26301,7 @@ declare const _default: {
26294
26301
  payout: string;
26295
26302
  };
26296
26303
  /**
26297
- * Lookup562: pallet_staking::slashing::SlashingSpans
26304
+ * Lookup561: pallet_staking::slashing::SlashingSpans
26298
26305
  **/
26299
26306
  PalletStakingSlashingSlashingSpans: {
26300
26307
  spanIndex: string;
@@ -26303,30 +26310,30 @@ declare const _default: {
26303
26310
  prior: string;
26304
26311
  };
26305
26312
  /**
26306
- * Lookup563: pallet_staking::slashing::SpanRecord<Balance>
26313
+ * Lookup562: pallet_staking::slashing::SpanRecord<Balance>
26307
26314
  **/
26308
26315
  PalletStakingSlashingSpanRecord: {
26309
26316
  slashed: string;
26310
26317
  paidOut: string;
26311
26318
  };
26312
26319
  /**
26313
- * Lookup564: pallet_staking::pallet::pallet::Error<T>
26320
+ * Lookup563: pallet_staking::pallet::pallet::Error<T>
26314
26321
  **/
26315
26322
  PalletStakingPalletError: {
26316
26323
  _enum: string[];
26317
26324
  };
26318
26325
  /**
26319
- * Lookup568: sp_core::crypto::KeyTypeId
26326
+ * Lookup567: sp_core::crypto::KeyTypeId
26320
26327
  **/
26321
26328
  SpCoreCryptoKeyTypeId: string;
26322
26329
  /**
26323
- * Lookup569: pallet_session::pallet::Error<T>
26330
+ * Lookup568: pallet_session::pallet::Error<T>
26324
26331
  **/
26325
26332
  PalletSessionError: {
26326
26333
  _enum: string[];
26327
26334
  };
26328
26335
  /**
26329
- * Lookup571: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
26336
+ * Lookup570: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
26330
26337
  **/
26331
26338
  PalletTreasuryProposal: {
26332
26339
  proposer: string;
@@ -26335,7 +26342,7 @@ declare const _default: {
26335
26342
  bond: string;
26336
26343
  };
26337
26344
  /**
26338
- * Lookup573: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
26345
+ * Lookup572: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
26339
26346
  **/
26340
26347
  PalletTreasurySpendStatus: {
26341
26348
  assetKind: string;
@@ -26346,7 +26353,7 @@ declare const _default: {
26346
26353
  status: string;
26347
26354
  };
26348
26355
  /**
26349
- * Lookup574: pallet_treasury::PaymentState<Id>
26356
+ * Lookup573: pallet_treasury::PaymentState<Id>
26350
26357
  **/
26351
26358
  PalletTreasuryPaymentState: {
26352
26359
  _enum: {
@@ -26358,17 +26365,17 @@ declare const _default: {
26358
26365
  };
26359
26366
  };
26360
26367
  /**
26361
- * Lookup575: frame_support::PalletId
26368
+ * Lookup574: frame_support::PalletId
26362
26369
  **/
26363
26370
  FrameSupportPalletId: string;
26364
26371
  /**
26365
- * Lookup576: pallet_treasury::pallet::Error<T, I>
26372
+ * Lookup575: pallet_treasury::pallet::Error<T, I>
26366
26373
  **/
26367
26374
  PalletTreasuryError: {
26368
26375
  _enum: string[];
26369
26376
  };
26370
26377
  /**
26371
- * Lookup577: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
26378
+ * Lookup576: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
26372
26379
  **/
26373
26380
  PalletBountiesBounty: {
26374
26381
  proposer: string;
@@ -26379,7 +26386,7 @@ declare const _default: {
26379
26386
  status: string;
26380
26387
  };
26381
26388
  /**
26382
- * Lookup578: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
26389
+ * Lookup577: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
26383
26390
  **/
26384
26391
  PalletBountiesBountyStatus: {
26385
26392
  _enum: {
@@ -26401,13 +26408,13 @@ declare const _default: {
26401
26408
  };
26402
26409
  };
26403
26410
  /**
26404
- * Lookup580: pallet_bounties::pallet::Error<T, I>
26411
+ * Lookup579: pallet_bounties::pallet::Error<T, I>
26405
26412
  **/
26406
26413
  PalletBountiesError: {
26407
26414
  _enum: string[];
26408
26415
  };
26409
26416
  /**
26410
- * Lookup581: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
26417
+ * Lookup580: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
26411
26418
  **/
26412
26419
  PalletChildBountiesChildBounty: {
26413
26420
  parentBounty: string;
@@ -26417,7 +26424,7 @@ declare const _default: {
26417
26424
  status: string;
26418
26425
  };
26419
26426
  /**
26420
- * Lookup582: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
26427
+ * Lookup581: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
26421
26428
  **/
26422
26429
  PalletChildBountiesChildBountyStatus: {
26423
26430
  _enum: {
@@ -26436,13 +26443,13 @@ declare const _default: {
26436
26443
  };
26437
26444
  };
26438
26445
  /**
26439
- * Lookup583: pallet_child_bounties::pallet::Error<T>
26446
+ * Lookup582: pallet_child_bounties::pallet::Error<T>
26440
26447
  **/
26441
26448
  PalletChildBountiesError: {
26442
26449
  _enum: string[];
26443
26450
  };
26444
26451
  /**
26445
- * Lookup584: pallet_bags_list::list::Node<T, I>
26452
+ * Lookup583: pallet_bags_list::list::Node<T, I>
26446
26453
  **/
26447
26454
  PalletBagsListListNode: {
26448
26455
  id: string;
@@ -26452,14 +26459,14 @@ declare const _default: {
26452
26459
  score: string;
26453
26460
  };
26454
26461
  /**
26455
- * Lookup585: pallet_bags_list::list::Bag<T, I>
26462
+ * Lookup584: pallet_bags_list::list::Bag<T, I>
26456
26463
  **/
26457
26464
  PalletBagsListListBag: {
26458
26465
  head: string;
26459
26466
  tail: string;
26460
26467
  };
26461
26468
  /**
26462
- * Lookup586: pallet_bags_list::pallet::Error<T, I>
26469
+ * Lookup585: pallet_bags_list::pallet::Error<T, I>
26463
26470
  **/
26464
26471
  PalletBagsListError: {
26465
26472
  _enum: {
@@ -26467,13 +26474,13 @@ declare const _default: {
26467
26474
  };
26468
26475
  };
26469
26476
  /**
26470
- * Lookup587: pallet_bags_list::list::ListError
26477
+ * Lookup586: pallet_bags_list::list::ListError
26471
26478
  **/
26472
26479
  PalletBagsListListListError: {
26473
26480
  _enum: string[];
26474
26481
  };
26475
26482
  /**
26476
- * Lookup588: pallet_nomination_pools::PoolMember<T>
26483
+ * Lookup587: pallet_nomination_pools::PoolMember<T>
26477
26484
  **/
26478
26485
  PalletNominationPoolsPoolMember: {
26479
26486
  poolId: string;
@@ -26482,7 +26489,7 @@ declare const _default: {
26482
26489
  unbondingEras: string;
26483
26490
  };
26484
26491
  /**
26485
- * Lookup593: pallet_nomination_pools::BondedPoolInner<T>
26492
+ * Lookup592: pallet_nomination_pools::BondedPoolInner<T>
26486
26493
  **/
26487
26494
  PalletNominationPoolsBondedPoolInner: {
26488
26495
  commission: string;
@@ -26492,7 +26499,7 @@ declare const _default: {
26492
26499
  state: string;
26493
26500
  };
26494
26501
  /**
26495
- * Lookup594: pallet_nomination_pools::Commission<T>
26502
+ * Lookup593: pallet_nomination_pools::Commission<T>
26496
26503
  **/
26497
26504
  PalletNominationPoolsCommission: {
26498
26505
  current: string;
@@ -26502,7 +26509,7 @@ declare const _default: {
26502
26509
  claimPermission: string;
26503
26510
  };
26504
26511
  /**
26505
- * Lookup597: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
26512
+ * Lookup596: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
26506
26513
  **/
26507
26514
  PalletNominationPoolsPoolRoles: {
26508
26515
  depositor: string;
@@ -26511,7 +26518,7 @@ declare const _default: {
26511
26518
  bouncer: string;
26512
26519
  };
26513
26520
  /**
26514
- * Lookup598: pallet_nomination_pools::RewardPool<T>
26521
+ * Lookup597: pallet_nomination_pools::RewardPool<T>
26515
26522
  **/
26516
26523
  PalletNominationPoolsRewardPool: {
26517
26524
  lastRecordedRewardCounter: string;
@@ -26521,21 +26528,21 @@ declare const _default: {
26521
26528
  totalCommissionClaimed: string;
26522
26529
  };
26523
26530
  /**
26524
- * Lookup599: pallet_nomination_pools::SubPools<T>
26531
+ * Lookup598: pallet_nomination_pools::SubPools<T>
26525
26532
  **/
26526
26533
  PalletNominationPoolsSubPools: {
26527
26534
  noEra: string;
26528
26535
  withEra: string;
26529
26536
  };
26530
26537
  /**
26531
- * Lookup600: pallet_nomination_pools::UnbondPool<T>
26538
+ * Lookup599: pallet_nomination_pools::UnbondPool<T>
26532
26539
  **/
26533
26540
  PalletNominationPoolsUnbondPool: {
26534
26541
  points: string;
26535
26542
  balance: string;
26536
26543
  };
26537
26544
  /**
26538
- * Lookup605: pallet_nomination_pools::pallet::Error<T>
26545
+ * Lookup604: pallet_nomination_pools::pallet::Error<T>
26539
26546
  **/
26540
26547
  PalletNominationPoolsError: {
26541
26548
  _enum: {
@@ -26572,19 +26579,20 @@ declare const _default: {
26572
26579
  BondExtraRestricted: string;
26573
26580
  NothingToAdjust: string;
26574
26581
  NothingToSlash: string;
26582
+ SlashTooLow: string;
26575
26583
  AlreadyMigrated: string;
26576
26584
  NotMigrated: string;
26577
26585
  NotSupported: string;
26578
26586
  };
26579
26587
  };
26580
26588
  /**
26581
- * Lookup606: pallet_nomination_pools::pallet::DefensiveError
26589
+ * Lookup605: pallet_nomination_pools::pallet::DefensiveError
26582
26590
  **/
26583
26591
  PalletNominationPoolsDefensiveError: {
26584
26592
  _enum: string[];
26585
26593
  };
26586
26594
  /**
26587
- * Lookup609: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, BlockNumber, tangle_testnet_runtime::OriginCaller, sp_core::crypto::AccountId32>
26595
+ * Lookup608: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, BlockNumber, tangle_testnet_runtime::OriginCaller, sp_core::crypto::AccountId32>
26588
26596
  **/
26589
26597
  PalletSchedulerScheduled: {
26590
26598
  maybeId: string;
@@ -26594,7 +26602,7 @@ declare const _default: {
26594
26602
  origin: string;
26595
26603
  };
26596
26604
  /**
26597
- * Lookup611: pallet_scheduler::RetryConfig<Period>
26605
+ * Lookup610: pallet_scheduler::RetryConfig<Period>
26598
26606
  **/
26599
26607
  PalletSchedulerRetryConfig: {
26600
26608
  totalRetries: string;
@@ -26602,13 +26610,13 @@ declare const _default: {
26602
26610
  period: string;
26603
26611
  };
26604
26612
  /**
26605
- * Lookup612: pallet_scheduler::pallet::Error<T>
26613
+ * Lookup611: pallet_scheduler::pallet::Error<T>
26606
26614
  **/
26607
26615
  PalletSchedulerError: {
26608
26616
  _enum: string[];
26609
26617
  };
26610
26618
  /**
26611
- * Lookup613: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
26619
+ * Lookup612: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
26612
26620
  **/
26613
26621
  PalletPreimageOldRequestStatus: {
26614
26622
  _enum: {
@@ -26624,7 +26632,7 @@ declare const _default: {
26624
26632
  };
26625
26633
  };
26626
26634
  /**
26627
- * Lookup615: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
26635
+ * Lookup614: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
26628
26636
  **/
26629
26637
  PalletPreimageRequestStatus: {
26630
26638
  _enum: {
@@ -26640,32 +26648,32 @@ declare const _default: {
26640
26648
  };
26641
26649
  };
26642
26650
  /**
26643
- * Lookup619: pallet_preimage::pallet::Error<T>
26651
+ * Lookup618: pallet_preimage::pallet::Error<T>
26644
26652
  **/
26645
26653
  PalletPreimageError: {
26646
26654
  _enum: string[];
26647
26655
  };
26648
26656
  /**
26649
- * Lookup620: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
26657
+ * Lookup619: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
26650
26658
  **/
26651
26659
  SpStakingOffenceOffenceDetails: {
26652
26660
  offender: string;
26653
26661
  reporters: string;
26654
26662
  };
26655
26663
  /**
26656
- * Lookup622: pallet_tx_pause::pallet::Error<T>
26664
+ * Lookup621: pallet_tx_pause::pallet::Error<T>
26657
26665
  **/
26658
26666
  PalletTxPauseError: {
26659
26667
  _enum: string[];
26660
26668
  };
26661
26669
  /**
26662
- * Lookup625: pallet_im_online::pallet::Error<T>
26670
+ * Lookup624: pallet_im_online::pallet::Error<T>
26663
26671
  **/
26664
26672
  PalletImOnlineError: {
26665
26673
  _enum: string[];
26666
26674
  };
26667
26675
  /**
26668
- * Lookup627: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
26676
+ * Lookup626: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
26669
26677
  **/
26670
26678
  PalletIdentityRegistration: {
26671
26679
  judgements: string;
@@ -26673,7 +26681,7 @@ declare const _default: {
26673
26681
  info: string;
26674
26682
  };
26675
26683
  /**
26676
- * Lookup636: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
26684
+ * Lookup635: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
26677
26685
  **/
26678
26686
  PalletIdentityRegistrarInfo: {
26679
26687
  account: string;
@@ -26681,26 +26689,26 @@ declare const _default: {
26681
26689
  fields: string;
26682
26690
  };
26683
26691
  /**
26684
- * Lookup638: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
26692
+ * Lookup637: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
26685
26693
  **/
26686
26694
  PalletIdentityAuthorityProperties: {
26687
26695
  suffix: string;
26688
26696
  allocation: string;
26689
26697
  };
26690
26698
  /**
26691
- * Lookup641: pallet_identity::pallet::Error<T>
26699
+ * Lookup640: pallet_identity::pallet::Error<T>
26692
26700
  **/
26693
26701
  PalletIdentityError: {
26694
26702
  _enum: string[];
26695
26703
  };
26696
26704
  /**
26697
- * Lookup642: pallet_utility::pallet::Error<T>
26705
+ * Lookup641: pallet_utility::pallet::Error<T>
26698
26706
  **/
26699
26707
  PalletUtilityError: {
26700
26708
  _enum: string[];
26701
26709
  };
26702
26710
  /**
26703
- * Lookup644: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
26711
+ * Lookup643: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
26704
26712
  **/
26705
26713
  PalletMultisigMultisig: {
26706
26714
  when: string;
@@ -26709,13 +26717,13 @@ declare const _default: {
26709
26717
  approvals: string;
26710
26718
  };
26711
26719
  /**
26712
- * Lookup645: pallet_multisig::pallet::Error<T>
26720
+ * Lookup644: pallet_multisig::pallet::Error<T>
26713
26721
  **/
26714
26722
  PalletMultisigError: {
26715
26723
  _enum: string[];
26716
26724
  };
26717
26725
  /**
26718
- * Lookup648: fp_rpc::TransactionStatus
26726
+ * Lookup647: fp_rpc::TransactionStatus
26719
26727
  **/
26720
26728
  FpRpcTransactionStatus: {
26721
26729
  transactionHash: string;
@@ -26727,11 +26735,11 @@ declare const _default: {
26727
26735
  logsBloom: string;
26728
26736
  };
26729
26737
  /**
26730
- * Lookup650: ethbloom::Bloom
26738
+ * Lookup649: ethbloom::Bloom
26731
26739
  **/
26732
26740
  EthbloomBloom: string;
26733
26741
  /**
26734
- * Lookup652: ethereum::receipt::ReceiptV3
26742
+ * Lookup651: ethereum::receipt::ReceiptV3
26735
26743
  **/
26736
26744
  EthereumReceiptReceiptV3: {
26737
26745
  _enum: {
@@ -26741,7 +26749,7 @@ declare const _default: {
26741
26749
  };
26742
26750
  };
26743
26751
  /**
26744
- * Lookup653: ethereum::receipt::EIP658ReceiptData
26752
+ * Lookup652: ethereum::receipt::EIP658ReceiptData
26745
26753
  **/
26746
26754
  EthereumReceiptEip658ReceiptData: {
26747
26755
  statusCode: string;
@@ -26750,7 +26758,7 @@ declare const _default: {
26750
26758
  logs: string;
26751
26759
  };
26752
26760
  /**
26753
- * Lookup654: ethereum::block::Block<ethereum::transaction::TransactionV2>
26761
+ * Lookup653: ethereum::block::Block<ethereum::transaction::TransactionV2>
26754
26762
  **/
26755
26763
  EthereumBlock: {
26756
26764
  header: string;
@@ -26758,7 +26766,7 @@ declare const _default: {
26758
26766
  ommers: string;
26759
26767
  };
26760
26768
  /**
26761
- * Lookup655: ethereum::header::Header
26769
+ * Lookup654: ethereum::header::Header
26762
26770
  **/
26763
26771
  EthereumHeader: {
26764
26772
  parentHash: string;
@@ -26778,17 +26786,17 @@ declare const _default: {
26778
26786
  nonce: string;
26779
26787
  };
26780
26788
  /**
26781
- * Lookup656: ethereum_types::hash::H64
26789
+ * Lookup655: ethereum_types::hash::H64
26782
26790
  **/
26783
26791
  EthereumTypesHashH64: string;
26784
26792
  /**
26785
- * Lookup661: pallet_ethereum::pallet::Error<T>
26793
+ * Lookup660: pallet_ethereum::pallet::Error<T>
26786
26794
  **/
26787
26795
  PalletEthereumError: {
26788
26796
  _enum: string[];
26789
26797
  };
26790
26798
  /**
26791
- * Lookup662: pallet_evm::CodeMetadata
26799
+ * Lookup661: pallet_evm::CodeMetadata
26792
26800
  **/
26793
26801
  PalletEvmCodeMetadata: {
26794
26802
  _alias: {
@@ -26799,25 +26807,25 @@ declare const _default: {
26799
26807
  hash_: string;
26800
26808
  };
26801
26809
  /**
26802
- * Lookup664: pallet_evm::pallet::Error<T>
26810
+ * Lookup663: pallet_evm::pallet::Error<T>
26803
26811
  **/
26804
26812
  PalletEvmError: {
26805
26813
  _enum: string[];
26806
26814
  };
26807
26815
  /**
26808
- * Lookup665: pallet_hotfix_sufficients::pallet::Error<T>
26816
+ * Lookup664: pallet_hotfix_sufficients::pallet::Error<T>
26809
26817
  **/
26810
26818
  PalletHotfixSufficientsError: {
26811
26819
  _enum: string[];
26812
26820
  };
26813
26821
  /**
26814
- * Lookup667: pallet_airdrop_claims::pallet::Error<T>
26822
+ * Lookup666: pallet_airdrop_claims::pallet::Error<T>
26815
26823
  **/
26816
26824
  PalletAirdropClaimsError: {
26817
26825
  _enum: string[];
26818
26826
  };
26819
26827
  /**
26820
- * Lookup670: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
26828
+ * Lookup669: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
26821
26829
  **/
26822
26830
  PalletProxyProxyDefinition: {
26823
26831
  delegate: string;
@@ -26825,7 +26833,7 @@ declare const _default: {
26825
26833
  delay: string;
26826
26834
  };
26827
26835
  /**
26828
- * Lookup674: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
26836
+ * Lookup673: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
26829
26837
  **/
26830
26838
  PalletProxyAnnouncement: {
26831
26839
  real: string;
@@ -26833,13 +26841,13 @@ declare const _default: {
26833
26841
  height: string;
26834
26842
  };
26835
26843
  /**
26836
- * Lookup676: pallet_proxy::pallet::Error<T>
26844
+ * Lookup675: pallet_proxy::pallet::Error<T>
26837
26845
  **/
26838
26846
  PalletProxyError: {
26839
26847
  _enum: string[];
26840
26848
  };
26841
26849
  /**
26842
- * Lookup677: pallet_multi_asset_delegation::types::operator::OperatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxOperatorBlueprints>
26850
+ * Lookup676: pallet_multi_asset_delegation::types::operator::OperatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxOperatorBlueprints>
26843
26851
  **/
26844
26852
  PalletMultiAssetDelegationOperatorOperatorMetadata: {
26845
26853
  stake: string;
@@ -26850,22 +26858,22 @@ declare const _default: {
26850
26858
  blueprintIds: string;
26851
26859
  };
26852
26860
  /**
26853
- * Lookup678: tangle_testnet_runtime::MaxDelegations
26861
+ * Lookup677: tangle_testnet_runtime::MaxDelegations
26854
26862
  **/
26855
26863
  TangleTestnetRuntimeMaxDelegations: string;
26856
26864
  /**
26857
- * Lookup679: tangle_testnet_runtime::MaxOperatorBlueprints
26865
+ * Lookup678: tangle_testnet_runtime::MaxOperatorBlueprints
26858
26866
  **/
26859
26867
  TangleTestnetRuntimeMaxOperatorBlueprints: string;
26860
26868
  /**
26861
- * Lookup681: pallet_multi_asset_delegation::types::operator::OperatorBondLessRequest<Balance>
26869
+ * Lookup680: pallet_multi_asset_delegation::types::operator::OperatorBondLessRequest<Balance>
26862
26870
  **/
26863
26871
  PalletMultiAssetDelegationOperatorOperatorBondLessRequest: {
26864
26872
  amount: string;
26865
26873
  requestTime: string;
26866
26874
  };
26867
26875
  /**
26868
- * Lookup683: pallet_multi_asset_delegation::types::operator::DelegatorBond<sp_core::crypto::AccountId32, Balance, AssetId>
26876
+ * Lookup682: pallet_multi_asset_delegation::types::operator::DelegatorBond<sp_core::crypto::AccountId32, Balance, AssetId>
26869
26877
  **/
26870
26878
  PalletMultiAssetDelegationOperatorDelegatorBond: {
26871
26879
  delegator: string;
@@ -26873,7 +26881,7 @@ declare const _default: {
26873
26881
  assetId: string;
26874
26882
  };
26875
26883
  /**
26876
- * Lookup685: pallet_multi_asset_delegation::types::operator::OperatorStatus
26884
+ * Lookup684: pallet_multi_asset_delegation::types::operator::OperatorStatus
26877
26885
  **/
26878
26886
  PalletMultiAssetDelegationOperatorOperatorStatus: {
26879
26887
  _enum: {
@@ -26883,14 +26891,14 @@ declare const _default: {
26883
26891
  };
26884
26892
  };
26885
26893
  /**
26886
- * Lookup687: pallet_multi_asset_delegation::types::operator::OperatorSnapshot<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations>
26894
+ * Lookup686: pallet_multi_asset_delegation::types::operator::OperatorSnapshot<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations>
26887
26895
  **/
26888
26896
  PalletMultiAssetDelegationOperatorOperatorSnapshot: {
26889
26897
  stake: string;
26890
26898
  delegations: string;
26891
26899
  };
26892
26900
  /**
26893
- * Lookup688: pallet_multi_asset_delegation::types::delegator::DelegatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxWithdrawRequests, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxUnstakeRequests, tangle_testnet_runtime::MaxDelegatorBlueprints>
26901
+ * Lookup687: pallet_multi_asset_delegation::types::delegator::DelegatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxWithdrawRequests, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxUnstakeRequests, tangle_testnet_runtime::MaxDelegatorBlueprints>
26894
26902
  **/
26895
26903
  PalletMultiAssetDelegationDelegatorDelegatorMetadata: {
26896
26904
  deposits: string;
@@ -26900,15 +26908,15 @@ declare const _default: {
26900
26908
  status: string;
26901
26909
  };
26902
26910
  /**
26903
- * Lookup689: tangle_testnet_runtime::MaxWithdrawRequests
26911
+ * Lookup688: tangle_testnet_runtime::MaxWithdrawRequests
26904
26912
  **/
26905
26913
  TangleTestnetRuntimeMaxWithdrawRequests: string;
26906
26914
  /**
26907
- * Lookup690: tangle_testnet_runtime::MaxUnstakeRequests
26915
+ * Lookup689: tangle_testnet_runtime::MaxUnstakeRequests
26908
26916
  **/
26909
26917
  TangleTestnetRuntimeMaxUnstakeRequests: string;
26910
26918
  /**
26911
- * Lookup695: pallet_multi_asset_delegation::types::delegator::WithdrawRequest<AssetId, Balance>
26919
+ * Lookup694: pallet_multi_asset_delegation::types::delegator::WithdrawRequest<AssetId, Balance>
26912
26920
  **/
26913
26921
  PalletMultiAssetDelegationDelegatorWithdrawRequest: {
26914
26922
  assetId: string;
@@ -26916,7 +26924,7 @@ declare const _default: {
26916
26924
  requestedRound: string;
26917
26925
  };
26918
26926
  /**
26919
- * Lookup698: pallet_multi_asset_delegation::types::delegator::BondInfoDelegator<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegatorBlueprints>
26927
+ * Lookup697: pallet_multi_asset_delegation::types::delegator::BondInfoDelegator<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegatorBlueprints>
26920
26928
  **/
26921
26929
  PalletMultiAssetDelegationDelegatorBondInfoDelegator: {
26922
26930
  operator: string;
@@ -26925,7 +26933,7 @@ declare const _default: {
26925
26933
  blueprintSelection: string;
26926
26934
  };
26927
26935
  /**
26928
- * Lookup701: pallet_multi_asset_delegation::types::delegator::BondLessRequest<sp_core::crypto::AccountId32, AssetId, Balance, tangle_testnet_runtime::MaxDelegatorBlueprints>
26936
+ * Lookup700: pallet_multi_asset_delegation::types::delegator::BondLessRequest<sp_core::crypto::AccountId32, AssetId, Balance, tangle_testnet_runtime::MaxDelegatorBlueprints>
26929
26937
  **/
26930
26938
  PalletMultiAssetDelegationDelegatorBondLessRequest: {
26931
26939
  operator: string;
@@ -26935,7 +26943,7 @@ declare const _default: {
26935
26943
  blueprintSelection: string;
26936
26944
  };
26937
26945
  /**
26938
- * Lookup703: pallet_multi_asset_delegation::types::delegator::DelegatorStatus
26946
+ * Lookup702: pallet_multi_asset_delegation::types::delegator::DelegatorStatus
26939
26947
  **/
26940
26948
  PalletMultiAssetDelegationDelegatorDelegatorStatus: {
26941
26949
  _enum: {
@@ -26944,27 +26952,27 @@ declare const _default: {
26944
26952
  };
26945
26953
  };
26946
26954
  /**
26947
- * Lookup705: pallet_multi_asset_delegation::types::rewards::RewardConfig<VaultId, Balance>
26955
+ * Lookup704: pallet_multi_asset_delegation::types::rewards::RewardConfig<VaultId, Balance>
26948
26956
  **/
26949
26957
  PalletMultiAssetDelegationRewardsRewardConfig: {
26950
26958
  configs: string;
26951
26959
  whitelistedBlueprintIds: string;
26952
26960
  };
26953
26961
  /**
26954
- * Lookup707: pallet_multi_asset_delegation::types::rewards::RewardConfigForAssetVault<Balance>
26962
+ * Lookup706: pallet_multi_asset_delegation::types::rewards::RewardConfigForAssetVault<Balance>
26955
26963
  **/
26956
26964
  PalletMultiAssetDelegationRewardsRewardConfigForAssetVault: {
26957
26965
  apy: string;
26958
26966
  cap: string;
26959
26967
  };
26960
26968
  /**
26961
- * Lookup710: pallet_multi_asset_delegation::pallet::Error<T>
26969
+ * Lookup709: pallet_multi_asset_delegation::pallet::Error<T>
26962
26970
  **/
26963
26971
  PalletMultiAssetDelegationError: {
26964
26972
  _enum: string[];
26965
26973
  };
26966
26974
  /**
26967
- * Lookup713: tangle_primitives::services::ServiceRequest<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
26975
+ * Lookup712: tangle_primitives::services::ServiceRequest<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
26968
26976
  **/
26969
26977
  TanglePrimitivesServicesServiceRequest: {
26970
26978
  blueprint: string;
@@ -26976,7 +26984,7 @@ declare const _default: {
26976
26984
  operatorsWithApprovalState: string;
26977
26985
  };
26978
26986
  /**
26979
- * Lookup719: tangle_primitives::services::ApprovalState
26987
+ * Lookup718: tangle_primitives::services::ApprovalState
26980
26988
  **/
26981
26989
  TanglePrimitivesServicesApprovalState: {
26982
26990
  _enum: {
@@ -26988,7 +26996,7 @@ declare const _default: {
26988
26996
  };
26989
26997
  };
26990
26998
  /**
26991
- * Lookup721: tangle_primitives::services::Service<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
26999
+ * Lookup720: tangle_primitives::services::Service<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
26992
27000
  **/
26993
27001
  TanglePrimitivesServicesService: {
26994
27002
  id: string;
@@ -27000,7 +27008,7 @@ declare const _default: {
27000
27008
  ttl: string;
27001
27009
  };
27002
27010
  /**
27003
- * Lookup727: tangle_primitives::services::JobCall<C, sp_core::crypto::AccountId32>
27011
+ * Lookup726: tangle_primitives::services::JobCall<C, sp_core::crypto::AccountId32>
27004
27012
  **/
27005
27013
  TanglePrimitivesServicesJobCall: {
27006
27014
  serviceId: string;
@@ -27008,7 +27016,7 @@ declare const _default: {
27008
27016
  args: string;
27009
27017
  };
27010
27018
  /**
27011
- * Lookup728: tangle_primitives::services::JobCallResult<C, sp_core::crypto::AccountId32>
27019
+ * Lookup727: tangle_primitives::services::JobCallResult<C, sp_core::crypto::AccountId32>
27012
27020
  **/
27013
27021
  TanglePrimitivesServicesJobCallResult: {
27014
27022
  serviceId: string;
@@ -27016,7 +27024,7 @@ declare const _default: {
27016
27024
  result: string;
27017
27025
  };
27018
27026
  /**
27019
- * Lookup729: pallet_services::types::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
27027
+ * Lookup728: pallet_services::types::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
27020
27028
  **/
27021
27029
  PalletServicesUnappliedSlash: {
27022
27030
  serviceId: string;
@@ -27027,14 +27035,14 @@ declare const _default: {
27027
27035
  payout: string;
27028
27036
  };
27029
27037
  /**
27030
- * Lookup731: tangle_primitives::services::OperatorProfile<C>
27038
+ * Lookup730: tangle_primitives::services::OperatorProfile<C>
27031
27039
  **/
27032
27040
  TanglePrimitivesServicesOperatorProfile: {
27033
27041
  services: string;
27034
27042
  blueprints: string;
27035
27043
  };
27036
27044
  /**
27037
- * Lookup734: tangle_primitives::services::StagingServicePayment<sp_core::crypto::AccountId32, AssetId, Balance>
27045
+ * Lookup733: tangle_primitives::services::StagingServicePayment<sp_core::crypto::AccountId32, AssetId, Balance>
27038
27046
  **/
27039
27047
  TanglePrimitivesServicesStagingServicePayment: {
27040
27048
  requestId: string;
@@ -27043,7 +27051,7 @@ declare const _default: {
27043
27051
  amount: string;
27044
27052
  };
27045
27053
  /**
27046
- * Lookup735: tangle_primitives::types::Account<sp_core::crypto::AccountId32>
27054
+ * Lookup734: tangle_primitives::types::Account<sp_core::crypto::AccountId32>
27047
27055
  **/
27048
27056
  TanglePrimitivesAccount: {
27049
27057
  _enum: {
@@ -27052,7 +27060,7 @@ declare const _default: {
27052
27060
  };
27053
27061
  };
27054
27062
  /**
27055
- * Lookup736: pallet_services::module::Error<T>
27063
+ * Lookup735: pallet_services::module::Error<T>
27056
27064
  **/
27057
27065
  PalletServicesModuleError: {
27058
27066
  _enum: {
@@ -27102,7 +27110,7 @@ declare const _default: {
27102
27110
  };
27103
27111
  };
27104
27112
  /**
27105
- * Lookup737: tangle_primitives::services::TypeCheckError
27113
+ * Lookup736: tangle_primitives::services::TypeCheckError
27106
27114
  **/
27107
27115
  TanglePrimitivesServicesTypeCheckError: {
27108
27116
  _enum: {
@@ -27123,7 +27131,7 @@ declare const _default: {
27123
27131
  };
27124
27132
  };
27125
27133
  /**
27126
- * Lookup738: pallet_tangle_lst::types::bonded_pool::BondedPoolInner<T>
27134
+ * Lookup737: pallet_tangle_lst::types::bonded_pool::BondedPoolInner<T>
27127
27135
  **/
27128
27136
  PalletTangleLstBondedPoolBondedPoolInner: {
27129
27137
  commission: string;
@@ -27132,7 +27140,7 @@ declare const _default: {
27132
27140
  metadata: string;
27133
27141
  };
27134
27142
  /**
27135
- * Lookup739: pallet_tangle_lst::types::commission::Commission<T>
27143
+ * Lookup738: pallet_tangle_lst::types::commission::Commission<T>
27136
27144
  **/
27137
27145
  PalletTangleLstCommission: {
27138
27146
  current: string;
@@ -27142,7 +27150,7 @@ declare const _default: {
27142
27150
  claimPermission: string;
27143
27151
  };
27144
27152
  /**
27145
- * Lookup741: pallet_tangle_lst::types::pools::PoolRoles<sp_core::crypto::AccountId32>
27153
+ * Lookup740: pallet_tangle_lst::types::pools::PoolRoles<sp_core::crypto::AccountId32>
27146
27154
  **/
27147
27155
  PalletTangleLstPoolsPoolRoles: {
27148
27156
  depositor: string;
@@ -27151,14 +27159,14 @@ declare const _default: {
27151
27159
  bouncer: string;
27152
27160
  };
27153
27161
  /**
27154
- * Lookup742: pallet_tangle_lst::types::bonded_pool::PoolMetadata<T>
27162
+ * Lookup741: pallet_tangle_lst::types::bonded_pool::PoolMetadata<T>
27155
27163
  **/
27156
27164
  PalletTangleLstBondedPoolPoolMetadata: {
27157
27165
  name: string;
27158
27166
  icon: string;
27159
27167
  };
27160
27168
  /**
27161
- * Lookup743: pallet_tangle_lst::types::sub_pools::RewardPool<T>
27169
+ * Lookup742: pallet_tangle_lst::types::sub_pools::RewardPool<T>
27162
27170
  **/
27163
27171
  PalletTangleLstSubPoolsRewardPool: {
27164
27172
  lastRecordedRewardCounter: string;
@@ -27168,33 +27176,33 @@ declare const _default: {
27168
27176
  totalCommissionClaimed: string;
27169
27177
  };
27170
27178
  /**
27171
- * Lookup744: pallet_tangle_lst::types::sub_pools::SubPools<T>
27179
+ * Lookup743: pallet_tangle_lst::types::sub_pools::SubPools<T>
27172
27180
  **/
27173
27181
  PalletTangleLstSubPools: {
27174
27182
  noEra: string;
27175
27183
  withEra: string;
27176
27184
  };
27177
27185
  /**
27178
- * Lookup745: pallet_tangle_lst::types::sub_pools::UnbondPool<T>
27186
+ * Lookup744: pallet_tangle_lst::types::sub_pools::UnbondPool<T>
27179
27187
  **/
27180
27188
  PalletTangleLstSubPoolsUnbondPool: {
27181
27189
  points: string;
27182
27190
  balance: string;
27183
27191
  };
27184
27192
  /**
27185
- * Lookup751: pallet_tangle_lst::types::pools::PoolMember<T>
27193
+ * Lookup750: pallet_tangle_lst::types::pools::PoolMember<T>
27186
27194
  **/
27187
27195
  PalletTangleLstPoolsPoolMember: {
27188
27196
  unbondingEras: string;
27189
27197
  };
27190
27198
  /**
27191
- * Lookup756: pallet_tangle_lst::types::ClaimPermission
27199
+ * Lookup755: pallet_tangle_lst::types::ClaimPermission
27192
27200
  **/
27193
27201
  PalletTangleLstClaimPermission: {
27194
27202
  _enum: string[];
27195
27203
  };
27196
27204
  /**
27197
- * Lookup757: pallet_tangle_lst::pallet::Error<T>
27205
+ * Lookup756: pallet_tangle_lst::pallet::Error<T>
27198
27206
  **/
27199
27207
  PalletTangleLstError: {
27200
27208
  _enum: {
@@ -27234,53 +27242,53 @@ declare const _default: {
27234
27242
  };
27235
27243
  };
27236
27244
  /**
27237
- * Lookup758: pallet_tangle_lst::pallet::DefensiveError
27245
+ * Lookup757: pallet_tangle_lst::pallet::DefensiveError
27238
27246
  **/
27239
27247
  PalletTangleLstDefensiveError: {
27240
27248
  _enum: string[];
27241
27249
  };
27242
27250
  /**
27243
- * Lookup761: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
27251
+ * Lookup760: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
27244
27252
  **/
27245
27253
  FrameSystemExtensionsCheckNonZeroSender: string;
27246
27254
  /**
27247
- * Lookup762: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
27255
+ * Lookup761: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
27248
27256
  **/
27249
27257
  FrameSystemExtensionsCheckSpecVersion: string;
27250
27258
  /**
27251
- * Lookup763: frame_system::extensions::check_tx_version::CheckTxVersion<T>
27259
+ * Lookup762: frame_system::extensions::check_tx_version::CheckTxVersion<T>
27252
27260
  **/
27253
27261
  FrameSystemExtensionsCheckTxVersion: string;
27254
27262
  /**
27255
- * Lookup764: frame_system::extensions::check_genesis::CheckGenesis<T>
27263
+ * Lookup763: frame_system::extensions::check_genesis::CheckGenesis<T>
27256
27264
  **/
27257
27265
  FrameSystemExtensionsCheckGenesis: string;
27258
27266
  /**
27259
- * Lookup767: frame_system::extensions::check_nonce::CheckNonce<T>
27267
+ * Lookup766: frame_system::extensions::check_nonce::CheckNonce<T>
27260
27268
  **/
27261
27269
  FrameSystemExtensionsCheckNonce: string;
27262
27270
  /**
27263
- * Lookup768: frame_system::extensions::check_weight::CheckWeight<T>
27271
+ * Lookup767: frame_system::extensions::check_weight::CheckWeight<T>
27264
27272
  **/
27265
27273
  FrameSystemExtensionsCheckWeight: string;
27266
27274
  /**
27267
- * Lookup769: pallet_transaction_payment::ChargeTransactionPayment<T>
27275
+ * Lookup768: pallet_transaction_payment::ChargeTransactionPayment<T>
27268
27276
  **/
27269
27277
  PalletTransactionPaymentChargeTransactionPayment: string;
27270
27278
  /**
27271
- * Lookup770: frame_metadata_hash_extension::CheckMetadataHash<T>
27279
+ * Lookup769: frame_metadata_hash_extension::CheckMetadataHash<T>
27272
27280
  **/
27273
27281
  FrameMetadataHashExtensionCheckMetadataHash: {
27274
27282
  mode: string;
27275
27283
  };
27276
27284
  /**
27277
- * Lookup771: frame_metadata_hash_extension::Mode
27285
+ * Lookup770: frame_metadata_hash_extension::Mode
27278
27286
  **/
27279
27287
  FrameMetadataHashExtensionMode: {
27280
27288
  _enum: string[];
27281
27289
  };
27282
27290
  /**
27283
- * Lookup773: tangle_testnet_runtime::Runtime
27291
+ * Lookup772: tangle_testnet_runtime::Runtime
27284
27292
  **/
27285
27293
  TangleTestnetRuntimeRuntime: string;
27286
27294
  };