@webb-tools/tangle-substrate-types 0.5.4 → 0.5.8

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.
Files changed (38) hide show
  1. package/build/interfaces/augment-api-consts.d.ts +147 -4
  2. package/build/interfaces/augment-api-errors.d.ts +403 -0
  3. package/build/interfaces/augment-api-events.d.ts +543 -2
  4. package/build/interfaces/augment-api-query.d.ts +159 -2
  5. package/build/interfaces/augment-api-tx.d.ts +745 -1
  6. package/build/interfaces/augment-types.d.ts +21 -2
  7. package/build/interfaces/lookup.d.ts +1470 -356
  8. package/build/interfaces/lookup.js +1464 -350
  9. package/build/interfaces/registry.d.ts +61 -1
  10. package/build/interfaces/types-lookup.d.ts +1592 -348
  11. package/build/metadata/static-latest.d.ts +1 -1
  12. package/build/metadata/static-latest.js +1 -1
  13. package/build/package.json +1 -1
  14. package/package.json +4 -4
  15. package/playground.ts +86 -0
  16. package/src/interfaces/augment-api-consts.ts +147 -11
  17. package/src/interfaces/augment-api-errors.ts +403 -0
  18. package/src/interfaces/augment-api-events.ts +321 -30
  19. package/src/interfaces/augment-api-query.ts +150 -87
  20. package/src/interfaces/augment-api-tx.ts +361 -54
  21. package/src/interfaces/augment-types.ts +21 -2
  22. package/src/interfaces/lookup.ts +1465 -351
  23. package/src/interfaces/registry.ts +61 -1
  24. package/src/interfaces/types-lookup.ts +1650 -348
  25. package/src/metadata/metadata.json +1 -1
  26. package/src/metadata/static-latest.ts +1 -1
  27. package/ts-types/playground.d.ts +1 -0
  28. package/ts-types/src/interfaces/augment-api-consts.d.ts +147 -4
  29. package/ts-types/src/interfaces/augment-api-errors.d.ts +403 -0
  30. package/ts-types/src/interfaces/augment-api-events.d.ts +543 -2
  31. package/ts-types/src/interfaces/augment-api-query.d.ts +159 -2
  32. package/ts-types/src/interfaces/augment-api-tx.d.ts +745 -1
  33. package/ts-types/src/interfaces/augment-types.d.ts +21 -2
  34. package/ts-types/src/interfaces/lookup.d.ts +1470 -356
  35. package/ts-types/src/interfaces/registry.d.ts +61 -1
  36. package/ts-types/src/interfaces/types-lookup.d.ts +1592 -348
  37. package/ts-types/src/metadata/static-latest.d.ts +1 -1
  38. package/ts-types/tsconfig.tsbuildinfo +1 -1
@@ -202,7 +202,145 @@ declare module '@polkadot/types/lookup' {
202
202
  readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
203
203
  }
204
204
 
