@pezkuwi/types-augment 16.5.23 → 16.5.25

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.
@@ -1,8 +1,14 @@
1
1
  import '@pezkuwi/types/lookup';
2
2
  import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
3
3
  import type { ITuple } from '@pezkuwi/types-codec/types';
4
- import type { AccountId32, H256, MultiAddress, PerU16, Perbill, Percent } from '@pezkuwi/types/interfaces/runtime';
4
+ import type { AccountId32, H256, MultiAddress } from '@pezkuwi/types/interfaces/runtime';
5
5
  declare module '@pezkuwi/types/lookup' {
6
+ /** @name PezspCoreCryptoAccountId32 (0) */
7
+ interface PezspCoreCryptoAccountId32 extends AccountId32 {
8
+ }
9
+ /** @name PezspRuntimeMultiAddress (1) */
10
+ interface PezspRuntimeMultiAddress extends MultiAddress {
11
+ }
6
12
  /** @name AssetHubPezkuwiRuntimeRuntimeTask (32) */
7
13
  type AssetHubPezkuwiRuntimeRuntimeTask = Null;
8
14
  /** @name PezcumulusPezpalletTeyrchainSystemEvent (33) */
@@ -131,15 +137,15 @@ declare module '@pezkuwi/types/lookup' {
131
137
  interface PezpalletCollatorSelectionEvent extends Enum {
132
138
  readonly isNewInvulnerables: boolean;
133
139
  readonly asNewInvulnerables: {
134
- readonly invulnerables: Vec<AccountId32>;
140
+ readonly invulnerables: Vec<PezspCoreCryptoAccountId32>;
135
141
  } & Struct;
136
142
  readonly isInvulnerableAdded: boolean;
137
143
  readonly asInvulnerableAdded: {
138
- readonly accountId: AccountId32;
144
+ readonly accountId: PezspCoreCryptoAccountId32;
139
145
  } & Struct;
140
146
  readonly isInvulnerableRemoved: boolean;
141
147
  readonly asInvulnerableRemoved: {
142
- readonly accountId: AccountId32;
148
+ readonly accountId: PezspCoreCryptoAccountId32;
143
149
  } & Struct;
144
150
  readonly isNewDesiredCandidates: boolean;
145
151
  readonly asNewDesiredCandidates: {
@@ -151,27 +157,27 @@ declare module '@pezkuwi/types/lookup' {
151
157
  } & Struct;
152
158
  readonly isCandidateAdded: boolean;
153
159
  readonly asCandidateAdded: {
154
- readonly accountId: AccountId32;
160
+ readonly accountId: PezspCoreCryptoAccountId32;
155
161
  readonly deposit: u128;
156
162
  } & Struct;
157
163
  readonly isCandidateBondUpdated: boolean;
158
164
  readonly asCandidateBondUpdated: {
159
- readonly accountId: AccountId32;
165
+ readonly accountId: PezspCoreCryptoAccountId32;
160
166
  readonly deposit: u128;
161
167
  } & Struct;
162
168
  readonly isCandidateRemoved: boolean;
163
169
  readonly asCandidateRemoved: {
164
- readonly accountId: AccountId32;
170
+ readonly accountId: PezspCoreCryptoAccountId32;
165
171
  } & Struct;
166
172
  readonly isCandidateReplaced: boolean;
167
173
  readonly asCandidateReplaced: {
168
- readonly old: AccountId32;
169
- readonly new_: AccountId32;
174
+ readonly old: PezspCoreCryptoAccountId32;
175
+ readonly new_: PezspCoreCryptoAccountId32;
170
176
  readonly deposit: u128;
171
177
  } & Struct;
172
178
  readonly isInvalidInvulnerableSkipped: boolean;
173
179
  readonly asInvalidInvulnerableSkipped: {
174
- readonly accountId: AccountId32;
180
+ readonly accountId: PezspCoreCryptoAccountId32;
175
181
  } & Struct;
176
182
  readonly type: 'NewInvulnerables' | 'InvulnerableAdded' | 'InvulnerableRemoved' | 'NewDesiredCandidates' | 'NewCandidacyBond' | 'CandidateAdded' | 'CandidateBondUpdated' | 'CandidateRemoved' | 'CandidateReplaced' | 'InvalidInvulnerableSkipped';
177
183
  }
@@ -356,7 +362,7 @@ declare module '@pezkuwi/types/lookup' {
356
362
  interface PezpalletCollatorSelectionCall extends Enum {
357
363
  readonly isSetInvulnerables: boolean;
358
364
  readonly asSetInvulnerables: {
359
- readonly new_: Vec<AccountId32>;
365
+ readonly new_: Vec<PezspCoreCryptoAccountId32>;
360
366
  } & Struct;
361
367
  readonly isSetDesiredCandidates: boolean;
362
368
  readonly asSetDesiredCandidates: {
@@ -370,11 +376,11 @@ declare module '@pezkuwi/types/lookup' {
370
376
  readonly isLeaveIntent: boolean;
371
377
  readonly isAddInvulnerable: boolean;
372
378
  readonly asAddInvulnerable: {
373
- readonly who: AccountId32;
379
+ readonly who: PezspCoreCryptoAccountId32;
374
380
  } & Struct;
375
381
  readonly isRemoveInvulnerable: boolean;
376
382
  readonly asRemoveInvulnerable: {
377
- readonly who: AccountId32;
383
+ readonly who: PezspCoreCryptoAccountId32;
378
384
  } & Struct;
379
385
  readonly isUpdateBond: boolean;
380
386
  readonly asUpdateBond: {
@@ -383,7 +389,7 @@ declare module '@pezkuwi/types/lookup' {
383
389
  readonly isTakeCandidateSlot: boolean;
384
390
  readonly asTakeCandidateSlot: {
385
391
  readonly deposit: u128;
386
- readonly target: AccountId32;
392
+ readonly target: PezspCoreCryptoAccountId32;
387
393
  } & Struct;
388
394
  readonly type: 'SetInvulnerables' | 'SetDesiredCandidates' | 'SetCandidacyBond' | 'RegisterAsCandidate' | 'LeaveIntent' | 'AddInvulnerable' | 'RemoveInvulnerable' | 'UpdateBond' | 'TakeCandidateSlot';
389
395
  }
@@ -562,21 +568,21 @@ declare module '@pezkuwi/types/lookup' {
562
568
  /** @name AssetHubPezkuwiRuntimeStakingNposCompactSolution16 (417) */
563
569
  interface AssetHubPezkuwiRuntimeStakingNposCompactSolution16 extends Struct {
564
570
  readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
565
- readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
566
- readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
567
- readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
568
- readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
569
- readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
570
- readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
571
- readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
572
- readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
573
- readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
574
- readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
575
- readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
576
- readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
577
- readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
578
- readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
579
- readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
571
+ readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
572
+ readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
573
+ readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
574
+ readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
575
+ readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
576
+ readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
577
+ readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
578
+ readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
579
+ readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
580
+ readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
581
+ readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
582
+ readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
583
+ readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
584
+ readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
585
+ readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
580
586
  }
581
587
  /** @name PezpalletElectionProviderMultiBlockSignedPezpalletCall (468) */
582
588
  interface PezpalletElectionProviderMultiBlockSignedPezpalletCall extends Enum {
@@ -597,7 +603,7 @@ declare module '@pezkuwi/types/lookup' {
597
603
  } & Struct;
598
604
  readonly isSetInvulnerables: boolean;
599
605
  readonly asSetInvulnerables: {
600
- readonly inv: Vec<AccountId32>;
606
+ readonly inv: Vec<PezspCoreCryptoAccountId32>;
601
607
  } & Struct;
602
608
  readonly type: 'Register' | 'SubmitPage' | 'Bail' | 'ClearOldRoundData' | 'SetInvulnerables';
603
609
  }
@@ -626,7 +632,7 @@ declare module '@pezkuwi/types/lookup' {
626
632
  } & Struct;
627
633
  readonly isNominate: boolean;
628
634
  readonly asNominate: {
629
- readonly targets: Vec<MultiAddress>;
635
+ readonly targets: Vec<PezspRuntimeMultiAddress>;
630
636
  } & Struct;
631
637
  readonly isChill: boolean;
632
638
  readonly isSetPayee: boolean;
@@ -644,28 +650,28 @@ declare module '@pezkuwi/types/lookup' {
644
650
  } & Struct;
645
651
  readonly isScaleValidatorCount: boolean;
646
652
  readonly asScaleValidatorCount: {
647
- readonly factor: Percent;
653
+ readonly factor: u8;
648
654
  } & Struct;
649
655
  readonly isForceNoEras: boolean;
650
656
  readonly isForceNewEra: boolean;
651
657
  readonly isSetInvulnerables: boolean;
652
658
  readonly asSetInvulnerables: {
653
- readonly invulnerables: Vec<AccountId32>;
659
+ readonly invulnerables: Vec<PezspCoreCryptoAccountId32>;
654
660
  } & Struct;
655
661
  readonly isForceUnstake: boolean;
656
662
  readonly asForceUnstake: {
657
- readonly stash: AccountId32;
663
+ readonly stash: PezspCoreCryptoAccountId32;
658
664
  readonly numSlashingSpans: u32;
659
665
  } & Struct;
660
666
  readonly isForceNewEraAlways: boolean;
661
667
  readonly isCancelDeferredSlash: boolean;
662
668
  readonly asCancelDeferredSlash: {
663
669
  readonly era: u32;
664
- readonly validatorSlashes: Vec<ITuple<[AccountId32, Perbill]>>;
670
+ readonly validatorSlashes: Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
665
671
  } & Struct;
666
672
  readonly isPayoutStakers: boolean;
667
673
  readonly asPayoutStakers: {
668
- readonly validatorStash: AccountId32;
674
+ readonly validatorStash: PezspCoreCryptoAccountId32;
669
675
  readonly era: u32;
670
676
  } & Struct;
671
677
  readonly isRebond: boolean;
@@ -674,12 +680,12 @@ declare module '@pezkuwi/types/lookup' {
674
680
  } & Struct;
675
681
  readonly isReapStash: boolean;
676
682
  readonly asReapStash: {
677
- readonly stash: AccountId32;
683
+ readonly stash: PezspCoreCryptoAccountId32;
678
684
  readonly numSlashingSpans: u32;
679
685
  } & Struct;
680
686
  readonly isKick: boolean;
681
687
  readonly asKick: {
682
- readonly who: Vec<MultiAddress>;
688
+ readonly who: Vec<PezspRuntimeMultiAddress>;
683
689
  } & Struct;
684
690
  readonly isSetStakingConfigs: boolean;
685
691
  readonly asSetStakingConfigs: {
@@ -693,45 +699,45 @@ declare module '@pezkuwi/types/lookup' {
693
699
  } & Struct;
694
700
  readonly isChillOther: boolean;
695
701
  readonly asChillOther: {
696
- readonly stash: AccountId32;
702
+ readonly stash: PezspCoreCryptoAccountId32;
697
703
  } & Struct;
698
704
  readonly isForceApplyMinCommission: boolean;
699
705
  readonly asForceApplyMinCommission: {
700
- readonly validatorStash: AccountId32;
706
+ readonly validatorStash: PezspCoreCryptoAccountId32;
701
707
  } & Struct;
702
708
  readonly isSetMinCommission: boolean;
703
709
  readonly asSetMinCommission: {
704
- readonly new_: Perbill;
710
+ readonly new_: u32;
705
711
  } & Struct;
706
712
  readonly isPayoutStakersByPage: boolean;
707
713
  readonly asPayoutStakersByPage: {
708
- readonly validatorStash: AccountId32;
714
+ readonly validatorStash: PezspCoreCryptoAccountId32;
709
715
  readonly era: u32;
710
716
  readonly page: u32;
711
717
  } & Struct;
712
718
  readonly isUpdatePayee: boolean;
713
719
  readonly asUpdatePayee: {
714
- readonly controller: AccountId32;
720
+ readonly controller: PezspCoreCryptoAccountId32;
715
721
  } & Struct;
716
722
  readonly isDeprecateControllerBatch: boolean;
717
723
  readonly asDeprecateControllerBatch: {
718
- readonly controllers: Vec<AccountId32>;
724
+ readonly controllers: Vec<PezspCoreCryptoAccountId32>;
719
725
  } & Struct;
720
726
  readonly isRestoreLedger: boolean;
721
727
  readonly asRestoreLedger: {
722
- readonly stash: AccountId32;
723
- readonly maybeController: Option<AccountId32>;
728
+ readonly stash: PezspCoreCryptoAccountId32;
729
+ readonly maybeController: Option<PezspCoreCryptoAccountId32>;
724
730
  readonly maybeTotal: Option<u128>;
725
731
  readonly maybeUnlocking: Option<Vec<PezpalletStakingAsyncLedgerUnlockChunk>>;
726
732
  } & Struct;
727
733
  readonly isMigrateCurrency: boolean;
728
734
  readonly asMigrateCurrency: {
729
- readonly stash: AccountId32;
735
+ readonly stash: PezspCoreCryptoAccountId32;
730
736
  } & Struct;
731
737
  readonly isApplySlash: boolean;
732
738
  readonly asApplySlash: {
733
739
  readonly slashEra: u32;
734
- readonly slashKey: ITuple<[AccountId32, Perbill, u32]>;
740
+ readonly slashKey: ITuple<[PezspCoreCryptoAccountId32, u32, u32]>;
735
741
  } & Struct;
736
742
  readonly isPruneEraStep: boolean;
737
743
  readonly asPruneEraStep: {
@@ -745,13 +751,13 @@ declare module '@pezkuwi/types/lookup' {
745
751
  readonly isStash: boolean;
746
752
  readonly isController: boolean;
747
753
  readonly isAccount: boolean;
748
- readonly asAccount: AccountId32;
754
+ readonly asAccount: PezspCoreCryptoAccountId32;
749
755
  readonly isNone: boolean;
750
756
  readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
751
757
  }
752
758
  /** @name PezpalletStakingAsyncValidatorPrefs (472) */
753
759
  interface PezpalletStakingAsyncValidatorPrefs extends Struct {
754
- readonly commission: Compact<Perbill>;
760
+ readonly commission: Compact<u32>;
755
761
  readonly blocked: bool;
756
762
  }
757
763
  /** @name PezpalletStakingAsyncPezpalletConfigOpU128 (478) */
@@ -774,7 +780,7 @@ declare module '@pezkuwi/types/lookup' {
774
780
  interface PezpalletStakingAsyncPezpalletConfigOpPercent extends Enum {
775
781
  readonly isNoop: boolean;
776
782
  readonly isSet: boolean;
777
- readonly asSet: Percent;
783
+ readonly asSet: u8;
778
784
  readonly isRemove: boolean;
779
785
  readonly type: 'Noop' | 'Set' | 'Remove';
780
786
  }
@@ -782,7 +788,7 @@ declare module '@pezkuwi/types/lookup' {
782
788
  interface PezpalletStakingAsyncPezpalletConfigOpPerbill extends Enum {
783
789
  readonly isNoop: boolean;
784
790
  readonly isSet: boolean;
785
- readonly asSet: Perbill;
791
+ readonly asSet: u32;
786
792
  readonly isRemove: boolean;
787
793
  readonly type: 'Noop' | 'Set' | 'Remove';
788
794
  }
@@ -796,19 +802,19 @@ declare module '@pezkuwi/types/lookup' {
796
802
  readonly isUnreserveLeaseDeposit: boolean;
797
803
  readonly asUnreserveLeaseDeposit: {
798
804
  readonly block: u32;
799
- readonly depositor: Option<AccountId32>;
805
+ readonly depositor: Option<PezspCoreCryptoAccountId32>;
800
806
  readonly paraId: u32;
801
807
  } & Struct;
802
808
  readonly isWithdrawCrowdloanContribution: boolean;
803
809
  readonly asWithdrawCrowdloanContribution: {
804
810
  readonly block: u32;
805
- readonly depositor: Option<AccountId32>;
811
+ readonly depositor: Option<PezspCoreCryptoAccountId32>;
806
812
  readonly paraId: u32;
807
813
  } & Struct;
808
814
  readonly isUnreserveCrowdloanReserve: boolean;
809
815
  readonly asUnreserveCrowdloanReserve: {
810
816
  readonly block: u32;
811
- readonly depositor: Option<AccountId32>;
817
+ readonly depositor: Option<PezspCoreCryptoAccountId32>;
812
818
  readonly paraId: u32;
813
819
  } & Struct;
814
820
  readonly isTransferToPostMigrationTreasury: boolean;
@@ -930,7 +936,7 @@ declare module '@pezkuwi/types/lookup' {
930
936
  } & Struct;
931
937
  readonly isSetManager: boolean;
932
938
  readonly asSetManager: {
933
- readonly new_: Option<AccountId32>;
939
+ readonly new_: Option<PezspCoreCryptoAccountId32>;
934
940
  } & Struct;
935
941
  readonly isFinishMigration: boolean;
936
942
  readonly asFinishMigration: {
@@ -946,7 +952,7 @@ declare module '@pezkuwi/types/lookup' {
946
952
  }
947
953
  /** @name PezpalletRcMigratorAccountsAccount (491) */
948
954
  interface PezpalletRcMigratorAccountsAccount extends Struct {
949
- readonly who: AccountId32;
955
+ readonly who: PezspCoreCryptoAccountId32;
950
956
  readonly free: u128;
951
957
  readonly reserved: u128;
952
958
  readonly frozen: u128;
@@ -991,24 +997,24 @@ declare module '@pezkuwi/types/lookup' {
991
997
  }
992
998
  /** @name PezpalletRcMigratorMultisigRcMultisig (512) */
993
999
  interface PezpalletRcMigratorMultisigRcMultisig extends Struct {
994
- readonly creator: AccountId32;
1000
+ readonly creator: PezspCoreCryptoAccountId32;
995
1001
  readonly deposit: u128;
996
1002
  }
997
1003
  /** @name PezpalletRcMigratorProxyRcProxy (514) */
998
1004
  interface PezpalletRcMigratorProxyRcProxy extends Struct {
999
- readonly delegator: AccountId32;
1005
+ readonly delegator: PezspCoreCryptoAccountId32;
1000
1006
  readonly deposit: u128;
1001
1007
  readonly proxies: Vec<PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType>;
1002
1008
  }
1003
1009
  /** @name PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType (517) */
1004
1010
  interface PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType extends Struct {
1005
- readonly delegate: AccountId32;
1011
+ readonly delegate: PezspCoreCryptoAccountId32;
1006
1012
  readonly proxyType: PezkuwiRuntimeConstantsProxyProxyType;
1007
1013
  readonly delay: u32;
1008
1014
  }
1009
1015
  /** @name PezpalletRcMigratorProxyRcProxyAnnouncement (519) */
1010
1016
  interface PezpalletRcMigratorProxyRcProxyAnnouncement extends Struct {
1011
- readonly depositor: AccountId32;
1017
+ readonly depositor: PezspCoreCryptoAccountId32;
1012
1018
  readonly deposit: u128;
1013
1019
  }
1014
1020
  /** @name PezpalletRcMigratorPreimageChunksRcPreimageChunk (521) */
@@ -1027,12 +1033,12 @@ declare module '@pezkuwi/types/lookup' {
1027
1033
  interface PezpalletRcMigratorPreimageRequestStatusPortableRequestStatusInner extends Enum {
1028
1034
  readonly isUnrequested: boolean;
1029
1035
  readonly asUnrequested: {
1030
- readonly ticket: ITuple<[AccountId32, Bytes]>;
1036
+ readonly ticket: ITuple<[PezspCoreCryptoAccountId32, Bytes]>;
1031
1037
  readonly len: u32;
1032
1038
  } & Struct;
1033
1039
  readonly isRequested: boolean;
1034
1040
  readonly asRequested: {
1035
- readonly maybeTicket: Option<ITuple<[AccountId32, Bytes]>>;
1041
+ readonly maybeTicket: Option<ITuple<[PezspCoreCryptoAccountId32, Bytes]>>;
1036
1042
  readonly count: u32;
1037
1043
  readonly maybeLen: Option<u32>;
1038
1044
  } & Struct;
@@ -1041,7 +1047,7 @@ declare module '@pezkuwi/types/lookup' {
1041
1047
  /** @name PezpalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus (530) */
1042
1048
  interface PezpalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus extends Struct {
1043
1049
  readonly hash_: H256;
1044
- readonly depositor: AccountId32;
1050
+ readonly depositor: PezspCoreCryptoAccountId32;
1045
1051
  readonly deposit: u128;
1046
1052
  }
1047
1053
  /** @name PezpalletRcMigratorStakingNomPoolsRcNomPoolsMessage (532) */
@@ -1052,7 +1058,7 @@ declare module '@pezkuwi/types/lookup' {
1052
1058
  } & Struct;
1053
1059
  readonly isPoolMembers: boolean;
1054
1060
  readonly asPoolMembers: {
1055
- readonly member: ITuple<[AccountId32, PezpalletNominationPoolsPoolMember]>;
1061
+ readonly member: ITuple<[PezspCoreCryptoAccountId32, PezpalletNominationPoolsPoolMember]>;
1056
1062
  } & Struct;
1057
1063
  readonly isBondedPools: boolean;
1058
1064
  readonly asBondedPools: {
@@ -1072,11 +1078,11 @@ declare module '@pezkuwi/types/lookup' {
1072
1078
  } & Struct;
1073
1079
  readonly isReversePoolIdLookup: boolean;
1074
1080
  readonly asReversePoolIdLookup: {
1075
- readonly lookups: ITuple<[AccountId32, u32]>;
1081
+ readonly lookups: ITuple<[PezspCoreCryptoAccountId32, u32]>;
1076
1082
  } & Struct;
1077
1083
  readonly isClaimPermissions: boolean;
1078
1084
  readonly asClaimPermissions: {
1079
- readonly perms: ITuple<[AccountId32, PezpalletNominationPoolsClaimPermission]>;
1085
+ readonly perms: ITuple<[PezspCoreCryptoAccountId32, PezpalletNominationPoolsClaimPermission]>;
1080
1086
  } & Struct;
1081
1087
  readonly type: 'StorageValues' | 'PoolMembers' | 'BondedPools' | 'RewardPools' | 'SubPoolsStorage' | 'Metadata' | 'ReversePoolIdLookup' | 'ClaimPermissions';
1082
1088
  }
@@ -1088,7 +1094,7 @@ declare module '@pezkuwi/types/lookup' {
1088
1094
  readonly maxPools: Option<u32>;
1089
1095
  readonly maxPoolMembers: Option<u32>;
1090
1096
  readonly maxPoolMembersPerPool: Option<u32>;
1091
- readonly globalMaxCommission: Option<Perbill>;
1097
+ readonly globalMaxCommission: Option<u32>;
1092
1098
  readonly lastPoolId: Option<u32>;
1093
1099
  }
1094
1100
  /** @name PezpalletRcMigratorStakingNomPoolsAliasRewardPool (547) */
@@ -1111,7 +1117,7 @@ declare module '@pezkuwi/types/lookup' {
1111
1117
  }
1112
1118
  /** @name PezpalletRcMigratorVestingRcVestingSchedule (558) */
1113
1119
  interface PezpalletRcMigratorVestingRcVestingSchedule extends Struct {
1114
- readonly who: AccountId32;
1120
+ readonly who: PezspCoreCryptoAccountId32;
1115
1121
  readonly schedules: Vec<PezpalletVestingVestingInfo>;
1116
1122
  }
1117
1123
  /** @name PezpalletRcMigratorReferendaReferendaMessage (562) */
@@ -1174,14 +1180,14 @@ declare module '@pezkuwi/types/lookup' {
1174
1180
  readonly isSigning: boolean;
1175
1181
  readonly asSigning: ITuple<[PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind]>;
1176
1182
  readonly isPreclaims: boolean;
1177
- readonly asPreclaims: ITuple<[AccountId32, PezkuwiRuntimeCommonClaimsEthereumAddress]>;
1183
+ readonly asPreclaims: ITuple<[PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEthereumAddress]>;
1178
1184
  readonly type: 'StorageValues' | 'Claims' | 'Vesting' | 'Signing' | 'Preclaims';
1179
1185
  }
1180
1186
  /** @name PezpalletRcMigratorStakingBagsListPortableBagsListMessage (585) */
1181
1187
  interface PezpalletRcMigratorStakingBagsListPortableBagsListMessage extends Enum {
1182
1188
  readonly isNode: boolean;
1183
1189
  readonly asNode: {
1184
- readonly id: AccountId32;
1190
+ readonly id: PezspCoreCryptoAccountId32;
1185
1191
  readonly node: PezpalletRcMigratorStakingBagsListPortableNode;
1186
1192
  } & Struct;
1187
1193
  readonly isBag: boolean;
@@ -1193,16 +1199,16 @@ declare module '@pezkuwi/types/lookup' {
1193
1199
  }
1194
1200
  /** @name PezpalletRcMigratorStakingBagsListPortableNode (586) */
1195
1201
  interface PezpalletRcMigratorStakingBagsListPortableNode extends Struct {
1196
- readonly id: AccountId32;
1197
- readonly prev: Option<AccountId32>;
1198
- readonly next: Option<AccountId32>;
1202
+ readonly id: PezspCoreCryptoAccountId32;
1203
+ readonly prev: Option<PezspCoreCryptoAccountId32>;
1204
+ readonly next: Option<PezspCoreCryptoAccountId32>;
1199
1205
  readonly bagUpper: u64;
1200
1206
  readonly score: u64;
1201
1207
  }
1202
1208
  /** @name PezpalletRcMigratorStakingBagsListPortableBag (587) */
1203
1209
  interface PezpalletRcMigratorStakingBagsListPortableBag extends Struct {
1204
- readonly head: Option<AccountId32>;
1205
- readonly tail: Option<AccountId32>;
1210
+ readonly head: Option<PezspCoreCryptoAccountId32>;
1211
+ readonly tail: Option<PezspCoreCryptoAccountId32>;
1206
1212
  readonly bagUpper: u64;
1207
1213
  }
1208
1214
  /** @name PezpalletRcMigratorSchedulerRcSchedulerMessage (589) */
@@ -1218,16 +1224,16 @@ declare module '@pezkuwi/types/lookup' {
1218
1224
  /** @name PezpalletRcMigratorIndicesRcIndicesIndex (594) */
1219
1225
  interface PezpalletRcMigratorIndicesRcIndicesIndex extends Struct {
1220
1226
  readonly index: u32;
1221
- readonly who: AccountId32;
1227
+ readonly who: PezspCoreCryptoAccountId32;
1222
1228
  readonly deposit: u128;
1223
1229
  readonly frozen: bool;
1224
1230
  }
1225
1231
  /** @name PezpalletRcMigratorConvictionVotingRcConvictionVotingMessage (596) */
1226
1232
  interface PezpalletRcMigratorConvictionVotingRcConvictionVotingMessage extends Enum {
1227
1233
  readonly isVotingFor: boolean;
1228
- readonly asVotingFor: ITuple<[AccountId32, u16, PezpalletConvictionVotingVoteVoting]>;
1234
+ readonly asVotingFor: ITuple<[PezspCoreCryptoAccountId32, u16, PezpalletConvictionVotingVoteVoting]>;
1229
1235
  readonly isClassLocksFor: boolean;
1230
- readonly asClassLocksFor: ITuple<[AccountId32, Vec<ITuple<[u16, u128]>>]>;
1236
+ readonly asClassLocksFor: ITuple<[PezspCoreCryptoAccountId32, Vec<ITuple<[u16, u128]>>]>;
1231
1237
  readonly type: 'VotingFor' | 'ClassLocksFor';
1232
1238
  }
1233
1239
  /** @name PezpalletRcMigratorBountiesRcBountiesMessage (608) */
@@ -1244,7 +1250,7 @@ declare module '@pezkuwi/types/lookup' {
1244
1250
  }
1245
1251
  /** @name PezpalletRcMigratorBountiesAliasBounty (611) */
1246
1252
  interface PezpalletRcMigratorBountiesAliasBounty extends Struct {
1247
- readonly proposer: AccountId32;
1253
+ readonly proposer: PezspCoreCryptoAccountId32;
1248
1254
  readonly value: u128;
1249
1255
  readonly fee: u128;
1250
1256
  readonly curatorDeposit: u128;
@@ -1256,22 +1262,22 @@ declare module '@pezkuwi/types/lookup' {
1256
1262
  readonly isLeaseReserve: boolean;
1257
1263
  readonly asLeaseReserve: {
1258
1264
  readonly unreserveBlock: u32;
1259
- readonly account: AccountId32;
1265
+ readonly account: PezspCoreCryptoAccountId32;
1260
1266
  readonly paraId: u32;
1261
1267
  readonly amount: u128;
1262
1268
  } & Struct;
1263
1269
  readonly isCrowdloanContribution: boolean;
1264
1270
  readonly asCrowdloanContribution: {
1265
1271
  readonly withdrawBlock: u32;
1266
- readonly contributor: AccountId32;
1272
+ readonly contributor: PezspCoreCryptoAccountId32;
1267
1273
  readonly paraId: u32;
1268
1274
  readonly amount: u128;
1269
- readonly crowdloanAccount: AccountId32;
1275
+ readonly crowdloanAccount: PezspCoreCryptoAccountId32;
1270
1276
  } & Struct;
1271
1277
  readonly isCrowdloanReserve: boolean;
1272
1278
  readonly asCrowdloanReserve: {
1273
1279
  readonly unreserveBlock: u32;
1274
- readonly depositor: AccountId32;
1280
+ readonly depositor: PezspCoreCryptoAccountId32;
1275
1281
  readonly paraId: u32;
1276
1282
  readonly amount: u128;
1277
1283
  } & Struct;
@@ -1333,14 +1339,14 @@ declare module '@pezkuwi/types/lookup' {
1333
1339
  interface PezpalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage extends Enum {
1334
1340
  readonly isDelegators: boolean;
1335
1341
  readonly asDelegators: {
1336
- readonly delegator: AccountId32;
1337
- readonly agent: AccountId32;
1342
+ readonly delegator: PezspCoreCryptoAccountId32;
1343
+ readonly agent: PezspCoreCryptoAccountId32;
1338
1344
  readonly amount: u128;
1339
1345
  } & Struct;
1340
1346
  readonly isAgents: boolean;
1341
1347
  readonly asAgents: {
1342
- readonly agent: AccountId32;
1343
- readonly payee: AccountId32;
1348
+ readonly agent: PezspCoreCryptoAccountId32;
1349
+ readonly payee: PezspCoreCryptoAccountId32;
1344
1350
  readonly totalDelegated: u128;
1345
1351
  readonly unclaimedWithdrawals: u128;
1346
1352
  readonly pendingSlash: u128;
@@ -1393,16 +1399,16 @@ declare module '@pezkuwi/types/lookup' {
1393
1399
  readonly isAdded: boolean;
1394
1400
  readonly isCuratorProposed: boolean;
1395
1401
  readonly asCuratorProposed: {
1396
- readonly curator: AccountId32;
1402
+ readonly curator: PezspCoreCryptoAccountId32;
1397
1403
  } & Struct;
1398
1404
  readonly isActive: boolean;
1399
1405
  readonly asActive: {
1400
- readonly curator: AccountId32;
1406
+ readonly curator: PezspCoreCryptoAccountId32;
1401
1407
  } & Struct;
1402
1408
  readonly isPendingPayout: boolean;
1403
1409
  readonly asPendingPayout: {
1404
- readonly curator: AccountId32;
1405
- readonly beneficiary: AccountId32;
1410
+ readonly curator: PezspCoreCryptoAccountId32;
1411
+ readonly beneficiary: PezspCoreCryptoAccountId32;
1406
1412
  readonly unlockAt: u32;
1407
1413
  } & Struct;
1408
1414
  readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
@@ -1412,57 +1418,57 @@ declare module '@pezkuwi/types/lookup' {
1412
1418
  readonly isValues: boolean;
1413
1419
  readonly asValues: PezpalletRcMigratorStakingMessageStakingValues;
1414
1420
  readonly isInvulnerables: boolean;
1415
- readonly asInvulnerables: Vec<AccountId32>;
1421
+ readonly asInvulnerables: Vec<PezspCoreCryptoAccountId32>;
1416
1422
  readonly isBonded: boolean;
1417
1423
  readonly asBonded: {
1418
- readonly stash: AccountId32;
1419
- readonly controller: AccountId32;
1424
+ readonly stash: PezspCoreCryptoAccountId32;
1425
+ readonly controller: PezspCoreCryptoAccountId32;
1420
1426
  } & Struct;
1421
1427
  readonly isLedger: boolean;
1422
1428
  readonly asLedger: {
1423
- readonly controller: AccountId32;
1429
+ readonly controller: PezspCoreCryptoAccountId32;
1424
1430
  readonly ledger: PezpalletRcMigratorStakingMessagePortableStakingLedger;
1425
1431
  } & Struct;
1426
1432
  readonly isPayee: boolean;
1427
1433
  readonly asPayee: {
1428
- readonly stash: AccountId32;
1434
+ readonly stash: PezspCoreCryptoAccountId32;
1429
1435
  readonly payment: PezpalletRcMigratorStakingMessagePortableRewardDestination;
1430
1436
  } & Struct;
1431
1437
  readonly isValidators: boolean;
1432
1438
  readonly asValidators: {
1433
- readonly stash: AccountId32;
1439
+ readonly stash: PezspCoreCryptoAccountId32;
1434
1440
  readonly validators: PezpalletRcMigratorStakingMessagePortableValidatorPrefs;
1435
1441
  } & Struct;
1436
1442
  readonly isNominators: boolean;
1437
1443
  readonly asNominators: {
1438
- readonly stash: AccountId32;
1444
+ readonly stash: PezspCoreCryptoAccountId32;
1439
1445
  readonly nominations: PezpalletRcMigratorStakingMessagePortableNominations;
1440
1446
  } & Struct;
1441
1447
  readonly isVirtualStakers: boolean;
1442
- readonly asVirtualStakers: AccountId32;
1448
+ readonly asVirtualStakers: PezspCoreCryptoAccountId32;
1443
1449
  readonly isErasStakersOverview: boolean;
1444
1450
  readonly asErasStakersOverview: {
1445
1451
  readonly era: u32;
1446
- readonly validator: AccountId32;
1452
+ readonly validator: PezspCoreCryptoAccountId32;
1447
1453
  readonly exposure: PezpalletRcMigratorStakingMessagePortablePagedExposureMetadata;
1448
1454
  } & Struct;
1449
1455
  readonly isErasStakersPaged: boolean;
1450
1456
  readonly asErasStakersPaged: {
1451
1457
  readonly era: u32;
1452
- readonly validator: AccountId32;
1458
+ readonly validator: PezspCoreCryptoAccountId32;
1453
1459
  readonly page: u32;
1454
1460
  readonly exposure: PezpalletRcMigratorStakingMessagePortableExposurePage;
1455
1461
  } & Struct;
1456
1462
  readonly isClaimedRewards: boolean;
1457
1463
  readonly asClaimedRewards: {
1458
1464
  readonly era: u32;
1459
- readonly validator: AccountId32;
1465
+ readonly validator: PezspCoreCryptoAccountId32;
1460
1466
  readonly rewards: Vec<u32>;
1461
1467
  } & Struct;
1462
1468
  readonly isErasValidatorPrefs: boolean;
1463
1469
  readonly asErasValidatorPrefs: {
1464
1470
  readonly era: u32;
1465
- readonly validator: AccountId32;
1471
+ readonly validator: PezspCoreCryptoAccountId32;
1466
1472
  readonly prefs: PezpalletRcMigratorStakingMessagePortableValidatorPrefs;
1467
1473
  } & Struct;
1468
1474
  readonly isErasValidatorReward: boolean;
@@ -1490,8 +1496,8 @@ declare module '@pezkuwi/types/lookup' {
1490
1496
  readonly isValidatorSlashInEra: boolean;
1491
1497
  readonly asValidatorSlashInEra: {
1492
1498
  readonly era: u32;
1493
- readonly validator: AccountId32;
1494
- readonly slash: ITuple<[Perbill, u128]>;
1499
+ readonly validator: PezspCoreCryptoAccountId32;
1500
+ readonly slash: ITuple<[u32, u128]>;
1495
1501
  } & Struct;
1496
1502
  readonly type: 'Values' | 'Invulnerables' | 'Bonded' | 'Ledger' | 'Payee' | 'Validators' | 'Nominators' | 'VirtualStakers' | 'ErasStakersOverview' | 'ErasStakersPaged' | 'ClaimedRewards' | 'ErasValidatorPrefs' | 'ErasValidatorReward' | 'ErasRewardPoints' | 'ErasTotalStake' | 'UnappliedSlashes' | 'BondedEras' | 'ValidatorSlashInEra';
1497
1503
  }
@@ -1502,17 +1508,17 @@ declare module '@pezkuwi/types/lookup' {
1502
1508
  readonly minNominatorBond: Option<u128>;
1503
1509
  readonly minValidatorBond: Option<u128>;
1504
1510
  readonly minActiveStake: Option<u128>;
1505
- readonly minCommission: Option<Perbill>;
1511
+ readonly minCommission: Option<u32>;
1506
1512
  readonly maxValidatorsCount: Option<u32>;
1507
1513
  readonly maxNominatorsCount: Option<u32>;
1508
1514
  readonly currentEra: Option<u32>;
1509
1515
  readonly activeEra: Option<PezpalletRcMigratorStakingMessagePortableActiveEraInfo>;
1510
1516
  readonly forceEra: Option<PezpalletRcMigratorStakingMessagePortableForcing>;
1511
- readonly maxStakedRewards: Option<Percent>;
1512
- readonly slashRewardFraction: Option<Perbill>;
1517
+ readonly maxStakedRewards: Option<u8>;
1518
+ readonly slashRewardFraction: Option<u32>;
1513
1519
  readonly canceledSlashPayout: Option<u128>;
1514
1520
  readonly currentPlannedSession: Option<u32>;
1515
- readonly chillThreshold: Option<Percent>;
1521
+ readonly chillThreshold: Option<u8>;
1516
1522
  }
1517
1523
  /** @name PezpalletRcMigratorStakingMessagePortableActiveEraInfo (641) */
1518
1524
  interface PezpalletRcMigratorStakingMessagePortableActiveEraInfo extends Struct {
@@ -1529,7 +1535,7 @@ declare module '@pezkuwi/types/lookup' {
1529
1535
  }
1530
1536
  /** @name PezpalletRcMigratorStakingMessagePortableStakingLedger (645) */
1531
1537
  interface PezpalletRcMigratorStakingMessagePortableStakingLedger extends Struct {
1532
- readonly stash: AccountId32;
1538
+ readonly stash: PezspCoreCryptoAccountId32;
1533
1539
  readonly total: u128;
1534
1540
  readonly active: u128;
1535
1541
  readonly unlocking: Vec<PezpalletRcMigratorStakingMessagePortableUnlockChunk>;
@@ -1545,18 +1551,18 @@ declare module '@pezkuwi/types/lookup' {
1545
1551
  readonly isStash: boolean;
1546
1552
  readonly isController: boolean;
1547
1553
  readonly isAccount: boolean;
1548
- readonly asAccount: AccountId32;
1554
+ readonly asAccount: PezspCoreCryptoAccountId32;
1549
1555
  readonly isNone: boolean;
1550
1556
  readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
1551
1557
  }
1552
1558
  /** @name PezpalletRcMigratorStakingMessagePortableValidatorPrefs (650) */
1553
1559
  interface PezpalletRcMigratorStakingMessagePortableValidatorPrefs extends Struct {
1554
- readonly commission: Perbill;
1560
+ readonly commission: u32;
1555
1561
  readonly blocked: bool;
1556
1562
  }
1557
1563
  /** @name PezpalletRcMigratorStakingMessagePortableNominations (651) */
1558
1564
  interface PezpalletRcMigratorStakingMessagePortableNominations extends Struct {
1559
- readonly targets: Vec<AccountId32>;
1565
+ readonly targets: Vec<PezspCoreCryptoAccountId32>;
1560
1566
  readonly submittedIn: u32;
1561
1567
  readonly suppressed: bool;
1562
1568
  }
@@ -1574,20 +1580,20 @@ declare module '@pezkuwi/types/lookup' {
1574
1580
  }
1575
1581
  /** @name PezpalletRcMigratorStakingMessagePortableIndividualExposure (656) */
1576
1582
  interface PezpalletRcMigratorStakingMessagePortableIndividualExposure extends Struct {
1577
- readonly who: AccountId32;
1583
+ readonly who: PezspCoreCryptoAccountId32;
1578
1584
  readonly value: u128;
1579
1585
  }
1580
1586
  /** @name PezpalletRcMigratorStakingMessagePortableEraRewardPoints (658) */
1581
1587
  interface PezpalletRcMigratorStakingMessagePortableEraRewardPoints extends Struct {
1582
1588
  readonly total: u32;
1583
- readonly individual: Vec<ITuple<[AccountId32, u32]>>;
1589
+ readonly individual: Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
1584
1590
  }
1585
1591
  /** @name PezpalletRcMigratorStakingMessagePortableUnappliedSlash (660) */
1586
1592
  interface PezpalletRcMigratorStakingMessagePortableUnappliedSlash extends Struct {
1587
- readonly validator: AccountId32;
1593
+ readonly validator: PezspCoreCryptoAccountId32;
1588
1594
  readonly own: u128;
1589
- readonly others: Vec<ITuple<[AccountId32, u128]>>;
1590
- readonly reporters: Vec<AccountId32>;
1595
+ readonly others: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
1596
+ readonly reporters: Vec<PezspCoreCryptoAccountId32>;
1591
1597
  readonly payout: u128;
1592
1598
  }
1593
1599
  /** @name PezpalletAhMigratorMigrationStage (665) */
@@ -1687,19 +1693,19 @@ declare module '@pezkuwi/types/lookup' {
1687
1693
  /** @name PezpalletElectionProviderMultiBlockSignedPezpalletEvent (690) */
1688
1694
  interface PezpalletElectionProviderMultiBlockSignedPezpalletEvent extends Enum {
1689
1695
  readonly isRegistered: boolean;
1690
- readonly asRegistered: ITuple<[u32, AccountId32, PezspNposElectionsElectionScore]>;
1696
+ readonly asRegistered: ITuple<[u32, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore]>;
1691
1697
  readonly isStored: boolean;
1692
- readonly asStored: ITuple<[u32, AccountId32, u32]>;
1698
+ readonly asStored: ITuple<[u32, PezspCoreCryptoAccountId32, u32]>;
1693
1699
  readonly isRewarded: boolean;
1694
- readonly asRewarded: ITuple<[u32, AccountId32, u128]>;
1700
+ readonly asRewarded: ITuple<[u32, PezspCoreCryptoAccountId32, u128]>;
1695
1701
  readonly isSlashed: boolean;
1696
- readonly asSlashed: ITuple<[u32, AccountId32, u128]>;
1702
+ readonly asSlashed: ITuple<[u32, PezspCoreCryptoAccountId32, u128]>;
1697
1703
  readonly isEjected: boolean;
1698
- readonly asEjected: ITuple<[u32, AccountId32]>;
1704
+ readonly asEjected: ITuple<[u32, PezspCoreCryptoAccountId32]>;
1699
1705
  readonly isDiscarded: boolean;
1700
- readonly asDiscarded: ITuple<[u32, AccountId32]>;
1706
+ readonly asDiscarded: ITuple<[u32, PezspCoreCryptoAccountId32]>;
1701
1707
  readonly isBailed: boolean;
1702
- readonly asBailed: ITuple<[u32, AccountId32]>;
1708
+ readonly asBailed: ITuple<[u32, PezspCoreCryptoAccountId32]>;
1703
1709
  readonly type: 'Registered' | 'Stored' | 'Rewarded' | 'Slashed' | 'Ejected' | 'Discarded' | 'Bailed';
1704
1710
  }
1705
1711
  /** @name PezpalletStakingAsyncPezpalletEvent (691) */
@@ -1712,13 +1718,13 @@ declare module '@pezkuwi/types/lookup' {
1712
1718
  } & Struct;
1713
1719
  readonly isRewarded: boolean;
1714
1720
  readonly asRewarded: {
1715
- readonly stash: AccountId32;
1721
+ readonly stash: PezspCoreCryptoAccountId32;
1716
1722
  readonly dest: PezpalletStakingAsyncRewardDestination;
1717
1723
  readonly amount: u128;
1718
1724
  } & Struct;
1719
1725
  readonly isSlashed: boolean;
1720
1726
  readonly asSlashed: {
1721
- readonly staker: AccountId32;
1727
+ readonly staker: PezspCoreCryptoAccountId32;
1722
1728
  readonly amount: u128;
1723
1729
  } & Struct;
1724
1730
  readonly isOldSlashingReportDiscarded: boolean;
@@ -1727,42 +1733,42 @@ declare module '@pezkuwi/types/lookup' {
1727
1733
  } & Struct;
1728
1734
  readonly isBonded: boolean;
1729
1735
  readonly asBonded: {
1730
- readonly stash: AccountId32;
1736
+ readonly stash: PezspCoreCryptoAccountId32;
1731
1737
  readonly amount: u128;
1732
1738
  } & Struct;
1733
1739
  readonly isUnbonded: boolean;
1734
1740
  readonly asUnbonded: {
1735
- readonly stash: AccountId32;
1741
+ readonly stash: PezspCoreCryptoAccountId32;
1736
1742
  readonly amount: u128;
1737
1743
  } & Struct;
1738
1744
  readonly isWithdrawn: boolean;
1739
1745
  readonly asWithdrawn: {
1740
- readonly stash: AccountId32;
1746
+ readonly stash: PezspCoreCryptoAccountId32;
1741
1747
  readonly amount: u128;
1742
1748
  } & Struct;
1743
1749
  readonly isStakerRemoved: boolean;
1744
1750
  readonly asStakerRemoved: {
1745
- readonly stash: AccountId32;
1751
+ readonly stash: PezspCoreCryptoAccountId32;
1746
1752
  } & Struct;
1747
1753
  readonly isKicked: boolean;
1748
1754
  readonly asKicked: {
1749
- readonly nominator: AccountId32;
1750
- readonly stash: AccountId32;
1755
+ readonly nominator: PezspCoreCryptoAccountId32;
1756
+ readonly stash: PezspCoreCryptoAccountId32;
1751
1757
  } & Struct;
1752
1758
  readonly isChilled: boolean;
1753
1759
  readonly asChilled: {
1754
- readonly stash: AccountId32;
1760
+ readonly stash: PezspCoreCryptoAccountId32;
1755
1761
  } & Struct;
1756
1762
  readonly isPayoutStarted: boolean;
1757
1763
  readonly asPayoutStarted: {
1758
1764
  readonly eraIndex: u32;
1759
- readonly validatorStash: AccountId32;
1765
+ readonly validatorStash: PezspCoreCryptoAccountId32;
1760
1766
  readonly page: u32;
1761
1767
  readonly next: Option<u32>;
1762
1768
  } & Struct;
1763
1769
  readonly isValidatorPrefsSet: boolean;
1764
1770
  readonly asValidatorPrefsSet: {
1765
- readonly stash: AccountId32;
1771
+ readonly stash: PezspCoreCryptoAccountId32;
1766
1772
  readonly prefs: PezpalletStakingAsyncValidatorPrefs;
1767
1773
  } & Struct;
1768
1774
  readonly isSnapshotVotersSizeExceeded: boolean;
@@ -1783,7 +1789,7 @@ declare module '@pezkuwi/types/lookup' {
1783
1789
  } & Struct;
1784
1790
  readonly isCurrencyMigrated: boolean;
1785
1791
  readonly asCurrencyMigrated: {
1786
- readonly stash: AccountId32;
1792
+ readonly stash: PezspCoreCryptoAccountId32;
1787
1793
  readonly forceWithdraw: u128;
1788
1794
  } & Struct;
1789
1795
  readonly isPagedElectionProceeded: boolean;
@@ -1794,20 +1800,20 @@ declare module '@pezkuwi/types/lookup' {
1794
1800
  readonly isOffenceReported: boolean;
1795
1801
  readonly asOffenceReported: {
1796
1802
  readonly offenceEra: u32;
1797
- readonly validator: AccountId32;
1798
- readonly fraction: Perbill;
1803
+ readonly validator: PezspCoreCryptoAccountId32;
1804
+ readonly fraction: u32;
1799
1805
  } & Struct;
1800
1806
  readonly isSlashComputed: boolean;
1801
1807
  readonly asSlashComputed: {
1802
1808
  readonly offenceEra: u32;
1803
1809
  readonly slashEra: u32;
1804
- readonly offender: AccountId32;
1810
+ readonly offender: PezspCoreCryptoAccountId32;
1805
1811
  readonly page: u32;
1806
1812
  } & Struct;
1807
1813
  readonly isSlashCancelled: boolean;
1808
1814
  readonly asSlashCancelled: {
1809
1815
  readonly slashEra: u32;
1810
- readonly validator: AccountId32;
1816
+ readonly validator: PezspCoreCryptoAccountId32;
1811
1817
  } & Struct;
1812
1818
  readonly isSessionRotated: boolean;
1813
1819
  readonly asSessionRotated: {
@@ -1820,8 +1826,8 @@ declare module '@pezkuwi/types/lookup' {
1820
1826
  readonly isOffenceTooOld: boolean;
1821
1827
  readonly asOffenceTooOld: {
1822
1828
  readonly offenceEra: u32;
1823
- readonly validator: AccountId32;
1824
- readonly fraction: Perbill;
1829
+ readonly validator: PezspCoreCryptoAccountId32;
1830
+ readonly fraction: u32;
1825
1831
  } & Struct;
1826
1832
  readonly isEraPruned: boolean;
1827
1833
  readonly asEraPruned: {
@@ -1847,21 +1853,21 @@ declare module '@pezkuwi/types/lookup' {
1847
1853
  interface PezpalletAhOpsEvent extends Enum {
1848
1854
  readonly isLeaseUnreserveRemaining: boolean;
1849
1855
  readonly asLeaseUnreserveRemaining: {
1850
- readonly depositor: AccountId32;
1856
+ readonly depositor: PezspCoreCryptoAccountId32;
1851
1857
  readonly paraId: u32;
1852
1858
  readonly remaining: u128;
1853
1859
  } & Struct;
1854
1860
  readonly isCrowdloanUnreserveRemaining: boolean;
1855
1861
  readonly asCrowdloanUnreserveRemaining: {
1856
- readonly depositor: AccountId32;
1862
+ readonly depositor: PezspCoreCryptoAccountId32;
1857
1863
  readonly paraId: u32;
1858
1864
  readonly remaining: u128;
1859
1865
  } & Struct;
1860
1866
  readonly isSovereignMigrated: boolean;
1861
1867
  readonly asSovereignMigrated: {
1862
1868
  readonly paraId: u32;
1863
- readonly from: AccountId32;
1864
- readonly to: AccountId32;
1869
+ readonly from: PezspCoreCryptoAccountId32;
1870
+ readonly to: PezspCoreCryptoAccountId32;
1865
1871
  readonly derivationIndex: Option<u16>;
1866
1872
  } & Struct;
1867
1873
  readonly type: 'LeaseUnreserveRemaining' | 'CrowdloanUnreserveRemaining' | 'SovereignMigrated';
@@ -1913,18 +1919,18 @@ declare module '@pezkuwi/types/lookup' {
1913
1919
  } & Struct;
1914
1920
  readonly isManagerSet: boolean;
1915
1921
  readonly asManagerSet: {
1916
- readonly old: Option<AccountId32>;
1917
- readonly new_: Option<AccountId32>;
1922
+ readonly old: Option<PezspCoreCryptoAccountId32>;
1923
+ readonly new_: Option<PezspCoreCryptoAccountId32>;
1918
1924
  } & Struct;
1919
1925
  readonly isAccountTranslatedParachainSovereign: boolean;
1920
1926
  readonly asAccountTranslatedParachainSovereign: {
1921
- readonly from: AccountId32;
1922
- readonly to: AccountId32;
1927
+ readonly from: PezspCoreCryptoAccountId32;
1928
+ readonly to: PezspCoreCryptoAccountId32;
1923
1929
  } & Struct;
1924
1930
  readonly isAccountTranslatedParachainSovereignDerived: boolean;
1925
1931
  readonly asAccountTranslatedParachainSovereignDerived: {
1926
- readonly from: AccountId32;
1927
- readonly to: AccountId32;
1932
+ readonly from: PezspCoreCryptoAccountId32;
1933
+ readonly to: PezspCoreCryptoAccountId32;
1928
1934
  readonly derivationIndex: u16;
1929
1935
  } & Struct;
1930
1936
  readonly isXcmSent: boolean;
@@ -1938,13 +1944,13 @@ declare module '@pezkuwi/types/lookup' {
1938
1944
  readonly asFailedToUnreserveMultisigDeposit: {
1939
1945
  readonly expectedAmount: u128;
1940
1946
  readonly missingAmount: u128;
1941
- readonly account: AccountId32;
1947
+ readonly account: PezspCoreCryptoAccountId32;
1942
1948
  } & Struct;
1943
1949
  readonly isFailedToUnreservePreimageDeposit: boolean;
1944
1950
  readonly asFailedToUnreservePreimageDeposit: {
1945
1951
  readonly expectedAmount: u128;
1946
1952
  readonly missingAmount: u128;
1947
- readonly account: AccountId32;
1953
+ readonly account: PezspCoreCryptoAccountId32;
1948
1954
  } & Struct;
1949
1955
  readonly type: 'StageTransition' | 'BatchReceived' | 'BatchProcessed' | 'AssetHubMigrationStarted' | 'AssetHubMigrationFinished' | 'DmpQueuePrioritySet' | 'DmpQueuePriorityConfigSet' | 'BalancesBeforeRecordSet' | 'BalancesBeforeRecordConsumed' | 'ReferendumCanceled' | 'ManagerSet' | 'AccountTranslatedParachainSovereign' | 'AccountTranslatedParachainSovereignDerived' | 'XcmSent' | 'FailedToUnreserveMultisigDeposit' | 'FailedToUnreservePreimageDeposit';
1950
1956
  }
@@ -2087,7 +2093,7 @@ declare module '@pezkuwi/types/lookup' {
2087
2093
  }
2088
2094
  /** @name PezpalletCollatorSelectionCandidateInfo (776) */
2089
2095
  interface PezpalletCollatorSelectionCandidateInfo extends Struct {
2090
- readonly who: AccountId32;
2096
+ readonly who: PezspCoreCryptoAccountId32;
2091
2097
  readonly deposit: u128;
2092
2098
  }
2093
2099
  /** @name PezpalletCollatorSelectionError (779) */
@@ -2164,7 +2170,7 @@ declare module '@pezkuwi/types/lookup' {
2164
2170
  }
2165
2171
  /** @name PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType (847) */
2166
2172
  interface PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType extends Struct {
2167
- readonly delegate: AccountId32;
2173
+ readonly delegate: PezspCoreCryptoAccountId32;
2168
2174
  readonly proxyType: AssetHubPezkuwiRuntimeProxyType;
2169
2175
  readonly delay: u32;
2170
2176
  }
@@ -2246,14 +2252,14 @@ declare module '@pezkuwi/types/lookup' {
2246
2252
  }
2247
2253
  /** @name PezpalletStakingAsyncLedgerStakingLedger (974) */
2248
2254
  interface PezpalletStakingAsyncLedgerStakingLedger extends Struct {
2249
- readonly stash: AccountId32;
2255
+ readonly stash: PezspCoreCryptoAccountId32;
2250
2256
  readonly total: Compact<u128>;
2251
2257
  readonly active: Compact<u128>;
2252
2258
  readonly unlocking: Vec<PezpalletStakingAsyncLedgerUnlockChunk>;
2253
2259
  }
2254
2260
  /** @name PezpalletStakingAsyncNominations (975) */
2255
2261
  interface PezpalletStakingAsyncNominations extends Struct {
2256
- readonly targets: Vec<AccountId32>;
2262
+ readonly targets: Vec<PezspCoreCryptoAccountId32>;
2257
2263
  readonly submittedIn: u32;
2258
2264
  readonly suppressed: bool;
2259
2265
  }
@@ -2268,28 +2274,28 @@ declare module '@pezkuwi/types/lookup' {
2268
2274
  /** @name PezpalletStakingAsyncEraRewardPoints (984) */
2269
2275
  interface PezpalletStakingAsyncEraRewardPoints extends Struct {
2270
2276
  readonly total: u32;
2271
- readonly individual: BTreeMap<AccountId32, u32>;
2277
+ readonly individual: BTreeMap<PezspCoreCryptoAccountId32, u32>;
2272
2278
  }
2273
2279
  /** @name PezpalletStakingAsyncSlashingOffenceRecord (987) */
2274
2280
  interface PezpalletStakingAsyncSlashingOffenceRecord extends Struct {
2275
- readonly reporter: Option<AccountId32>;
2281
+ readonly reporter: Option<PezspCoreCryptoAccountId32>;
2276
2282
  readonly reportedEra: u32;
2277
2283
  readonly exposurePage: u32;
2278
- readonly slashFraction: Perbill;
2279
- readonly priorSlashFraction: Perbill;
2284
+ readonly slashFraction: u32;
2285
+ readonly priorSlashFraction: u32;
2280
2286
  }
2281
2287
  /** @name PezpalletStakingAsyncUnappliedSlash (991) */
2282
2288
  interface PezpalletStakingAsyncUnappliedSlash extends Struct {
2283
- readonly validator: AccountId32;
2289
+ readonly validator: PezspCoreCryptoAccountId32;
2284
2290
  readonly own: u128;
2285
- readonly others: Vec<ITuple<[AccountId32, u128]>>;
2286
- readonly reporter: Option<AccountId32>;
2291
+ readonly others: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
2292
+ readonly reporter: Option<PezspCoreCryptoAccountId32>;
2287
2293
  readonly payout: u128;
2288
2294
  }
2289
2295
  /** @name PezpalletStakingAsyncSnapshotStatus (994) */
2290
2296
  interface PezpalletStakingAsyncSnapshotStatus extends Enum {
2291
2297
  readonly isOngoing: boolean;
2292
- readonly asOngoing: AccountId32;
2298
+ readonly asOngoing: PezspCoreCryptoAccountId32;
2293
2299
  readonly isConsumed: boolean;
2294
2300
  readonly isWaiting: boolean;
2295
2301
  readonly type: 'Ongoing' | 'Consumed' | 'Waiting';