205
- /** @name PalletBalancesEvent (35) */
205
+ /** @name PalletAssetsEvent (35) */
206
+ interface PalletAssetsEvent extends Enum {
207
+ readonly isCreated: boolean;
208
+ readonly asCreated: {
209
+ readonly assetId: u128;
210
+ readonly creator: AccountId32;
211
+ readonly owner: AccountId32;
212
+ } & Struct;
213
+ readonly isIssued: boolean;
214
+ readonly asIssued: {
215
+ readonly assetId: u128;
216
+ readonly owner: AccountId32;
217
+ readonly amount: u128;
218
+ } & Struct;
219
+ readonly isTransferred: boolean;
220
+ readonly asTransferred: {
221
+ readonly assetId: u128;
222
+ readonly from: AccountId32;
223
+ readonly to: AccountId32;
224
+ readonly amount: u128;
225
+ } & Struct;
226
+ readonly isBurned: boolean;
227
+ readonly asBurned: {
228
+ readonly assetId: u128;
229
+ readonly owner: AccountId32;
230
+ readonly balance: u128;
231
+ } & Struct;
232
+ readonly isTeamChanged: boolean;
233
+ readonly asTeamChanged: {
234
+ readonly assetId: u128;
235
+ readonly issuer: AccountId32;
236
+ readonly admin: AccountId32;
237
+ readonly freezer: AccountId32;
238
+ } & Struct;
239
+ readonly isOwnerChanged: boolean;
240
+ readonly asOwnerChanged: {
241
+ readonly assetId: u128;
242
+ readonly owner: AccountId32;
243
+ } & Struct;
244
+ readonly isFrozen: boolean;
245
+ readonly asFrozen: {
246
+ readonly assetId: u128;
247
+ readonly who: AccountId32;
248
+ } & Struct;
249
+ readonly isThawed: boolean;
250
+ readonly asThawed: {
251
+ readonly assetId: u128;
252
+ readonly who: AccountId32;
253
+ } & Struct;
254
+ readonly isAssetFrozen: boolean;
255
+ readonly asAssetFrozen: {
256
+ readonly assetId: u128;
257
+ } & Struct;
258
+ readonly isAssetThawed: boolean;
259
+ readonly asAssetThawed: {
260
+ readonly assetId: u128;
261
+ } & Struct;
262
+ readonly isAccountsDestroyed: boolean;
263
+ readonly asAccountsDestroyed: {
264
+ readonly assetId: u128;
265
+ readonly accountsDestroyed: u32;
266
+ readonly accountsRemaining: u32;
267
+ } & Struct;
268
+ readonly isApprovalsDestroyed: boolean;
269
+ readonly asApprovalsDestroyed: {
270
+ readonly assetId: u128;
271
+ readonly approvalsDestroyed: u32;
272
+ readonly approvalsRemaining: u32;
273
+ } & Struct;
274
+ readonly isDestructionStarted: boolean;
275
+ readonly asDestructionStarted: {
276
+ readonly assetId: u128;
277
+ } & Struct;
278
+ readonly isDestroyed: boolean;
279
+ readonly asDestroyed: {
280
+ readonly assetId: u128;
281
+ } & Struct;
282
+ readonly isForceCreated: boolean;
283
+ readonly asForceCreated: {
284
+ readonly assetId: u128;
285
+ readonly owner: AccountId32;
286
+ } & Struct;
287
+ readonly isMetadataSet: boolean;
288
+ readonly asMetadataSet: {
289
+ readonly assetId: u128;
290
+ readonly name: Bytes;
291
+ readonly symbol: Bytes;
292
+ readonly decimals: u8;
293
+ readonly isFrozen: bool;
294
+ } & Struct;
295
+ readonly isMetadataCleared: boolean;
296
+ readonly asMetadataCleared: {
297
+ readonly assetId: u128;
298
+ } & Struct;
299
+ readonly isApprovedTransfer: boolean;
300
+ readonly asApprovedTransfer: {
301
+ readonly assetId: u128;
302
+ readonly source: AccountId32;
303
+ readonly delegate: AccountId32;
304
+ readonly amount: u128;
305
+ } & Struct;
306
+ readonly isApprovalCancelled: boolean;
307
+ readonly asApprovalCancelled: {
308
+ readonly assetId: u128;
309
+ readonly owner: AccountId32;
310
+ readonly delegate: AccountId32;
311
+ } & Struct;
312
+ readonly isTransferredApproved: boolean;
313
+ readonly asTransferredApproved: {
314
+ readonly assetId: u128;
315
+ readonly owner: AccountId32;
316
+ readonly delegate: AccountId32;
317
+ readonly destination: AccountId32;
318
+ readonly amount: u128;
319
+ } & Struct;
320
+ readonly isAssetStatusChanged: boolean;
321
+ readonly asAssetStatusChanged: {
322
+ readonly assetId: u128;
323
+ } & Struct;
324
+ readonly isAssetMinBalanceChanged: boolean;
325
+ readonly asAssetMinBalanceChanged: {
326
+ readonly assetId: u128;
327
+ readonly newMinBalance: u128;
328
+ } & Struct;
329
+ readonly isTouched: boolean;
330
+ readonly asTouched: {
331
+ readonly assetId: u128;
332
+ readonly who: AccountId32;
333
+ readonly depositor: AccountId32;
334
+ } & Struct;
335
+ readonly isBlocked: boolean;
336
+ readonly asBlocked: {
337
+ readonly assetId: u128;
338
+ readonly who: AccountId32;
339
+ } & Struct;
340
+ readonly type: 'Created' | 'Issued' | 'Transferred' | 'Burned' | 'TeamChanged' | 'OwnerChanged' | 'Frozen' | 'Thawed' | 'AssetFrozen' | 'AssetThawed' | 'AccountsDestroyed' | 'ApprovalsDestroyed' | 'DestructionStarted' | 'Destroyed' | 'ForceCreated' | 'MetadataSet' | 'MetadataCleared' | 'ApprovedTransfer' | 'ApprovalCancelled' | 'TransferredApproved' | 'AssetStatusChanged' | 'AssetMinBalanceChanged' | 'Touched' | 'Blocked';
341
+ }
342
+
343
+ /** @name PalletBalancesEvent (36) */
206
344
  interface PalletBalancesEvent extends Enum {
207
345
  readonly isEndowed: boolean;
208
346
  readonly asEndowed: {
@@ -317,14 +455,14 @@ declare module '@polkadot/types/lookup' {
317
455
  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced';
318
456
  }
319
457
 
320
- /** @name FrameSupportTokensMiscBalanceStatus (36) */
458
+ /** @name FrameSupportTokensMiscBalanceStatus (37) */
321
459
  interface FrameSupportTokensMiscBalanceStatus extends Enum {
322
460
  readonly isFree: boolean;
323
461
  readonly isReserved: boolean;
324
462
  readonly type: 'Free' | 'Reserved';
325
463
  }
326
464
 
327
- /** @name PalletTransactionPaymentEvent (37) */
465
+ /** @name PalletTransactionPaymentEvent (38) */
328
466
  interface PalletTransactionPaymentEvent extends Enum {
329
467
  readonly isTransactionFeePaid: boolean;
330
468
  readonly asTransactionFeePaid: {
@@ -335,7 +473,7 @@ declare module '@polkadot/types/lookup' {
335
473
  readonly type: 'TransactionFeePaid';
336
474
  }
337
475
 
338
- /** @name PalletGrandpaEvent (38) */
476
+ /** @name PalletGrandpaEvent (39) */
339
477
  interface PalletGrandpaEvent extends Enum {
340
478
  readonly isNewAuthorities: boolean;
341
479
  readonly asNewAuthorities: {
@@ -346,13 +484,13 @@ declare module '@polkadot/types/lookup' {
346
484
  readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
347
485
  }
348
486
 
349
- /** @name SpConsensusGrandpaAppPublic (41) */
487
+ /** @name SpConsensusGrandpaAppPublic (42) */
350
488
  interface SpConsensusGrandpaAppPublic extends SpCoreEd25519Public {}
351
489
 
352
- /** @name SpCoreEd25519Public (42) */
490
+ /** @name SpCoreEd25519Public (43) */
353
491
  interface SpCoreEd25519Public extends U8aFixed {}
354
492
 
355
- /** @name PalletIndicesEvent (43) */
493
+ /** @name PalletIndicesEvent (44) */
356
494
  interface PalletIndicesEvent extends Enum {
357
495
  readonly isIndexAssigned: boolean;
358
496
  readonly asIndexAssigned: {
@@ -371,7 +509,7 @@ declare module '@polkadot/types/lookup' {
371
509
  readonly type: 'IndexAssigned' | 'IndexFreed' | 'IndexFrozen';
372
510
  }
373
511
 
374
- /** @name PalletDemocracyEvent (44) */
512
+ /** @name PalletDemocracyEvent (45) */
375
513
  interface PalletDemocracyEvent extends Enum {
376
514
  readonly isProposed: boolean;
377
515
  readonly asProposed: {
@@ -454,7 +592,7 @@ declare module '@polkadot/types/lookup' {
454
592
  readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred';
455
593
  }
456
594
 
457
- /** @name PalletDemocracyVoteThreshold (45) */
595
+ /** @name PalletDemocracyVoteThreshold (46) */
458
596
  interface PalletDemocracyVoteThreshold extends Enum {
459
597
  readonly isSuperMajorityApprove: boolean;
460
598
  readonly isSuperMajorityAgainst: boolean;
@@ -462,7 +600,7 @@ declare module '@polkadot/types/lookup' {
462
600
  readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';
463
601
  }
464
602
 
465
- /** @name PalletDemocracyVoteAccountVote (46) */
603
+ /** @name PalletDemocracyVoteAccountVote (47) */
466
604
  interface PalletDemocracyVoteAccountVote extends Enum {
467
605
  readonly isStandard: boolean;
468
606
  readonly asStandard: {
@@ -477,7 +615,7 @@ declare module '@polkadot/types/lookup' {
477
615
  readonly type: 'Standard' | 'Split';
478
616
  }
479
617
 
480
- /** @name PalletDemocracyMetadataOwner (48) */
618
+ /** @name PalletDemocracyMetadataOwner (49) */
481
619
  interface PalletDemocracyMetadataOwner extends Enum {
482
620
  readonly isExternal: boolean;
483
621
  readonly isProposal: boolean;
@@ -487,7 +625,7 @@ declare module '@polkadot/types/lookup' {
487
625
  readonly type: 'External' | 'Proposal' | 'Referendum';
488
626
  }
489
627
 
490
- /** @name PalletCollectiveEvent (49) */
628
+ /** @name PalletCollectiveEvent (50) */
491
629
  interface PalletCollectiveEvent extends Enum {
492
630
  readonly isProposed: boolean;
493
631
  readonly asProposed: {
@@ -531,7 +669,7 @@ declare module '@polkadot/types/lookup' {
531
669
  readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed';
532
670
  }
533
671
 
534
- /** @name PalletVestingEvent (50) */
672
+ /** @name PalletVestingEvent (51) */
535
673
  interface PalletVestingEvent extends Enum {
536
674
  readonly isVestingUpdated: boolean;
537
675
  readonly asVestingUpdated: {
@@ -545,7 +683,7 @@ declare module '@polkadot/types/lookup' {
545
683
  readonly type: 'VestingUpdated' | 'VestingCompleted';
546
684
  }
547
685
 
548
- /** @name PalletElectionsPhragmenEvent (51) */
686
+ /** @name PalletElectionsPhragmenEvent (52) */
549
687
  interface PalletElectionsPhragmenEvent extends Enum {
550
688
  readonly isNewTerm: boolean;
551
689
  readonly asNewTerm: {
@@ -574,7 +712,7 @@ declare module '@polkadot/types/lookup' {
574
712
  readonly type: 'NewTerm' | 'EmptyTerm' | 'ElectionError' | 'MemberKicked' | 'Renounced' | 'CandidateSlashed' | 'SeatHolderSlashed';
575
713
  }
576
714
 
577
- /** @name PalletElectionProviderMultiPhaseEvent (54) */
715
+ /** @name PalletElectionProviderMultiPhaseEvent (55) */
578
716
  interface PalletElectionProviderMultiPhaseEvent extends Enum {
579
717
  readonly isSolutionStored: boolean;
580
718
  readonly asSolutionStored: {
@@ -607,7 +745,7 @@ declare module '@polkadot/types/lookup' {
607
745
  readonly type: 'SolutionStored' | 'ElectionFinalized' | 'ElectionFailed' | 'Rewarded' | 'Slashed' | 'PhaseTransitioned';
608
746
  }
609
747
 
610
- /** @name PalletElectionProviderMultiPhaseElectionCompute (55) */
748
+ /** @name PalletElectionProviderMultiPhaseElectionCompute (56) */
611
749
  interface PalletElectionProviderMultiPhaseElectionCompute extends Enum {
612
750
  readonly isOnChain: boolean;
613
751
  readonly isSigned: boolean;
@@ -617,14 +755,14 @@ declare module '@polkadot/types/lookup' {
617
755
  readonly type: 'OnChain' | 'Signed' | 'Unsigned' | 'Fallback' | 'Emergency';
618
756
  }
619
757
 
620
- /** @name SpNposElectionsElectionScore (56) */
758
+ /** @name SpNposElectionsElectionScore (57) */
621
759
  interface SpNposElectionsElectionScore extends Struct {
622
760
  readonly minimalStake: u128;
623
761
  readonly sumStake: u128;
624
762
  readonly sumStakeSquared: u128;
625
763
  }
626
764
 
627
- /** @name PalletElectionProviderMultiPhasePhase (57) */
765
+ /** @name PalletElectionProviderMultiPhasePhase (58) */
628
766
  interface PalletElectionProviderMultiPhasePhase extends Enum {
629
767
  readonly isOff: boolean;
630
768
  readonly isSigned: boolean;
@@ -634,7 +772,7 @@ declare module '@polkadot/types/lookup' {
634
772
  readonly type: 'Off' | 'Signed' | 'Unsigned' | 'Emergency';
635
773
  }
636
774
 
637
- /** @name PalletStakingPalletEvent (59) */
775
+ /** @name PalletStakingPalletEvent (60) */
638
776
  interface PalletStakingPalletEvent extends Enum {
639
777
  readonly isEraPaid: boolean;
640
778
  readonly asEraPaid: {
@@ -714,7 +852,7 @@ declare module '@polkadot/types/lookup' {
714
852
  readonly type: 'EraPaid' | 'Rewarded' | 'Slashed' | 'SlashReported' | 'OldSlashingReportDiscarded' | 'StakersElected' | 'Bonded' | 'Unbonded' | 'Withdrawn' | 'Kicked' | 'StakingElectionFailed' | 'Chilled' | 'PayoutStarted' | 'ValidatorPrefsSet' | 'SnapshotVotersSizeExceeded' | 'SnapshotTargetsSizeExceeded' | 'ForceEra';
715
853
  }
716
854
 
717
- /** @name PalletStakingRewardDestination (60) */
855
+ /** @name PalletStakingRewardDestination (61) */
718
856
  interface PalletStakingRewardDestination extends Enum {
719
857
  readonly isStaked: boolean;
720
858
  readonly isStash: boolean;
@@ -725,13 +863,13 @@ declare module '@polkadot/types/lookup' {
725
863
  readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
726
864
  }
727
865
 
728
- /** @name PalletStakingValidatorPrefs (62) */
866
+ /** @name PalletStakingValidatorPrefs (63) */
729
867
  interface PalletStakingValidatorPrefs extends Struct {
730
868
  readonly commission: Compact<Perbill>;
731
869
  readonly blocked: bool;
732
870
  }
733
871
 
734
- /** @name PalletStakingForcing (64) */
872
+ /** @name PalletStakingForcing (65) */
735
873
  interface PalletStakingForcing extends Enum {
736
874
  readonly isNotForcing: boolean;
737
875
  readonly isForceNew: boolean;
@@ -740,7 +878,7 @@ declare module '@polkadot/types/lookup' {
740
878
  readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
741
879
  }
742
880
 
743
- /** @name PalletSessionEvent (65) */
881
+ /** @name PalletSessionEvent (66) */
744
882
  interface PalletSessionEvent extends Enum {
745
883
  readonly isNewSession: boolean;
746
884
  readonly asNewSession: {
@@ -749,7 +887,7 @@ declare module '@polkadot/types/lookup' {
749
887
  readonly type: 'NewSession';
750
888
  }
751
889
 
752
- /** @name PalletTreasuryEvent (66) */
890
+ /** @name PalletTreasuryEvent (67) */
753
891
  interface PalletTreasuryEvent extends Enum {
754
892
  readonly isProposed: boolean;
755
893
  readonly asProposed: {
@@ -823,7 +961,7 @@ declare module '@polkadot/types/lookup' {
823
961
  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive' | 'AssetSpendApproved' | 'AssetSpendVoided' | 'Paid' | 'PaymentFailed' | 'SpendProcessed';
824
962
  }
825
963
 
826
- /** @name PalletBountiesEvent (67) */
964
+ /** @name PalletBountiesEvent (68) */
827
965
  interface PalletBountiesEvent extends Enum {
828
966
  readonly isBountyProposed: boolean;
829
967
  readonly asBountyProposed: {
@@ -878,7 +1016,7 @@ declare module '@polkadot/types/lookup' {
878
1016
  readonly type: 'BountyProposed' | 'BountyRejected' | 'BountyBecameActive' | 'BountyAwarded' | 'BountyClaimed' | 'BountyCanceled' | 'BountyExtended' | 'BountyApproved' | 'CuratorProposed' | 'CuratorUnassigned' | 'CuratorAccepted';
879
1017
  }
880
1018
 
881
- /** @name PalletChildBountiesEvent (68) */
1019
+ /** @name PalletChildBountiesEvent (69) */
882
1020
  interface PalletChildBountiesEvent extends Enum {
883
1021
  readonly isAdded: boolean;
884
1022
  readonly asAdded: {
@@ -906,7 +1044,7 @@ declare module '@polkadot/types/lookup' {
906
1044
  readonly type: 'Added' | 'Awarded' | 'Claimed' | 'Canceled';
907
1045
  }
908
1046
 
909
- /** @name PalletBagsListEvent (69) */
1047
+ /** @name PalletBagsListEvent (70) */
910
1048
  interface PalletBagsListEvent extends Enum {
911
1049
  readonly isRebagged: boolean;
912
1050
  readonly asRebagged: {
@@ -922,7 +1060,7 @@ declare module '@polkadot/types/lookup' {
922
1060
  readonly type: 'Rebagged' | 'ScoreUpdated';
923
1061
  }
924
1062
 
925
- /** @name PalletNominationPoolsEvent (70) */
1063
+ /** @name PalletNominationPoolsEvent (71) */
926
1064
  interface PalletNominationPoolsEvent extends Enum {
927
1065
  readonly isCreated: boolean;
928
1066
  readonly asCreated: {
@@ -1026,7 +1164,7 @@ declare module '@polkadot/types/lookup' {
1026
1164
  readonly type: 'Created' | 'Bonded' | 'PaidOut' | 'Unbonded' | 'Withdrawn' | 'Destroyed' | 'StateChanged' | 'MemberRemoved' | 'RolesUpdated' | 'PoolSlashed' | 'UnbondingPoolSlashed' | 'PoolCommissionUpdated' | 'PoolMaxCommissionUpdated' | 'PoolCommissionChangeRateUpdated' | 'PoolCommissionClaimPermissionUpdated' | 'PoolCommissionClaimed' | 'MinBalanceDeficitAdjusted' | 'MinBalanceExcessAdjusted';
1027
1165
  }
1028
1166
 
1029
- /** @name PalletNominationPoolsPoolState (71) */
1167
+ /** @name PalletNominationPoolsPoolState (72) */
1030
1168
  interface PalletNominationPoolsPoolState extends Enum {
1031
1169
  readonly isOpen: boolean;
1032
1170
  readonly isBlocked: boolean;
@@ -1034,13 +1172,13 @@ declare module '@polkadot/types/lookup' {
1034
1172
  readonly type: 'Open' | 'Blocked' | 'Destroying';
1035
1173
  }
1036
1174
 
1037
- /** @name PalletNominationPoolsCommissionChangeRate (74) */
1175
+ /** @name PalletNominationPoolsCommissionChangeRate (75) */
1038
1176
  interface PalletNominationPoolsCommissionChangeRate extends Struct {
1039
1177
  readonly maxIncrease: Perbill;
1040
1178
  readonly minDelay: u64;
1041
1179
  }
1042
1180
 
1043
- /** @name PalletNominationPoolsCommissionClaimPermission (76) */
1181
+ /** @name PalletNominationPoolsCommissionClaimPermission (77) */
1044
1182
  interface PalletNominationPoolsCommissionClaimPermission extends Enum {
1045
1183
  readonly isPermissionless: boolean;
1046
1184
  readonly isAccount: boolean;
@@ -1048,7 +1186,7 @@ declare module '@polkadot/types/lookup' {
1048
1186
  readonly type: 'Permissionless' | 'Account';
1049
1187
  }
1050
1188
 
1051
- /** @name PalletSchedulerEvent (77) */
1189
+ /** @name PalletSchedulerEvent (78) */
1052
1190
  interface PalletSchedulerEvent extends Enum {
1053
1191
  readonly isScheduled: boolean;
1054
1192
  readonly asScheduled: {
@@ -1084,7 +1222,7 @@ declare module '@polkadot/types/lookup' {
1084
1222
  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
1085
1223
  }
1086
1224
 
1087
- /** @name PalletPreimageEvent (80) */
1225
+ /** @name PalletPreimageEvent (81) */
1088
1226
  interface PalletPreimageEvent extends Enum {
1089
1227
  readonly isNoted: boolean;
1090
1228
  readonly asNoted: {
@@ -1101,7 +1239,7 @@ declare module '@polkadot/types/lookup' {
1101
1239
  readonly type: 'Noted' | 'Requested' | 'Cleared';
1102
1240
  }
1103
1241
 
1104
- /** @name PalletOffencesEvent (81) */
1242
+ /** @name PalletOffencesEvent (82) */
1105
1243
  interface PalletOffencesEvent extends Enum {
1106
1244
  readonly isOffence: boolean;
1107
1245
  readonly asOffence: {
@@ -1111,7 +1249,7 @@ declare module '@polkadot/types/lookup' {
1111
1249
  readonly type: 'Offence';
1112
1250
  }
1113
1251
 
1114
- /** @name PalletTxPauseEvent (83) */
1252
+ /** @name PalletTxPauseEvent (84) */
1115
1253
  interface PalletTxPauseEvent extends Enum {
1116
1254
  readonly isCallPaused: boolean;
1117
1255
  readonly asCallPaused: {
@@ -1124,7 +1262,7 @@ declare module '@polkadot/types/lookup' {
1124
1262
  readonly type: 'CallPaused' | 'CallUnpaused';
1125
1263
  }
1126
1264
 
1127
- /** @name PalletImOnlineEvent (86) */
1265
+ /** @name PalletImOnlineEvent (87) */
1128
1266
  interface PalletImOnlineEvent extends Enum {
1129
1267
  readonly isHeartbeatReceived: boolean;
1130
1268
  readonly asHeartbeatReceived: {
@@ -1138,26 +1276,26 @@ declare module '@polkadot/types/lookup' {
1138
1276
  readonly type: 'HeartbeatReceived' | 'AllGood' | 'SomeOffline';
1139
1277
  }
1140
1278
 
1141
- /** @name PalletImOnlineSr25519AppSr25519Public (87) */
1279
+ /** @name PalletImOnlineSr25519AppSr25519Public (88) */
1142
1280
  interface PalletImOnlineSr25519AppSr25519Public extends SpCoreSr25519Public {}
1143
1281
 
1144
- /** @name SpCoreSr25519Public (88) */
1282
+ /** @name SpCoreSr25519Public (89) */
1145
1283
  interface SpCoreSr25519Public extends U8aFixed {}
1146
1284
 
1147
- /** @name SpStakingExposure (91) */
1285
+ /** @name SpStakingExposure (92) */
1148
1286
  interface SpStakingExposure extends Struct {
1149
1287
  readonly total: Compact<u128>;
1150
1288
  readonly own: Compact<u128>;
1151
1289
  readonly others: Vec<SpStakingIndividualExposure>;
1152
1290
  }
1153
1291
 
1154
- /** @name SpStakingIndividualExposure (94) */
1292
+ /** @name SpStakingIndividualExposure (95) */
1155
1293
  interface SpStakingIndividualExposure extends Struct {
1156
1294
  readonly who: AccountId32;
1157
1295
  readonly value: Compact<u128>;
1158
1296
  }
1159
1297
 
1160
- /** @name PalletIdentityEvent (95) */
1298
+ /** @name PalletIdentityEvent (96) */
1161
1299
  interface PalletIdentityEvent extends Enum {
1162
1300
  readonly isIdentitySet: boolean;
1163
1301
  readonly asIdentitySet: {
@@ -1246,7 +1384,7 @@ declare module '@polkadot/types/lookup' {
1246
1384
  readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'AuthorityAdded' | 'AuthorityRemoved' | 'UsernameSet' | 'UsernameQueued' | 'PreapprovalExpired' | 'PrimaryUsernameSet' | 'DanglingUsernameRemoved';
1247
1385
  }
1248
1386
 
1249
- /** @name PalletUtilityEvent (97) */
1387
+ /** @name PalletUtilityEvent (98) */
1250
1388
  interface PalletUtilityEvent extends Enum {
1251
1389
  readonly isBatchInterrupted: boolean;
1252
1390
  readonly asBatchInterrupted: {
@@ -1267,7 +1405,7 @@ declare module '@polkadot/types/lookup' {
1267
1405
  readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs';
1268
1406
  }
1269
1407
 
1270
- /** @name PalletMultisigEvent (98) */
1408
+ /** @name PalletMultisigEvent (99) */
1271
1409
  interface PalletMultisigEvent extends Enum {
1272
1410
  readonly isNewMultisig: boolean;
1273
1411
  readonly asNewMultisig: {
@@ -1300,13 +1438,13 @@ declare module '@polkadot/types/lookup' {
1300
1438
  readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled';
1301
1439
  }
1302
1440
 
1303
- /** @name PalletMultisigTimepoint (99) */
1441
+ /** @name PalletMultisigTimepoint (100) */
1304
1442
  interface PalletMultisigTimepoint extends Struct {
1305
1443
  readonly height: u64;
1306
1444
  readonly index: u32;
1307
1445
  }
1308
1446
 
1309
- /** @name PalletEthereumEvent (100) */
1447
+ /** @name PalletEthereumEvent (101) */
1310
1448
  interface PalletEthereumEvent extends Enum {
1311
1449
  readonly isExecuted: boolean;
1312
1450
  readonly asExecuted: {
@@ -1319,7 +1457,7 @@ declare module '@polkadot/types/lookup' {
1319
1457
  readonly type: 'Executed';
1320
1458
  }
1321
1459
 
1322
- /** @name EvmCoreErrorExitReason (103) */
1460
+ /** @name EvmCoreErrorExitReason (104) */
1323
1461
  interface EvmCoreErrorExitReason extends Enum {
1324
1462
  readonly isSucceed: boolean;
1325
1463
  readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1332,7 +1470,7 @@ declare module '@polkadot/types/lookup' {
1332
1470
  readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1333
1471
  }
1334
1472
 
1335
- /** @name EvmCoreErrorExitSucceed (104) */
1473
+ /** @name EvmCoreErrorExitSucceed (105) */
1336
1474
  interface EvmCoreErrorExitSucceed extends Enum {
1337
1475
  readonly isStopped: boolean;
1338
1476
  readonly isReturned: boolean;
@@ -1340,7 +1478,7 @@ declare module '@polkadot/types/lookup' {
1340
1478
  readonly type: 'Stopped' | 'Returned' | 'Suicided';
1341
1479
  }
1342
1480
 
1343
- /** @name EvmCoreErrorExitError (105) */
1481
+ /** @name EvmCoreErrorExitError (106) */
1344
1482
  interface EvmCoreErrorExitError extends Enum {
1345
1483
  readonly isStackUnderflow: boolean;
1346
1484
  readonly isStackOverflow: boolean;
@@ -1363,13 +1501,13 @@ declare module '@polkadot/types/lookup' {
1363
1501
  readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode';
1364
1502
  }
1365
1503
 
1366
- /** @name EvmCoreErrorExitRevert (109) */
1504
+ /** @name EvmCoreErrorExitRevert (110) */
1367
1505
  interface EvmCoreErrorExitRevert extends Enum {
1368
1506
  readonly isReverted: boolean;
1369
1507
  readonly type: 'Reverted';
1370
1508
  }
1371
1509
 
1372
- /** @name EvmCoreErrorExitFatal (110) */
1510
+ /** @name EvmCoreErrorExitFatal (111) */
1373
1511
  interface EvmCoreErrorExitFatal extends Enum {
1374
1512
  readonly isNotSupported: boolean;
1375
1513
  readonly isUnhandledInterrupt: boolean;
@@ -1380,7 +1518,7 @@ declare module '@polkadot/types/lookup' {
1380
1518
  readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1381
1519
  }
1382
1520
 
1383
- /** @name PalletEvmEvent (111) */
1521
+ /** @name PalletEvmEvent (112) */
1384
1522
  interface PalletEvmEvent extends Enum {
1385
1523
  readonly isLog: boolean;
1386
1524
  readonly asLog: {
@@ -1405,14 +1543,14 @@ declare module '@polkadot/types/lookup' {
1405
1543
  readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
1406
1544
  }
1407
1545
 
1408
- /** @name EthereumLog (112) */
1546
+ /** @name EthereumLog (113) */
1409
1547
  interface EthereumLog extends Struct {
1410
1548
  readonly address: H160;
1411
1549
  readonly topics: Vec<H256>;
1412
1550
  readonly data: Bytes;
1413
1551
  }
1414
1552
 
1415
- /** @name PalletBaseFeeEvent (114) */
1553
+ /** @name PalletBaseFeeEvent (115) */
1416
1554
  interface PalletBaseFeeEvent extends Enum {
1417
1555
  readonly isNewBaseFeePerGas: boolean;
1418
1556
  readonly asNewBaseFeePerGas: {
@@ -1426,7 +1564,7 @@ declare module '@polkadot/types/lookup' {
1426
1564
  readonly type: 'NewBaseFeePerGas' | 'BaseFeeOverflow' | 'NewElasticity';
1427
1565
  }
1428
1566
 
1429
- /** @name PalletAirdropClaimsEvent (118) */
1567
+ /** @name PalletAirdropClaimsEvent (119) */
1430
1568
  interface PalletAirdropClaimsEvent extends Enum {
1431
1569
  readonly isClaimed: boolean;
1432
1570
  readonly asClaimed: {
@@ -1437,7 +1575,7 @@ declare module '@polkadot/types/lookup' {
1437
1575
  readonly type: 'Claimed';
1438
1576
  }
1439
1577
 
1440
- /** @name PalletAirdropClaimsUtilsMultiAddress (119) */
1578
+ /** @name PalletAirdropClaimsUtilsMultiAddress (120) */
1441
1579
  interface PalletAirdropClaimsUtilsMultiAddress extends Enum {
1442
1580
  readonly isEvm: boolean;
1443
1581
  readonly asEvm: PalletAirdropClaimsUtilsEthereumAddress;
@@ -1446,10 +1584,10 @@ declare module '@polkadot/types/lookup' {
1446
1584
  readonly type: 'Evm' | 'Native';
1447
1585
  }
1448
1586
 
1449
- /** @name PalletAirdropClaimsUtilsEthereumAddress (120) */
1587
+ /** @name PalletAirdropClaimsUtilsEthereumAddress (121) */
1450
1588
  interface PalletAirdropClaimsUtilsEthereumAddress extends U8aFixed {}
1451
1589
 
1452
- /** @name PalletRolesEvent (121) */
1590
+ /** @name PalletRolesEvent (122) */
1453
1591
  interface PalletRolesEvent extends Enum {
1454
1592
  readonly isRoleAssigned: boolean;
1455
1593
  readonly asRoleAssigned: {
@@ -1507,7 +1645,7 @@ declare module '@polkadot/types/lookup' {
1507
1645
  readonly type: 'RoleAssigned' | 'RoleRemoved' | 'Slashed' | 'ProfileCreated' | 'ProfileUpdated' | 'ProfileDeleted' | 'PendingJobs' | 'RolesRewardSet' | 'PayoutStarted' | 'Rewarded' | 'MinRestakingBondUpdated';
1508
1646
  }
1509
1647
 
1510
- /** @name TanglePrimitivesRolesRoleType (122) */
1648
+ /** @name TanglePrimitivesRolesRoleType (123) */
1511
1649
  interface TanglePrimitivesRolesRoleType extends Enum {
1512
1650
  readonly isTss: boolean;
1513
1651
  readonly asTss: TanglePrimitivesRolesTssThresholdSignatureRoleType;
@@ -1517,7 +1655,7 @@ declare module '@polkadot/types/lookup' {
1517
1655
  readonly type: 'Tss' | 'ZkSaaS' | 'LightClientRelaying';
1518
1656
  }
1519
1657
 
1520
- /** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (123) */
1658
+ /** @name TanglePrimitivesRolesTssThresholdSignatureRoleType (124) */
1521
1659
  interface TanglePrimitivesRolesTssThresholdSignatureRoleType extends Enum {
1522
1660
  readonly isDfnsCGGMP21Secp256k1: boolean;
1523
1661
  readonly isDfnsCGGMP21Secp256r1: boolean;
@@ -1530,17 +1668,18 @@ declare module '@polkadot/types/lookup' {
1530
1668
  readonly isZcashFrostEd25519: boolean;
1531
1669
  readonly isZcashFrostEd448: boolean;
1532
1670
  readonly isGennaroDKGBls381: boolean;
1533
- readonly type: 'DfnsCGGMP21Secp256k1' | 'DfnsCGGMP21Secp256r1' | 'DfnsCGGMP21Stark' | 'SilentShardDKLS23Secp256k1' | 'ZcashFrostP256' | 'ZcashFrostP384' | 'ZcashFrostSecp256k1' | 'ZcashFrostRistretto255' | 'ZcashFrostEd25519' | 'ZcashFrostEd448' | 'GennaroDKGBls381';
1671
+ readonly isWstsV2: boolean;
1672
+ readonly type: 'DfnsCGGMP21Secp256k1' | 'DfnsCGGMP21Secp256r1' | 'DfnsCGGMP21Stark' | 'SilentShardDKLS23Secp256k1' | 'ZcashFrostP256' | 'ZcashFrostP384' | 'ZcashFrostSecp256k1' | 'ZcashFrostRistretto255' | 'ZcashFrostEd25519' | 'ZcashFrostEd448' | 'GennaroDKGBls381' | 'WstsV2';
1534
1673
  }
1535
1674
 
1536
- /** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (124) */
1675
+ /** @name TanglePrimitivesRolesZksaasZeroKnowledgeRoleType (125) */
1537
1676
  interface TanglePrimitivesRolesZksaasZeroKnowledgeRoleType extends Enum {
1538
1677
  readonly isZkSaaSGroth16: boolean;
1539
1678
  readonly isZkSaaSMarlin: boolean;
1540
1679
  readonly type: 'ZkSaaSGroth16' | 'ZkSaaSMarlin';
1541
1680
  }
1542
1681
 
1543
- /** @name PalletJobsModuleEvent (128) */
1682
+ /** @name PalletJobsModuleEvent (129) */
1544
1683
  interface PalletJobsModuleEvent extends Enum {
1545
1684
  readonly isJobSubmitted: boolean;
1546
1685
  readonly asJobSubmitted: {
@@ -1584,7 +1723,7 @@ declare module '@polkadot/types/lookup' {
1584
1723
  readonly type: 'JobSubmitted' | 'JobResultSubmitted' | 'ValidatorRewarded' | 'JobRefunded' | 'JobParticipantsUpdated' | 'JobReSubmitted' | 'JobResultExtended';
1585
1724
  }
1586
1725
 
1587
- /** @name TanglePrimitivesJobsJobSubmission (129) */
1726
+ /** @name TanglePrimitivesJobsJobSubmission (130) */
1588
1727
  interface TanglePrimitivesJobsJobSubmission extends Struct {
1589
1728
  readonly expiry: u64;
1590
1729
  readonly ttl: u64;
@@ -1592,16 +1731,16 @@ declare module '@polkadot/types/lookup' {
1592
1731
  readonly fallback: TanglePrimitivesJobsFallbackOptions;
1593
1732
  }
1594
1733
 
1595
- /** @name TangleTestnetRuntimeMaxParticipants (130) */
1734
+ /** @name TangleTestnetRuntimeMaxParticipants (131) */
1596
1735
  type TangleTestnetRuntimeMaxParticipants = Null;
1597
1736
 
1598
- /** @name TangleTestnetRuntimeMaxSubmissionLen (131) */
1737
+ /** @name TangleTestnetRuntimeMaxSubmissionLen (132) */
1599
1738
  type TangleTestnetRuntimeMaxSubmissionLen = Null;
1600
1739
 
1601
- /** @name TangleTestnetRuntimeMaxAdditionalParamsLen (132) */
1740
+ /** @name TangleTestnetRuntimeMaxAdditionalParamsLen (133) */
1602
1741
  type TangleTestnetRuntimeMaxAdditionalParamsLen = Null;
1603
1742
 
1604
- /** @name TanglePrimitivesJobsJobType (133) */
1743
+ /** @name TanglePrimitivesJobsJobType (134) */
1605
1744
  interface TanglePrimitivesJobsJobType extends Enum {
1606
1745
  readonly isDkgtssPhaseOne: boolean;
1607
1746
  readonly asDkgtssPhaseOne: TanglePrimitivesJobsTssDkgtssPhaseOneJobType;
@@ -1618,15 +1757,16 @@ declare module '@polkadot/types/lookup' {
1618
1757
  readonly type: 'DkgtssPhaseOne' | 'DkgtssPhaseTwo' | 'DkgtssPhaseThree' | 'DkgtssPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
1619
1758
  }
1620
1759
 
1621
- /** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (134) */
1760
+ /** @name TanglePrimitivesJobsTssDkgtssPhaseOneJobType (135) */
1622
1761
  interface TanglePrimitivesJobsTssDkgtssPhaseOneJobType extends Struct {
1623
1762
  readonly participants: Vec<AccountId32>;
1624
1763
  readonly threshold: u8;
1625
1764
  readonly permittedCaller: Option<AccountId32>;
1626
1765
  readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
1766
+ readonly hdWallet: bool;
1627
1767
  }
1628
1768
 
1629
- /** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (137) */
1769
+ /** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (138) */
1630
1770
  interface TanglePrimitivesJobsTssDkgtssPhaseTwoJobType extends Struct {
1631
1771
  readonly phaseOneId: u64;
1632
1772
  readonly submission: Bytes;
@@ -1634,20 +1774,20 @@ declare module '@polkadot/types/lookup' {
1634
1774
  readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
1635
1775
  }
1636
1776
 
1637
- /** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (141) */
1777
+ /** @name TanglePrimitivesJobsTssDkgtssPhaseThreeJobType (142) */
1638
1778
  interface TanglePrimitivesJobsTssDkgtssPhaseThreeJobType extends Struct {
1639
1779
  readonly phaseOneId: u64;
1640
1780
  readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
1641
1781
  }
1642
1782
 
1643
- /** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (142) */
1783
+ /** @name TanglePrimitivesJobsTssDkgtssPhaseFourJobType (143) */
1644
1784
  interface TanglePrimitivesJobsTssDkgtssPhaseFourJobType extends Struct {
1645
1785
  readonly phaseOneId: u64;
1646
1786
  readonly newPhaseOneId: u64;
1647
1787
  readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
1648
1788
  }
1649
1789
 
1650
- /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (143) */
1790
+ /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType (144) */
1651
1791
  interface TanglePrimitivesJobsZksaasZkSaaSPhaseOneJobType extends Struct {
1652
1792
  readonly participants: Vec<AccountId32>;
1653
1793
  readonly permittedCaller: Option<AccountId32>;
@@ -1655,14 +1795,14 @@ declare module '@polkadot/types/lookup' {
1655
1795
  readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
1656
1796
  }
1657
1797
 
1658
- /** @name TanglePrimitivesJobsZksaasZkSaaSSystem (144) */
1798
+ /** @name TanglePrimitivesJobsZksaasZkSaaSSystem (145) */
1659
1799
  interface TanglePrimitivesJobsZksaasZkSaaSSystem extends Enum {
1660
1800
  readonly isGroth16: boolean;
1661
1801
  readonly asGroth16: TanglePrimitivesJobsZksaasGroth16System;
1662
1802
  readonly type: 'Groth16';
1663
1803
  }
1664
1804
 
1665
- /** @name TanglePrimitivesJobsZksaasGroth16System (145) */
1805
+ /** @name TanglePrimitivesJobsZksaasGroth16System (146) */
1666
1806
  interface TanglePrimitivesJobsZksaasGroth16System extends Struct {
1667
1807
  readonly circuit: TanglePrimitivesJobsZksaasHyperData;
1668
1808
  readonly numInputs: u64;
@@ -1672,7 +1812,7 @@ declare module '@polkadot/types/lookup' {
1672
1812
  readonly wasm: TanglePrimitivesJobsZksaasHyperData;
1673
1813
  }
1674
1814
 
1675
- /** @name TanglePrimitivesJobsZksaasHyperData (146) */
1815
+ /** @name TanglePrimitivesJobsZksaasHyperData (147) */
1676
1816
  interface TanglePrimitivesJobsZksaasHyperData extends Enum {
1677
1817
  readonly isRaw: boolean;
1678
1818
  readonly asRaw: Bytes;
@@ -1683,21 +1823,21 @@ declare module '@polkadot/types/lookup' {
1683
1823
  readonly type: 'Raw' | 'Ipfs' | 'Http';
1684
1824
  }
1685
1825
 
1686
- /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (147) */
1826
+ /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType (148) */
1687
1827
  interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoJobType extends Struct {
1688
1828
  readonly phaseOneId: u64;
1689
1829
  readonly request: TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest;
1690
1830
  readonly roleType: TanglePrimitivesRolesZksaasZeroKnowledgeRoleType;
1691
1831
  }
1692
1832
 
1693
- /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (148) */
1833
+ /** @name TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest (149) */
1694
1834
  interface TanglePrimitivesJobsZksaasZkSaaSPhaseTwoRequest extends Enum {
1695
1835
  readonly isGroth16: boolean;
1696
1836
  readonly asGroth16: TanglePrimitivesJobsZksaasGroth16ProveRequest;
1697
1837
  readonly type: 'Groth16';
1698
1838
  }
1699
1839
 
1700
- /** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (149) */
1840
+ /** @name TanglePrimitivesJobsZksaasGroth16ProveRequest (150) */
1701
1841
  interface TanglePrimitivesJobsZksaasGroth16ProveRequest extends Struct {
1702
1842
  readonly publicInput: Bytes;
1703
1843
  readonly aShares: Vec<TanglePrimitivesJobsZksaasHyperData>;
@@ -1705,14 +1845,14 @@ declare module '@polkadot/types/lookup' {
1705
1845
  readonly qapShares: Vec<TanglePrimitivesJobsZksaasQapShare>;
1706
1846
  }
1707
1847
 
1708
- /** @name TanglePrimitivesJobsZksaasQapShare (153) */
1848
+ /** @name TanglePrimitivesJobsZksaasQapShare (154) */
1709
1849
  interface TanglePrimitivesJobsZksaasQapShare extends Struct {
1710
1850
  readonly a: TanglePrimitivesJobsZksaasHyperData;
1711
1851
  readonly b: TanglePrimitivesJobsZksaasHyperData;
1712
1852
  readonly c: TanglePrimitivesJobsZksaasHyperData;
1713
1853
  }
1714
1854
 
1715
- /** @name TanglePrimitivesJobsFallbackOptions (155) */
1855
+ /** @name TanglePrimitivesJobsFallbackOptions (156) */
1716
1856
  interface TanglePrimitivesJobsFallbackOptions extends Enum {
1717
1857
  readonly isDestroy: boolean;
1718
1858
  readonly isRegenerateWithThreshold: boolean;
@@ -1720,7 +1860,7 @@ declare module '@polkadot/types/lookup' {
1720
1860
  readonly type: 'Destroy' | 'RegenerateWithThreshold';
1721
1861
  }
1722
1862
 
1723
- /** @name TanglePrimitivesJobsJobInfo (156) */
1863
+ /** @name TanglePrimitivesJobsJobInfo (157) */
1724
1864
  interface TanglePrimitivesJobsJobInfo extends Struct {
1725
1865
  readonly owner: AccountId32;
1726
1866
  readonly expiry: u64;
@@ -1730,7 +1870,7 @@ declare module '@polkadot/types/lookup' {
1730
1870
  readonly fallback: TanglePrimitivesJobsFallbackOptions;
1731
1871
  }
1732
1872
 
1733
- /** @name PalletDkgEvent (157) */
1873
+ /** @name PalletDkgEvent (158) */
1734
1874
  interface PalletDkgEvent extends Enum {
1735
1875
  readonly isFeeUpdated: boolean;
1736
1876
  readonly asFeeUpdated: PalletDkgFeeInfo;
@@ -1743,7 +1883,7 @@ declare module '@polkadot/types/lookup' {
1743
1883
  readonly type: 'FeeUpdated' | 'KeyRotated';
1744
1884
  }
1745
1885
 
1746
- /** @name PalletDkgFeeInfo (158) */
1886
+ /** @name PalletDkgFeeInfo (159) */
1747
1887
  interface PalletDkgFeeInfo extends Struct {
1748
1888
  readonly baseFee: u128;
1749
1889
  readonly dkgValidatorFee: u128;
@@ -1753,14 +1893,14 @@ declare module '@polkadot/types/lookup' {
1753
1893
  readonly storageFeePerBlock: u128;
1754
1894
  }
1755
1895
 
1756
- /** @name PalletZksaasEvent (159) */
1896
+ /** @name PalletZksaasEvent (160) */
1757
1897
  interface PalletZksaasEvent extends Enum {
1758
1898
  readonly isFeeUpdated: boolean;
1759
1899
  readonly asFeeUpdated: PalletZksaasFeeInfo;
1760
1900
  readonly type: 'FeeUpdated';
1761
1901
  }
1762
1902
 
1763
- /** @name PalletZksaasFeeInfo (160) */
1903
+ /** @name PalletZksaasFeeInfo (161) */
1764
1904
  interface PalletZksaasFeeInfo extends Struct {
1765
1905
  readonly baseFee: u128;
1766
1906
  readonly circuitFee: u128;
@@ -1768,7 +1908,422 @@ declare module '@polkadot/types/lookup' {
1768
1908
  readonly storageFeePerByte: u128;
1769
1909
  }
1770
1910
 
1771
- /** @name FrameSystemPhase (161) */
1911
+ /** @name PalletProxyEvent (162) */
1912
+ interface PalletProxyEvent extends Enum {
1913
+ readonly isProxyExecuted: boolean;
1914
+ readonly asProxyExecuted: {
1915
+ readonly result: Result<Null, SpRuntimeDispatchError>;
1916
+ } & Struct;
1917
+ readonly isPureCreated: boolean;
1918
+ readonly asPureCreated: {
1919
+ readonly pure: AccountId32;
1920
+ readonly who: AccountId32;
1921
+ readonly proxyType: TangleTestnetRuntimeProxyType;
1922
+ readonly disambiguationIndex: u16;
1923
+ } & Struct;
1924
+ readonly isAnnounced: boolean;
1925
+ readonly asAnnounced: {
1926
+ readonly real: AccountId32;
1927
+ readonly proxy: AccountId32;
1928
+ readonly callHash: H256;
1929
+ } & Struct;
1930
+ readonly isProxyAdded: boolean;
1931
+ readonly asProxyAdded: {
1932
+ readonly delegator: AccountId32;
1933
+ readonly delegatee: AccountId32;
1934
+ readonly proxyType: TangleTestnetRuntimeProxyType;
1935
+ readonly delay: u64;
1936
+ } & Struct;
1937
+ readonly isProxyRemoved: boolean;
1938
+ readonly asProxyRemoved: {
1939
+ readonly delegator: AccountId32;
1940
+ readonly delegatee: AccountId32;
1941
+ readonly proxyType: TangleTestnetRuntimeProxyType;
1942
+ readonly delay: u64;
1943
+ } & Struct;
1944
+ readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
1945
+ }
1946
+
1947
+ /** @name TangleTestnetRuntimeProxyType (163) */
1948
+ interface TangleTestnetRuntimeProxyType extends Enum {
1949
+ readonly isAny: boolean;
1950
+ readonly isNonTransfer: boolean;
1951
+ readonly isGovernance: boolean;
1952
+ readonly isStaking: boolean;
1953
+ readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
1954
+ }
1955
+
1956
+ /** @name PalletMultiAssetDelegationEvent (165) */
1957
+ interface PalletMultiAssetDelegationEvent extends Enum {
1958
+ readonly isOperatorJoined: boolean;
1959
+ readonly asOperatorJoined: {
1960
+ readonly who: AccountId32;
1961
+ } & Struct;
1962
+ readonly isOperatorLeavingScheduled: boolean;
1963
+ readonly asOperatorLeavingScheduled: {
1964
+ readonly who: AccountId32;
1965
+ } & Struct;
1966
+ readonly isOperatorLeaveCancelled: boolean;
1967
+ readonly asOperatorLeaveCancelled: {
1968
+ readonly who: AccountId32;
1969
+ } & Struct;
1970
+ readonly isOperatorLeaveExecuted: boolean;
1971
+ readonly asOperatorLeaveExecuted: {
1972
+ readonly who: AccountId32;
1973
+ } & Struct;
1974
+ readonly isOperatorBondMore: boolean;
1975
+ readonly asOperatorBondMore: {
1976
+ readonly who: AccountId32;
1977
+ readonly additionalBond: u128;
1978
+ } & Struct;
1979
+ readonly isOperatorBondLessScheduled: boolean;
1980
+ readonly asOperatorBondLessScheduled: {
1981
+ readonly who: AccountId32;
1982
+ readonly bondLessAmount: u128;
1983
+ } & Struct;
1984
+ readonly isOperatorBondLessExecuted: boolean;
1985
+ readonly asOperatorBondLessExecuted: {
1986
+ readonly who: AccountId32;
1987
+ } & Struct;
1988
+ readonly isOperatorBondLessCancelled: boolean;
1989
+ readonly asOperatorBondLessCancelled: {
1990
+ readonly who: AccountId32;
1991
+ } & Struct;
1992
+ readonly isOperatorWentOffline: boolean;
1993
+ readonly asOperatorWentOffline: {
1994
+ readonly who: AccountId32;
1995
+ } & Struct;
1996
+ readonly isOperatorWentOnline: boolean;
1997
+ readonly asOperatorWentOnline: {
1998
+ readonly who: AccountId32;
1999
+ } & Struct;
2000
+ readonly isDeposited: boolean;
2001
+ readonly asDeposited: {
2002
+ readonly who: AccountId32;
2003
+ readonly amount: u128;
2004
+ readonly assetId: Option<u128>;
2005
+ } & Struct;
2006
+ readonly isScheduledUnstake: boolean;
2007
+ readonly asScheduledUnstake: {
2008
+ readonly who: AccountId32;
2009
+ readonly amount: u128;
2010
+ readonly assetId: Option<u128>;
2011
+ } & Struct;
2012
+ readonly isExecutedUnstake: boolean;
2013
+ readonly asExecutedUnstake: {
2014
+ readonly who: AccountId32;
2015
+ } & Struct;
2016
+ readonly isCancelledUnstake: boolean;
2017
+ readonly asCancelledUnstake: {
2018
+ readonly who: AccountId32;
2019
+ } & Struct;
2020
+ readonly isDelegated: boolean;
2021
+ readonly asDelegated: {
2022
+ readonly who: AccountId32;
2023
+ readonly operator: AccountId32;
2024
+ readonly amount: u128;
2025
+ readonly assetId: u128;
2026
+ } & Struct;
2027
+ readonly isScheduledDelegatorBondLess: boolean;
2028
+ readonly asScheduledDelegatorBondLess: {
2029
+ readonly who: AccountId32;
2030
+ readonly operator: AccountId32;
2031
+ readonly amount: u128;
2032
+ readonly assetId: u128;
2033
+ } & Struct;
2034
+ readonly isExecutedDelegatorBondLess: boolean;
2035
+ readonly asExecutedDelegatorBondLess: {
2036
+ readonly who: AccountId32;
2037
+ } & Struct;
2038
+ readonly isCancelledDelegatorBondLess: boolean;
2039
+ readonly asCancelledDelegatorBondLess: {
2040
+ readonly who: AccountId32;
2041
+ } & Struct;
2042
+ readonly isWhitelistedAssetsSet: boolean;
2043
+ readonly asWhitelistedAssetsSet: {
2044
+ readonly assets: Vec<u128>;
2045
+ } & Struct;
2046
+ readonly isIncentiveAPYAndCapSet: boolean;
2047
+ readonly asIncentiveAPYAndCapSet: {
2048
+ readonly assetId: u128;
2049
+ readonly apy: u128;
2050
+ readonly cap: u128;
2051
+ } & Struct;
2052
+ readonly isBlueprintWhitelisted: boolean;
2053
+ readonly asBlueprintWhitelisted: {
2054
+ readonly blueprintId: u32;
2055
+ } & Struct;
2056
+ readonly type: 'OperatorJoined' | 'OperatorLeavingScheduled' | 'OperatorLeaveCancelled' | 'OperatorLeaveExecuted' | 'OperatorBondMore' | 'OperatorBondLessScheduled' | 'OperatorBondLessExecuted' | 'OperatorBondLessCancelled' | 'OperatorWentOffline' | 'OperatorWentOnline' | 'Deposited' | 'ScheduledUnstake' | 'ExecutedUnstake' | 'CancelledUnstake' | 'Delegated' | 'ScheduledDelegatorBondLess' | 'ExecutedDelegatorBondLess' | 'CancelledDelegatorBondLess' | 'WhitelistedAssetsSet' | 'IncentiveAPYAndCapSet' | 'BlueprintWhitelisted';
2057
+ }
2058
+
2059
+ /** @name SygmaAccessSegregatorEvent (168) */
2060
+ interface SygmaAccessSegregatorEvent extends Enum {
2061
+ readonly isAccessGranted: boolean;
2062
+ readonly asAccessGranted: {
2063
+ readonly palletIndex: u8;
2064
+ readonly extrinsicName: Bytes;
2065
+ readonly who: AccountId32;
2066
+ } & Struct;
2067
+ readonly type: 'AccessGranted';
2068
+ }
2069
+
2070
+ /** @name SygmaBasicFeehandlerEvent (169) */
2071
+ interface SygmaBasicFeehandlerEvent extends Enum {
2072
+ readonly isFeeSet: boolean;
2073
+ readonly asFeeSet: {
2074
+ readonly domain: u8;
2075
+ readonly asset: StagingXcmV4AssetAssetId;
2076
+ readonly amount: u128;
2077
+ } & Struct;
2078
+ readonly type: 'FeeSet';
2079
+ }
2080
+
2081
+ /** @name StagingXcmV4AssetAssetId (170) */
2082
+ interface StagingXcmV4AssetAssetId extends StagingXcmV4Location {}
2083
+
2084
+ /** @name StagingXcmV4Location (171) */
2085
+ interface StagingXcmV4Location extends Struct {
2086
+ readonly parents: u8;
2087
+ readonly interior: StagingXcmV4Junctions;
2088
+ }
2089
+
2090
+ /** @name StagingXcmV4Junctions (172) */
2091
+ interface StagingXcmV4Junctions extends Enum {
2092
+ readonly isHere: boolean;
2093
+ readonly isX1: boolean;
2094
+ readonly asX1: StagingXcmV4Junction;
2095
+ readonly isX2: boolean;
2096
+ readonly asX2: StagingXcmV4Junction;
2097
+ readonly isX3: boolean;
2098
+ readonly asX3: StagingXcmV4Junction;
2099
+ readonly isX4: boolean;
2100
+ readonly asX4: StagingXcmV4Junction;
2101
+ readonly isX5: boolean;
2102
+ readonly asX5: StagingXcmV4Junction;
2103
+ readonly isX6: boolean;
2104
+ readonly asX6: StagingXcmV4Junction;
2105
+ readonly isX7: boolean;
2106
+ readonly asX7: StagingXcmV4Junction;
2107
+ readonly isX8: boolean;
2108
+ readonly asX8: StagingXcmV4Junction;
2109
+ readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
2110
+ }
2111
+
2112
+ /** @name StagingXcmV4Junction (174) */
2113
+ interface StagingXcmV4Junction extends Enum {
2114
+ readonly isParachain: boolean;
2115
+ readonly asParachain: Compact<u32>;
2116
+ readonly isAccountId32: boolean;
2117
+ readonly asAccountId32: {
2118
+ readonly network: Option<StagingXcmV4JunctionNetworkId>;
2119
+ readonly id: U8aFixed;
2120
+ } & Struct;
2121
+ readonly isAccountIndex64: boolean;
2122
+ readonly asAccountIndex64: {
2123
+ readonly network: Option<StagingXcmV4JunctionNetworkId>;
2124
+ readonly index: Compact<u64>;
2125
+ } & Struct;
2126
+ readonly isAccountKey20: boolean;
2127
+ readonly asAccountKey20: {
2128
+ readonly network: Option<StagingXcmV4JunctionNetworkId>;
2129
+ readonly key: U8aFixed;
2130
+ } & Struct;
2131
+ readonly isPalletInstance: boolean;
2132
+ readonly asPalletInstance: u8;
2133
+ readonly isGeneralIndex: boolean;
2134
+ readonly asGeneralIndex: Compact<u128>;
2135
+ readonly isGeneralKey: boolean;
2136
+ readonly asGeneralKey: {
2137
+ readonly length: u8;
2138
+ readonly data: U8aFixed;
2139
+ } & Struct;
2140
+ readonly isOnlyChild: boolean;
2141
+ readonly isPlurality: boolean;
2142
+ readonly asPlurality: {
2143
+ readonly id: XcmV3JunctionBodyId;
2144
+ readonly part: XcmV3JunctionBodyPart;
2145
+ } & Struct;
2146
+ readonly isGlobalConsensus: boolean;
2147
+ readonly asGlobalConsensus: StagingXcmV4JunctionNetworkId;
2148
+ readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
2149
+ }
2150
+
2151
+ /** @name StagingXcmV4JunctionNetworkId (177) */
2152
+ interface StagingXcmV4JunctionNetworkId extends Enum {
2153
+ readonly isByGenesis: boolean;
2154
+ readonly asByGenesis: U8aFixed;
2155
+ readonly isByFork: boolean;
2156
+ readonly asByFork: {
2157
+ readonly blockNumber: u64;
2158
+ readonly blockHash: U8aFixed;
2159
+ } & Struct;
2160
+ readonly isPolkadot: boolean;
2161
+ readonly isKusama: boolean;
2162
+ readonly isWestend: boolean;
2163
+ readonly isRococo: boolean;
2164
+ readonly isWococo: boolean;
2165
+ readonly isEthereum: boolean;
2166
+ readonly asEthereum: {
2167
+ readonly chainId: Compact<u64>;
2168
+ } & Struct;
2169
+ readonly isBitcoinCore: boolean;
2170
+ readonly isBitcoinCash: boolean;
2171
+ readonly isPolkadotBulletin: boolean;
2172
+ readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin';
2173
+ }
2174
+
2175
+ /** @name XcmV3JunctionBodyId (178) */
2176
+ interface XcmV3JunctionBodyId extends Enum {
2177
+ readonly isUnit: boolean;
2178
+ readonly isMoniker: boolean;
2179
+ readonly asMoniker: U8aFixed;
2180
+ readonly isIndex: boolean;
2181
+ readonly asIndex: Compact<u32>;
2182
+ readonly isExecutive: boolean;
2183
+ readonly isTechnical: boolean;
2184
+ readonly isLegislative: boolean;
2185
+ readonly isJudicial: boolean;
2186
+ readonly isDefense: boolean;
2187
+ readonly isAdministration: boolean;
2188
+ readonly isTreasury: boolean;
2189
+ readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
2190
+ }
2191
+
2192
+ /** @name XcmV3JunctionBodyPart (179) */
2193
+ interface XcmV3JunctionBodyPart extends Enum {
2194
+ readonly isVoice: boolean;
2195
+ readonly isMembers: boolean;
2196
+ readonly asMembers: {
2197
+ readonly count: Compact<u32>;
2198
+ } & Struct;
2199
+ readonly isFraction: boolean;
2200
+ readonly asFraction: {
2201
+ readonly nom: Compact<u32>;
2202
+ readonly denom: Compact<u32>;
2203
+ } & Struct;
2204
+ readonly isAtLeastProportion: boolean;
2205
+ readonly asAtLeastProportion: {
2206
+ readonly nom: Compact<u32>;
2207
+ readonly denom: Compact<u32>;
2208
+ } & Struct;
2209
+ readonly isMoreThanProportion: boolean;
2210
+ readonly asMoreThanProportion: {
2211
+ readonly nom: Compact<u32>;
2212
+ readonly denom: Compact<u32>;
2213
+ } & Struct;
2214
+ readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
2215
+ }
2216
+
2217
+ /** @name SygmaFeeHandlerRouterEvent (187) */
2218
+ interface SygmaFeeHandlerRouterEvent extends Enum {
2219
+ readonly isFeeHandlerSet: boolean;
2220
+ readonly asFeeHandlerSet: {
2221
+ readonly domain: u8;
2222
+ readonly asset: StagingXcmV4AssetAssetId;
2223
+ readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
2224
+ } & Struct;
2225
+ readonly type: 'FeeHandlerSet';
2226
+ }
2227
+
2228
+ /** @name SygmaFeeHandlerRouterFeeHandlerType (188) */
2229
+ interface SygmaFeeHandlerRouterFeeHandlerType extends Enum {
2230
+ readonly isBasicFeeHandler: boolean;
2231
+ readonly isPercentageFeeHandler: boolean;
2232
+ readonly isDynamicFeeHandler: boolean;
2233
+ readonly type: 'BasicFeeHandler' | 'PercentageFeeHandler' | 'DynamicFeeHandler';
2234
+ }
2235
+
2236
+ /** @name SygmaPercentageFeehandlerEvent (189) */
2237
+ interface SygmaPercentageFeehandlerEvent extends Enum {
2238
+ readonly isFeeRateSet: boolean;
2239
+ readonly asFeeRateSet: {
2240
+ readonly domain: u8;
2241
+ readonly asset: StagingXcmV4AssetAssetId;
2242
+ readonly rateBasisPoint: u32;
2243
+ readonly feeLowerBound: u128;
2244
+ readonly feeUpperBound: u128;
2245
+ } & Struct;
2246
+ readonly type: 'FeeRateSet';
2247
+ }
2248
+
2249
+ /** @name SygmaBridgeEvent (190) */
2250
+ interface SygmaBridgeEvent extends Enum {
2251
+ readonly isDeposit: boolean;
2252
+ readonly asDeposit: {
2253
+ readonly destDomainId: u8;
2254
+ readonly resourceId: U8aFixed;
2255
+ readonly depositNonce: u64;
2256
+ readonly sender: AccountId32;
2257
+ readonly transferType: SygmaTraitsTransferType;
2258
+ readonly depositData: Bytes;
2259
+ readonly handlerResponse: Bytes;
2260
+ } & Struct;
2261
+ readonly isProposalExecution: boolean;
2262
+ readonly asProposalExecution: {
2263
+ readonly originDomainId: u8;
2264
+ readonly depositNonce: u64;
2265
+ readonly dataHash: U8aFixed;
2266
+ } & Struct;
2267
+ readonly isFailedHandlerExecution: boolean;
2268
+ readonly asFailedHandlerExecution: {
2269
+ readonly error: Bytes;
2270
+ readonly originDomainId: u8;
2271
+ readonly depositNonce: u64;
2272
+ } & Struct;
2273
+ readonly isRetry: boolean;
2274
+ readonly asRetry: {
2275
+ readonly depositOnBlockHeight: u128;
2276
+ readonly destDomainId: u8;
2277
+ readonly sender: AccountId32;
2278
+ } & Struct;
2279
+ readonly isBridgePaused: boolean;
2280
+ readonly asBridgePaused: {
2281
+ readonly destDomainId: u8;
2282
+ } & Struct;
2283
+ readonly isBridgeUnpaused: boolean;
2284
+ readonly asBridgeUnpaused: {
2285
+ readonly destDomainId: u8;
2286
+ } & Struct;
2287
+ readonly isRegisterDestDomain: boolean;
2288
+ readonly asRegisterDestDomain: {
2289
+ readonly sender: AccountId32;
2290
+ readonly domainId: u8;
2291
+ readonly chainId: U256;
2292
+ } & Struct;
2293
+ readonly isUnregisterDestDomain: boolean;
2294
+ readonly asUnregisterDestDomain: {
2295
+ readonly sender: AccountId32;
2296
+ readonly domainId: u8;
2297
+ readonly chainId: U256;
2298
+ } & Struct;
2299
+ readonly isFeeCollected: boolean;
2300
+ readonly asFeeCollected: {
2301
+ readonly feePayer: AccountId32;
2302
+ readonly destDomainId: u8;
2303
+ readonly resourceId: U8aFixed;
2304
+ readonly feeAmount: u128;
2305
+ readonly feeAssetId: StagingXcmV4AssetAssetId;
2306
+ } & Struct;
2307
+ readonly isAllBridgePaused: boolean;
2308
+ readonly asAllBridgePaused: {
2309
+ readonly sender: AccountId32;
2310
+ } & Struct;
2311
+ readonly isAllBridgeUnpaused: boolean;
2312
+ readonly asAllBridgeUnpaused: {
2313
+ readonly sender: AccountId32;
2314
+ } & Struct;
2315
+ readonly type: 'Deposit' | 'ProposalExecution' | 'FailedHandlerExecution' | 'Retry' | 'BridgePaused' | 'BridgeUnpaused' | 'RegisterDestDomain' | 'UnregisterDestDomain' | 'FeeCollected' | 'AllBridgePaused' | 'AllBridgeUnpaused';
2316
+ }
2317
+
2318
+ /** @name SygmaTraitsTransferType (191) */
2319
+ interface SygmaTraitsTransferType extends Enum {
2320
+ readonly isFungibleTransfer: boolean;
2321
+ readonly isNonFungibleTransfer: boolean;
2322
+ readonly isGenericTransfer: boolean;
2323
+ readonly type: 'FungibleTransfer' | 'NonFungibleTransfer' | 'GenericTransfer';
2324
+ }
2325
+
2326
+ /** @name FrameSystemPhase (192) */
1772
2327
  interface FrameSystemPhase extends Enum {
1773
2328
  readonly isApplyExtrinsic: boolean;
1774
2329
  readonly asApplyExtrinsic: u32;
@@ -1777,19 +2332,19 @@ declare module '@polkadot/types/lookup' {
1777
2332
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1778
2333
  }
1779
2334
 
1780
- /** @name FrameSystemLastRuntimeUpgradeInfo (163) */
2335
+ /** @name FrameSystemLastRuntimeUpgradeInfo (194) */
1781
2336
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1782
2337
  readonly specVersion: Compact<u32>;
1783
2338
  readonly specName: Text;
1784
2339
  }
1785
2340
 
1786
- /** @name FrameSystemCodeUpgradeAuthorization (165) */
2341
+ /** @name FrameSystemCodeUpgradeAuthorization (195) */
1787
2342
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1788
2343
  readonly codeHash: H256;
1789
2344
  readonly checkVersion: bool;
1790
2345
  }
1791
2346
 
1792
- /** @name FrameSystemCall (166) */
2347
+ /** @name FrameSystemCall (196) */
1793
2348
  interface FrameSystemCall extends Enum {
1794
2349
  readonly isRemark: boolean;
1795
2350
  readonly asRemark: {
@@ -1839,21 +2394,21 @@ declare module '@polkadot/types/lookup' {
1839
2394
  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
1840
2395
  }
1841
2396
 
1842
- /** @name FrameSystemLimitsBlockWeights (170) */
2397
+ /** @name FrameSystemLimitsBlockWeights (200) */
1843
2398
  interface FrameSystemLimitsBlockWeights extends Struct {
1844
2399
  readonly baseBlock: SpWeightsWeightV2Weight;
1845
2400
  readonly maxBlock: SpWeightsWeightV2Weight;
1846
2401
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1847
2402
  }
1848
2403
 
1849
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (171) */
2404
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (201) */
1850
2405
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1851
2406
  readonly normal: FrameSystemLimitsWeightsPerClass;
1852
2407
  readonly operational: FrameSystemLimitsWeightsPerClass;
1853
2408
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1854
2409
  }
1855
2410
 
1856
- /** @name FrameSystemLimitsWeightsPerClass (172) */
2411
+ /** @name FrameSystemLimitsWeightsPerClass (202) */
1857
2412
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1858
2413
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1859
2414
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1861,25 +2416,25 @@ declare module '@polkadot/types/lookup' {
1861
2416
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1862
2417
  }
1863
2418
 
1864
- /** @name FrameSystemLimitsBlockLength (174) */
2419
+ /** @name FrameSystemLimitsBlockLength (204) */
1865
2420
  interface FrameSystemLimitsBlockLength extends Struct {
1866
2421
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1867
2422
  }
1868
2423
 
1869
- /** @name FrameSupportDispatchPerDispatchClassU32 (175) */
2424
+ /** @name FrameSupportDispatchPerDispatchClassU32 (205) */
1870
2425
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1871
2426
  readonly normal: u32;
1872
2427
  readonly operational: u32;
1873
2428
  readonly mandatory: u32;
1874
2429
  }
1875
2430
 
1876
- /** @name SpWeightsRuntimeDbWeight (176) */
2431
+ /** @name SpWeightsRuntimeDbWeight (206) */
1877
2432
  interface SpWeightsRuntimeDbWeight extends Struct {
1878
2433
  readonly read: u64;
1879
2434
  readonly write: u64;
1880
2435
  }
1881
2436
 
1882
- /** @name SpVersionRuntimeVersion (177) */
2437
+ /** @name SpVersionRuntimeVersion (207) */
1883
2438
  interface SpVersionRuntimeVersion extends Struct {
1884
2439
  readonly specName: Text;
1885
2440
  readonly implName: Text;
@@ -1891,7 +2446,7 @@ declare module '@polkadot/types/lookup' {
1891
2446
  readonly stateVersion: u8;
1892
2447
  }
1893
2448
 
1894
- /** @name FrameSystemError (183) */
2449
+ /** @name FrameSystemError (212) */
1895
2450
  interface FrameSystemError extends Enum {
1896
2451
  readonly isInvalidSpecName: boolean;
1897
2452
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1904,7 +2459,7 @@ declare module '@polkadot/types/lookup' {
1904
2459
  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
1905
2460
  }
1906
2461
 
1907
- /** @name PalletTimestampCall (184) */
2462
+ /** @name PalletTimestampCall (213) */
1908
2463
  interface PalletTimestampCall extends Enum {
1909
2464
  readonly isSet: boolean;
1910
2465
  readonly asSet: {
@@ -1913,7 +2468,7 @@ declare module '@polkadot/types/lookup' {
1913
2468
  readonly type: 'Set';
1914
2469
  }
1915
2470
 
1916
- /** @name PalletSudoCall (185) */
2471
+ /** @name PalletSudoCall (214) */
1917
2472
  interface PalletSudoCall extends Enum {
1918
2473
  readonly isSudo: boolean;
1919
2474
  readonly asSudo: {
@@ -1937,7 +2492,189 @@ declare module '@polkadot/types/lookup' {
1937
2492
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
1938
2493
  }
1939
2494
 
1940
- /** @name PalletBalancesCall (187) */
2495
+ /** @name PalletAssetsCall (216) */
2496
+ interface PalletAssetsCall extends Enum {
2497
+ readonly isCreate: boolean;
2498
+ readonly asCreate: {
2499
+ readonly id: Compact<u128>;
2500
+ readonly admin: MultiAddress;
2501
+ readonly minBalance: u128;
2502
+ } & Struct;
2503
+ readonly isForceCreate: boolean;
2504
+ readonly asForceCreate: {
2505
+ readonly id: Compact<u128>;
2506
+ readonly owner: MultiAddress;
2507
+ readonly isSufficient: bool;
2508
+ readonly minBalance: Compact<u128>;
2509
+ } & Struct;
2510
+ readonly isStartDestroy: boolean;
2511
+ readonly asStartDestroy: {
2512
+ readonly id: Compact<u128>;
2513
+ } & Struct;
2514
+ readonly isDestroyAccounts: boolean;
2515
+ readonly asDestroyAccounts: {
2516
+ readonly id: Compact<u128>;
2517
+ } & Struct;
2518
+ readonly isDestroyApprovals: boolean;
2519
+ readonly asDestroyApprovals: {
2520
+ readonly id: Compact<u128>;
2521
+ } & Struct;
2522
+ readonly isFinishDestroy: boolean;
2523
+ readonly asFinishDestroy: {
2524
+ readonly id: Compact<u128>;
2525
+ } & Struct;
2526
+ readonly isMint: boolean;
2527
+ readonly asMint: {
2528
+ readonly id: Compact<u128>;
2529
+ readonly beneficiary: MultiAddress;
2530
+ readonly amount: Compact<u128>;
2531
+ } & Struct;
2532
+ readonly isBurn: boolean;
2533
+ readonly asBurn: {
2534
+ readonly id: Compact<u128>;
2535
+ readonly who: MultiAddress;
2536
+ readonly amount: Compact<u128>;
2537
+ } & Struct;
2538
+ readonly isTransfer: boolean;
2539
+ readonly asTransfer: {
2540
+ readonly id: Compact<u128>;
2541
+ readonly target: MultiAddress;
2542
+ readonly amount: Compact<u128>;
2543
+ } & Struct;
2544
+ readonly isTransferKeepAlive: boolean;
2545
+ readonly asTransferKeepAlive: {
2546
+ readonly id: Compact<u128>;
2547
+ readonly target: MultiAddress;
2548
+ readonly amount: Compact<u128>;
2549
+ } & Struct;
2550
+ readonly isForceTransfer: boolean;
2551
+ readonly asForceTransfer: {
2552
+ readonly id: Compact<u128>;
2553
+ readonly source: MultiAddress;
2554
+ readonly dest: MultiAddress;
2555
+ readonly amount: Compact<u128>;
2556
+ } & Struct;
2557
+ readonly isFreeze: boolean;
2558
+ readonly asFreeze: {
2559
+ readonly id: Compact<u128>;
2560
+ readonly who: MultiAddress;
2561
+ } & Struct;
2562
+ readonly isThaw: boolean;
2563
+ readonly asThaw: {
2564
+ readonly id: Compact<u128>;
2565
+ readonly who: MultiAddress;
2566
+ } & Struct;
2567
+ readonly isFreezeAsset: boolean;
2568
+ readonly asFreezeAsset: {
2569
+ readonly id: Compact<u128>;
2570
+ } & Struct;
2571
+ readonly isThawAsset: boolean;
2572
+ readonly asThawAsset: {
2573
+ readonly id: Compact<u128>;
2574
+ } & Struct;
2575
+ readonly isTransferOwnership: boolean;
2576
+ readonly asTransferOwnership: {
2577
+ readonly id: Compact<u128>;
2578
+ readonly owner: MultiAddress;
2579
+ } & Struct;
2580
+ readonly isSetTeam: boolean;
2581
+ readonly asSetTeam: {
2582
+ readonly id: Compact<u128>;
2583
+ readonly issuer: MultiAddress;
2584
+ readonly admin: MultiAddress;
2585
+ readonly freezer: MultiAddress;
2586
+ } & Struct;
2587
+ readonly isSetMetadata: boolean;
2588
+ readonly asSetMetadata: {
2589
+ readonly id: Compact<u128>;
2590
+ readonly name: Bytes;
2591
+ readonly symbol: Bytes;
2592
+ readonly decimals: u8;
2593
+ } & Struct;
2594
+ readonly isClearMetadata: boolean;
2595
+ readonly asClearMetadata: {
2596
+ readonly id: Compact<u128>;
2597
+ } & Struct;
2598
+ readonly isForceSetMetadata: boolean;
2599
+ readonly asForceSetMetadata: {
2600
+ readonly id: Compact<u128>;
2601
+ readonly name: Bytes;
2602
+ readonly symbol: Bytes;
2603
+ readonly decimals: u8;
2604
+ readonly isFrozen: bool;
2605
+ } & Struct;
2606
+ readonly isForceClearMetadata: boolean;
2607
+ readonly asForceClearMetadata: {
2608
+ readonly id: Compact<u128>;
2609
+ } & Struct;
2610
+ readonly isForceAssetStatus: boolean;
2611
+ readonly asForceAssetStatus: {
2612
+ readonly id: Compact<u128>;
2613
+ readonly owner: MultiAddress;
2614
+ readonly issuer: MultiAddress;
2615
+ readonly admin: MultiAddress;
2616
+ readonly freezer: MultiAddress;
2617
+ readonly minBalance: Compact<u128>;
2618
+ readonly isSufficient: bool;
2619
+ readonly isFrozen: bool;
2620
+ } & Struct;
2621
+ readonly isApproveTransfer: boolean;
2622
+ readonly asApproveTransfer: {
2623
+ readonly id: Compact<u128>;
2624
+ readonly delegate: MultiAddress;
2625
+ readonly amount: Compact<u128>;
2626
+ } & Struct;
2627
+ readonly isCancelApproval: boolean;
2628
+ readonly asCancelApproval: {
2629
+ readonly id: Compact<u128>;
2630
+ readonly delegate: MultiAddress;
2631
+ } & Struct;
2632
+ readonly isForceCancelApproval: boolean;
2633
+ readonly asForceCancelApproval: {
2634
+ readonly id: Compact<u128>;
2635
+ readonly owner: MultiAddress;
2636
+ readonly delegate: MultiAddress;
2637
+ } & Struct;
2638
+ readonly isTransferApproved: boolean;
2639
+ readonly asTransferApproved: {
2640
+ readonly id: Compact<u128>;
2641
+ readonly owner: MultiAddress;
2642
+ readonly destination: MultiAddress;
2643
+ readonly amount: Compact<u128>;
2644
+ } & Struct;
2645
+ readonly isTouch: boolean;
2646
+ readonly asTouch: {
2647
+ readonly id: Compact<u128>;
2648
+ } & Struct;
2649
+ readonly isRefund: boolean;
2650
+ readonly asRefund: {
2651
+ readonly id: Compact<u128>;
2652
+ readonly allowBurn: bool;
2653
+ } & Struct;
2654
+ readonly isSetMinBalance: boolean;
2655
+ readonly asSetMinBalance: {
2656
+ readonly id: Compact<u128>;
2657
+ readonly minBalance: u128;
2658
+ } & Struct;
2659
+ readonly isTouchOther: boolean;
2660
+ readonly asTouchOther: {
2661
+ readonly id: Compact<u128>;
2662
+ readonly who: MultiAddress;
2663
+ } & Struct;
2664
+ readonly isRefundOther: boolean;
2665
+ readonly asRefundOther: {
2666
+ readonly id: Compact<u128>;
2667
+ readonly who: MultiAddress;
2668
+ } & Struct;
2669
+ readonly isBlock: boolean;
2670
+ readonly asBlock: {
2671
+ readonly id: Compact<u128>;
2672
+ readonly who: MultiAddress;
2673
+ } & Struct;
2674
+ readonly type: 'Create' | 'ForceCreate' | 'StartDestroy' | 'DestroyAccounts' | 'DestroyApprovals' | 'FinishDestroy' | 'Mint' | 'Burn' | 'Transfer' | 'TransferKeepAlive' | 'ForceTransfer' | 'Freeze' | 'Thaw' | 'FreezeAsset' | 'ThawAsset' | 'TransferOwnership' | 'SetTeam' | 'SetMetadata' | 'ClearMetadata' | 'ForceSetMetadata' | 'ForceClearMetadata' | 'ForceAssetStatus' | 'ApproveTransfer' | 'CancelApproval' | 'ForceCancelApproval' | 'TransferApproved' | 'Touch' | 'Refund' | 'SetMinBalance' | 'TouchOther' | 'RefundOther' | 'Block';
2675
+ }
2676
+
2677
+ /** @name PalletBalancesCall (218) */
1941
2678
  interface PalletBalancesCall extends Enum {
1942
2679
  readonly isTransferAllowDeath: boolean;
1943
2680
  readonly asTransferAllowDeath: {
@@ -1982,14 +2719,14 @@ declare module '@polkadot/types/lookup' {
1982
2719
  readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
1983
2720
  }
1984
2721
 
1985
- /** @name PalletBalancesAdjustmentDirection (189) */
2722
+ /** @name PalletBalancesAdjustmentDirection (219) */
1986
2723
  interface PalletBalancesAdjustmentDirection extends Enum {
1987
2724
  readonly isIncrease: boolean;
1988
2725
  readonly isDecrease: boolean;
1989
2726
  readonly type: 'Increase' | 'Decrease';
1990
2727
  }
1991
2728
 
1992
- /** @name PalletBabeCall (190) */
2729
+ /** @name PalletBabeCall (220) */
1993
2730
  interface PalletBabeCall extends Enum {
1994
2731
  readonly isReportEquivocation: boolean;
1995
2732
  readonly asReportEquivocation: {
@@ -2008,7 +2745,7 @@ declare module '@polkadot/types/lookup' {
2008
2745
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
2009
2746
  }
2010
2747
 
2011
- /** @name SpConsensusSlotsEquivocationProof (191) */
2748
+ /** @name SpConsensusSlotsEquivocationProof (221) */
2012
2749
  interface SpConsensusSlotsEquivocationProof extends Struct {
2013
2750
  readonly offender: SpConsensusBabeAppPublic;
2014
2751
  readonly slot: u64;
@@ -2016,7 +2753,7 @@ declare module '@polkadot/types/lookup' {
2016
2753
  readonly secondHeader: SpRuntimeHeader;
2017
2754
  }
2018
2755
 
2019
- /** @name SpRuntimeHeader (192) */
2756
+ /** @name SpRuntimeHeader (222) */
2020
2757
  interface SpRuntimeHeader extends Struct {
2021
2758
  readonly parentHash: H256;
2022
2759
  readonly number: Compact<u64>;
@@ -2025,17 +2762,17 @@ declare module '@polkadot/types/lookup' {
2025
2762
  readonly digest: SpRuntimeDigest;
2026
2763
  }
2027
2764
 
2028
- /** @name SpConsensusBabeAppPublic (193) */
2765
+ /** @name SpConsensusBabeAppPublic (223) */
2029
2766
  interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {}
2030
2767
 
2031
- /** @name SpSessionMembershipProof (195) */
2768
+ /** @name SpSessionMembershipProof (225) */
2032
2769
  interface SpSessionMembershipProof extends Struct {
2033
2770
  readonly session: u32;
2034
2771
  readonly trieNodes: Vec<Bytes>;
2035
2772
  readonly validatorCount: u32;
2036
2773
  }
2037
2774
 
2038
- /** @name SpConsensusBabeDigestsNextConfigDescriptor (196) */
2775
+ /** @name SpConsensusBabeDigestsNextConfigDescriptor (226) */
2039
2776
  interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
2040
2777
  readonly isV1: boolean;
2041
2778
  readonly asV1: {
@@ -2045,7 +2782,7 @@ declare module '@polkadot/types/lookup' {
2045
2782
  readonly type: 'V1';
2046
2783
  }
2047
2784
 
2048
- /** @name SpConsensusBabeAllowedSlots (198) */
2785
+ /** @name SpConsensusBabeAllowedSlots (228) */
2049
2786
  interface SpConsensusBabeAllowedSlots extends Enum {
2050
2787
  readonly isPrimarySlots: boolean;
2051
2788
  readonly isPrimaryAndSecondaryPlainSlots: boolean;
@@ -2053,7 +2790,7 @@ declare module '@polkadot/types/lookup' {
2053
2790
  readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
2054
2791
  }
2055
2792
 
2056
- /** @name PalletGrandpaCall (199) */
2793
+ /** @name PalletGrandpaCall (229) */
2057
2794
  interface PalletGrandpaCall extends Enum {
2058
2795
  readonly isReportEquivocation: boolean;
2059
2796
  readonly asReportEquivocation: {
@@ -2073,13 +2810,13 @@ declare module '@polkadot/types/lookup' {
2073
2810
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2074
2811
  }
2075
2812
 
2076
- /** @name SpConsensusGrandpaEquivocationProof (200) */
2813
+ /** @name SpConsensusGrandpaEquivocationProof (230) */
2077
2814
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2078
2815
  readonly setId: u64;
2079
2816
  readonly equivocation: SpConsensusGrandpaEquivocation;
2080
2817
  }
2081
2818
 
2082
- /** @name SpConsensusGrandpaEquivocation (201) */
2819
+ /** @name SpConsensusGrandpaEquivocation (231) */
2083
2820
  interface SpConsensusGrandpaEquivocation extends Enum {
2084
2821
  readonly isPrevote: boolean;
2085
2822
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2088,7 +2825,7 @@ declare module '@polkadot/types/lookup' {
2088
2825
  readonly type: 'Prevote' | 'Precommit';
2089
2826
  }
2090
2827
 
2091
- /** @name FinalityGrandpaEquivocationPrevote (202) */
2828
+ /** @name FinalityGrandpaEquivocationPrevote (232) */
2092
2829
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2093
2830
  readonly roundNumber: u64;
2094
2831
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2096,19 +2833,19 @@ declare module '@polkadot/types/lookup' {
2096
2833
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2097
2834
  }
2098
2835
 
2099
- /** @name FinalityGrandpaPrevote (203) */
2836
+ /** @name FinalityGrandpaPrevote (233) */
2100
2837
  interface FinalityGrandpaPrevote extends Struct {
2101
2838
  readonly targetHash: H256;
2102
2839
  readonly targetNumber: u64;
2103
2840
  }
2104
2841
 
2105
- /** @name SpConsensusGrandpaAppSignature (204) */
2842
+ /** @name SpConsensusGrandpaAppSignature (234) */
2106
2843
  interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {}
2107
2844
 
2108
- /** @name SpCoreEd25519Signature (205) */
2845
+ /** @name SpCoreEd25519Signature (235) */
2109
2846
  interface SpCoreEd25519Signature extends U8aFixed {}
2110
2847
 
2111
- /** @name FinalityGrandpaEquivocationPrecommit (208) */
2848
+ /** @name FinalityGrandpaEquivocationPrecommit (238) */
2112
2849
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2113
2850
  readonly roundNumber: u64;
2114
2851
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2116,16 +2853,16 @@ declare module '@polkadot/types/lookup' {
2116
2853
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2117
2854
  }
2118
2855
 
2119
- /** @name FinalityGrandpaPrecommit (209) */
2856
+ /** @name FinalityGrandpaPrecommit (239) */
2120
2857
  interface FinalityGrandpaPrecommit extends Struct {
2121
2858
  readonly targetHash: H256;
2122
2859
  readonly targetNumber: u64;
2123
2860
  }
2124
2861
 
2125
- /** @name SpCoreVoid (211) */
2862
+ /** @name SpCoreVoid (241) */
2126
2863
  type SpCoreVoid = Null;
2127
2864
 
2128
- /** @name PalletIndicesCall (212) */
2865
+ /** @name PalletIndicesCall (242) */
2129
2866
  interface PalletIndicesCall extends Enum {
2130
2867
  readonly isClaim: boolean;
2131
2868
  readonly asClaim: {
@@ -2153,7 +2890,7 @@ declare module '@polkadot/types/lookup' {
2153
2890
  readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
2154
2891
  }
2155
2892
 
2156
- /** @name PalletDemocracyCall (213) */
2893
+ /** @name PalletDemocracyCall (243) */
2157
2894
  interface PalletDemocracyCall extends Enum {
2158
2895
  readonly isPropose: boolean;
2159
2896
  readonly asPropose: {
@@ -2237,7 +2974,7 @@ declare module '@polkadot/types/lookup' {
2237
2974
  readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
2238
2975
  }
2239
2976
 
2240
- /** @name FrameSupportPreimagesBounded (214) */
2977
+ /** @name FrameSupportPreimagesBounded (244) */
2241
2978
  interface FrameSupportPreimagesBounded extends Enum {
2242
2979
  readonly isLegacy: boolean;
2243
2980
  readonly asLegacy: {
@@ -2253,10 +2990,10 @@ declare module '@polkadot/types/lookup' {
2253
2990
  readonly type: 'Legacy' | 'Inline' | 'Lookup';
2254
2991
  }
2255
2992
 
2256
- /** @name SpRuntimeBlakeTwo256 (215) */
2993
+ /** @name SpRuntimeBlakeTwo256 (245) */
2257
2994
  type SpRuntimeBlakeTwo256 = Null;
2258
2995
 
2259
- /** @name PalletDemocracyConviction (217) */
2996
+ /** @name PalletDemocracyConviction (247) */
2260
2997
  interface PalletDemocracyConviction extends Enum {
2261
2998
  readonly isNone: boolean;
2262
2999
  readonly isLocked1x: boolean;
@@ -2268,7 +3005,7 @@ declare module '@polkadot/types/lookup' {
2268
3005
  readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
2269
3006
  }
2270
3007
 
2271
- /** @name PalletCollectiveCall (220) */
3008
+ /** @name PalletCollectiveCall (250) */
2272
3009
  interface PalletCollectiveCall extends Enum {
2273
3010
  readonly isSetMembers: boolean;
2274
3011
  readonly asSetMembers: {
@@ -2307,7 +3044,7 @@ declare module '@polkadot/types/lookup' {
2307
3044
  readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
2308
3045
  }
2309
3046
 
2310
- /** @name PalletVestingCall (221) */
3047
+ /** @name PalletVestingCall (251) */
2311
3048
  interface PalletVestingCall extends Enum {
2312
3049
  readonly isVest: boolean;
2313
3050
  readonly isVestOther: boolean;
@@ -2338,14 +3075,14 @@ declare module '@polkadot/types/lookup' {
2338
3075
  readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
2339
3076
  }
2340
3077
 
2341
- /** @name PalletVestingVestingInfo (222) */
3078
+ /** @name PalletVestingVestingInfo (252) */
2342
3079
  interface PalletVestingVestingInfo extends Struct {
2343
3080
  readonly locked: u128;
2344
3081
  readonly perBlock: u128;
2345
3082
  readonly startingBlock: u64;
2346
3083
  }
2347
3084
 
2348
- /** @name PalletElectionsPhragmenCall (223) */
3085
+ /** @name PalletElectionsPhragmenCall (253) */
2349
3086
  interface PalletElectionsPhragmenCall extends Enum {
2350
3087
  readonly isVote: boolean;
2351
3088
  readonly asVote: {
@@ -2375,7 +3112,7 @@ declare module '@polkadot/types/lookup' {
2375
3112
  readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
2376
3113
  }
2377
3114
 
2378
- /** @name PalletElectionsPhragmenRenouncing (224) */
3115
+ /** @name PalletElectionsPhragmenRenouncing (254) */
2379
3116
  interface PalletElectionsPhragmenRenouncing extends Enum {
2380
3117
  readonly isMember: boolean;
2381
3118
  readonly isRunnerUp: boolean;
@@ -2384,7 +3121,7 @@ declare module '@polkadot/types/lookup' {
2384
3121
  readonly type: 'Member' | 'RunnerUp' | 'Candidate';
2385
3122
  }
2386
3123
 
2387
- /** @name PalletElectionProviderMultiPhaseCall (225) */
3124
+ /** @name PalletElectionProviderMultiPhaseCall (255) */
2388
3125
  interface PalletElectionProviderMultiPhaseCall extends Enum {
2389
3126
  readonly isSubmitUnsigned: boolean;
2390
3127
  readonly asSubmitUnsigned: {
@@ -2411,14 +3148,14 @@ declare module '@polkadot/types/lookup' {
2411
3148
  readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
2412
3149
  }
2413
3150
 
2414
- /** @name PalletElectionProviderMultiPhaseRawSolution (226) */
3151
+ /** @name PalletElectionProviderMultiPhaseRawSolution (256) */
2415
3152
  interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
2416
3153
  readonly solution: TangleTestnetRuntimeNposSolution16;
2417
3154
  readonly score: SpNposElectionsElectionScore;
2418
3155
  readonly round: u32;
2419
3156
  }
2420
3157
 
2421
- /** @name TangleTestnetRuntimeNposSolution16 (227) */
3158
+ /** @name TangleTestnetRuntimeNposSolution16 (257) */
2422
3159
  interface TangleTestnetRuntimeNposSolution16 extends Struct {
2423
3160
  readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
2424
3161
  readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
@@ -2438,19 +3175,19 @@ declare module '@polkadot/types/lookup' {
2438
3175
  readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
2439
3176
  }
2440
3177
 
2441
- /** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (278) */
3178
+ /** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (308) */
2442
3179
  interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
2443
3180
  readonly voters: Compact<u32>;
2444
3181
  readonly targets: Compact<u32>;
2445
3182
  }
2446
3183
 
2447
- /** @name SpNposElectionsSupport (282) */
3184
+ /** @name SpNposElectionsSupport (312) */
2448
3185
  interface SpNposElectionsSupport extends Struct {
2449
3186
  readonly total: u128;
2450
3187
  readonly voters: Vec<ITuple<[AccountId32, u128]>>;
2451
3188
  }
2452
3189
 
2453
- /** @name PalletStakingPalletCall (283) */
3190
+ /** @name PalletStakingPalletCall (313) */
2454
3191
  interface PalletStakingPalletCall extends Enum {
2455
3192
  readonly isBond: boolean;
2456
3193
  readonly asBond: {
@@ -2568,7 +3305,7 @@ declare module '@polkadot/types/lookup' {
2568
3305
  readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'ReapStash' | 'Kick' | 'SetStakingConfigs' | 'ChillOther' | 'ForceApplyMinCommission' | 'SetMinCommission' | 'PayoutStakersByPage' | 'UpdatePayee' | 'DeprecateControllerBatch';
2569
3306
  }
2570
3307
 
2571
- /** @name PalletStakingPalletConfigOpU128 (287) */
3308
+ /** @name PalletStakingPalletConfigOpU128 (317) */
2572
3309
  interface PalletStakingPalletConfigOpU128 extends Enum {
2573
3310
  readonly isNoop: boolean;
2574
3311
  readonly isSet: boolean;
@@ -2577,7 +3314,7 @@ declare module '@polkadot/types/lookup' {
2577
3314
  readonly type: 'Noop' | 'Set' | 'Remove';
2578
3315
  }
2579
3316
 
2580
- /** @name PalletStakingPalletConfigOpU32 (288) */
3317
+ /** @name PalletStakingPalletConfigOpU32 (318) */
2581
3318
  interface PalletStakingPalletConfigOpU32 extends Enum {
2582
3319
  readonly isNoop: boolean;
2583
3320
  readonly isSet: boolean;
@@ -2586,7 +3323,7 @@ declare module '@polkadot/types/lookup' {
2586
3323
  readonly type: 'Noop' | 'Set' | 'Remove';
2587
3324
  }
2588
3325
 
2589
- /** @name PalletStakingPalletConfigOpPercent (289) */
3326
+ /** @name PalletStakingPalletConfigOpPercent (319) */
2590
3327
  interface PalletStakingPalletConfigOpPercent extends Enum {
2591
3328
  readonly isNoop: boolean;
2592
3329
  readonly isSet: boolean;
@@ -2595,7 +3332,7 @@ declare module '@polkadot/types/lookup' {
2595
3332
  readonly type: 'Noop' | 'Set' | 'Remove';
2596
3333
  }
2597
3334
 
2598
- /** @name PalletStakingPalletConfigOpPerbill (290) */
3335
+ /** @name PalletStakingPalletConfigOpPerbill (320) */
2599
3336
  interface PalletStakingPalletConfigOpPerbill extends Enum {
2600
3337
  readonly isNoop: boolean;
2601
3338
  readonly isSet: boolean;
@@ -2604,7 +3341,7 @@ declare module '@polkadot/types/lookup' {
2604
3341
  readonly type: 'Noop' | 'Set' | 'Remove';
2605
3342
  }
2606
3343
 
2607
- /** @name PalletSessionCall (292) */
3344
+ /** @name PalletSessionCall (322) */
2608
3345
  interface PalletSessionCall extends Enum {
2609
3346
  readonly isSetKeys: boolean;
2610
3347
  readonly asSetKeys: {
@@ -2615,7 +3352,7 @@ declare module '@polkadot/types/lookup' {
2615
3352
  readonly type: 'SetKeys' | 'PurgeKeys';
2616
3353
  }
2617
3354
 
2618
- /** @name TangleTestnetRuntimeOpaqueSessionKeys (293) */
3355
+ /** @name TangleTestnetRuntimeOpaqueSessionKeys (323) */
2619
3356
  interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
2620
3357
  readonly babe: SpConsensusBabeAppPublic;
2621
3358
  readonly grandpa: SpConsensusGrandpaAppPublic;
@@ -2623,13 +3360,13 @@ declare module '@polkadot/types/lookup' {
2623
3360
  readonly role: TangleCryptoPrimitivesCryptoPublic;
2624
3361
  }
2625
3362
 
2626
- /** @name TangleCryptoPrimitivesCryptoPublic (294) */
3363
+ /** @name TangleCryptoPrimitivesCryptoPublic (324) */
2627
3364
  interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {}
2628
3365
 
2629
- /** @name SpCoreEcdsaPublic (295) */
3366
+ /** @name SpCoreEcdsaPublic (325) */
2630
3367
  interface SpCoreEcdsaPublic extends U8aFixed {}
2631
3368
 
2632
- /** @name PalletTreasuryCall (297) */
3369
+ /** @name PalletTreasuryCall (327) */
2633
3370
  interface PalletTreasuryCall extends Enum {
2634
3371
  readonly isProposeSpend: boolean;
2635
3372
  readonly asProposeSpend: {
@@ -2675,7 +3412,7 @@ declare module '@polkadot/types/lookup' {
2675
3412
  readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
2676
3413
  }
2677
3414
 
2678
- /** @name PalletBountiesCall (299) */
3415
+ /** @name PalletBountiesCall (329) */
2679
3416
  interface PalletBountiesCall extends Enum {
2680
3417
  readonly isProposeBounty: boolean;
2681
3418
  readonly asProposeBounty: {
@@ -2721,7 +3458,7 @@ declare module '@polkadot/types/lookup' {
2721
3458
  readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
2722
3459
  }
2723
3460
 
2724
- /** @name PalletChildBountiesCall (300) */
3461
+ /** @name PalletChildBountiesCall (330) */
2725
3462
  interface PalletChildBountiesCall extends Enum {
2726
3463
  readonly isAddChildBounty: boolean;
2727
3464
  readonly asAddChildBounty: {
@@ -2765,7 +3502,7 @@ declare module '@polkadot/types/lookup' {
2765
3502
  readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
2766
3503
  }
2767
3504
 
2768
- /** @name PalletBagsListCall (301) */
3505
+ /** @name PalletBagsListCall (331) */
2769
3506
  interface PalletBagsListCall extends Enum {
2770
3507
  readonly isRebag: boolean;
2771
3508
  readonly asRebag: {
@@ -2783,7 +3520,7 @@ declare module '@polkadot/types/lookup' {
2783
3520
  readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
2784
3521
  }
2785
3522
 
2786
- /** @name PalletNominationPoolsCall (302) */
3523
+ /** @name PalletNominationPoolsCall (332) */
2787
3524
  interface PalletNominationPoolsCall extends Enum {
2788
3525
  readonly isJoin: boolean;
2789
3526
  readonly asJoin: {
@@ -2904,7 +3641,7 @@ declare module '@polkadot/types/lookup' {
2904
3641
  readonly type: 'Join' | 'BondExtra' | 'ClaimPayout' | 'Unbond' | 'PoolWithdrawUnbonded' | 'WithdrawUnbonded' | 'Create' | 'CreateWithPoolId' | 'Nominate' | 'SetState' | 'SetMetadata' | 'SetConfigs' | 'UpdateRoles' | 'Chill' | 'BondExtraOther' | 'SetClaimPermission' | 'ClaimPayoutOther' | 'SetCommission' | 'SetCommissionMax' | 'SetCommissionChangeRate' | 'ClaimCommission' | 'AdjustPoolDeposit' | 'SetCommissionClaimPermission';
2905
3642
  }
2906
3643
 
2907
- /** @name PalletNominationPoolsBondExtra (303) */
3644
+ /** @name PalletNominationPoolsBondExtra (333) */
2908
3645
  interface PalletNominationPoolsBondExtra extends Enum {
2909
3646
  readonly isFreeBalance: boolean;
2910
3647
  readonly asFreeBalance: u128;
@@ -2912,7 +3649,7 @@ declare module '@polkadot/types/lookup' {
2912
3649
  readonly type: 'FreeBalance' | 'Rewards';
2913
3650
  }
2914
3651
 
2915
- /** @name PalletNominationPoolsConfigOpU128 (304) */
3652
+ /** @name PalletNominationPoolsConfigOpU128 (334) */
2916
3653
  interface PalletNominationPoolsConfigOpU128 extends Enum {
2917
3654
  readonly isNoop: boolean;
2918
3655
  readonly isSet: boolean;
@@ -2921,7 +3658,7 @@ declare module '@polkadot/types/lookup' {
2921
3658
  readonly type: 'Noop' | 'Set' | 'Remove';
2922
3659
  }
2923
3660
 
2924
- /** @name PalletNominationPoolsConfigOpU32 (305) */
3661
+ /** @name PalletNominationPoolsConfigOpU32 (335) */
2925
3662
  interface PalletNominationPoolsConfigOpU32 extends Enum {
2926
3663
  readonly isNoop: boolean;
2927
3664
  readonly isSet: boolean;
@@ -2930,7 +3667,7 @@ declare module '@polkadot/types/lookup' {
2930
3667
  readonly type: 'Noop' | 'Set' | 'Remove';
2931
3668
  }
2932
3669
 
2933
- /** @name PalletNominationPoolsConfigOpPerbill (306) */
3670
+ /** @name PalletNominationPoolsConfigOpPerbill (336) */
2934
3671
  interface PalletNominationPoolsConfigOpPerbill extends Enum {
2935
3672
  readonly isNoop: boolean;
2936
3673
  readonly isSet: boolean;
@@ -2939,7 +3676,7 @@ declare module '@polkadot/types/lookup' {
2939
3676
  readonly type: 'Noop' | 'Set' | 'Remove';
2940
3677
  }
2941
3678
 
2942
- /** @name PalletNominationPoolsConfigOpAccountId32 (307) */
3679
+ /** @name PalletNominationPoolsConfigOpAccountId32 (337) */
2943
3680
  interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
2944
3681
  readonly isNoop: boolean;
2945
3682
  readonly isSet: boolean;
@@ -2948,7 +3685,7 @@ declare module '@polkadot/types/lookup' {
2948
3685
  readonly type: 'Noop' | 'Set' | 'Remove';
2949
3686
  }
2950
3687
 
2951
- /** @name PalletNominationPoolsClaimPermission (308) */
3688
+ /** @name PalletNominationPoolsClaimPermission (338) */
2952
3689
  interface PalletNominationPoolsClaimPermission extends Enum {
2953
3690
  readonly isPermissioned: boolean;
2954
3691
  readonly isPermissionlessCompound: boolean;
@@ -2957,7 +3694,7 @@ declare module '@polkadot/types/lookup' {
2957
3694
  readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
2958
3695
  }
2959
3696
 
2960
- /** @name PalletSchedulerCall (309) */
3697
+ /** @name PalletSchedulerCall (339) */
2961
3698
  interface PalletSchedulerCall extends Enum {
2962
3699
  readonly isSchedule: boolean;
2963
3700
  readonly asSchedule: {
@@ -3001,7 +3738,7 @@ declare module '@polkadot/types/lookup' {
3001
3738
  readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
3002
3739
  }
3003
3740
 
3004
- /** @name PalletPreimageCall (311) */
3741
+ /** @name PalletPreimageCall (341) */
3005
3742
  interface PalletPreimageCall extends Enum {
3006
3743
  readonly isNotePreimage: boolean;
3007
3744
  readonly asNotePreimage: {
@@ -3026,7 +3763,7 @@ declare module '@polkadot/types/lookup' {
3026
3763
  readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
3027
3764
  }
3028
3765
 
3029
- /** @name PalletTxPauseCall (312) */
3766
+ /** @name PalletTxPauseCall (342) */
3030
3767
  interface PalletTxPauseCall extends Enum {
3031
3768
  readonly isPause: boolean;
3032
3769
  readonly asPause: {
@@ -3039,7 +3776,7 @@ declare module '@polkadot/types/lookup' {
3039
3776
  readonly type: 'Pause' | 'Unpause';
3040
3777
  }
3041
3778
 
3042
- /** @name PalletImOnlineCall (313) */
3779
+ /** @name PalletImOnlineCall (343) */
3043
3780
  interface PalletImOnlineCall extends Enum {
3044
3781
  readonly isHeartbeat: boolean;
3045
3782
  readonly asHeartbeat: {
@@ -3049,7 +3786,7 @@ declare module '@polkadot/types/lookup' {
3049
3786
  readonly type: 'Heartbeat';
3050
3787
  }
3051
3788
 
3052
- /** @name PalletImOnlineHeartbeat (314) */
3789
+ /** @name PalletImOnlineHeartbeat (344) */
3053
3790
  interface PalletImOnlineHeartbeat extends Struct {
3054
3791
  readonly blockNumber: u64;
3055
3792
  readonly sessionIndex: u32;
@@ -3057,13 +3794,13 @@ declare module '@polkadot/types/lookup' {
3057
3794
  readonly validatorsLen: u32;
3058
3795
  }
3059
3796
 
3060
- /** @name PalletImOnlineSr25519AppSr25519Signature (315) */
3797
+ /** @name PalletImOnlineSr25519AppSr25519Signature (345) */
3061
3798
  interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {}
3062
3799
 
3063
- /** @name SpCoreSr25519Signature (316) */
3800
+ /** @name SpCoreSr25519Signature (346) */
3064
3801
  interface SpCoreSr25519Signature extends U8aFixed {}
3065
3802
 
3066
- /** @name PalletIdentityCall (317) */
3803
+ /** @name PalletIdentityCall (347) */
3067
3804
  interface PalletIdentityCall extends Enum {
3068
3805
  readonly isAddRegistrar: boolean;
3069
3806
  readonly asAddRegistrar: {
@@ -3163,7 +3900,7 @@ declare module '@polkadot/types/lookup' {
3163
3900
  readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'AddUsernameAuthority' | 'RemoveUsernameAuthority' | 'SetUsernameFor' | 'AcceptUsername' | 'RemoveExpiredApproval' | 'SetPrimaryUsername' | 'RemoveDanglingUsername';
3164
3901
  }
3165
3902
 
3166
- /** @name PalletIdentityLegacyIdentityInfo (318) */
3903
+ /** @name PalletIdentityLegacyIdentityInfo (348) */
3167
3904
  interface PalletIdentityLegacyIdentityInfo extends Struct {
3168
3905
  readonly additional: Vec<ITuple<[Data, Data]>>;
3169
3906
  readonly display: Data;
@@ -3176,7 +3913,7 @@ declare module '@polkadot/types/lookup' {
3176
3913
  readonly twitter: Data;
3177
3914
  }
3178
3915
 
3179
- /** @name PalletIdentityJudgement (354) */
3916
+ /** @name PalletIdentityJudgement (384) */
3180
3917
  interface PalletIdentityJudgement extends Enum {
3181
3918
  readonly isUnknown: boolean;
3182
3919
  readonly isFeePaid: boolean;
@@ -3189,7 +3926,7 @@ declare module '@polkadot/types/lookup' {
3189
3926
  readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
3190
3927
  }
3191
3928
 
3192
- /** @name SpRuntimeMultiSignature (356) */
3929
+ /** @name SpRuntimeMultiSignature (386) */
3193
3930
  interface SpRuntimeMultiSignature extends Enum {
3194
3931
  readonly isEd25519: boolean;
3195
3932
  readonly asEd25519: SpCoreEd25519Signature;
@@ -3200,10 +3937,10 @@ declare module '@polkadot/types/lookup' {
3200
3937
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3201
3938
  }
3202
3939
 
3203
- /** @name SpCoreEcdsaSignature (357) */
3940
+ /** @name SpCoreEcdsaSignature (387) */
3204
3941
  interface SpCoreEcdsaSignature extends U8aFixed {}
3205
3942
 
3206
- /** @name PalletUtilityCall (359) */
3943
+ /** @name PalletUtilityCall (389) */
3207
3944
  interface PalletUtilityCall extends Enum {
3208
3945
  readonly isBatch: boolean;
3209
3946
  readonly asBatch: {
@@ -3235,7 +3972,7 @@ declare module '@polkadot/types/lookup' {
3235
3972
  readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
3236
3973
  }
3237
3974
 
3238
- /** @name TangleTestnetRuntimeOriginCaller (361) */
3975
+ /** @name TangleTestnetRuntimeOriginCaller (391) */
3239
3976
  interface TangleTestnetRuntimeOriginCaller extends Enum {
3240
3977
  readonly isSystem: boolean;
3241
3978
  readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3247,7 +3984,7 @@ declare module '@polkadot/types/lookup' {
3247
3984
  readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
3248
3985
  }
3249
3986
 
3250
- /** @name FrameSupportDispatchRawOrigin (362) */
3987
+ /** @name FrameSupportDispatchRawOrigin (392) */
3251
3988
  interface FrameSupportDispatchRawOrigin extends Enum {
3252
3989
  readonly isRoot: boolean;
3253
3990
  readonly isSigned: boolean;
@@ -3256,7 +3993,7 @@ declare module '@polkadot/types/lookup' {
3256
3993
  readonly type: 'Root' | 'Signed' | 'None';
3257
3994
  }
3258
3995
 
3259
- /** @name PalletCollectiveRawOrigin (363) */
3996
+ /** @name PalletCollectiveRawOrigin (393) */
3260
3997
  interface PalletCollectiveRawOrigin extends Enum {
3261
3998
  readonly isMembers: boolean;
3262
3999
  readonly asMembers: ITuple<[u32, u32]>;
@@ -3266,14 +4003,14 @@ declare module '@polkadot/types/lookup' {
3266
4003
  readonly type: 'Members' | 'Member' | 'Phantom';
3267
4004
  }
3268
4005
 
3269
- /** @name PalletEthereumRawOrigin (364) */
4006
+ /** @name PalletEthereumRawOrigin (394) */
3270
4007
  interface PalletEthereumRawOrigin extends Enum {
3271
4008
  readonly isEthereumTransaction: boolean;
3272
4009
  readonly asEthereumTransaction: H160;
3273
4010
  readonly type: 'EthereumTransaction';
3274
4011
  }
3275
4012
 
3276
- /** @name PalletMultisigCall (365) */
4013
+ /** @name PalletMultisigCall (395) */
3277
4014
  interface PalletMultisigCall extends Enum {
3278
4015
  readonly isAsMultiThreshold1: boolean;
3279
4016
  readonly asAsMultiThreshold1: {
@@ -3306,7 +4043,7 @@ declare module '@polkadot/types/lookup' {
3306
4043
  readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
3307
4044
  }
3308
4045
 
3309
- /** @name PalletEthereumCall (367) */
4046
+ /** @name PalletEthereumCall (397) */
3310
4047
  interface PalletEthereumCall extends Enum {
3311
4048
  readonly isTransact: boolean;
3312
4049
  readonly asTransact: {
@@ -3315,7 +4052,7 @@ declare module '@polkadot/types/lookup' {
3315
4052
  readonly type: 'Transact';
3316
4053
  }
3317
4054
 
3318
- /** @name EthereumTransactionTransactionV2 (368) */
4055
+ /** @name EthereumTransactionTransactionV2 (398) */
3319
4056
  interface EthereumTransactionTransactionV2 extends Enum {
3320
4057
  readonly isLegacy: boolean;
3321
4058
  readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3326,7 +4063,7 @@ declare module '@polkadot/types/lookup' {
3326
4063
  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3327
4064
  }
3328
4065
 
3329
- /** @name EthereumTransactionLegacyTransaction (369) */
4066
+ /** @name EthereumTransactionLegacyTransaction (399) */
3330
4067
  interface EthereumTransactionLegacyTransaction extends Struct {
3331
4068
  readonly nonce: U256;
3332
4069
  readonly gasPrice: U256;
@@ -3337,7 +4074,7 @@ declare module '@polkadot/types/lookup' {
3337
4074
  readonly signature: EthereumTransactionTransactionSignature;
3338
4075
  }
3339
4076
 
3340
- /** @name EthereumTransactionTransactionAction (370) */
4077
+ /** @name EthereumTransactionTransactionAction (400) */
3341
4078
  interface EthereumTransactionTransactionAction extends Enum {
3342
4079
  readonly isCall: boolean;
3343
4080
  readonly asCall: H160;
@@ -3345,14 +4082,14 @@ declare module '@polkadot/types/lookup' {
3345
4082
  readonly type: 'Call' | 'Create';
3346
4083
  }
3347
4084
 
3348
- /** @name EthereumTransactionTransactionSignature (371) */
4085
+ /** @name EthereumTransactionTransactionSignature (401) */
3349
4086
  interface EthereumTransactionTransactionSignature extends Struct {
3350
4087
  readonly v: u64;
3351
4088
  readonly r: H256;
3352
4089
  readonly s: H256;
3353
4090
  }
3354
4091
 
3355
- /** @name EthereumTransactionEip2930Transaction (373) */
4092
+ /** @name EthereumTransactionEip2930Transaction (403) */
3356
4093
  interface EthereumTransactionEip2930Transaction extends Struct {
3357
4094
  readonly chainId: u64;
3358
4095
  readonly nonce: U256;
@@ -3367,13 +4104,13 @@ declare module '@polkadot/types/lookup' {
3367
4104
  readonly s: H256;
3368
4105
  }
3369
4106
 
3370
- /** @name EthereumTransactionAccessListItem (375) */
4107
+ /** @name EthereumTransactionAccessListItem (405) */
3371
4108
  interface EthereumTransactionAccessListItem extends Struct {
3372
4109
  readonly address: H160;
3373
4110
  readonly storageKeys: Vec<H256>;
3374
4111
  }
3375
4112
 
3376
- /** @name EthereumTransactionEip1559Transaction (376) */
4113
+ /** @name EthereumTransactionEip1559Transaction (406) */
3377
4114
  interface EthereumTransactionEip1559Transaction extends Struct {
3378
4115
  readonly chainId: u64;
3379
4116
  readonly nonce: U256;
@@ -3389,7 +4126,7 @@ declare module '@polkadot/types/lookup' {
3389
4126
  readonly s: H256;
3390
4127
  }
3391
4128
 
3392
- /** @name PalletEvmCall (377) */
4129
+ /** @name PalletEvmCall (407) */
3393
4130
  interface PalletEvmCall extends Enum {
3394
4131
  readonly isWithdraw: boolean;
3395
4132
  readonly asWithdraw: {
@@ -3434,7 +4171,7 @@ declare module '@polkadot/types/lookup' {
3434
4171
  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3435
4172
  }
3436
4173
 
3437
- /** @name PalletDynamicFeeCall (381) */
4174
+ /** @name PalletDynamicFeeCall (411) */
3438
4175
  interface PalletDynamicFeeCall extends Enum {
3439
4176
  readonly isNoteMinGasPriceTarget: boolean;
3440
4177
  readonly asNoteMinGasPriceTarget: {
@@ -3443,7 +4180,7 @@ declare module '@polkadot/types/lookup' {
3443
4180
  readonly type: 'NoteMinGasPriceTarget';
3444
4181
  }
3445
4182
 
3446
- /** @name PalletBaseFeeCall (382) */
4183
+ /** @name PalletBaseFeeCall (412) */
3447
4184
  interface PalletBaseFeeCall extends Enum {
3448
4185
  readonly isSetBaseFeePerGas: boolean;
3449
4186
  readonly asSetBaseFeePerGas: {
@@ -3456,7 +4193,7 @@ declare module '@polkadot/types/lookup' {
3456
4193
  readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
3457
4194
  }
3458
4195
 
3459
- /** @name PalletHotfixSufficientsCall (383) */
4196
+ /** @name PalletHotfixSufficientsCall (413) */
3460
4197
  interface PalletHotfixSufficientsCall extends Enum {
3461
4198
  readonly isHotfixIncAccountSufficients: boolean;
3462
4199
  readonly asHotfixIncAccountSufficients: {
@@ -3465,7 +4202,7 @@ declare module '@polkadot/types/lookup' {
3465
4202
  readonly type: 'HotfixIncAccountSufficients';
3466
4203
  }
3467
4204
 
3468
- /** @name PalletAirdropClaimsCall (385) */
4205
+ /** @name PalletAirdropClaimsCall (415) */
3469
4206
  interface PalletAirdropClaimsCall extends Enum {
3470
4207
  readonly isClaim: boolean;
3471
4208
  readonly asClaim: {
@@ -3497,10 +4234,14 @@ declare module '@polkadot/types/lookup' {
3497
4234
  readonly expiryBlock: u64;
3498
4235
  readonly dest: PalletAirdropClaimsUtilsMultiAddress;
3499
4236
  } & Struct;
3500
- readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig';
4237
+ readonly isClaimSigned: boolean;
4238
+ readonly asClaimSigned: {
4239
+ readonly dest: Option<PalletAirdropClaimsUtilsMultiAddress>;
4240
+ } & Struct;
4241
+ readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig' | 'ClaimSigned';
3501
4242
  }
3502
4243
 
3503
- /** @name PalletAirdropClaimsUtilsMultiAddressSignature (387) */
4244
+ /** @name PalletAirdropClaimsUtilsMultiAddressSignature (417) */
3504
4245
  interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
3505
4246
  readonly isEvm: boolean;
3506
4247
  readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
@@ -3509,20 +4250,20 @@ declare module '@polkadot/types/lookup' {
3509
4250
  readonly type: 'Evm' | 'Native';
3510
4251
  }
3511
4252
 
3512
- /** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (388) */
4253
+ /** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (418) */
3513
4254
  interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {}
3514
4255
 
3515
- /** @name PalletAirdropClaimsUtilsSr25519Signature (389) */
4256
+ /** @name PalletAirdropClaimsUtilsSr25519Signature (419) */
3516
4257
  interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {}
3517
4258
 
3518
- /** @name PalletAirdropClaimsStatementKind (395) */
4259
+ /** @name PalletAirdropClaimsStatementKind (425) */
3519
4260
  interface PalletAirdropClaimsStatementKind extends Enum {
3520
4261
  readonly isRegular: boolean;
3521
4262
  readonly isSafe: boolean;
3522
4263
  readonly type: 'Regular' | 'Safe';
3523
4264
  }
3524
4265
 
3525
- /** @name PalletRolesCall (396) */
4266
+ /** @name PalletRolesCall (426) */
3526
4267
  interface PalletRolesCall extends Enum {
3527
4268
  readonly isCreateProfile: boolean;
3528
4269
  readonly asCreateProfile: {
@@ -3552,7 +4293,7 @@ declare module '@polkadot/types/lookup' {
3552
4293
  readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
3553
4294
  }
3554
4295
 
3555
- /** @name PalletRolesProfile (397) */
4296
+ /** @name PalletRolesProfile (427) */
3556
4297
  interface PalletRolesProfile extends Enum {
3557
4298
  readonly isIndependent: boolean;
3558
4299
  readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
@@ -3561,24 +4302,24 @@ declare module '@polkadot/types/lookup' {
3561
4302
  readonly type: 'Independent' | 'Shared';
3562
4303
  }
3563
4304
 
3564
- /** @name PalletRolesProfileIndependentRestakeProfile (398) */
4305
+ /** @name PalletRolesProfileIndependentRestakeProfile (428) */
3565
4306
  interface PalletRolesProfileIndependentRestakeProfile extends Struct {
3566
4307
  readonly records: Vec<PalletRolesProfileRecord>;
3567
4308
  }
3568
4309
 
3569
- /** @name PalletRolesProfileRecord (400) */
4310
+ /** @name PalletRolesProfileRecord (430) */
3570
4311
  interface PalletRolesProfileRecord extends Struct {
3571
4312
  readonly role: TanglePrimitivesRolesRoleType;
3572
4313
  readonly amount: Option<u128>;
3573
4314
  }
3574
4315
 
3575
- /** @name PalletRolesProfileSharedRestakeProfile (403) */
4316
+ /** @name PalletRolesProfileSharedRestakeProfile (432) */
3576
4317
  interface PalletRolesProfileSharedRestakeProfile extends Struct {
3577
4318
  readonly records: Vec<PalletRolesProfileRecord>;
3578
4319
  readonly amount: u128;
3579
4320
  }
3580
4321
 
3581
- /** @name PalletJobsModuleCall (404) */
4322
+ /** @name PalletJobsModuleCall (433) */
3582
4323
  interface PalletJobsModuleCall extends Enum {
3583
4324
  readonly isSubmitJob: boolean;
3584
4325
  readonly asSubmitJob: {
@@ -3622,7 +4363,7 @@ declare module '@polkadot/types/lookup' {
3622
4363
  readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
3623
4364
  }
3624
4365
 
3625
- /** @name TanglePrimitivesJobsJobResult (405) */
4366
+ /** @name TanglePrimitivesJobsJobResult (434) */
3626
4367
  interface TanglePrimitivesJobsJobResult extends Enum {
3627
4368
  readonly isDkgPhaseOne: boolean;
3628
4369
  readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
@@ -3639,28 +4380,29 @@ declare module '@polkadot/types/lookup' {
3639
4380
  readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
3640
4381
  }
3641
4382
 
3642
- /** @name TangleTestnetRuntimeMaxKeyLen (406) */
4383
+ /** @name TangleTestnetRuntimeMaxKeyLen (435) */
3643
4384
  type TangleTestnetRuntimeMaxKeyLen = Null;
3644
4385
 
3645
- /** @name TangleTestnetRuntimeMaxSignatureLen (407) */
4386
+ /** @name TangleTestnetRuntimeMaxSignatureLen (436) */
3646
4387
  type TangleTestnetRuntimeMaxSignatureLen = Null;
3647
4388
 
3648
- /** @name TangleTestnetRuntimeMaxDataLen (408) */
4389
+ /** @name TangleTestnetRuntimeMaxDataLen (437) */
3649
4390
  type TangleTestnetRuntimeMaxDataLen = Null;
3650
4391
 
3651
- /** @name TangleTestnetRuntimeMaxProofLen (409) */
4392
+ /** @name TangleTestnetRuntimeMaxProofLen (438) */
3652
4393
  type TangleTestnetRuntimeMaxProofLen = Null;
3653
4394
 
3654
- /** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (410) */
4395
+ /** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (439) */
3655
4396
  interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
3656
4397
  readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
3657
4398
  readonly key: Bytes;
4399
+ readonly chainCode: Option<U8aFixed>;
3658
4400
  readonly participants: Vec<Bytes>;
3659
4401
  readonly signatures: Vec<Bytes>;
3660
4402
  readonly threshold: u8;
3661
4403
  }
3662
4404
 
3663
- /** @name TanglePrimitivesJobsTssDigitalSignatureScheme (411) */
4405
+ /** @name TanglePrimitivesJobsTssDigitalSignatureScheme (440) */
3664
4406
  interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
3665
4407
  readonly isEcdsaSecp256k1: boolean;
3666
4408
  readonly isEcdsaSecp256r1: boolean;
@@ -3670,28 +4412,29 @@ declare module '@polkadot/types/lookup' {
3670
4412
  readonly isSchnorrSecp256k1: boolean;
3671
4413
  readonly isSchnorrSr25519: boolean;
3672
4414
  readonly isSchnorrRistretto255: boolean;
3673
- readonly isSchnorrRedJubJub: boolean;
3674
4415
  readonly isSchnorrEd25519: boolean;
3675
4416
  readonly isSchnorrEd448: boolean;
4417
+ readonly isSchnorrTaproot: boolean;
3676
4418
  readonly isBls381: boolean;
3677
- readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrRedJubJub' | 'SchnorrEd25519' | 'SchnorrEd448' | 'Bls381';
4419
+ readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrEd25519' | 'SchnorrEd448' | 'SchnorrTaproot' | 'Bls381';
3678
4420
  }
3679
4421
 
3680
- /** @name TanglePrimitivesJobsTssDkgtssSignatureResult (418) */
4422
+ /** @name TanglePrimitivesJobsTssDkgtssSignatureResult (447) */
3681
4423
  interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
3682
4424
  readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
3683
- readonly derivationPath: Option<Bytes>;
3684
4425
  readonly data: Bytes;
3685
4426
  readonly signature: Bytes;
3686
4427
  readonly verifyingKey: Bytes;
4428
+ readonly derivationPath: Option<Bytes>;
4429
+ readonly chainCode: Option<U8aFixed>;
3687
4430
  }
3688
4431
 
3689
- /** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (420) */
4432
+ /** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (449) */
3690
4433
  interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
3691
4434
  readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
3692
4435
  }
3693
4436
 
3694
- /** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (421) */
4437
+ /** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (450) */
3695
4438
  interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
3696
4439
  readonly phaseOneId: u64;
3697
4440
  readonly newPhaseOneId: u64;
@@ -3700,15 +4443,16 @@ declare module '@polkadot/types/lookup' {
3700
4443
  readonly signature: Bytes;
3701
4444
  readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
3702
4445
  readonly derivationPath: Option<Bytes>;
4446
+ readonly chainCode: Option<U8aFixed>;
3703
4447
  }
3704
4448
 
3705
- /** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (422) */
4449
+ /** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (451) */
3706
4450
  interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
3707
4451
  readonly jobId: u64;
3708
4452
  readonly participants: Vec<SpCoreEcdsaPublic>;
3709
4453
  }
3710
4454
 
3711
- /** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (425) */
4455
+ /** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (454) */
3712
4456
  interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
3713
4457
  readonly isArkworks: boolean;
3714
4458
  readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
@@ -3717,17 +4461,17 @@ declare module '@polkadot/types/lookup' {
3717
4461
  readonly type: 'Arkworks' | 'Circom';
3718
4462
  }
3719
4463
 
3720
- /** @name TanglePrimitivesJobsZksaasArkworksProofResult (426) */
4464
+ /** @name TanglePrimitivesJobsZksaasArkworksProofResult (455) */
3721
4465
  interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
3722
4466
  readonly proof: Bytes;
3723
4467
  }
3724
4468
 
3725
- /** @name TanglePrimitivesJobsZksaasCircomProofResult (428) */
4469
+ /** @name TanglePrimitivesJobsZksaasCircomProofResult (457) */
3726
4470
  interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
3727
4471
  readonly proof: Bytes;
3728
4472
  }
3729
4473
 
3730
- /** @name TanglePrimitivesJobsValidatorOffenceType (429) */
4474
+ /** @name TanglePrimitivesJobsValidatorOffenceType (458) */
3731
4475
  interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
3732
4476
  readonly isInactivity: boolean;
3733
4477
  readonly isInvalidSignatureSubmitted: boolean;
@@ -3736,7 +4480,7 @@ declare module '@polkadot/types/lookup' {
3736
4480
  readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
3737
4481
  }
3738
4482
 
3739
- /** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (430) */
4483
+ /** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (459) */
3740
4484
  interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
3741
4485
  readonly roleType: TanglePrimitivesRolesRoleType;
3742
4486
  readonly offender: U8aFixed;
@@ -3744,7 +4488,7 @@ declare module '@polkadot/types/lookup' {
3744
4488
  readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
3745
4489
  }
3746
4490
 
3747
- /** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (431) */
4491
+ /** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (460) */
3748
4492
  interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
3749
4493
  readonly isDkgtss: boolean;
3750
4494
  readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
@@ -3752,7 +4496,7 @@ declare module '@polkadot/types/lookup' {
3752
4496
  readonly type: 'Dkgtss' | 'ZkSaaS';
3753
4497
  }
3754
4498
 
3755
- /** @name TanglePrimitivesMisbehaviorDkgtssJustification (432) */
4499
+ /** @name TanglePrimitivesMisbehaviorDkgtssJustification (461) */
3756
4500
  interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
3757
4501
  readonly isDfnsCGGMP21: boolean;
3758
4502
  readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
@@ -3761,7 +4505,7 @@ declare module '@polkadot/types/lookup' {
3761
4505
  readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
3762
4506
  }
3763
4507
 
3764
- /** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (433) */
4508
+ /** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (462) */
3765
4509
  interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
3766
4510
  readonly isKeygen: boolean;
3767
4511
  readonly asKeygen: {
@@ -3784,7 +4528,7 @@ declare module '@polkadot/types/lookup' {
3784
4528
  readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
3785
4529
  }
3786
4530
 
3787
- /** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (435) */
4531
+ /** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (464) */
3788
4532
  interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
3789
4533
  readonly isInvalidDecommitment: boolean;
3790
4534
  readonly asInvalidDecommitment: {
@@ -3808,14 +4552,14 @@ declare module '@polkadot/types/lookup' {
3808
4552
  readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
3809
4553
  }
3810
4554
 
3811
- /** @name TanglePrimitivesMisbehaviorSignedRoundMessage (436) */
4555
+ /** @name TanglePrimitivesMisbehaviorSignedRoundMessage (465) */
3812
4556
  interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
3813
4557
  readonly sender: u16;
3814
4558
  readonly message: Bytes;
3815
4559
  readonly signature: Bytes;
3816
4560
  }
3817
4561
 
3818
- /** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (438) */
4562
+ /** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (467) */
3819
4563
  interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
3820
4564
  readonly isInvalidDecommitment: boolean;
3821
4565
  readonly asInvalidDecommitment: {
@@ -3841,7 +4585,7 @@ declare module '@polkadot/types/lookup' {
3841
4585
  readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
3842
4586
  }
3843
4587
 
3844
- /** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (439) */
4588
+ /** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (468) */
3845
4589
  interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
3846
4590
  readonly isEqualityCheck: boolean;
3847
4591
  readonly asEqualityCheck: u8;
@@ -3860,7 +4604,7 @@ declare module '@polkadot/types/lookup' {
3860
4604
  readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
3861
4605
  }
3862
4606
 
3863
- /** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (440) */
4607
+ /** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (469) */
3864
4608
  interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
3865
4609
  readonly isEncProofOfK: boolean;
3866
4610
  readonly isInvalidPsi: boolean;
@@ -3869,7 +4613,7 @@ declare module '@polkadot/types/lookup' {
3869
4613
  readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
3870
4614
  }
3871
4615
 
3872
- /** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (441) */
4616
+ /** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (470) */
3873
4617
  interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
3874
4618
  readonly isKeygen: boolean;
3875
4619
  readonly asKeygen: {
@@ -3886,7 +4630,7 @@ declare module '@polkadot/types/lookup' {
3886
4630
  readonly type: 'Keygen' | 'Signing';
3887
4631
  }
3888
4632
 
3889
- /** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (442) */
4633
+ /** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (471) */
3890
4634
  interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
3891
4635
  readonly isInvalidProofOfKnowledge: boolean;
3892
4636
  readonly asInvalidProofOfKnowledge: {
@@ -3900,7 +4644,7 @@ declare module '@polkadot/types/lookup' {
3900
4644
  readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
3901
4645
  }
3902
4646
 
3903
- /** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (443) */
4647
+ /** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (472) */
3904
4648
  interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
3905
4649
  readonly isInvalidSignatureShare: boolean;
3906
4650
  readonly asInvalidSignatureShare: {
@@ -3910,10 +4654,10 @@ declare module '@polkadot/types/lookup' {
3910
4654
  readonly type: 'InvalidSignatureShare';
3911
4655
  }
3912
4656
 
3913
- /** @name TanglePrimitivesMisbehaviorZkSaaSJustification (444) */
4657
+ /** @name TanglePrimitivesMisbehaviorZkSaaSJustification (473) */
3914
4658
  type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
3915
4659
 
3916
- /** @name PalletDkgCall (445) */
4660
+ /** @name PalletDkgCall (474) */
3917
4661
  interface PalletDkgCall extends Enum {
3918
4662
  readonly isSetFee: boolean;
3919
4663
  readonly asSetFee: {
@@ -3922,7 +4666,7 @@ declare module '@polkadot/types/lookup' {
3922
4666
  readonly type: 'SetFee';
3923
4667
  }
3924
4668
 
3925
- /** @name PalletZksaasCall (446) */
4669
+ /** @name PalletZksaasCall (475) */
3926
4670
  interface PalletZksaasCall extends Enum {
3927
4671
  readonly isSetFee: boolean;
3928
4672
  readonly asSetFee: {
@@ -3931,20 +4675,368 @@ declare module '@polkadot/types/lookup' {
3931
4675
  readonly type: 'SetFee';
3932
4676
  }
3933
4677
 
3934
- /** @name PalletSudoError (447) */
4678
+ /** @name PalletProxyCall (476) */
4679
+ interface PalletProxyCall extends Enum {
4680
+ readonly isProxy: boolean;
4681
+ readonly asProxy: {
4682
+ readonly real: MultiAddress;
4683
+ readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
4684
+ readonly call: Call;
4685
+ } & Struct;
4686
+ readonly isAddProxy: boolean;
4687
+ readonly asAddProxy: {
4688
+ readonly delegate: MultiAddress;
4689
+ readonly proxyType: TangleTestnetRuntimeProxyType;
4690
+ readonly delay: u64;
4691
+ } & Struct;
4692
+ readonly isRemoveProxy: boolean;
4693
+ readonly asRemoveProxy: {
4694
+ readonly delegate: MultiAddress;
4695
+ readonly proxyType: TangleTestnetRuntimeProxyType;
4696
+ readonly delay: u64;
4697
+ } & Struct;
4698
+ readonly isRemoveProxies: boolean;
4699
+ readonly isCreatePure: boolean;
4700
+ readonly asCreatePure: {
4701
+ readonly proxyType: TangleTestnetRuntimeProxyType;
4702
+ readonly delay: u64;
4703
+ readonly index: u16;
4704
+ } & Struct;
4705
+ readonly isKillPure: boolean;
4706
+ readonly asKillPure: {
4707
+ readonly spawner: MultiAddress;
4708
+ readonly proxyType: TangleTestnetRuntimeProxyType;
4709
+ readonly index: u16;
4710
+ readonly height: Compact<u64>;
4711
+ readonly extIndex: Compact<u32>;
4712
+ } & Struct;
4713
+ readonly isAnnounce: boolean;
4714
+ readonly asAnnounce: {
4715
+ readonly real: MultiAddress;
4716
+ readonly callHash: H256;
4717
+ } & Struct;
4718
+ readonly isRemoveAnnouncement: boolean;
4719
+ readonly asRemoveAnnouncement: {
4720
+ readonly real: MultiAddress;
4721
+ readonly callHash: H256;
4722
+ } & Struct;
4723
+ readonly isRejectAnnouncement: boolean;
4724
+ readonly asRejectAnnouncement: {
4725
+ readonly delegate: MultiAddress;
4726
+ readonly callHash: H256;
4727
+ } & Struct;
4728
+ readonly isProxyAnnounced: boolean;
4729
+ readonly asProxyAnnounced: {
4730
+ readonly delegate: MultiAddress;
4731
+ readonly real: MultiAddress;
4732
+ readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
4733
+ readonly call: Call;
4734
+ } & Struct;
4735
+ readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
4736
+ }
4737
+
4738
+ /** @name PalletMultiAssetDelegationCall (478) */
4739
+ interface PalletMultiAssetDelegationCall extends Enum {
4740
+ readonly isJoinOperators: boolean;
4741
+ readonly asJoinOperators: {
4742
+ readonly bondAmount: u128;
4743
+ } & Struct;
4744
+ readonly isScheduleLeaveOperators: boolean;
4745
+ readonly isCancelLeaveOperators: boolean;
4746
+ readonly isExecuteLeaveOperators: boolean;
4747
+ readonly isOperatorBondMore: boolean;
4748
+ readonly asOperatorBondMore: {
4749
+ readonly additionalBond: u128;
4750
+ } & Struct;
4751
+ readonly isScheduleOperatorBondLess: boolean;
4752
+ readonly asScheduleOperatorBondLess: {
4753
+ readonly bondLessAmount: u128;
4754
+ } & Struct;
4755
+ readonly isExecuteOperatorBondLess: boolean;
4756
+ readonly isCancelOperatorBondLess: boolean;
4757
+ readonly isGoOffline: boolean;
4758
+ readonly isGoOnline: boolean;
4759
+ readonly isDeposit: boolean;
4760
+ readonly asDeposit: {
4761
+ readonly assetId: Option<u128>;
4762
+ readonly amount: u128;
4763
+ } & Struct;
4764
+ readonly isScheduleUnstake: boolean;
4765
+ readonly asScheduleUnstake: {
4766
+ readonly assetId: Option<u128>;
4767
+ readonly amount: u128;
4768
+ } & Struct;
4769
+ readonly isExecuteUnstake: boolean;
4770
+ readonly isCancelUnstake: boolean;
4771
+ readonly isDelegate: boolean;
4772
+ readonly asDelegate: {
4773
+ readonly operator: AccountId32;
4774
+ readonly assetId: u128;
4775
+ readonly amount: u128;
4776
+ } & Struct;
4777
+ readonly isScheduleDelegatorBondLess: boolean;
4778
+ readonly asScheduleDelegatorBondLess: {
4779
+ readonly operator: AccountId32;
4780
+ readonly assetId: u128;
4781
+ readonly amount: u128;
4782
+ } & Struct;
4783
+ readonly isExecuteDelegatorBondLess: boolean;
4784
+ readonly isCancelDelegatorBondLess: boolean;
4785
+ readonly isSetWhitelistedAssets: boolean;
4786
+ readonly asSetWhitelistedAssets: {
4787
+ readonly assets: Vec<u128>;
4788
+ } & Struct;
4789
+ readonly isSetIncentiveApyAndCap: boolean;
4790
+ readonly asSetIncentiveApyAndCap: {
4791
+ readonly assetId: u128;
4792
+ readonly apy: u128;
4793
+ readonly cap: u128;
4794
+ } & Struct;
4795
+ readonly isWhitelistBlueprintForRewards: boolean;
4796
+ readonly asWhitelistBlueprintForRewards: {
4797
+ readonly blueprintId: u32;
4798
+ } & Struct;
4799
+ readonly type: 'JoinOperators' | 'ScheduleLeaveOperators' | 'CancelLeaveOperators' | 'ExecuteLeaveOperators' | 'OperatorBondMore' | 'ScheduleOperatorBondLess' | 'ExecuteOperatorBondLess' | 'CancelOperatorBondLess' | 'GoOffline' | 'GoOnline' | 'Deposit' | 'ScheduleUnstake' | 'ExecuteUnstake' | 'CancelUnstake' | 'Delegate' | 'ScheduleDelegatorBondLess' | 'ExecuteDelegatorBondLess' | 'CancelDelegatorBondLess' | 'SetWhitelistedAssets' | 'SetIncentiveApyAndCap' | 'WhitelistBlueprintForRewards';
4800
+ }
4801
+
4802
+ /** @name SygmaAccessSegregatorCall (479) */
4803
+ interface SygmaAccessSegregatorCall extends Enum {
4804
+ readonly isGrantAccess: boolean;
4805
+ readonly asGrantAccess: {
4806
+ readonly palletIndex: u8;
4807
+ readonly extrinsicName: Bytes;
4808
+ readonly who: AccountId32;
4809
+ } & Struct;
4810
+ readonly type: 'GrantAccess';
4811
+ }
4812
+
4813
+ /** @name SygmaBasicFeehandlerCall (480) */
4814
+ interface SygmaBasicFeehandlerCall extends Enum {
4815
+ readonly isSetFee: boolean;
4816
+ readonly asSetFee: {
4817
+ readonly domain: u8;
4818
+ readonly asset: StagingXcmV4AssetAssetId;
4819
+ readonly amount: u128;
4820
+ } & Struct;
4821
+ readonly type: 'SetFee';
4822
+ }
4823
+
4824
+ /** @name SygmaFeeHandlerRouterCall (481) */
4825
+ interface SygmaFeeHandlerRouterCall extends Enum {
4826
+ readonly isSetFeeHandler: boolean;
4827
+ readonly asSetFeeHandler: {
4828
+ readonly domain: u8;
4829
+ readonly asset: StagingXcmV4AssetAssetId;
4830
+ readonly handlerType: SygmaFeeHandlerRouterFeeHandlerType;
4831
+ } & Struct;
4832
+ readonly type: 'SetFeeHandler';
4833
+ }
4834
+
4835
+ /** @name SygmaPercentageFeehandlerCall (482) */
4836
+ interface SygmaPercentageFeehandlerCall extends Enum {
4837
+ readonly isSetFeeRate: boolean;
4838
+ readonly asSetFeeRate: {
4839
+ readonly domain: u8;
4840
+ readonly asset: StagingXcmV4AssetAssetId;
4841
+ readonly feeRateBasisPoint: u32;
4842
+ readonly feeLowerBound: u128;
4843
+ readonly feeUpperBound: u128;
4844
+ } & Struct;
4845
+ readonly type: 'SetFeeRate';
4846
+ }
4847
+
4848
+ /** @name SygmaBridgeCall (483) */
4849
+ interface SygmaBridgeCall extends Enum {
4850
+ readonly isPauseBridge: boolean;
4851
+ readonly asPauseBridge: {
4852
+ readonly destDomainId: u8;
4853
+ } & Struct;
4854
+ readonly isUnpauseBridge: boolean;
4855
+ readonly asUnpauseBridge: {
4856
+ readonly destDomainId: u8;
4857
+ } & Struct;
4858
+ readonly isSetMpcAddress: boolean;
4859
+ readonly asSetMpcAddress: {
4860
+ readonly addr: SygmaTraitsMpcAddress;
4861
+ } & Struct;
4862
+ readonly isRegisterDomain: boolean;
4863
+ readonly asRegisterDomain: {
4864
+ readonly destDomainId: u8;
4865
+ readonly destChainId: U256;
4866
+ } & Struct;
4867
+ readonly isUnregisterDomain: boolean;
4868
+ readonly asUnregisterDomain: {
4869
+ readonly destDomainId: u8;
4870
+ readonly destChainId: U256;
4871
+ } & Struct;
4872
+ readonly isDeposit: boolean;
4873
+ readonly asDeposit: {
4874
+ readonly asset: StagingXcmV4Asset;
4875
+ readonly dest: StagingXcmV4Location;
4876
+ } & Struct;
4877
+ readonly isRetry: boolean;
4878
+ readonly asRetry: {
4879
+ readonly depositOnBlockHeight: u128;
4880
+ readonly destDomainId: u8;
4881
+ } & Struct;
4882
+ readonly isExecuteProposal: boolean;
4883
+ readonly asExecuteProposal: {
4884
+ readonly proposals: Vec<SygmaBridgeProposal>;
4885
+ readonly signature: Bytes;
4886
+ } & Struct;
4887
+ readonly isPauseAllBridges: boolean;
4888
+ readonly isUnpauseAllBridges: boolean;
4889
+ readonly type: 'PauseBridge' | 'UnpauseBridge' | 'SetMpcAddress' | 'RegisterDomain' | 'UnregisterDomain' | 'Deposit' | 'Retry' | 'ExecuteProposal' | 'PauseAllBridges' | 'UnpauseAllBridges';
4890
+ }
4891
+
4892
+ /** @name SygmaTraitsMpcAddress (484) */
4893
+ interface SygmaTraitsMpcAddress extends U8aFixed {}
4894
+
4895
+ /** @name StagingXcmV4Asset (485) */
4896
+ interface StagingXcmV4Asset extends Struct {
4897
+ readonly id: StagingXcmV4AssetAssetId;
4898
+ readonly fun: StagingXcmV4AssetFungibility;
4899
+ }
4900
+
4901
+ /** @name StagingXcmV4AssetFungibility (486) */
4902
+ interface StagingXcmV4AssetFungibility extends Enum {
4903
+ readonly isFungible: boolean;
4904
+ readonly asFungible: Compact<u128>;
4905
+ readonly isNonFungible: boolean;
4906
+ readonly asNonFungible: StagingXcmV4AssetAssetInstance;
4907
+ readonly type: 'Fungible' | 'NonFungible';
4908
+ }
4909
+
4910
+ /** @name StagingXcmV4AssetAssetInstance (487) */
4911
+ interface StagingXcmV4AssetAssetInstance extends Enum {
4912
+ readonly isUndefined: boolean;
4913
+ readonly isIndex: boolean;
4914
+ readonly asIndex: Compact<u128>;
4915
+ readonly isArray4: boolean;
4916
+ readonly asArray4: U8aFixed;
4917
+ readonly isArray8: boolean;
4918
+ readonly asArray8: U8aFixed;
4919
+ readonly isArray16: boolean;
4920
+ readonly asArray16: U8aFixed;
4921
+ readonly isArray32: boolean;
4922
+ readonly asArray32: U8aFixed;
4923
+ readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
4924
+ }
4925
+
4926
+ /** @name SygmaBridgeProposal (489) */
4927
+ interface SygmaBridgeProposal extends Struct {
4928
+ readonly originDomainId: u8;
4929
+ readonly depositNonce: u64;
4930
+ readonly resourceId: U8aFixed;
4931
+ readonly data: Bytes;
4932
+ }
4933
+
4934
+ /** @name PalletSudoError (490) */
3935
4935
  interface PalletSudoError extends Enum {
3936
4936
  readonly isRequireSudo: boolean;
3937
4937
  readonly type: 'RequireSudo';
3938
4938
  }
3939
4939
 
3940
- /** @name PalletBalancesBalanceLock (450) */
4940
+ /** @name PalletAssetsAssetDetails (492) */
4941
+ interface PalletAssetsAssetDetails extends Struct {
4942
+ readonly owner: AccountId32;
4943
+ readonly issuer: AccountId32;
4944
+ readonly admin: AccountId32;
4945
+ readonly freezer: AccountId32;
4946
+ readonly supply: u128;
4947
+ readonly deposit: u128;
4948
+ readonly minBalance: u128;
4949
+ readonly isSufficient: bool;
4950
+ readonly accounts: u32;
4951
+ readonly sufficients: u32;
4952
+ readonly approvals: u32;
4953
+ readonly status: PalletAssetsAssetStatus;
4954
+ }
4955
+
4956
+ /** @name PalletAssetsAssetStatus (493) */
4957
+ interface PalletAssetsAssetStatus extends Enum {
4958
+ readonly isLive: boolean;
4959
+ readonly isFrozen: boolean;
4960
+ readonly isDestroying: boolean;
4961
+ readonly type: 'Live' | 'Frozen' | 'Destroying';
4962
+ }
4963
+
4964
+ /** @name PalletAssetsAssetAccount (495) */
4965
+ interface PalletAssetsAssetAccount extends Struct {
4966
+ readonly balance: u128;
4967
+ readonly status: PalletAssetsAccountStatus;
4968
+ readonly reason: PalletAssetsExistenceReason;
4969
+ readonly extra: Null;
4970
+ }
4971
+
4972
+ /** @name PalletAssetsAccountStatus (496) */
4973
+ interface PalletAssetsAccountStatus extends Enum {
4974
+ readonly isLiquid: boolean;
4975
+ readonly isFrozen: boolean;
4976
+ readonly isBlocked: boolean;
4977
+ readonly type: 'Liquid' | 'Frozen' | 'Blocked';
4978
+ }
4979
+
4980
+ /** @name PalletAssetsExistenceReason (497) */
4981
+ interface PalletAssetsExistenceReason extends Enum {
4982
+ readonly isConsumer: boolean;
4983
+ readonly isSufficient: boolean;
4984
+ readonly isDepositHeld: boolean;
4985
+ readonly asDepositHeld: u128;
4986
+ readonly isDepositRefunded: boolean;
4987
+ readonly isDepositFrom: boolean;
4988
+ readonly asDepositFrom: ITuple<[AccountId32, u128]>;
4989
+ readonly type: 'Consumer' | 'Sufficient' | 'DepositHeld' | 'DepositRefunded' | 'DepositFrom';
4990
+ }
4991
+
4992
+ /** @name PalletAssetsApproval (499) */
4993
+ interface PalletAssetsApproval extends Struct {
4994
+ readonly amount: u128;
4995
+ readonly deposit: u128;
4996
+ }
4997
+
4998
+ /** @name PalletAssetsAssetMetadata (500) */
4999
+ interface PalletAssetsAssetMetadata extends Struct {
5000
+ readonly deposit: u128;
5001
+ readonly name: Bytes;
5002
+ readonly symbol: Bytes;
5003
+ readonly decimals: u8;
5004
+ readonly isFrozen: bool;
5005
+ }
5006
+
5007
+ /** @name PalletAssetsError (502) */
5008
+ interface PalletAssetsError extends Enum {
5009
+ readonly isBalanceLow: boolean;
5010
+ readonly isNoAccount: boolean;
5011
+ readonly isNoPermission: boolean;
5012
+ readonly isUnknown: boolean;
5013
+ readonly isFrozen: boolean;
5014
+ readonly isInUse: boolean;
5015
+ readonly isBadWitness: boolean;
5016
+ readonly isMinBalanceZero: boolean;
5017
+ readonly isUnavailableConsumer: boolean;
5018
+ readonly isBadMetadata: boolean;
5019
+ readonly isUnapproved: boolean;
5020
+ readonly isWouldDie: boolean;
5021
+ readonly isAlreadyExists: boolean;
5022
+ readonly isNoDeposit: boolean;
5023
+ readonly isWouldBurn: boolean;
5024
+ readonly isLiveAsset: boolean;
5025
+ readonly isAssetNotLive: boolean;
5026
+ readonly isIncorrectStatus: boolean;
5027
+ readonly isNotFrozen: boolean;
5028
+ readonly isCallbackFailed: boolean;
5029
+ readonly type: 'BalanceLow' | 'NoAccount' | 'NoPermission' | 'Unknown' | 'Frozen' | 'InUse' | 'BadWitness' | 'MinBalanceZero' | 'UnavailableConsumer' | 'BadMetadata' | 'Unapproved' | 'WouldDie' | 'AlreadyExists' | 'NoDeposit' | 'WouldBurn' | 'LiveAsset' | 'AssetNotLive' | 'IncorrectStatus' | 'NotFrozen' | 'CallbackFailed';
5030
+ }
5031
+
5032
+ /** @name PalletBalancesBalanceLock (504) */
3941
5033
  interface PalletBalancesBalanceLock extends Struct {
3942
5034
  readonly id: U8aFixed;
3943
5035
  readonly amount: u128;
3944
5036
  readonly reasons: PalletBalancesReasons;
3945
5037
  }
3946
5038
 
3947
- /** @name PalletBalancesReasons (451) */
5039
+ /** @name PalletBalancesReasons (505) */
3948
5040
  interface PalletBalancesReasons extends Enum {
3949
5041
  readonly isFee: boolean;
3950
5042
  readonly isMisc: boolean;
@@ -3952,51 +5044,51 @@ declare module '@polkadot/types/lookup' {
3952
5044
  readonly type: 'Fee' | 'Misc' | 'All';
3953
5045
  }
3954
5046
 
3955
- /** @name PalletBalancesReserveData (454) */
5047
+ /** @name PalletBalancesReserveData (508) */
3956
5048
  interface PalletBalancesReserveData extends Struct {
3957
5049
  readonly id: U8aFixed;
3958
5050
  readonly amount: u128;
3959
5051
  }
3960
5052
 
3961
- /** @name PalletBalancesIdAmountRuntimeHoldReason (457) */
5053
+ /** @name PalletBalancesIdAmountRuntimeHoldReason (511) */
3962
5054
  interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
3963
5055
  readonly id: TangleTestnetRuntimeRuntimeHoldReason;
3964
5056
  readonly amount: u128;
3965
5057
  }
3966
5058
 
3967
- /** @name TangleTestnetRuntimeRuntimeHoldReason (458) */
5059
+ /** @name TangleTestnetRuntimeRuntimeHoldReason (512) */
3968
5060
  interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
3969
5061
  readonly isPreimage: boolean;
3970
5062
  readonly asPreimage: PalletPreimageHoldReason;
3971
5063
  readonly type: 'Preimage';
3972
5064
  }
3973
5065
 
3974
- /** @name PalletPreimageHoldReason (459) */
5066
+ /** @name PalletPreimageHoldReason (513) */
3975
5067
  interface PalletPreimageHoldReason extends Enum {
3976
5068
  readonly isPreimage: boolean;
3977
5069
  readonly type: 'Preimage';
3978
5070
  }
3979
5071
 
3980
- /** @name PalletBalancesIdAmountRuntimeFreezeReason (462) */
5072
+ /** @name PalletBalancesIdAmountRuntimeFreezeReason (516) */
3981
5073
  interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
3982
5074
  readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
3983
5075
  readonly amount: u128;
3984
5076
  }
3985
5077
 
3986
- /** @name TangleTestnetRuntimeRuntimeFreezeReason (463) */
5078
+ /** @name TangleTestnetRuntimeRuntimeFreezeReason (517) */
3987
5079
  interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
3988
5080
  readonly isNominationPools: boolean;
3989
5081
  readonly asNominationPools: PalletNominationPoolsFreezeReason;
3990
5082
  readonly type: 'NominationPools';
3991
5083
  }
3992
5084
 
3993
- /** @name PalletNominationPoolsFreezeReason (464) */
5085
+ /** @name PalletNominationPoolsFreezeReason (518) */
3994
5086
  interface PalletNominationPoolsFreezeReason extends Enum {
3995
5087
  readonly isPoolMinBalance: boolean;
3996
5088
  readonly type: 'PoolMinBalance';
3997
5089
  }
3998
5090
 
3999
- /** @name PalletBalancesError (466) */
5091
+ /** @name PalletBalancesError (520) */
4000
5092
  interface PalletBalancesError extends Enum {
4001
5093
  readonly isVestingBalance: boolean;
4002
5094
  readonly isLiquidityRestrictions: boolean;
@@ -4013,14 +5105,14 @@ declare module '@polkadot/types/lookup' {
4013
5105
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
4014
5106
  }
4015
5107
 
4016
- /** @name PalletTransactionPaymentReleases (468) */
5108
+ /** @name PalletTransactionPaymentReleases (522) */
4017
5109
  interface PalletTransactionPaymentReleases extends Enum {
4018
5110
  readonly isV1Ancient: boolean;
4019
5111
  readonly isV2: boolean;
4020
5112
  readonly type: 'V1Ancient' | 'V2';
4021
5113
  }
4022
5114
 
4023
- /** @name SpConsensusBabeDigestsPreDigest (475) */
5115
+ /** @name SpConsensusBabeDigestsPreDigest (529) */
4024
5116
  interface SpConsensusBabeDigestsPreDigest extends Enum {
4025
5117
  readonly isPrimary: boolean;
4026
5118
  readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
@@ -4031,39 +5123,39 @@ declare module '@polkadot/types/lookup' {
4031
5123
  readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
4032
5124
  }
4033
5125
 
4034
- /** @name SpConsensusBabeDigestsPrimaryPreDigest (476) */
5126
+ /** @name SpConsensusBabeDigestsPrimaryPreDigest (530) */
4035
5127
  interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
4036
5128
  readonly authorityIndex: u32;
4037
5129
  readonly slot: u64;
4038
5130
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
4039
5131
  }
4040
5132
 
4041
- /** @name SpCoreSr25519VrfVrfSignature (477) */
5133
+ /** @name SpCoreSr25519VrfVrfSignature (531) */
4042
5134
  interface SpCoreSr25519VrfVrfSignature extends Struct {
4043
5135
  readonly preOutput: U8aFixed;
4044
5136
  readonly proof: U8aFixed;
4045
5137
  }
4046
5138
 
4047
- /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (478) */
5139
+ /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (532) */
4048
5140
  interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
4049
5141
  readonly authorityIndex: u32;
4050
5142
  readonly slot: u64;
4051
5143
  }
4052
5144
 
4053
- /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (479) */
5145
+ /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (533) */
4054
5146
  interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
4055
5147
  readonly authorityIndex: u32;
4056
5148
  readonly slot: u64;
4057
5149
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
4058
5150
  }
4059
5151
 
4060
- /** @name SpConsensusBabeBabeEpochConfiguration (480) */
5152
+ /** @name SpConsensusBabeBabeEpochConfiguration (534) */
4061
5153
  interface SpConsensusBabeBabeEpochConfiguration extends Struct {
4062
5154
  readonly c: ITuple<[u64, u64]>;
4063
5155
  readonly allowedSlots: SpConsensusBabeAllowedSlots;
4064
5156
  }
4065
5157
 
4066
- /** @name PalletBabeError (482) */
5158
+ /** @name PalletBabeError (536) */
4067
5159
  interface PalletBabeError extends Enum {
4068
5160
  readonly isInvalidEquivocationProof: boolean;
4069
5161
  readonly isInvalidKeyOwnershipProof: boolean;
@@ -4072,7 +5164,7 @@ declare module '@polkadot/types/lookup' {
4072
5164
  readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
4073
5165
  }
4074
5166
 
4075
- /** @name PalletGrandpaStoredState (483) */
5167
+ /** @name PalletGrandpaStoredState (537) */
4076
5168
  interface PalletGrandpaStoredState extends Enum {
4077
5169
  readonly isLive: boolean;
4078
5170
  readonly isPendingPause: boolean;
@@ -4089,7 +5181,7 @@ declare module '@polkadot/types/lookup' {
4089
5181
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4090
5182
  }
4091
5183
 
4092
- /** @name PalletGrandpaStoredPendingChange (484) */
5184
+ /** @name PalletGrandpaStoredPendingChange (538) */
4093
5185
  interface PalletGrandpaStoredPendingChange extends Struct {
4094
5186
  readonly scheduledAt: u64;
4095
5187
  readonly delay: u64;
@@ -4097,7 +5189,7 @@ declare module '@polkadot/types/lookup' {
4097
5189
  readonly forced: Option<u64>;
4098
5190
  }
4099
5191
 
4100
- /** @name PalletGrandpaError (486) */
5192
+ /** @name PalletGrandpaError (540) */
4101
5193
  interface PalletGrandpaError extends Enum {
4102
5194
  readonly isPauseFailed: boolean;
4103
5195
  readonly isResumeFailed: boolean;
@@ -4109,7 +5201,7 @@ declare module '@polkadot/types/lookup' {
4109
5201
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
4110
5202
  }
4111
5203
 
4112
- /** @name PalletIndicesError (488) */
5204
+ /** @name PalletIndicesError (542) */
4113
5205
  interface PalletIndicesError extends Enum {
4114
5206
  readonly isNotAssigned: boolean;
4115
5207
  readonly isNotOwner: boolean;
@@ -4119,7 +5211,7 @@ declare module '@polkadot/types/lookup' {
4119
5211
  readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
4120
5212
  }
4121
5213
 
4122
- /** @name PalletDemocracyReferendumInfo (493) */
5214
+ /** @name PalletDemocracyReferendumInfo (547) */
4123
5215
  interface PalletDemocracyReferendumInfo extends Enum {
4124
5216
  readonly isOngoing: boolean;
4125
5217
  readonly asOngoing: PalletDemocracyReferendumStatus;
@@ -4131,7 +5223,7 @@ declare module '@polkadot/types/lookup' {
4131
5223
  readonly type: 'Ongoing' | 'Finished';
4132
5224
  }
4133
5225
 
4134
- /** @name PalletDemocracyReferendumStatus (494) */
5226
+ /** @name PalletDemocracyReferendumStatus (548) */
4135
5227
  interface PalletDemocracyReferendumStatus extends Struct {
4136
5228
  readonly end: u64;
4137
5229
  readonly proposal: FrameSupportPreimagesBounded;
@@ -4140,14 +5232,14 @@ declare module '@polkadot/types/lookup' {
4140
5232
  readonly tally: PalletDemocracyTally;
4141
5233
  }
4142
5234
 
4143
- /** @name PalletDemocracyTally (495) */
5235
+ /** @name PalletDemocracyTally (549) */
4144
5236
  interface PalletDemocracyTally extends Struct {
4145
5237
  readonly ayes: u128;
4146
5238
  readonly nays: u128;
4147
5239
  readonly turnout: u128;
4148
5240
  }
4149
5241
 
4150
- /** @name PalletDemocracyVoteVoting (496) */
5242
+ /** @name PalletDemocracyVoteVoting (550) */
4151
5243
  interface PalletDemocracyVoteVoting extends Enum {
4152
5244
  readonly isDirect: boolean;
4153
5245
  readonly asDirect: {
@@ -4166,16 +5258,16 @@ declare module '@polkadot/types/lookup' {
4166
5258
  readonly type: 'Direct' | 'Delegating';
4167
5259
  }
4168
5260
 
4169
- /** @name PalletDemocracyDelegations (500) */
5261
+ /** @name PalletDemocracyDelegations (554) */
4170
5262
  interface PalletDemocracyDelegations extends Struct {
4171
5263
  readonly votes: u128;
4172
5264
  readonly capital: u128;
4173
5265
  }
4174
5266
 
4175
- /** @name PalletDemocracyVotePriorLock (501) */
5267
+ /** @name PalletDemocracyVotePriorLock (555) */
4176
5268
  interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {}
4177
5269
 
4178
- /** @name PalletDemocracyError (504) */
5270
+ /** @name PalletDemocracyError (558) */
4179
5271
  interface PalletDemocracyError extends Enum {
4180
5272
  readonly isValueLow: boolean;
4181
5273
  readonly isProposalMissing: boolean;
@@ -4204,7 +5296,7 @@ declare module '@polkadot/types/lookup' {
4204
5296
  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';
4205
5297
  }
4206
5298
 
4207
- /** @name PalletCollectiveVotes (506) */
5299
+ /** @name PalletCollectiveVotes (560) */
4208
5300
  interface PalletCollectiveVotes extends Struct {
4209
5301
  readonly index: u32;
4210
5302
  readonly threshold: u32;
@@ -4213,7 +5305,7 @@ declare module '@polkadot/types/lookup' {
4213
5305
  readonly end: u64;
4214
5306
  }
4215
5307
 
4216
- /** @name PalletCollectiveError (507) */
5308
+ /** @name PalletCollectiveError (561) */
4217
5309
  interface PalletCollectiveError extends Enum {
4218
5310
  readonly isNotMember: boolean;
4219
5311
  readonly isDuplicateProposal: boolean;
@@ -4229,14 +5321,14 @@ declare module '@polkadot/types/lookup' {
4229
5321
  readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
4230
5322
  }
4231
5323
 
4232
- /** @name PalletVestingReleases (510) */
5324
+ /** @name PalletVestingReleases (564) */
4233
5325
  interface PalletVestingReleases extends Enum {
4234
5326
  readonly isV0: boolean;
4235
5327
  readonly isV1: boolean;
4236
5328
  readonly type: 'V0' | 'V1';
4237
5329
  }
4238
5330
 
4239
- /** @name PalletVestingError (511) */
5331
+ /** @name PalletVestingError (565) */
4240
5332
  interface PalletVestingError extends Enum {
4241
5333
  readonly isNotVesting: boolean;
4242
5334
  readonly isAtMaxVestingSchedules: boolean;
@@ -4246,21 +5338,21 @@ declare module '@polkadot/types/lookup' {
4246
5338
  readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
4247
5339
  }
4248
5340
 
4249
- /** @name PalletElectionsPhragmenSeatHolder (513) */
5341
+ /** @name PalletElectionsPhragmenSeatHolder (567) */
4250
5342
  interface PalletElectionsPhragmenSeatHolder extends Struct {
4251
5343
  readonly who: AccountId32;
4252
5344
  readonly stake: u128;
4253
5345
  readonly deposit: u128;
4254
5346
  }
4255
5347
 
4256
- /** @name PalletElectionsPhragmenVoter (514) */
5348
+ /** @name PalletElectionsPhragmenVoter (568) */
4257
5349
  interface PalletElectionsPhragmenVoter extends Struct {
4258
5350
  readonly votes: Vec<AccountId32>;
4259
5351
  readonly stake: u128;
4260
5352
  readonly deposit: u128;
4261
5353
  }
4262
5354
 
4263
- /** @name PalletElectionsPhragmenError (515) */
5355
+ /** @name PalletElectionsPhragmenError (569) */
4264
5356
  interface PalletElectionsPhragmenError extends Enum {
4265
5357
  readonly isUnableToVote: boolean;
4266
5358
  readonly isNoVotes: boolean;
@@ -4282,20 +5374,20 @@ declare module '@polkadot/types/lookup' {
4282
5374
  readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
4283
5375
  }
4284
5376
 
4285
- /** @name PalletElectionProviderMultiPhaseReadySolution (516) */
5377
+ /** @name PalletElectionProviderMultiPhaseReadySolution (570) */
4286
5378
  interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
4287
5379
  readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
4288
5380
  readonly score: SpNposElectionsElectionScore;
4289
5381
  readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
4290
5382
  }
4291
5383
 
4292
- /** @name PalletElectionProviderMultiPhaseRoundSnapshot (518) */
5384
+ /** @name PalletElectionProviderMultiPhaseRoundSnapshot (572) */
4293
5385
  interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
4294
5386
  readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
4295
5387
  readonly targets: Vec<AccountId32>;
4296
5388
  }
4297
5389
 
4298
- /** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (525) */
5390
+ /** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (579) */
4299
5391
  interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
4300
5392
  readonly who: AccountId32;
4301
5393
  readonly deposit: u128;
@@ -4303,7 +5395,7 @@ declare module '@polkadot/types/lookup' {
4303
5395
  readonly callFee: u128;
4304
5396
  }
4305
5397
 
4306
- /** @name PalletElectionProviderMultiPhaseError (526) */
5398
+ /** @name PalletElectionProviderMultiPhaseError (580) */
4307
5399
  interface PalletElectionProviderMultiPhaseError extends Enum {
4308
5400
  readonly isPreDispatchEarlySubmission: boolean;
4309
5401
  readonly isPreDispatchWrongWinnerCount: boolean;
@@ -4323,7 +5415,7 @@ declare module '@polkadot/types/lookup' {
4323
5415
  readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
4324
5416
  }
4325
5417
 
4326
- /** @name PalletStakingStakingLedger (527) */
5418
+ /** @name PalletStakingStakingLedger (581) */
4327
5419
  interface PalletStakingStakingLedger extends Struct {
4328
5420
  readonly stash: AccountId32;
4329
5421
  readonly total: Compact<u128>;
@@ -4332,26 +5424,26 @@ declare module '@polkadot/types/lookup' {
4332
5424
  readonly legacyClaimedRewards: Vec<u32>;
4333
5425
  }
4334
5426
 
4335
- /** @name PalletStakingUnlockChunk (529) */
5427
+ /** @name PalletStakingUnlockChunk (583) */
4336
5428
  interface PalletStakingUnlockChunk extends Struct {
4337
5429
  readonly value: Compact<u128>;
4338
5430
  readonly era: Compact<u32>;
4339
5431
  }
4340
5432
 
4341
- /** @name PalletStakingNominations (532) */
5433
+ /** @name PalletStakingNominations (586) */
4342
5434
  interface PalletStakingNominations extends Struct {
4343
5435
  readonly targets: Vec<AccountId32>;
4344
5436
  readonly submittedIn: u32;
4345
5437
  readonly suppressed: bool;
4346
5438
  }
4347
5439
 
4348
- /** @name PalletStakingActiveEraInfo (533) */
5440
+ /** @name PalletStakingActiveEraInfo (587) */
4349
5441
  interface PalletStakingActiveEraInfo extends Struct {
4350
5442
  readonly index: u32;
4351
5443
  readonly start: Option<u64>;
4352
5444
  }
4353
5445
 
4354
- /** @name SpStakingPagedExposureMetadata (535) */
5446
+ /** @name SpStakingPagedExposureMetadata (589) */
4355
5447
  interface SpStakingPagedExposureMetadata extends Struct {
4356
5448
  readonly total: Compact<u128>;
4357
5449
  readonly own: Compact<u128>;
@@ -4359,19 +5451,19 @@ declare module '@polkadot/types/lookup' {
4359
5451
  readonly pageCount: u32;
4360
5452
  }
4361
5453
 
4362
- /** @name SpStakingExposurePage (537) */
5454
+ /** @name SpStakingExposurePage (591) */
4363
5455
  interface SpStakingExposurePage extends Struct {
4364
5456
  readonly pageTotal: Compact<u128>;
4365
5457
  readonly others: Vec<SpStakingIndividualExposure>;
4366
5458
  }
4367
5459
 
4368
- /** @name PalletStakingEraRewardPoints (538) */
5460
+ /** @name PalletStakingEraRewardPoints (592) */
4369
5461
  interface PalletStakingEraRewardPoints extends Struct {
4370
5462
  readonly total: u32;
4371
5463
  readonly individual: BTreeMap<AccountId32, u32>;
4372
5464
  }
4373
5465
 
4374
- /** @name PalletStakingUnappliedSlash (543) */
5466
+ /** @name PalletStakingUnappliedSlash (597) */
4375
5467
  interface PalletStakingUnappliedSlash extends Struct {
4376
5468
  readonly validator: AccountId32;
4377
5469
  readonly own: u128;
@@ -4380,7 +5472,7 @@ declare module '@polkadot/types/lookup' {
4380
5472
  readonly payout: u128;
4381
5473
  }
4382
5474
 
4383
- /** @name PalletStakingSlashingSlashingSpans (547) */
5475
+ /** @name PalletStakingSlashingSlashingSpans (601) */
4384
5476
  interface PalletStakingSlashingSlashingSpans extends Struct {
4385
5477
  readonly spanIndex: u32;
4386
5478
  readonly lastStart: u32;
@@ -4388,13 +5480,13 @@ declare module '@polkadot/types/lookup' {
4388
5480
  readonly prior: Vec<u32>;
4389
5481
  }
4390
5482
 
4391
- /** @name PalletStakingSlashingSpanRecord (548) */
5483
+ /** @name PalletStakingSlashingSpanRecord (602) */
4392
5484
  interface PalletStakingSlashingSpanRecord extends Struct {
4393
5485
  readonly slashed: u128;
4394
5486
  readonly paidOut: u128;
4395
5487
  }
4396
5488
 
4397
- /** @name PalletStakingPalletError (551) */
5489
+ /** @name PalletStakingPalletError (605) */
4398
5490
  interface PalletStakingPalletError extends Enum {
4399
5491
  readonly isNotController: boolean;
4400
5492
  readonly isNotStash: boolean;
@@ -4427,10 +5519,10 @@ declare module '@polkadot/types/lookup' {
4427
5519
  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' | 'RestakeActive';
4428
5520
  }
4429
5521
 
4430
- /** @name SpCoreCryptoKeyTypeId (555) */
5522
+ /** @name SpCoreCryptoKeyTypeId (609) */
4431
5523
  interface SpCoreCryptoKeyTypeId extends U8aFixed {}
4432
5524
 
4433
- /** @name PalletSessionError (556) */
5525
+ /** @name PalletSessionError (610) */
4434
5526
  interface PalletSessionError extends Enum {
4435
5527
  readonly isInvalidProof: boolean;
4436
5528
  readonly isNoAssociatedValidatorId: boolean;
@@ -4440,7 +5532,7 @@ declare module '@polkadot/types/lookup' {
4440
5532
  readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
4441
5533
  }
4442
5534
 
4443
- /** @name PalletTreasuryProposal (558) */
5535
+ /** @name PalletTreasuryProposal (612) */
4444
5536
  interface PalletTreasuryProposal extends Struct {
4445
5537
  readonly proposer: AccountId32;
4446
5538
  readonly value: u128;
@@ -4448,7 +5540,7 @@ declare module '@polkadot/types/lookup' {
4448
5540
  readonly bond: u128;
4449
5541
  }
4450
5542
 
4451
- /** @name PalletTreasurySpendStatus (560) */
5543
+ /** @name PalletTreasurySpendStatus (614) */
4452
5544
  interface PalletTreasurySpendStatus extends Struct {
4453
5545
  readonly assetKind: Null;
4454
5546
  readonly amount: u128;
@@ -4458,7 +5550,7 @@ declare module '@polkadot/types/lookup' {
4458
5550
  readonly status: PalletTreasuryPaymentState;
4459
5551
  }
4460
5552
 
4461
- /** @name PalletTreasuryPaymentState (561) */
5553
+ /** @name PalletTreasuryPaymentState (615) */
4462
5554
  interface PalletTreasuryPaymentState extends Enum {
4463
5555
  readonly isPending: boolean;
4464
5556
  readonly isAttempted: boolean;
@@ -4469,10 +5561,10 @@ declare module '@polkadot/types/lookup' {
4469
5561
  readonly type: 'Pending' | 'Attempted' | 'Failed';
4470
5562
  }
4471
5563
 
4472
- /** @name FrameSupportPalletId (562) */
5564
+ /** @name FrameSupportPalletId (616) */
4473
5565
  interface FrameSupportPalletId extends U8aFixed {}
4474
5566
 
4475
- /** @name PalletTreasuryError (563) */
5567
+ /** @name PalletTreasuryError (617) */
4476
5568
  interface PalletTreasuryError extends Enum {
4477
5569
  readonly isInsufficientProposersBalance: boolean;
4478
5570
  readonly isInvalidIndex: boolean;
@@ -4489,7 +5581,7 @@ declare module '@polkadot/types/lookup' {
4489
5581
  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
4490
5582
  }
4491
5583
 
4492
- /** @name PalletBountiesBounty (564) */
5584
+ /** @name PalletBountiesBounty (618) */
4493
5585
  interface PalletBountiesBounty extends Struct {
4494
5586
  readonly proposer: AccountId32;
4495
5587
  readonly value: u128;
@@ -4499,7 +5591,7 @@ declare module '@polkadot/types/lookup' {
4499
5591
  readonly status: PalletBountiesBountyStatus;
4500
5592
  }
4501
5593
 
4502
- /** @name PalletBountiesBountyStatus (565) */
5594
+ /** @name PalletBountiesBountyStatus (619) */
4503
5595
  interface PalletBountiesBountyStatus extends Enum {
4504
5596
  readonly isProposed: boolean;
4505
5597
  readonly isApproved: boolean;
@@ -4522,7 +5614,7 @@ declare module '@polkadot/types/lookup' {
4522
5614
  readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
4523
5615
  }
4524
5616
 
4525
- /** @name PalletBountiesError (567) */
5617
+ /** @name PalletBountiesError (621) */
4526
5618
  interface PalletBountiesError extends Enum {
4527
5619
  readonly isInsufficientProposersBalance: boolean;
4528
5620
  readonly isInvalidIndex: boolean;
@@ -4538,7 +5630,7 @@ declare module '@polkadot/types/lookup' {
4538
5630
  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
4539
5631
  }
4540
5632
 
4541
- /** @name PalletChildBountiesChildBounty (568) */
5633
+ /** @name PalletChildBountiesChildBounty (622) */
4542
5634
  interface PalletChildBountiesChildBounty extends Struct {
4543
5635
  readonly parentBounty: u32;
4544
5636
  readonly value: u128;
@@ -4547,7 +5639,7 @@ declare module '@polkadot/types/lookup' {
4547
5639
  readonly status: PalletChildBountiesChildBountyStatus;
4548
5640
  }
4549
5641
 
4550
- /** @name PalletChildBountiesChildBountyStatus (569) */
5642
+ /** @name PalletChildBountiesChildBountyStatus (623) */
4551
5643
  interface PalletChildBountiesChildBountyStatus extends Enum {
4552
5644
  readonly isAdded: boolean;
4553
5645
  readonly isCuratorProposed: boolean;
@@ -4567,7 +5659,7 @@ declare module '@polkadot/types/lookup' {
4567
5659
  readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
4568
5660
  }
4569
5661
 
4570
- /** @name PalletChildBountiesError (570) */
5662
+ /** @name PalletChildBountiesError (624) */
4571
5663
  interface PalletChildBountiesError extends Enum {
4572
5664
  readonly isParentBountyNotActive: boolean;
4573
5665
  readonly isInsufficientBountyBalance: boolean;
@@ -4575,7 +5667,7 @@ declare module '@polkadot/types/lookup' {
4575
5667
  readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
4576
5668
  }
4577
5669
 
4578
- /** @name PalletBagsListListNode (571) */
5670
+ /** @name PalletBagsListListNode (625) */
4579
5671
  interface PalletBagsListListNode extends Struct {
4580
5672
  readonly id: AccountId32;
4581
5673
  readonly prev: Option<AccountId32>;
@@ -4584,20 +5676,20 @@ declare module '@polkadot/types/lookup' {
4584
5676
  readonly score: u64;
4585
5677
  }
4586
5678
 
4587
- /** @name PalletBagsListListBag (572) */
5679
+ /** @name PalletBagsListListBag (626) */
4588
5680
  interface PalletBagsListListBag extends Struct {
4589
5681
  readonly head: Option<AccountId32>;
4590
5682
  readonly tail: Option<AccountId32>;
4591
5683
  }
4592
5684
 
4593
- /** @name PalletBagsListError (574) */
5685
+ /** @name PalletBagsListError (628) */
4594
5686
  interface PalletBagsListError extends Enum {
4595
5687
  readonly isList: boolean;
4596
5688
  readonly asList: PalletBagsListListListError;
4597
5689
  readonly type: 'List';
4598
5690
  }
4599
5691
 
4600
- /** @name PalletBagsListListListError (575) */
5692
+ /** @name PalletBagsListListListError (629) */
4601
5693
  interface PalletBagsListListListError extends Enum {
4602
5694
  readonly isDuplicate: boolean;
4603
5695
  readonly isNotHeavier: boolean;
@@ -4606,7 +5698,7 @@ declare module '@polkadot/types/lookup' {
4606
5698
  readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
4607
5699
  }
4608
5700
 
4609
- /** @name PalletNominationPoolsPoolMember (576) */
5701
+ /** @name PalletNominationPoolsPoolMember (630) */
4610
5702
  interface PalletNominationPoolsPoolMember extends Struct {
4611
5703
  readonly poolId: u32;
4612
5704
  readonly points: u128;
@@ -4614,7 +5706,7 @@ declare module '@polkadot/types/lookup' {
4614
5706
  readonly unbondingEras: BTreeMap<u32, u128>;
4615
5707
  }
4616
5708
 
4617
- /** @name PalletNominationPoolsBondedPoolInner (581) */
5709
+ /** @name PalletNominationPoolsBondedPoolInner (635) */
4618
5710
  interface PalletNominationPoolsBondedPoolInner extends Struct {
4619
5711
  readonly commission: PalletNominationPoolsCommission;
4620
5712
  readonly memberCounter: u32;
@@ -4623,7 +5715,7 @@ declare module '@polkadot/types/lookup' {
4623
5715
  readonly state: PalletNominationPoolsPoolState;
4624
5716
  }
4625
5717
 
4626
- /** @name PalletNominationPoolsCommission (582) */
5718
+ /** @name PalletNominationPoolsCommission (636) */
4627
5719
  interface PalletNominationPoolsCommission extends Struct {
4628
5720
  readonly current: Option<ITuple<[Perbill, AccountId32]>>;
4629
5721
  readonly max: Option<Perbill>;
@@ -4632,7 +5724,7 @@ declare module '@polkadot/types/lookup' {
4632
5724
  readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
4633
5725
  }
4634
5726
 
4635
- /** @name PalletNominationPoolsPoolRoles (585) */
5727
+ /** @name PalletNominationPoolsPoolRoles (639) */
4636
5728
  interface PalletNominationPoolsPoolRoles extends Struct {
4637
5729
  readonly depositor: AccountId32;
4638
5730
  readonly root: Option<AccountId32>;
@@ -4640,7 +5732,7 @@ declare module '@polkadot/types/lookup' {
4640
5732
  readonly bouncer: Option<AccountId32>;
4641
5733
  }
4642
5734
 
4643
- /** @name PalletNominationPoolsRewardPool (586) */
5735
+ /** @name PalletNominationPoolsRewardPool (640) */
4644
5736
  interface PalletNominationPoolsRewardPool extends Struct {
4645
5737
  readonly lastRecordedRewardCounter: u128;
4646
5738
  readonly lastRecordedTotalPayouts: u128;
@@ -4649,19 +5741,19 @@ declare module '@polkadot/types/lookup' {
4649
5741
  readonly totalCommissionClaimed: u128;
4650
5742
  }
4651
5743
 
4652
- /** @name PalletNominationPoolsSubPools (587) */
5744
+ /** @name PalletNominationPoolsSubPools (641) */
4653
5745
  interface PalletNominationPoolsSubPools extends Struct {
4654
5746
  readonly noEra: PalletNominationPoolsUnbondPool;
4655
5747
  readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
4656
5748
  }
4657
5749
 
4658
- /** @name PalletNominationPoolsUnbondPool (588) */
5750
+ /** @name PalletNominationPoolsUnbondPool (642) */
4659
5751
  interface PalletNominationPoolsUnbondPool extends Struct {
4660
5752
  readonly points: u128;
4661
5753
  readonly balance: u128;
4662
5754
  }
4663
5755
 
4664
- /** @name PalletNominationPoolsError (593) */
5756
+ /** @name PalletNominationPoolsError (647) */
4665
5757
  interface PalletNominationPoolsError extends Enum {
4666
5758
  readonly isPoolNotFound: boolean;
4667
5759
  readonly isPoolMemberNotFound: boolean;
@@ -4699,7 +5791,7 @@ declare module '@polkadot/types/lookup' {
4699
5791
  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';
4700
5792
  }
4701
5793
 
4702
- /** @name PalletNominationPoolsDefensiveError (594) */
5794
+ /** @name PalletNominationPoolsDefensiveError (648) */
4703
5795
  interface PalletNominationPoolsDefensiveError extends Enum {
4704
5796
  readonly isNotEnoughSpaceInUnbondPool: boolean;
4705
5797
  readonly isPoolNotFound: boolean;
@@ -4709,7 +5801,7 @@ declare module '@polkadot/types/lookup' {
4709
5801
  readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
4710
5802
  }
4711
5803
 
4712
- /** @name PalletSchedulerScheduled (597) */
5804
+ /** @name PalletSchedulerScheduled (651) */
4713
5805
  interface PalletSchedulerScheduled extends Struct {
4714
5806
  readonly maybeId: Option<U8aFixed>;
4715
5807
  readonly priority: u8;
@@ -4718,7 +5810,7 @@ declare module '@polkadot/types/lookup' {
4718
5810
  readonly origin: TangleTestnetRuntimeOriginCaller;
4719
5811
  }
4720
5812
 
4721
- /** @name PalletSchedulerError (599) */
5813
+ /** @name PalletSchedulerError (653) */
4722
5814
  interface PalletSchedulerError extends Enum {
4723
5815
  readonly isFailedToSchedule: boolean;
4724
5816
  readonly isNotFound: boolean;
@@ -4728,7 +5820,7 @@ declare module '@polkadot/types/lookup' {
4728
5820
  readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
4729
5821
  }
4730
5822
 
4731
- /** @name PalletPreimageOldRequestStatus (600) */
5823
+ /** @name PalletPreimageOldRequestStatus (654) */
4732
5824
  interface PalletPreimageOldRequestStatus extends Enum {
4733
5825
  readonly isUnrequested: boolean;
4734
5826
  readonly asUnrequested: {
@@ -4744,7 +5836,7 @@ declare module '@polkadot/types/lookup' {
4744
5836
  readonly type: 'Unrequested' | 'Requested';
4745
5837
  }
4746
5838
 
4747
- /** @name PalletPreimageRequestStatus (602) */
5839
+ /** @name PalletPreimageRequestStatus (656) */
4748
5840
  interface PalletPreimageRequestStatus extends Enum {
4749
5841
  readonly isUnrequested: boolean;
4750
5842
  readonly asUnrequested: {
@@ -4760,7 +5852,7 @@ declare module '@polkadot/types/lookup' {
4760
5852
  readonly type: 'Unrequested' | 'Requested';
4761
5853
  }
4762
5854
 
4763
- /** @name PalletPreimageError (606) */
5855
+ /** @name PalletPreimageError (660) */
4764
5856
  interface PalletPreimageError extends Enum {
4765
5857
  readonly isTooBig: boolean;
4766
5858
  readonly isAlreadyNoted: boolean;
@@ -4773,13 +5865,13 @@ declare module '@polkadot/types/lookup' {
4773
5865
  readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
4774
5866
  }
4775
5867
 
4776
- /** @name SpStakingOffenceOffenceDetails (607) */
5868
+ /** @name SpStakingOffenceOffenceDetails (661) */
4777
5869
  interface SpStakingOffenceOffenceDetails extends Struct {
4778
5870
  readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
4779
5871
  readonly reporters: Vec<AccountId32>;
4780
5872
  }
4781
5873
 
4782
- /** @name PalletTxPauseError (609) */
5874
+ /** @name PalletTxPauseError (663) */
4783
5875
  interface PalletTxPauseError extends Enum {
4784
5876
  readonly isIsPaused: boolean;
4785
5877
  readonly isIsUnpaused: boolean;
@@ -4788,34 +5880,34 @@ declare module '@polkadot/types/lookup' {
4788
5880
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4789
5881
  }
4790
5882
 
4791
- /** @name PalletImOnlineError (612) */
5883
+ /** @name PalletImOnlineError (666) */
4792
5884
  interface PalletImOnlineError extends Enum {
4793
5885
  readonly isInvalidKey: boolean;
4794
5886
  readonly isDuplicatedHeartbeat: boolean;
4795
5887
  readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
4796
5888
  }
4797
5889
 
4798
- /** @name PalletIdentityRegistration (614) */
5890
+ /** @name PalletIdentityRegistration (668) */
4799
5891
  interface PalletIdentityRegistration extends Struct {
4800
5892
  readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
4801
5893
  readonly deposit: u128;
4802
5894
  readonly info: PalletIdentityLegacyIdentityInfo;
4803
5895
  }
4804
5896
 
4805
- /** @name PalletIdentityRegistrarInfo (623) */
5897
+ /** @name PalletIdentityRegistrarInfo (677) */
4806
5898
  interface PalletIdentityRegistrarInfo extends Struct {
4807
5899
  readonly account: AccountId32;
4808
5900
  readonly fee: u128;
4809
5901
  readonly fields: u64;
4810
5902
  }
4811
5903
 
4812
- /** @name PalletIdentityAuthorityProperties (625) */
5904
+ /** @name PalletIdentityAuthorityProperties (679) */
4813
5905
  interface PalletIdentityAuthorityProperties extends Struct {
4814
5906
  readonly suffix: Bytes;
4815
5907
  readonly allocation: u32;
4816
5908
  }
4817
5909
 
4818
- /** @name PalletIdentityError (628) */
5910
+ /** @name PalletIdentityError (682) */
4819
5911
  interface PalletIdentityError extends Enum {
4820
5912
  readonly isTooManySubAccounts: boolean;
4821
5913
  readonly isNotFound: boolean;
@@ -4846,13 +5938,13 @@ declare module '@polkadot/types/lookup' {
4846
5938
  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';
4847
5939
  }
4848
5940
 
4849
- /** @name PalletUtilityError (629) */
5941
+ /** @name PalletUtilityError (683) */
4850
5942
  interface PalletUtilityError extends Enum {
4851
5943
  readonly isTooManyCalls: boolean;
4852
5944
  readonly type: 'TooManyCalls';
4853
5945
  }
4854
5946
 
4855
- /** @name PalletMultisigMultisig (631) */
5947
+ /** @name PalletMultisigMultisig (685) */
4856
5948
  interface PalletMultisigMultisig extends Struct {
4857
5949
  readonly when: PalletMultisigTimepoint;
4858
5950
  readonly deposit: u128;
@@ -4860,7 +5952,7 @@ declare module '@polkadot/types/lookup' {
4860
5952
  readonly approvals: Vec<AccountId32>;
4861
5953
  }
4862
5954
 
4863
- /** @name PalletMultisigError (632) */
5955
+ /** @name PalletMultisigError (686) */
4864
5956
  interface PalletMultisigError extends Enum {
4865
5957
  readonly isMinimumThreshold: boolean;
4866
5958
  readonly isAlreadyApproved: boolean;
@@ -4879,7 +5971,7 @@ declare module '@polkadot/types/lookup' {
4879
5971
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
4880
5972
  }
4881
5973
 
4882
- /** @name FpRpcTransactionStatus (635) */
5974
+ /** @name FpRpcTransactionStatus (689) */
4883
5975
  interface FpRpcTransactionStatus extends Struct {
4884
5976
  readonly transactionHash: H256;
4885
5977
  readonly transactionIndex: u32;
@@ -4890,10 +5982,10 @@ declare module '@polkadot/types/lookup' {
4890
5982
  readonly logsBloom: EthbloomBloom;
4891
5983
  }
4892
5984
 
4893
- /** @name EthbloomBloom (638) */
5985
+ /** @name EthbloomBloom (692) */
4894
5986
  interface EthbloomBloom extends U8aFixed {}
4895
5987
 
4896
- /** @name EthereumReceiptReceiptV3 (640) */
5988
+ /** @name EthereumReceiptReceiptV3 (694) */
4897
5989
  interface EthereumReceiptReceiptV3 extends Enum {
4898
5990
  readonly isLegacy: boolean;
4899
5991
  readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -4904,7 +5996,7 @@ declare module '@polkadot/types/lookup' {
4904
5996
  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
4905
5997
  }
4906
5998
 
4907
- /** @name EthereumReceiptEip658ReceiptData (641) */
5999
+ /** @name EthereumReceiptEip658ReceiptData (695) */
4908
6000
  interface EthereumReceiptEip658ReceiptData extends Struct {
4909
6001
  readonly statusCode: u8;
4910
6002
  readonly usedGas: U256;
@@ -4912,14 +6004,14 @@ declare module '@polkadot/types/lookup' {
4912
6004
  readonly logs: Vec<EthereumLog>;
4913
6005
  }
4914
6006
 
4915
- /** @name EthereumBlock (642) */
6007
+ /** @name EthereumBlock (696) */
4916
6008
  interface EthereumBlock extends Struct {
4917
6009
  readonly header: EthereumHeader;
4918
6010
  readonly transactions: Vec<EthereumTransactionTransactionV2>;
4919
6011
  readonly ommers: Vec<EthereumHeader>;
4920
6012
  }
4921
6013
 
4922
- /** @name EthereumHeader (643) */
6014
+ /** @name EthereumHeader (697) */
4923
6015
  interface EthereumHeader extends Struct {
4924
6016
  readonly parentHash: H256;
4925
6017
  readonly ommersHash: H256;
@@ -4938,23 +6030,23 @@ declare module '@polkadot/types/lookup' {
4938
6030
  readonly nonce: EthereumTypesHashH64;
4939
6031
  }
4940
6032
 
4941
- /** @name EthereumTypesHashH64 (644) */
6033
+ /** @name EthereumTypesHashH64 (698) */
4942
6034
  interface EthereumTypesHashH64 extends U8aFixed {}
4943
6035
 
4944
- /** @name PalletEthereumError (649) */
6036
+ /** @name PalletEthereumError (703) */
4945
6037
  interface PalletEthereumError extends Enum {
4946
6038
  readonly isInvalidSignature: boolean;
4947
6039
  readonly isPreLogExists: boolean;
4948
6040
  readonly type: 'InvalidSignature' | 'PreLogExists';
4949
6041
  }
4950
6042
 
4951
- /** @name PalletEvmCodeMetadata (650) */
6043
+ /** @name PalletEvmCodeMetadata (704) */
4952
6044
  interface PalletEvmCodeMetadata extends Struct {
4953
6045
  readonly size_: u64;
4954
6046
  readonly hash_: H256;
4955
6047
  }
4956
6048
 
4957
- /** @name PalletEvmError (652) */
6049
+ /** @name PalletEvmError (706) */
4958
6050
  interface PalletEvmError extends Enum {
4959
6051
  readonly isBalanceLow: boolean;
4960
6052
  readonly isFeeOverflow: boolean;
@@ -4972,13 +6064,13 @@ declare module '@polkadot/types/lookup' {
4972
6064
  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
4973
6065
  }
4974
6066
 
4975
- /** @name PalletHotfixSufficientsError (653) */
6067
+ /** @name PalletHotfixSufficientsError (707) */
4976
6068
  interface PalletHotfixSufficientsError extends Enum {
4977
6069
  readonly isMaxAddressCountExceeded: boolean;
4978
6070
  readonly type: 'MaxAddressCountExceeded';
4979
6071
  }
4980
6072
 
4981
- /** @name PalletAirdropClaimsError (655) */
6073
+ /** @name PalletAirdropClaimsError (709) */
4982
6074
  interface PalletAirdropClaimsError extends Enum {
4983
6075
  readonly isInvalidEthereumSignature: boolean;
4984
6076
  readonly isInvalidNativeSignature: boolean;
@@ -4991,7 +6083,7 @@ declare module '@polkadot/types/lookup' {
4991
6083
  readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
4992
6084
  }
4993
6085
 
4994
- /** @name PalletRolesRestakingLedger (656) */
6086
+ /** @name PalletRolesRestakingLedger (710) */
4995
6087
  interface PalletRolesRestakingLedger extends Struct {
4996
6088
  readonly stash: AccountId32;
4997
6089
  readonly total: Compact<u128>;
@@ -5003,13 +6095,13 @@ declare module '@polkadot/types/lookup' {
5003
6095
  readonly maxActiveServices: u32;
5004
6096
  }
5005
6097
 
5006
- /** @name PalletRolesUnlockChunk (662) */
6098
+ /** @name PalletRolesUnlockChunk (716) */
5007
6099
  interface PalletRolesUnlockChunk extends Struct {
5008
6100
  readonly value: Compact<u128>;
5009
6101
  readonly era: Compact<u32>;
5010
6102
  }
5011
6103
 
5012
- /** @name PalletRolesError (666) */
6104
+ /** @name PalletRolesError (720) */
5013
6105
  interface PalletRolesError extends Enum {
5014
6106
  readonly isNotValidator: boolean;
5015
6107
  readonly isHasRoleAssigned: boolean;
@@ -5033,7 +6125,7 @@ declare module '@polkadot/types/lookup' {
5033
6125
  readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
5034
6126
  }
5035
6127
 
5036
- /** @name TanglePrimitivesJobsPhaseResult (667) */
6128
+ /** @name TanglePrimitivesJobsPhaseResult (721) */
5037
6129
  interface TanglePrimitivesJobsPhaseResult extends Struct {
5038
6130
  readonly owner: AccountId32;
5039
6131
  readonly result: TanglePrimitivesJobsJobResult;
@@ -5042,7 +6134,7 @@ declare module '@polkadot/types/lookup' {
5042
6134
  readonly jobType: TanglePrimitivesJobsJobType;
5043
6135
  }
5044
6136
 
5045
- /** @name PalletJobsModuleError (669) */
6137
+ /** @name PalletJobsModuleError (723) */
5046
6138
  interface PalletJobsModuleError extends Enum {
5047
6139
  readonly isInvalidJobPhase: boolean;
5048
6140
  readonly isInvalidValidator: boolean;
@@ -5065,7 +6157,7 @@ declare module '@polkadot/types/lookup' {
5065
6157
  readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
5066
6158
  }
5067
6159
 
5068
- /** @name PalletDkgError (670) */
6160
+ /** @name PalletDkgError (724) */
5069
6161
  interface PalletDkgError extends Enum {
5070
6162
  readonly isCannotRetreiveSigner: boolean;
5071
6163
  readonly isNotEnoughSigners: boolean;
@@ -5118,7 +6210,7 @@ declare module '@polkadot/types/lookup' {
5118
6210
  readonly type: 'CannotRetreiveSigner' | 'NotEnoughSigners' | 'InvalidSignatureData' | 'NoParticipantsFound' | 'NoSignaturesFound' | 'InvalidJobType' | 'DuplicateSignature' | 'InvalidSignature' | 'InvalidSignatureScheme' | 'InvalidSignatureDeserialization' | 'InvalidVerifyingKey' | 'InvalidVerifyingKeyDeserialization' | 'SigningKeyMismatch' | 'InvalidParticipantPublicKey' | 'InvalidBlsPublicKey' | 'InvalidRoleType' | 'InvalidJustification' | 'MalformedRoundMessage' | 'NotSignedByOffender' | 'ValidDecommitment' | 'ValidDataSize' | 'ValidFeldmanVerification' | 'ValidSchnorrProof' | 'ValidRingPedersenParameters' | 'ValidModProof' | 'ValidFrostSignatureShare' | 'InvalidFrostMessageSerialization' | 'InvalidFrostMessageDeserialization' | 'InvalidIdentifierDeserialization' | 'ValidFrostSignature' | 'UnknownIdentifier' | 'DuplicateIdentifier' | 'IncorrectNumberOfIdentifiers' | 'IdentifierDerivationNotSupported' | 'MalformedFrostSignature' | 'InvalidFrostSignature' | 'InvalidFrostSignatureShare' | 'InvalidFrostSignatureScheme' | 'MalformedFrostVerifyingKey' | 'MalformedFrostSigningKey' | 'MissingFrostCommitment' | 'IdentityCommitment' | 'FrostFieldError' | 'FrostGroupError' | 'FieldElementError' | 'InvalidPublicKey' | 'InvalidMessage' | 'MalformedStarkSignature';
5119
6211
  }
5120
6212
 
5121
- /** @name PalletZksaasError (671) */
6213
+ /** @name PalletZksaasError (725) */
5122
6214
  interface PalletZksaasError extends Enum {
5123
6215
  readonly isInvalidJobType: boolean;
5124
6216
  readonly isInvalidProof: boolean;
@@ -5126,28 +6218,238 @@ declare module '@polkadot/types/lookup' {
5126
6218
  readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
5127
6219
  }
5128
6220
 
5129
- /** @name FrameSystemExtensionsCheckNonZeroSender (674) */
6221
+ /** @name PalletProxyProxyDefinition (728) */
6222
+ interface PalletProxyProxyDefinition extends Struct {
6223
+ readonly delegate: AccountId32;
6224
+ readonly proxyType: TangleTestnetRuntimeProxyType;
6225
+ readonly delay: u64;
6226
+ }
6227
+
6228
+ /** @name PalletProxyAnnouncement (732) */
6229
+ interface PalletProxyAnnouncement extends Struct {
6230
+ readonly real: AccountId32;
6231
+ readonly callHash: H256;
6232
+ readonly height: u64;
6233
+ }
6234
+
6235
+ /** @name PalletProxyError (734) */
6236
+ interface PalletProxyError extends Enum {
6237
+ readonly isTooMany: boolean;
6238
+ readonly isNotFound: boolean;
6239
+ readonly isNotProxy: boolean;
6240
+ readonly isUnproxyable: boolean;
6241
+ readonly isDuplicate: boolean;
6242
+ readonly isNoPermission: boolean;
6243
+ readonly isUnannounced: boolean;
6244
+ readonly isNoSelfProxy: boolean;
6245
+ readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
6246
+ }
6247
+
6248
+ /** @name PalletMultiAssetDelegationOperatorOperatorMetadata (735) */
6249
+ interface PalletMultiAssetDelegationOperatorOperatorMetadata extends Struct {
6250
+ readonly bond: u128;
6251
+ readonly delegationCount: u32;
6252
+ readonly request: Option<PalletMultiAssetDelegationOperatorOperatorBondLessRequest>;
6253
+ readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
6254
+ readonly status: PalletMultiAssetDelegationOperatorOperatorStatus;
6255
+ }
6256
+
6257
+ /** @name PalletMultiAssetDelegationOperatorOperatorBondLessRequest (737) */
6258
+ interface PalletMultiAssetDelegationOperatorOperatorBondLessRequest extends Struct {
6259
+ readonly amount: u128;
6260
+ readonly requestTime: u32;
6261
+ }
6262
+
6263
+ /** @name PalletMultiAssetDelegationOperatorDelegatorBond (739) */
6264
+ interface PalletMultiAssetDelegationOperatorDelegatorBond extends Struct {
6265
+ readonly delegator: AccountId32;
6266
+ readonly amount: u128;
6267
+ readonly assetId: u128;
6268
+ }
6269
+
6270
+ /** @name PalletMultiAssetDelegationOperatorOperatorStatus (740) */
6271
+ interface PalletMultiAssetDelegationOperatorOperatorStatus extends Enum {
6272
+ readonly isActive: boolean;
6273
+ readonly isInactive: boolean;
6274
+ readonly isLeaving: boolean;
6275
+ readonly asLeaving: u32;
6276
+ readonly type: 'Active' | 'Inactive' | 'Leaving';
6277
+ }
6278
+
6279
+ /** @name PalletMultiAssetDelegationOperatorOperatorSnapshot (741) */
6280
+ interface PalletMultiAssetDelegationOperatorOperatorSnapshot extends Struct {
6281
+ readonly bond: u128;
6282
+ readonly delegations: Vec<PalletMultiAssetDelegationOperatorDelegatorBond>;
6283
+ }
6284
+
6285
+ /** @name PalletMultiAssetDelegationDelegatorDelegatorMetadata (742) */
6286
+ interface PalletMultiAssetDelegationDelegatorDelegatorMetadata extends Struct {
6287
+ readonly deposits: BTreeMap<u128, u128>;
6288
+ readonly unstakeRequest: Option<PalletMultiAssetDelegationDelegatorUnstakeRequest>;
6289
+ readonly delegations: Vec<PalletMultiAssetDelegationDelegatorBondInfoDelegator>;
6290
+ readonly delegatorBondLessRequest: Option<PalletMultiAssetDelegationDelegatorBondLessRequest>;
6291
+ readonly status: PalletMultiAssetDelegationDelegatorDelegatorStatus;
6292
+ }
6293
+
6294
+ /** @name PalletMultiAssetDelegationDelegatorUnstakeRequest (747) */
6295
+ interface PalletMultiAssetDelegationDelegatorUnstakeRequest extends Struct {
6296
+ readonly assetId: u128;
6297
+ readonly amount: u128;
6298
+ readonly requestedRound: u32;
6299
+ }
6300
+
6301
+ /** @name PalletMultiAssetDelegationDelegatorBondInfoDelegator (749) */
6302
+ interface PalletMultiAssetDelegationDelegatorBondInfoDelegator extends Struct {
6303
+ readonly operator: AccountId32;
6304
+ readonly amount: u128;
6305
+ readonly assetId: u128;
6306
+ }
6307
+
6308
+ /** @name PalletMultiAssetDelegationDelegatorBondLessRequest (751) */
6309
+ interface PalletMultiAssetDelegationDelegatorBondLessRequest extends Struct {
6310
+ readonly assetId: u128;
6311
+ readonly amount: u128;
6312
+ readonly requestedRound: u32;
6313
+ }
6314
+
6315
+ /** @name PalletMultiAssetDelegationDelegatorDelegatorStatus (752) */
6316
+ interface PalletMultiAssetDelegationDelegatorDelegatorStatus extends Enum {
6317
+ readonly isActive: boolean;
6318
+ readonly isLeavingScheduled: boolean;
6319
+ readonly asLeavingScheduled: u32;
6320
+ readonly type: 'Active' | 'LeavingScheduled';
6321
+ }
6322
+
6323
+ /** @name PalletMultiAssetDelegationRewardsRewardConfig (753) */
6324
+ interface PalletMultiAssetDelegationRewardsRewardConfig extends Struct {
6325
+ readonly configs: BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAsset>;
6326
+ readonly whitelistedBlueprintIds: Vec<u32>;
6327
+ }
6328
+
6329
+ /** @name PalletMultiAssetDelegationRewardsRewardConfigForAsset (755) */
6330
+ interface PalletMultiAssetDelegationRewardsRewardConfigForAsset extends Struct {
6331
+ readonly apy: u128;
6332
+ readonly cap: u128;
6333
+ }
6334
+
6335
+ /** @name PalletMultiAssetDelegationError (758) */
6336
+ interface PalletMultiAssetDelegationError extends Enum {
6337
+ readonly isAlreadyOperator: boolean;
6338
+ readonly isBondTooLow: boolean;
6339
+ readonly isNotAnOperator: boolean;
6340
+ readonly isCannotExit: boolean;
6341
+ readonly isAlreadyLeaving: boolean;
6342
+ readonly isNotLeavingOperator: boolean;
6343
+ readonly isNotLeavingRound: boolean;
6344
+ readonly isNoScheduledBondLess: boolean;
6345
+ readonly isBondLessRequestNotSatisfied: boolean;
6346
+ readonly isNotActiveOperator: boolean;
6347
+ readonly isNotOfflineOperator: boolean;
6348
+ readonly isAlreadyDelegator: boolean;
6349
+ readonly isNotDelegator: boolean;
6350
+ readonly isWithdrawRequestAlreadyExists: boolean;
6351
+ readonly isInsufficientBalance: boolean;
6352
+ readonly isNoWithdrawRequest: boolean;
6353
+ readonly isUnstakeNotReady: boolean;
6354
+ readonly isNoBondLessRequest: boolean;
6355
+ readonly isBondLessNotReady: boolean;
6356
+ readonly isBondLessRequestAlreadyExists: boolean;
6357
+ readonly isActiveServicesUsingAsset: boolean;
6358
+ readonly isNoActiveDelegation: boolean;
6359
+ readonly isAssetNotWhitelisted: boolean;
6360
+ readonly isNotAuthorized: boolean;
6361
+ readonly isAssetNotFound: boolean;
6362
+ readonly isBlueprintAlreadyWhitelisted: boolean;
6363
+ readonly type: 'AlreadyOperator' | 'BondTooLow' | 'NotAnOperator' | 'CannotExit' | 'AlreadyLeaving' | 'NotLeavingOperator' | 'NotLeavingRound' | 'NoScheduledBondLess' | 'BondLessRequestNotSatisfied' | 'NotActiveOperator' | 'NotOfflineOperator' | 'AlreadyDelegator' | 'NotDelegator' | 'WithdrawRequestAlreadyExists' | 'InsufficientBalance' | 'NoWithdrawRequest' | 'UnstakeNotReady' | 'NoBondLessRequest' | 'BondLessNotReady' | 'BondLessRequestAlreadyExists' | 'ActiveServicesUsingAsset' | 'NoActiveDelegation' | 'AssetNotWhitelisted' | 'NotAuthorized' | 'AssetNotFound' | 'BlueprintAlreadyWhitelisted';
6364
+ }
6365
+
6366
+ /** @name SygmaAccessSegregatorError (760) */
6367
+ interface SygmaAccessSegregatorError extends Enum {
6368
+ readonly isUnimplemented: boolean;
6369
+ readonly isGrantAccessFailed: boolean;
6370
+ readonly type: 'Unimplemented' | 'GrantAccessFailed';
6371
+ }
6372
+
6373
+ /** @name SygmaBasicFeehandlerError (762) */
6374
+ interface SygmaBasicFeehandlerError extends Enum {
6375
+ readonly isUnimplemented: boolean;
6376
+ readonly isAccessDenied: boolean;
6377
+ readonly type: 'Unimplemented' | 'AccessDenied';
6378
+ }
6379
+
6380
+ /** @name SygmaFeeHandlerRouterError (763) */
6381
+ interface SygmaFeeHandlerRouterError extends Enum {
6382
+ readonly isAccessDenied: boolean;
6383
+ readonly isUnimplemented: boolean;
6384
+ readonly type: 'AccessDenied' | 'Unimplemented';
6385
+ }
6386
+
6387
+ /** @name SygmaPercentageFeehandlerError (765) */
6388
+ interface SygmaPercentageFeehandlerError extends Enum {
6389
+ readonly isUnimplemented: boolean;
6390
+ readonly isAccessDenied: boolean;
6391
+ readonly isFeeRateOutOfRange: boolean;
6392
+ readonly isInvalidFeeBound: boolean;
6393
+ readonly type: 'Unimplemented' | 'AccessDenied' | 'FeeRateOutOfRange' | 'InvalidFeeBound';
6394
+ }
6395
+
6396
+ /** @name SygmaBridgeError (772) */
6397
+ interface SygmaBridgeError extends Enum {
6398
+ readonly isAccessDenied: boolean;
6399
+ readonly isBadMpcSignature: boolean;
6400
+ readonly isInsufficientBalance: boolean;
6401
+ readonly isTransactFailedDeposit: boolean;
6402
+ readonly isTransactFailedWithdraw: boolean;
6403
+ readonly isTransactFailedFeeDeposit: boolean;
6404
+ readonly isTransactFailedHoldInReserved: boolean;
6405
+ readonly isTransactFailedReleaseFromReserved: boolean;
6406
+ readonly isFeeTooExpensive: boolean;
6407
+ readonly isMissingMpcAddress: boolean;
6408
+ readonly isMpcAddrNotUpdatable: boolean;
6409
+ readonly isBridgePaused: boolean;
6410
+ readonly isBridgeUnpaused: boolean;
6411
+ readonly isMissingFeeConfig: boolean;
6412
+ readonly isAssetNotBound: boolean;
6413
+ readonly isProposalAlreadyComplete: boolean;
6414
+ readonly isEmptyProposalList: boolean;
6415
+ readonly isTransactorFailed: boolean;
6416
+ readonly isInvalidDepositDataInvalidLength: boolean;
6417
+ readonly isInvalidDepositDataInvalidAmount: boolean;
6418
+ readonly isInvalidDepositDataInvalidRecipientLength: boolean;
6419
+ readonly isInvalidDepositDataRecipientLengthNotMatch: boolean;
6420
+ readonly isInvalidDepositDataInvalidRecipient: boolean;
6421
+ readonly isDestDomainNotSupported: boolean;
6422
+ readonly isDestChainIDNotMatch: boolean;
6423
+ readonly isExtractDestDataFailed: boolean;
6424
+ readonly isDecimalConversionFail: boolean;
6425
+ readonly isDepositNonceOverflow: boolean;
6426
+ readonly isNoLiquidityHolderAccountBound: boolean;
6427
+ readonly isUnimplemented: boolean;
6428
+ readonly type: 'AccessDenied' | 'BadMpcSignature' | 'InsufficientBalance' | 'TransactFailedDeposit' | 'TransactFailedWithdraw' | 'TransactFailedFeeDeposit' | 'TransactFailedHoldInReserved' | 'TransactFailedReleaseFromReserved' | 'FeeTooExpensive' | 'MissingMpcAddress' | 'MpcAddrNotUpdatable' | 'BridgePaused' | 'BridgeUnpaused' | 'MissingFeeConfig' | 'AssetNotBound' | 'ProposalAlreadyComplete' | 'EmptyProposalList' | 'TransactorFailed' | 'InvalidDepositDataInvalidLength' | 'InvalidDepositDataInvalidAmount' | 'InvalidDepositDataInvalidRecipientLength' | 'InvalidDepositDataRecipientLengthNotMatch' | 'InvalidDepositDataInvalidRecipient' | 'DestDomainNotSupported' | 'DestChainIDNotMatch' | 'ExtractDestDataFailed' | 'DecimalConversionFail' | 'DepositNonceOverflow' | 'NoLiquidityHolderAccountBound' | 'Unimplemented';
6429
+ }
6430
+
6431
+ /** @name FrameSystemExtensionsCheckNonZeroSender (775) */
5130
6432
  type FrameSystemExtensionsCheckNonZeroSender = Null;
5131
6433
 
5132
- /** @name FrameSystemExtensionsCheckSpecVersion (675) */
6434
+ /** @name FrameSystemExtensionsCheckSpecVersion (776) */
5133
6435
  type FrameSystemExtensionsCheckSpecVersion = Null;
5134
6436
 
5135
- /** @name FrameSystemExtensionsCheckTxVersion (676) */
6437
+ /** @name FrameSystemExtensionsCheckTxVersion (777) */
5136
6438
  type FrameSystemExtensionsCheckTxVersion = Null;
5137
6439
 
5138
- /** @name FrameSystemExtensionsCheckGenesis (677) */
6440
+ /** @name FrameSystemExtensionsCheckGenesis (778) */
5139
6441
  type FrameSystemExtensionsCheckGenesis = Null;
5140
6442
 
5141
- /** @name FrameSystemExtensionsCheckNonce (680) */
6443
+ /** @name FrameSystemExtensionsCheckNonce (781) */
5142
6444
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
5143
6445
 
5144
- /** @name FrameSystemExtensionsCheckWeight (681) */
6446
+ /** @name FrameSystemExtensionsCheckWeight (782) */
5145
6447
  type FrameSystemExtensionsCheckWeight = Null;
5146
6448
 
5147
- /** @name PalletTransactionPaymentChargeTransactionPayment (682) */
6449
+ /** @name PalletTransactionPaymentChargeTransactionPayment (783) */
5148
6450
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
5149
6451
 
5150
- /** @name TangleTestnetRuntimeRuntime (684) */
6452
+ /** @name TangleTestnetRuntimeRuntime (785) */
5151
6453
  type TangleTestnetRuntimeRuntime = Null;
5152
6454
 
5153
6455
  } // declare module