@polymeshassociation/polymesh-sdk 27.5.0 → 27.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/procedures/utils.d.ts +0 -6
- package/api/procedures/utils.d.ts.map +1 -1
- package/api/procedures/utils.js +3 -19
- package/api/procedures/utils.js.map +1 -1
- package/generated/types.d.ts +11 -4
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +9 -1
- package/generated/types.js.map +1 -1
- package/package.json +8 -4
- package/polkadot/augment-api-consts.d.ts +85 -1
- package/polkadot/augment-api-consts.d.ts.map +1 -1
- package/polkadot/augment-api-errors.d.ts +44 -12
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +179 -51
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +49 -59
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-runtime.d.ts +144 -3
- package/polkadot/augment-api-runtime.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +663 -284
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +388 -509
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +408 -521
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/polymesh/definitions.d.ts +307 -1
- package/polkadot/polymesh/definitions.d.ts.map +1 -1
- package/polkadot/polymesh/definitions.js +571 -1
- package/polkadot/polymesh/definitions.js.map +1 -1
- package/polkadot/registry.d.ts +36 -53
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/types-lookup.d.ts +431 -582
- package/polkadot/types-lookup.d.ts.map +1 -1
|
@@ -11,10 +11,10 @@ declare module "./types-lookup.ts" {
|
|
|
11
11
|
readonly consumers: u32;
|
|
12
12
|
readonly providers: u32;
|
|
13
13
|
readonly sufficients: u32;
|
|
14
|
-
readonly data:
|
|
14
|
+
readonly data: PalletBalancesAccountData;
|
|
15
15
|
}
|
|
16
|
-
/** @name
|
|
17
|
-
interface
|
|
16
|
+
/** @name PalletBalancesAccountData (5) */
|
|
17
|
+
interface PalletBalancesAccountData extends Struct {
|
|
18
18
|
readonly free: u128;
|
|
19
19
|
readonly reserved: u128;
|
|
20
20
|
readonly miscFrozen: u128;
|
|
@@ -168,8 +168,8 @@ declare module "./types-lookup.ts" {
|
|
|
168
168
|
} & Struct;
|
|
169
169
|
readonly type: 'IndexAssigned' | 'IndexFreed' | 'IndexFrozen';
|
|
170
170
|
}
|
|
171
|
-
/** @name
|
|
172
|
-
interface
|
|
171
|
+
/** @name PalletBalancesEvent (30) */
|
|
172
|
+
interface PalletBalancesEvent extends Enum {
|
|
173
173
|
readonly isEndowed: boolean;
|
|
174
174
|
readonly asEndowed: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, u128]>;
|
|
175
175
|
readonly isTransfer: boolean;
|
|
@@ -210,8 +210,8 @@ declare module "./types-lookup.ts" {
|
|
|
210
210
|
readonly isReserved: boolean;
|
|
211
211
|
readonly type: 'Free' | 'Reserved';
|
|
212
212
|
}
|
|
213
|
-
/** @name
|
|
214
|
-
interface
|
|
213
|
+
/** @name PalletTransactionPaymentEvent (36) */
|
|
214
|
+
interface PalletTransactionPaymentEvent extends Enum {
|
|
215
215
|
readonly isTransactionFeePaid: boolean;
|
|
216
216
|
readonly asTransactionFeePaid: {
|
|
217
217
|
readonly who: AccountId32;
|
|
@@ -220,8 +220,8 @@ declare module "./types-lookup.ts" {
|
|
|
220
220
|
} & Struct;
|
|
221
221
|
readonly type: 'TransactionFeePaid';
|
|
222
222
|
}
|
|
223
|
-
/** @name
|
|
224
|
-
interface
|
|
223
|
+
/** @name PalletIdentityEvent (37) */
|
|
224
|
+
interface PalletIdentityEvent extends Enum {
|
|
225
225
|
readonly isDidCreated: boolean;
|
|
226
226
|
readonly asDidCreated: ITuple<[
|
|
227
227
|
PolymeshPrimitivesIdentityId,
|
|
@@ -719,8 +719,8 @@ declare module "./types-lookup.ts" {
|
|
|
719
719
|
readonly isPolymeshV1PIA: boolean;
|
|
720
720
|
readonly type: 'Full' | 'Custom' | 'ExceptMeta' | 'PolymeshV1CAA' | 'PolymeshV1PIA';
|
|
721
721
|
}
|
|
722
|
-
/** @name
|
|
723
|
-
interface
|
|
722
|
+
/** @name PalletGroupEvent (79) */
|
|
723
|
+
interface PalletGroupEvent extends Enum {
|
|
724
724
|
readonly isMemberAdded: boolean;
|
|
725
725
|
readonly asMemberAdded: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
726
726
|
readonly isMemberRemoved: boolean;
|
|
@@ -743,10 +743,8 @@ declare module "./types-lookup.ts" {
|
|
|
743
743
|
readonly isDummy: boolean;
|
|
744
744
|
readonly type: 'MemberAdded' | 'MemberRemoved' | 'MemberRevoked' | 'MembersSwapped' | 'MembersReset' | 'ActiveLimitChanged' | 'Dummy';
|
|
745
745
|
}
|
|
746
|
-
/** @name
|
|
747
|
-
|
|
748
|
-
/** @name PalletCommitteeRawEventInstance1 (82) */
|
|
749
|
-
interface PalletCommitteeRawEventInstance1 extends Enum {
|
|
746
|
+
/** @name PalletCommitteeEvent (81) */
|
|
747
|
+
interface PalletCommitteeEvent extends Enum {
|
|
750
748
|
readonly isProposed: boolean;
|
|
751
749
|
readonly asProposed: ITuple<[PolymeshPrimitivesIdentityId, u32, H256]>;
|
|
752
750
|
readonly isVoted: boolean;
|
|
@@ -776,178 +774,20 @@ declare module "./types-lookup.ts" {
|
|
|
776
774
|
readonly isExpiresAfterUpdated: boolean;
|
|
777
775
|
readonly asExpiresAfterUpdated: ITuple<[
|
|
778
776
|
PolymeshPrimitivesIdentityId,
|
|
779
|
-
|
|
777
|
+
PolymeshPrimitivesMaybeBlock
|
|
780
778
|
]>;
|
|
781
779
|
readonly isVoteThresholdUpdated: boolean;
|
|
782
780
|
readonly asVoteThresholdUpdated: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
783
781
|
readonly type: 'Proposed' | 'Voted' | 'VoteRetracted' | 'FinalVotes' | 'Approved' | 'Rejected' | 'Executed' | 'ReleaseCoordinatorUpdated' | 'ExpiresAfterUpdated' | 'VoteThresholdUpdated';
|
|
784
782
|
}
|
|
785
|
-
/** @name
|
|
786
|
-
|
|
787
|
-
/** @name PolymeshCommonUtilitiesMaybeBlock (86) */
|
|
788
|
-
interface PolymeshCommonUtilitiesMaybeBlock extends Enum {
|
|
783
|
+
/** @name PolymeshPrimitivesMaybeBlock (84) */
|
|
784
|
+
interface PolymeshPrimitivesMaybeBlock extends Enum {
|
|
789
785
|
readonly isSome: boolean;
|
|
790
786
|
readonly asSome: u32;
|
|
791
787
|
readonly isNone: boolean;
|
|
792
788
|
readonly type: 'Some' | 'None';
|
|
793
789
|
}
|
|
794
|
-
/** @name
|
|
795
|
-
interface PolymeshCommonUtilitiesGroupRawEventInstance1 extends Enum {
|
|
796
|
-
readonly isMemberAdded: boolean;
|
|
797
|
-
readonly asMemberAdded: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
798
|
-
readonly isMemberRemoved: boolean;
|
|
799
|
-
readonly asMemberRemoved: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
800
|
-
readonly isMemberRevoked: boolean;
|
|
801
|
-
readonly asMemberRevoked: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
802
|
-
readonly isMembersSwapped: boolean;
|
|
803
|
-
readonly asMembersSwapped: ITuple<[
|
|
804
|
-
PolymeshPrimitivesIdentityId,
|
|
805
|
-
PolymeshPrimitivesIdentityId,
|
|
806
|
-
PolymeshPrimitivesIdentityId
|
|
807
|
-
]>;
|
|
808
|
-
readonly isMembersReset: boolean;
|
|
809
|
-
readonly asMembersReset: ITuple<[
|
|
810
|
-
PolymeshPrimitivesIdentityId,
|
|
811
|
-
Vec<PolymeshPrimitivesIdentityId>
|
|
812
|
-
]>;
|
|
813
|
-
readonly isActiveLimitChanged: boolean;
|
|
814
|
-
readonly asActiveLimitChanged: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
815
|
-
readonly isDummy: boolean;
|
|
816
|
-
readonly type: 'MemberAdded' | 'MemberRemoved' | 'MemberRevoked' | 'MembersSwapped' | 'MembersReset' | 'ActiveLimitChanged' | 'Dummy';
|
|
817
|
-
}
|
|
818
|
-
/** @name PalletGroupInstance1 (88) */
|
|
819
|
-
type PalletGroupInstance1 = Null;
|
|
820
|
-
/** @name PalletCommitteeRawEventInstance3 (89) */
|
|
821
|
-
interface PalletCommitteeRawEventInstance3 extends Enum {
|
|
822
|
-
readonly isProposed: boolean;
|
|
823
|
-
readonly asProposed: ITuple<[PolymeshPrimitivesIdentityId, u32, H256]>;
|
|
824
|
-
readonly isVoted: boolean;
|
|
825
|
-
readonly asVoted: ITuple<[PolymeshPrimitivesIdentityId, u32, H256, bool, u32, u32, u32]>;
|
|
826
|
-
readonly isVoteRetracted: boolean;
|
|
827
|
-
readonly asVoteRetracted: ITuple<[PolymeshPrimitivesIdentityId, u32, H256, bool]>;
|
|
828
|
-
readonly isFinalVotes: boolean;
|
|
829
|
-
readonly asFinalVotes: ITuple<[
|
|
830
|
-
Option<PolymeshPrimitivesIdentityId>,
|
|
831
|
-
u32,
|
|
832
|
-
H256,
|
|
833
|
-
Vec<PolymeshPrimitivesIdentityId>,
|
|
834
|
-
Vec<PolymeshPrimitivesIdentityId>
|
|
835
|
-
]>;
|
|
836
|
-
readonly isApproved: boolean;
|
|
837
|
-
readonly asApproved: ITuple<[Option<PolymeshPrimitivesIdentityId>, H256, u32, u32, u32]>;
|
|
838
|
-
readonly isRejected: boolean;
|
|
839
|
-
readonly asRejected: ITuple<[Option<PolymeshPrimitivesIdentityId>, H256, u32, u32, u32]>;
|
|
840
|
-
readonly isExecuted: boolean;
|
|
841
|
-
readonly asExecuted: ITuple<[
|
|
842
|
-
Option<PolymeshPrimitivesIdentityId>,
|
|
843
|
-
H256,
|
|
844
|
-
Result<Null, SpRuntimeDispatchError>
|
|
845
|
-
]>;
|
|
846
|
-
readonly isReleaseCoordinatorUpdated: boolean;
|
|
847
|
-
readonly asReleaseCoordinatorUpdated: Option<PolymeshPrimitivesIdentityId>;
|
|
848
|
-
readonly isExpiresAfterUpdated: boolean;
|
|
849
|
-
readonly asExpiresAfterUpdated: ITuple<[
|
|
850
|
-
PolymeshPrimitivesIdentityId,
|
|
851
|
-
PolymeshCommonUtilitiesMaybeBlock
|
|
852
|
-
]>;
|
|
853
|
-
readonly isVoteThresholdUpdated: boolean;
|
|
854
|
-
readonly asVoteThresholdUpdated: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
855
|
-
readonly type: 'Proposed' | 'Voted' | 'VoteRetracted' | 'FinalVotes' | 'Approved' | 'Rejected' | 'Executed' | 'ReleaseCoordinatorUpdated' | 'ExpiresAfterUpdated' | 'VoteThresholdUpdated';
|
|
856
|
-
}
|
|
857
|
-
/** @name PalletCommitteeInstance3 (90) */
|
|
858
|
-
type PalletCommitteeInstance3 = Null;
|
|
859
|
-
/** @name PolymeshCommonUtilitiesGroupRawEventInstance3 (91) */
|
|
860
|
-
interface PolymeshCommonUtilitiesGroupRawEventInstance3 extends Enum {
|
|
861
|
-
readonly isMemberAdded: boolean;
|
|
862
|
-
readonly asMemberAdded: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
863
|
-
readonly isMemberRemoved: boolean;
|
|
864
|
-
readonly asMemberRemoved: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
865
|
-
readonly isMemberRevoked: boolean;
|
|
866
|
-
readonly asMemberRevoked: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
867
|
-
readonly isMembersSwapped: boolean;
|
|
868
|
-
readonly asMembersSwapped: ITuple<[
|
|
869
|
-
PolymeshPrimitivesIdentityId,
|
|
870
|
-
PolymeshPrimitivesIdentityId,
|
|
871
|
-
PolymeshPrimitivesIdentityId
|
|
872
|
-
]>;
|
|
873
|
-
readonly isMembersReset: boolean;
|
|
874
|
-
readonly asMembersReset: ITuple<[
|
|
875
|
-
PolymeshPrimitivesIdentityId,
|
|
876
|
-
Vec<PolymeshPrimitivesIdentityId>
|
|
877
|
-
]>;
|
|
878
|
-
readonly isActiveLimitChanged: boolean;
|
|
879
|
-
readonly asActiveLimitChanged: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
880
|
-
readonly isDummy: boolean;
|
|
881
|
-
readonly type: 'MemberAdded' | 'MemberRemoved' | 'MemberRevoked' | 'MembersSwapped' | 'MembersReset' | 'ActiveLimitChanged' | 'Dummy';
|
|
882
|
-
}
|
|
883
|
-
/** @name PalletGroupInstance3 (92) */
|
|
884
|
-
type PalletGroupInstance3 = Null;
|
|
885
|
-
/** @name PalletCommitteeRawEventInstance4 (93) */
|
|
886
|
-
interface PalletCommitteeRawEventInstance4 extends Enum {
|
|
887
|
-
readonly isProposed: boolean;
|
|
888
|
-
readonly asProposed: ITuple<[PolymeshPrimitivesIdentityId, u32, H256]>;
|
|
889
|
-
readonly isVoted: boolean;
|
|
890
|
-
readonly asVoted: ITuple<[PolymeshPrimitivesIdentityId, u32, H256, bool, u32, u32, u32]>;
|
|
891
|
-
readonly isVoteRetracted: boolean;
|
|
892
|
-
readonly asVoteRetracted: ITuple<[PolymeshPrimitivesIdentityId, u32, H256, bool]>;
|
|
893
|
-
readonly isFinalVotes: boolean;
|
|
894
|
-
readonly asFinalVotes: ITuple<[
|
|
895
|
-
Option<PolymeshPrimitivesIdentityId>,
|
|
896
|
-
u32,
|
|
897
|
-
H256,
|
|
898
|
-
Vec<PolymeshPrimitivesIdentityId>,
|
|
899
|
-
Vec<PolymeshPrimitivesIdentityId>
|
|
900
|
-
]>;
|
|
901
|
-
readonly isApproved: boolean;
|
|
902
|
-
readonly asApproved: ITuple<[Option<PolymeshPrimitivesIdentityId>, H256, u32, u32, u32]>;
|
|
903
|
-
readonly isRejected: boolean;
|
|
904
|
-
readonly asRejected: ITuple<[Option<PolymeshPrimitivesIdentityId>, H256, u32, u32, u32]>;
|
|
905
|
-
readonly isExecuted: boolean;
|
|
906
|
-
readonly asExecuted: ITuple<[
|
|
907
|
-
Option<PolymeshPrimitivesIdentityId>,
|
|
908
|
-
H256,
|
|
909
|
-
Result<Null, SpRuntimeDispatchError>
|
|
910
|
-
]>;
|
|
911
|
-
readonly isReleaseCoordinatorUpdated: boolean;
|
|
912
|
-
readonly asReleaseCoordinatorUpdated: Option<PolymeshPrimitivesIdentityId>;
|
|
913
|
-
readonly isExpiresAfterUpdated: boolean;
|
|
914
|
-
readonly asExpiresAfterUpdated: ITuple<[
|
|
915
|
-
PolymeshPrimitivesIdentityId,
|
|
916
|
-
PolymeshCommonUtilitiesMaybeBlock
|
|
917
|
-
]>;
|
|
918
|
-
readonly isVoteThresholdUpdated: boolean;
|
|
919
|
-
readonly asVoteThresholdUpdated: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
920
|
-
readonly type: 'Proposed' | 'Voted' | 'VoteRetracted' | 'FinalVotes' | 'Approved' | 'Rejected' | 'Executed' | 'ReleaseCoordinatorUpdated' | 'ExpiresAfterUpdated' | 'VoteThresholdUpdated';
|
|
921
|
-
}
|
|
922
|
-
/** @name PalletCommitteeInstance4 (94) */
|
|
923
|
-
type PalletCommitteeInstance4 = Null;
|
|
924
|
-
/** @name PolymeshCommonUtilitiesGroupRawEventInstance4 (95) */
|
|
925
|
-
interface PolymeshCommonUtilitiesGroupRawEventInstance4 extends Enum {
|
|
926
|
-
readonly isMemberAdded: boolean;
|
|
927
|
-
readonly asMemberAdded: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
928
|
-
readonly isMemberRemoved: boolean;
|
|
929
|
-
readonly asMemberRemoved: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
930
|
-
readonly isMemberRevoked: boolean;
|
|
931
|
-
readonly asMemberRevoked: ITuple<[PolymeshPrimitivesIdentityId, PolymeshPrimitivesIdentityId]>;
|
|
932
|
-
readonly isMembersSwapped: boolean;
|
|
933
|
-
readonly asMembersSwapped: ITuple<[
|
|
934
|
-
PolymeshPrimitivesIdentityId,
|
|
935
|
-
PolymeshPrimitivesIdentityId,
|
|
936
|
-
PolymeshPrimitivesIdentityId
|
|
937
|
-
]>;
|
|
938
|
-
readonly isMembersReset: boolean;
|
|
939
|
-
readonly asMembersReset: ITuple<[
|
|
940
|
-
PolymeshPrimitivesIdentityId,
|
|
941
|
-
Vec<PolymeshPrimitivesIdentityId>
|
|
942
|
-
]>;
|
|
943
|
-
readonly isActiveLimitChanged: boolean;
|
|
944
|
-
readonly asActiveLimitChanged: ITuple<[PolymeshPrimitivesIdentityId, u32, u32]>;
|
|
945
|
-
readonly isDummy: boolean;
|
|
946
|
-
readonly type: 'MemberAdded' | 'MemberRemoved' | 'MemberRevoked' | 'MembersSwapped' | 'MembersReset' | 'ActiveLimitChanged' | 'Dummy';
|
|
947
|
-
}
|
|
948
|
-
/** @name PalletGroupInstance4 (96) */
|
|
949
|
-
type PalletGroupInstance4 = Null;
|
|
950
|
-
/** @name PalletMultisigEvent (97) */
|
|
790
|
+
/** @name PalletMultisigEvent (90) */
|
|
951
791
|
interface PalletMultisigEvent extends Enum {
|
|
952
792
|
readonly isMultiSigCreated: boolean;
|
|
953
793
|
readonly asMultiSigCreated: {
|
|
@@ -1040,7 +880,7 @@ declare module "./types-lookup.ts" {
|
|
|
1040
880
|
} & Struct;
|
|
1041
881
|
readonly type: 'MultiSigCreated' | 'ProposalAdded' | 'ProposalExecuted' | 'MultiSigSignerAdded' | 'MultiSigSignersAuthorized' | 'MultiSigSignersRemoved' | 'MultiSigSignersRequiredChanged' | 'ProposalApprovalVote' | 'ProposalRejectionVote' | 'ProposalApproved' | 'ProposalRejected' | 'MultiSigAddedAdmin' | 'MultiSigRemovedAdmin' | 'MultiSigRemovedPayingDid';
|
|
1042
882
|
}
|
|
1043
|
-
/** @name PalletStakingPalletEvent (
|
|
883
|
+
/** @name PalletStakingPalletEvent (92) */
|
|
1044
884
|
interface PalletStakingPalletEvent extends Enum {
|
|
1045
885
|
readonly isEraPaid: boolean;
|
|
1046
886
|
readonly asEraPaid: {
|
|
@@ -1151,12 +991,12 @@ declare module "./types-lookup.ts" {
|
|
|
1151
991
|
} & Struct;
|
|
1152
992
|
readonly type: 'EraPaid' | 'Rewarded' | 'Slashed' | 'SlashReported' | 'OldSlashingReportDiscarded' | 'StakersElected' | 'Bonded' | 'Unbonded' | 'Withdrawn' | 'Kicked' | 'StakingElectionFailed' | 'Chilled' | 'PayoutStarted' | 'ValidatorPrefsSet' | 'ForceEra' | 'Nominated' | 'PermissionedIdentityAdded' | 'PermissionedIdentityRemoved' | 'InvalidatedNominators' | 'SlashingAllowedForChanged' | 'RewardPaymentSchedulingInterrupted' | 'CommissionCapUpdated';
|
|
1153
993
|
}
|
|
1154
|
-
/** @name PalletStakingValidatorPrefs (
|
|
994
|
+
/** @name PalletStakingValidatorPrefs (94) */
|
|
1155
995
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
1156
996
|
readonly commission: Compact<Perbill>;
|
|
1157
997
|
readonly blocked: bool;
|
|
1158
998
|
}
|
|
1159
|
-
/** @name PalletStakingForcing (
|
|
999
|
+
/** @name PalletStakingForcing (96) */
|
|
1160
1000
|
interface PalletStakingForcing extends Enum {
|
|
1161
1001
|
readonly isNotForcing: boolean;
|
|
1162
1002
|
readonly isForceNew: boolean;
|
|
@@ -1164,14 +1004,14 @@ declare module "./types-lookup.ts" {
|
|
|
1164
1004
|
readonly isForceAlways: boolean;
|
|
1165
1005
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
1166
1006
|
}
|
|
1167
|
-
/** @name PalletStakingSlashingSwitch (
|
|
1007
|
+
/** @name PalletStakingSlashingSwitch (97) */
|
|
1168
1008
|
interface PalletStakingSlashingSwitch extends Enum {
|
|
1169
1009
|
readonly isValidator: boolean;
|
|
1170
1010
|
readonly isValidatorAndNominator: boolean;
|
|
1171
1011
|
readonly isNone: boolean;
|
|
1172
1012
|
readonly type: 'Validator' | 'ValidatorAndNominator' | 'None';
|
|
1173
1013
|
}
|
|
1174
|
-
/** @name PalletOffencesEvent (
|
|
1014
|
+
/** @name PalletOffencesEvent (98) */
|
|
1175
1015
|
interface PalletOffencesEvent extends Enum {
|
|
1176
1016
|
readonly isOffence: boolean;
|
|
1177
1017
|
readonly asOffence: {
|
|
@@ -1180,7 +1020,7 @@ declare module "./types-lookup.ts" {
|
|
|
1180
1020
|
} & Struct;
|
|
1181
1021
|
readonly type: 'Offence';
|
|
1182
1022
|
}
|
|
1183
|
-
/** @name PalletSessionEvent (
|
|
1023
|
+
/** @name PalletSessionEvent (99) */
|
|
1184
1024
|
interface PalletSessionEvent extends Enum {
|
|
1185
1025
|
readonly isNewSession: boolean;
|
|
1186
1026
|
readonly asNewSession: {
|
|
@@ -1188,7 +1028,7 @@ declare module "./types-lookup.ts" {
|
|
|
1188
1028
|
} & Struct;
|
|
1189
1029
|
readonly type: 'NewSession';
|
|
1190
1030
|
}
|
|
1191
|
-
/** @name PalletGrandpaEvent (
|
|
1031
|
+
/** @name PalletGrandpaEvent (100) */
|
|
1192
1032
|
interface PalletGrandpaEvent extends Enum {
|
|
1193
1033
|
readonly isNewAuthorities: boolean;
|
|
1194
1034
|
readonly asNewAuthorities: {
|
|
@@ -1198,13 +1038,13 @@ declare module "./types-lookup.ts" {
|
|
|
1198
1038
|
readonly isResumed: boolean;
|
|
1199
1039
|
readonly type: 'NewAuthorities' | 'Paused' | 'Resumed';
|
|
1200
1040
|
}
|
|
1201
|
-
/** @name SpConsensusGrandpaAppPublic (
|
|
1041
|
+
/** @name SpConsensusGrandpaAppPublic (103) */
|
|
1202
1042
|
interface SpConsensusGrandpaAppPublic extends SpCoreEd25519Public {
|
|
1203
1043
|
}
|
|
1204
|
-
/** @name SpCoreEd25519Public (
|
|
1044
|
+
/** @name SpCoreEd25519Public (104) */
|
|
1205
1045
|
interface SpCoreEd25519Public extends U8aFixed {
|
|
1206
1046
|
}
|
|
1207
|
-
/** @name PalletImOnlineEvent (
|
|
1047
|
+
/** @name PalletImOnlineEvent (105) */
|
|
1208
1048
|
interface PalletImOnlineEvent extends Enum {
|
|
1209
1049
|
readonly isHeartbeatReceived: boolean;
|
|
1210
1050
|
readonly asHeartbeatReceived: {
|
|
@@ -1217,35 +1057,41 @@ declare module "./types-lookup.ts" {
|
|
|
1217
1057
|
} & Struct;
|
|
1218
1058
|
readonly type: 'HeartbeatReceived' | 'AllGood' | 'SomeOffline';
|
|
1219
1059
|
}
|
|
1220
|
-
/** @name PalletImOnlineSr25519AppSr25519Public (
|
|
1060
|
+
/** @name PalletImOnlineSr25519AppSr25519Public (106) */
|
|
1221
1061
|
interface PalletImOnlineSr25519AppSr25519Public extends SpCoreSr25519Public {
|
|
1222
1062
|
}
|
|
1223
|
-
/** @name SpCoreSr25519Public (
|
|
1063
|
+
/** @name SpCoreSr25519Public (107) */
|
|
1224
1064
|
interface SpCoreSr25519Public extends U8aFixed {
|
|
1225
1065
|
}
|
|
1226
|
-
/** @name PalletStakingExposure (
|
|
1066
|
+
/** @name PalletStakingExposure (110) */
|
|
1227
1067
|
interface PalletStakingExposure extends Struct {
|
|
1228
1068
|
readonly total: Compact<u128>;
|
|
1229
1069
|
readonly own: Compact<u128>;
|
|
1230
1070
|
readonly others: Vec<PalletStakingIndividualExposure>;
|
|
1231
1071
|
}
|
|
1232
|
-
/** @name PalletStakingIndividualExposure (
|
|
1072
|
+
/** @name PalletStakingIndividualExposure (113) */
|
|
1233
1073
|
interface PalletStakingIndividualExposure extends Struct {
|
|
1234
1074
|
readonly who: AccountId32;
|
|
1235
1075
|
readonly value: Compact<u128>;
|
|
1236
1076
|
}
|
|
1237
|
-
/** @name
|
|
1238
|
-
interface
|
|
1077
|
+
/** @name PalletSudoEvent (114) */
|
|
1078
|
+
interface PalletSudoEvent extends Enum {
|
|
1239
1079
|
readonly isSudid: boolean;
|
|
1240
|
-
readonly asSudid:
|
|
1080
|
+
readonly asSudid: {
|
|
1081
|
+
readonly sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
1082
|
+
} & Struct;
|
|
1241
1083
|
readonly isKeyChanged: boolean;
|
|
1242
|
-
readonly asKeyChanged:
|
|
1084
|
+
readonly asKeyChanged: {
|
|
1085
|
+
readonly oldSudoer: Option<AccountId32>;
|
|
1086
|
+
} & Struct;
|
|
1243
1087
|
readonly isSudoAsDone: boolean;
|
|
1244
|
-
readonly asSudoAsDone:
|
|
1088
|
+
readonly asSudoAsDone: {
|
|
1089
|
+
readonly sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
1090
|
+
} & Struct;
|
|
1245
1091
|
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
|
|
1246
1092
|
}
|
|
1247
|
-
/** @name
|
|
1248
|
-
interface
|
|
1093
|
+
/** @name PalletAssetEvent (115) */
|
|
1094
|
+
interface PalletAssetEvent extends Enum {
|
|
1249
1095
|
readonly isAssetCreated: boolean;
|
|
1250
1096
|
readonly asAssetCreated: ITuple<[
|
|
1251
1097
|
PolymeshPrimitivesIdentityId,
|
|
@@ -1422,9 +1268,14 @@ declare module "./types-lookup.ts" {
|
|
|
1422
1268
|
PolymeshPrimitivesTicker,
|
|
1423
1269
|
PolymeshPrimitivesAssetAssetId
|
|
1424
1270
|
]>;
|
|
1425
|
-
readonly
|
|
1271
|
+
readonly isGlobalMetadataSpecUpdated: boolean;
|
|
1272
|
+
readonly asGlobalMetadataSpecUpdated: ITuple<[
|
|
1273
|
+
Bytes,
|
|
1274
|
+
PolymeshPrimitivesAssetMetadataAssetMetadataSpec
|
|
1275
|
+
]>;
|
|
1276
|
+
readonly type: 'AssetCreated' | 'IdentifiersUpdated' | 'DivisibilityChanged' | 'TickerRegistered' | 'TickerTransferred' | 'AssetOwnershipTransferred' | 'AssetFrozen' | 'AssetUnfrozen' | 'AssetRenamed' | 'FundingRoundSet' | 'DocumentAdded' | 'DocumentRemoved' | 'ControllerTransfer' | 'CustomAssetTypeExists' | 'CustomAssetTypeRegistered' | 'SetAssetMetadataValue' | 'SetAssetMetadataValueDetails' | 'RegisterAssetMetadataLocalType' | 'RegisterAssetMetadataGlobalType' | 'AssetTypeChanged' | 'LocalMetadataKeyDeleted' | 'MetadataValueDeleted' | 'AssetBalanceUpdated' | 'AssetAffirmationExemption' | 'RemoveAssetAffirmationExemption' | 'PreApprovedAsset' | 'RemovePreApprovedAsset' | 'AssetMediatorsAdded' | 'AssetMediatorsRemoved' | 'TickerLinkedToAsset' | 'TickerUnlinkedFromAsset' | 'GlobalMetadataSpecUpdated';
|
|
1426
1277
|
}
|
|
1427
|
-
/** @name PolymeshPrimitivesAssetAssetType (
|
|
1278
|
+
/** @name PolymeshPrimitivesAssetAssetType (116) */
|
|
1428
1279
|
interface PolymeshPrimitivesAssetAssetType extends Enum {
|
|
1429
1280
|
readonly isEquityCommon: boolean;
|
|
1430
1281
|
readonly isEquityPreferred: boolean;
|
|
@@ -1442,7 +1293,7 @@ declare module "./types-lookup.ts" {
|
|
|
1442
1293
|
readonly asNonFungible: PolymeshPrimitivesAssetNonFungibleType;
|
|
1443
1294
|
readonly type: 'EquityCommon' | 'EquityPreferred' | 'Commodity' | 'FixedIncome' | 'Reit' | 'Fund' | 'RevenueShareAgreement' | 'StructuredProduct' | 'Derivative' | 'Custom' | 'StableCoin' | 'NonFungible';
|
|
1444
1295
|
}
|
|
1445
|
-
/** @name PolymeshPrimitivesAssetNonFungibleType (
|
|
1296
|
+
/** @name PolymeshPrimitivesAssetNonFungibleType (118) */
|
|
1446
1297
|
interface PolymeshPrimitivesAssetNonFungibleType extends Enum {
|
|
1447
1298
|
readonly isDerivative: boolean;
|
|
1448
1299
|
readonly isFixedIncome: boolean;
|
|
@@ -1451,7 +1302,7 @@ declare module "./types-lookup.ts" {
|
|
|
1451
1302
|
readonly asCustom: u32;
|
|
1452
1303
|
readonly type: 'Derivative' | 'FixedIncome' | 'Invoice' | 'Custom';
|
|
1453
1304
|
}
|
|
1454
|
-
/** @name PolymeshPrimitivesAssetIdentifier (
|
|
1305
|
+
/** @name PolymeshPrimitivesAssetIdentifier (121) */
|
|
1455
1306
|
interface PolymeshPrimitivesAssetIdentifier extends Enum {
|
|
1456
1307
|
readonly isCusip: boolean;
|
|
1457
1308
|
readonly asCusip: U8aFixed;
|
|
@@ -1465,7 +1316,7 @@ declare module "./types-lookup.ts" {
|
|
|
1465
1316
|
readonly asFigi: U8aFixed;
|
|
1466
1317
|
readonly type: 'Cusip' | 'Cins' | 'Isin' | 'Lei' | 'Figi';
|
|
1467
1318
|
}
|
|
1468
|
-
/** @name PolymeshPrimitivesDocument (
|
|
1319
|
+
/** @name PolymeshPrimitivesDocument (127) */
|
|
1469
1320
|
interface PolymeshPrimitivesDocument extends Struct {
|
|
1470
1321
|
readonly uri: Bytes;
|
|
1471
1322
|
readonly contentHash: PolymeshPrimitivesDocumentHash;
|
|
@@ -1473,7 +1324,7 @@ declare module "./types-lookup.ts" {
|
|
|
1473
1324
|
readonly docType: Option<Bytes>;
|
|
1474
1325
|
readonly filingDate: Option<u64>;
|
|
1475
1326
|
}
|
|
1476
|
-
/** @name PolymeshPrimitivesDocumentHash (
|
|
1327
|
+
/** @name PolymeshPrimitivesDocumentHash (129) */
|
|
1477
1328
|
interface PolymeshPrimitivesDocumentHash extends Enum {
|
|
1478
1329
|
readonly isNone: boolean;
|
|
1479
1330
|
readonly isH512: boolean;
|
|
@@ -1494,12 +1345,12 @@ declare module "./types-lookup.ts" {
|
|
|
1494
1345
|
readonly asH128: U8aFixed;
|
|
1495
1346
|
readonly type: 'None' | 'H512' | 'H384' | 'H320' | 'H256' | 'H224' | 'H192' | 'H160' | 'H128';
|
|
1496
1347
|
}
|
|
1497
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (
|
|
1348
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail (140) */
|
|
1498
1349
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataValueDetail extends Struct {
|
|
1499
1350
|
readonly expire: Option<u64>;
|
|
1500
1351
|
readonly lockStatus: PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus;
|
|
1501
1352
|
}
|
|
1502
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (
|
|
1353
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus (141) */
|
|
1503
1354
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataLockStatus extends Enum {
|
|
1504
1355
|
readonly isUnlocked: boolean;
|
|
1505
1356
|
readonly isLocked: boolean;
|
|
@@ -1507,13 +1358,13 @@ declare module "./types-lookup.ts" {
|
|
|
1507
1358
|
readonly asLockedUntil: u64;
|
|
1508
1359
|
readonly type: 'Unlocked' | 'Locked' | 'LockedUntil';
|
|
1509
1360
|
}
|
|
1510
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (
|
|
1361
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataSpec (144) */
|
|
1511
1362
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataSpec extends Struct {
|
|
1512
1363
|
readonly url: Option<Bytes>;
|
|
1513
1364
|
readonly description: Option<Bytes>;
|
|
1514
1365
|
readonly typeDef: Option<Bytes>;
|
|
1515
1366
|
}
|
|
1516
|
-
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (
|
|
1367
|
+
/** @name PolymeshPrimitivesAssetMetadataAssetMetadataKey (151) */
|
|
1517
1368
|
interface PolymeshPrimitivesAssetMetadataAssetMetadataKey extends Enum {
|
|
1518
1369
|
readonly isGlobal: boolean;
|
|
1519
1370
|
readonly asGlobal: u64;
|
|
@@ -1521,7 +1372,7 @@ declare module "./types-lookup.ts" {
|
|
|
1521
1372
|
readonly asLocal: u64;
|
|
1522
1373
|
readonly type: 'Global' | 'Local';
|
|
1523
1374
|
}
|
|
1524
|
-
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (
|
|
1375
|
+
/** @name PolymeshPrimitivesPortfolioPortfolioUpdateReason (153) */
|
|
1525
1376
|
interface PolymeshPrimitivesPortfolioPortfolioUpdateReason extends Enum {
|
|
1526
1377
|
readonly isIssued: boolean;
|
|
1527
1378
|
readonly asIssued: {
|
|
@@ -1536,8 +1387,8 @@ declare module "./types-lookup.ts" {
|
|
|
1536
1387
|
readonly isControllerTransfer: boolean;
|
|
1537
1388
|
readonly type: 'Issued' | 'Redeemed' | 'Transferred' | 'ControllerTransfer';
|
|
1538
1389
|
}
|
|
1539
|
-
/** @name
|
|
1540
|
-
interface
|
|
1390
|
+
/** @name PalletCorporateActionsDistributionPalletEvent (157) */
|
|
1391
|
+
interface PalletCorporateActionsDistributionPalletEvent extends Enum {
|
|
1541
1392
|
readonly isCreated: boolean;
|
|
1542
1393
|
readonly asCreated: ITuple<[
|
|
1543
1394
|
PolymeshPrimitivesEventOnly,
|
|
@@ -1559,15 +1410,15 @@ declare module "./types-lookup.ts" {
|
|
|
1559
1410
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1560
1411
|
readonly type: 'Created' | 'BenefitClaimed' | 'Reclaimed' | 'Removed';
|
|
1561
1412
|
}
|
|
1562
|
-
/** @name PolymeshPrimitivesEventOnly (
|
|
1413
|
+
/** @name PolymeshPrimitivesEventOnly (158) */
|
|
1563
1414
|
interface PolymeshPrimitivesEventOnly extends PolymeshPrimitivesIdentityId {
|
|
1564
1415
|
}
|
|
1565
|
-
/** @name PalletCorporateActionsCaId (
|
|
1416
|
+
/** @name PalletCorporateActionsCaId (159) */
|
|
1566
1417
|
interface PalletCorporateActionsCaId extends Struct {
|
|
1567
1418
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
1568
1419
|
readonly localId: u32;
|
|
1569
1420
|
}
|
|
1570
|
-
/** @name PalletCorporateActionsDistribution (
|
|
1421
|
+
/** @name PalletCorporateActionsDistribution (161) */
|
|
1571
1422
|
interface PalletCorporateActionsDistribution extends Struct {
|
|
1572
1423
|
readonly from: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
1573
1424
|
readonly currency: PolymeshPrimitivesAssetAssetId;
|
|
@@ -1578,8 +1429,8 @@ declare module "./types-lookup.ts" {
|
|
|
1578
1429
|
readonly paymentAt: u64;
|
|
1579
1430
|
readonly expiresAt: Option<u64>;
|
|
1580
1431
|
}
|
|
1581
|
-
/** @name
|
|
1582
|
-
interface
|
|
1432
|
+
/** @name PalletAssetCheckpointPalletEvent (163) */
|
|
1433
|
+
interface PalletAssetCheckpointPalletEvent extends Enum {
|
|
1583
1434
|
readonly isCheckpointCreated: boolean;
|
|
1584
1435
|
readonly asCheckpointCreated: ITuple<[
|
|
1585
1436
|
Option<PolymeshPrimitivesIdentityId>,
|
|
@@ -1606,12 +1457,12 @@ declare module "./types-lookup.ts" {
|
|
|
1606
1457
|
]>;
|
|
1607
1458
|
readonly type: 'CheckpointCreated' | 'MaximumSchedulesComplexityChanged' | 'ScheduleCreated' | 'ScheduleRemoved';
|
|
1608
1459
|
}
|
|
1609
|
-
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (
|
|
1460
|
+
/** @name PolymeshCommonUtilitiesCheckpointScheduleCheckpoints (166) */
|
|
1610
1461
|
interface PolymeshCommonUtilitiesCheckpointScheduleCheckpoints extends Struct {
|
|
1611
1462
|
readonly pending: BTreeSet<u64>;
|
|
1612
1463
|
}
|
|
1613
|
-
/** @name
|
|
1614
|
-
interface
|
|
1464
|
+
/** @name PalletComplianceManagerEvent (169) */
|
|
1465
|
+
interface PalletComplianceManagerEvent extends Enum {
|
|
1615
1466
|
readonly isComplianceRequirementCreated: boolean;
|
|
1616
1467
|
readonly asComplianceRequirementCreated: ITuple<[
|
|
1617
1468
|
PolymeshPrimitivesIdentityId,
|
|
@@ -1665,18 +1516,18 @@ declare module "./types-lookup.ts" {
|
|
|
1665
1516
|
]>;
|
|
1666
1517
|
readonly type: 'ComplianceRequirementCreated' | 'ComplianceRequirementRemoved' | 'AssetComplianceReplaced' | 'AssetComplianceReset' | 'AssetComplianceResumed' | 'AssetCompliancePaused' | 'ComplianceRequirementChanged' | 'TrustedDefaultClaimIssuerAdded' | 'TrustedDefaultClaimIssuerRemoved';
|
|
1667
1518
|
}
|
|
1668
|
-
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (
|
|
1519
|
+
/** @name PolymeshPrimitivesComplianceManagerComplianceRequirement (170) */
|
|
1669
1520
|
interface PolymeshPrimitivesComplianceManagerComplianceRequirement extends Struct {
|
|
1670
1521
|
readonly senderConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1671
1522
|
readonly receiverConditions: Vec<PolymeshPrimitivesCondition>;
|
|
1672
1523
|
readonly id: u32;
|
|
1673
1524
|
}
|
|
1674
|
-
/** @name PolymeshPrimitivesCondition (
|
|
1525
|
+
/** @name PolymeshPrimitivesCondition (172) */
|
|
1675
1526
|
interface PolymeshPrimitivesCondition extends Struct {
|
|
1676
1527
|
readonly conditionType: PolymeshPrimitivesConditionConditionType;
|
|
1677
1528
|
readonly issuers: Vec<PolymeshPrimitivesConditionTrustedIssuer>;
|
|
1678
1529
|
}
|
|
1679
|
-
/** @name PolymeshPrimitivesConditionConditionType (
|
|
1530
|
+
/** @name PolymeshPrimitivesConditionConditionType (173) */
|
|
1680
1531
|
interface PolymeshPrimitivesConditionConditionType extends Enum {
|
|
1681
1532
|
readonly isIsPresent: boolean;
|
|
1682
1533
|
readonly asIsPresent: PolymeshPrimitivesIdentityClaimClaim;
|
|
@@ -1690,26 +1541,26 @@ declare module "./types-lookup.ts" {
|
|
|
1690
1541
|
readonly asIsIdentity: PolymeshPrimitivesConditionTargetIdentity;
|
|
1691
1542
|
readonly type: 'IsPresent' | 'IsAbsent' | 'IsAnyOf' | 'IsNoneOf' | 'IsIdentity';
|
|
1692
1543
|
}
|
|
1693
|
-
/** @name PolymeshPrimitivesConditionTargetIdentity (
|
|
1544
|
+
/** @name PolymeshPrimitivesConditionTargetIdentity (175) */
|
|
1694
1545
|
interface PolymeshPrimitivesConditionTargetIdentity extends Enum {
|
|
1695
1546
|
readonly isExternalAgent: boolean;
|
|
1696
1547
|
readonly isSpecific: boolean;
|
|
1697
1548
|
readonly asSpecific: PolymeshPrimitivesIdentityId;
|
|
1698
1549
|
readonly type: 'ExternalAgent' | 'Specific';
|
|
1699
1550
|
}
|
|
1700
|
-
/** @name PolymeshPrimitivesConditionTrustedIssuer (
|
|
1551
|
+
/** @name PolymeshPrimitivesConditionTrustedIssuer (177) */
|
|
1701
1552
|
interface PolymeshPrimitivesConditionTrustedIssuer extends Struct {
|
|
1702
1553
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
1703
1554
|
readonly trustedFor: PolymeshPrimitivesConditionTrustedFor;
|
|
1704
1555
|
}
|
|
1705
|
-
/** @name PolymeshPrimitivesConditionTrustedFor (
|
|
1556
|
+
/** @name PolymeshPrimitivesConditionTrustedFor (178) */
|
|
1706
1557
|
interface PolymeshPrimitivesConditionTrustedFor extends Enum {
|
|
1707
1558
|
readonly isAny: boolean;
|
|
1708
1559
|
readonly isSpecific: boolean;
|
|
1709
1560
|
readonly asSpecific: Vec<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
1710
1561
|
readonly type: 'Any' | 'Specific';
|
|
1711
1562
|
}
|
|
1712
|
-
/** @name PolymeshPrimitivesIdentityClaimClaimType (
|
|
1563
|
+
/** @name PolymeshPrimitivesIdentityClaimClaimType (180) */
|
|
1713
1564
|
interface PolymeshPrimitivesIdentityClaimClaimType extends Enum {
|
|
1714
1565
|
readonly isAccredited: boolean;
|
|
1715
1566
|
readonly isAffiliate: boolean;
|
|
@@ -1724,7 +1575,7 @@ declare module "./types-lookup.ts" {
|
|
|
1724
1575
|
readonly asCustom: u32;
|
|
1725
1576
|
readonly type: 'Accredited' | 'Affiliate' | 'BuyLockup' | 'SellLockup' | 'CustomerDueDiligence' | 'KnowYourCustomer' | 'Jurisdiction' | 'Exempted' | 'Blocked' | 'Custom';
|
|
1726
1577
|
}
|
|
1727
|
-
/** @name PalletCorporateActionsEvent (
|
|
1578
|
+
/** @name PalletCorporateActionsEvent (182) */
|
|
1728
1579
|
interface PalletCorporateActionsEvent extends Enum {
|
|
1729
1580
|
readonly isMaxDetailsLengthChanged: boolean;
|
|
1730
1581
|
readonly asMaxDetailsLengthChanged: ITuple<[PolymeshPrimitivesIdentityId, u32]>;
|
|
@@ -1770,18 +1621,18 @@ declare module "./types-lookup.ts" {
|
|
|
1770
1621
|
]>;
|
|
1771
1622
|
readonly type: 'MaxDetailsLengthChanged' | 'DefaultTargetIdentitiesChanged' | 'DefaultWithholdingTaxChanged' | 'DidWithholdingTaxChanged' | 'CaInitiated' | 'CaLinkedToDoc' | 'CaRemoved' | 'RecordDateChanged';
|
|
1772
1623
|
}
|
|
1773
|
-
/** @name PalletCorporateActionsTargetIdentities (
|
|
1624
|
+
/** @name PalletCorporateActionsTargetIdentities (183) */
|
|
1774
1625
|
interface PalletCorporateActionsTargetIdentities extends Struct {
|
|
1775
1626
|
readonly identities: Vec<PolymeshPrimitivesIdentityId>;
|
|
1776
1627
|
readonly treatment: PalletCorporateActionsTargetTreatment;
|
|
1777
1628
|
}
|
|
1778
|
-
/** @name PalletCorporateActionsTargetTreatment (
|
|
1629
|
+
/** @name PalletCorporateActionsTargetTreatment (184) */
|
|
1779
1630
|
interface PalletCorporateActionsTargetTreatment extends Enum {
|
|
1780
1631
|
readonly isInclude: boolean;
|
|
1781
1632
|
readonly isExclude: boolean;
|
|
1782
1633
|
readonly type: 'Include' | 'Exclude';
|
|
1783
1634
|
}
|
|
1784
|
-
/** @name PalletCorporateActionsCorporateAction (
|
|
1635
|
+
/** @name PalletCorporateActionsCorporateAction (186) */
|
|
1785
1636
|
interface PalletCorporateActionsCorporateAction extends Struct {
|
|
1786
1637
|
readonly kind: PalletCorporateActionsCaKind;
|
|
1787
1638
|
readonly declDate: u64;
|
|
@@ -1790,7 +1641,7 @@ declare module "./types-lookup.ts" {
|
|
|
1790
1641
|
readonly defaultWithholdingTax: Permill;
|
|
1791
1642
|
readonly withholdingTax: Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>;
|
|
1792
1643
|
}
|
|
1793
|
-
/** @name PalletCorporateActionsCaKind (
|
|
1644
|
+
/** @name PalletCorporateActionsCaKind (187) */
|
|
1794
1645
|
interface PalletCorporateActionsCaKind extends Enum {
|
|
1795
1646
|
readonly isPredictableBenefit: boolean;
|
|
1796
1647
|
readonly isUnpredictableBenefit: boolean;
|
|
@@ -1799,12 +1650,12 @@ declare module "./types-lookup.ts" {
|
|
|
1799
1650
|
readonly isOther: boolean;
|
|
1800
1651
|
readonly type: 'PredictableBenefit' | 'UnpredictableBenefit' | 'IssuerNotice' | 'Reorganization' | 'Other';
|
|
1801
1652
|
}
|
|
1802
|
-
/** @name PalletCorporateActionsRecordDate (
|
|
1653
|
+
/** @name PalletCorporateActionsRecordDate (189) */
|
|
1803
1654
|
interface PalletCorporateActionsRecordDate extends Struct {
|
|
1804
1655
|
readonly date: u64;
|
|
1805
1656
|
readonly checkpoint: PalletCorporateActionsCaCheckpoint;
|
|
1806
1657
|
}
|
|
1807
|
-
/** @name PalletCorporateActionsCaCheckpoint (
|
|
1658
|
+
/** @name PalletCorporateActionsCaCheckpoint (190) */
|
|
1808
1659
|
interface PalletCorporateActionsCaCheckpoint extends Enum {
|
|
1809
1660
|
readonly isScheduled: boolean;
|
|
1810
1661
|
readonly asScheduled: ITuple<[u64, u64]>;
|
|
@@ -1812,8 +1663,8 @@ declare module "./types-lookup.ts" {
|
|
|
1812
1663
|
readonly asExisting: u64;
|
|
1813
1664
|
readonly type: 'Scheduled' | 'Existing';
|
|
1814
1665
|
}
|
|
1815
|
-
/** @name
|
|
1816
|
-
interface
|
|
1666
|
+
/** @name PalletCorporateActionsBallotPalletEvent (195) */
|
|
1667
|
+
interface PalletCorporateActionsBallotPalletEvent extends Enum {
|
|
1817
1668
|
readonly isCreated: boolean;
|
|
1818
1669
|
readonly asCreated: ITuple<[
|
|
1819
1670
|
PolymeshPrimitivesIdentityId,
|
|
@@ -1846,29 +1697,29 @@ declare module "./types-lookup.ts" {
|
|
|
1846
1697
|
readonly asRemoved: ITuple<[PolymeshPrimitivesEventOnly, PalletCorporateActionsCaId]>;
|
|
1847
1698
|
readonly type: 'Created' | 'VoteCast' | 'RangeChanged' | 'MetaChanged' | 'RcvChanged' | 'Removed';
|
|
1848
1699
|
}
|
|
1849
|
-
/** @name PalletCorporateActionsBallotBallotTimeRange (
|
|
1700
|
+
/** @name PalletCorporateActionsBallotBallotTimeRange (196) */
|
|
1850
1701
|
interface PalletCorporateActionsBallotBallotTimeRange extends Struct {
|
|
1851
1702
|
readonly start: u64;
|
|
1852
1703
|
readonly end: u64;
|
|
1853
1704
|
}
|
|
1854
|
-
/** @name PalletCorporateActionsBallotBallotMeta (
|
|
1705
|
+
/** @name PalletCorporateActionsBallotBallotMeta (197) */
|
|
1855
1706
|
interface PalletCorporateActionsBallotBallotMeta extends Struct {
|
|
1856
1707
|
readonly title: Bytes;
|
|
1857
1708
|
readonly motions: Vec<PalletCorporateActionsBallotMotion>;
|
|
1858
1709
|
}
|
|
1859
|
-
/** @name PalletCorporateActionsBallotMotion (
|
|
1710
|
+
/** @name PalletCorporateActionsBallotMotion (200) */
|
|
1860
1711
|
interface PalletCorporateActionsBallotMotion extends Struct {
|
|
1861
1712
|
readonly title: Bytes;
|
|
1862
1713
|
readonly infoLink: Bytes;
|
|
1863
1714
|
readonly choices: Vec<Bytes>;
|
|
1864
1715
|
}
|
|
1865
|
-
/** @name PalletCorporateActionsBallotBallotVote (
|
|
1716
|
+
/** @name PalletCorporateActionsBallotBallotVote (206) */
|
|
1866
1717
|
interface PalletCorporateActionsBallotBallotVote extends Struct {
|
|
1867
1718
|
readonly power: u128;
|
|
1868
1719
|
readonly fallback: Option<u16>;
|
|
1869
1720
|
}
|
|
1870
|
-
/** @name
|
|
1871
|
-
interface
|
|
1721
|
+
/** @name PalletPipsEvent (209) */
|
|
1722
|
+
interface PalletPipsEvent extends Enum {
|
|
1872
1723
|
readonly isHistoricalPipsPruned: boolean;
|
|
1873
1724
|
readonly asHistoricalPipsPruned: ITuple<[PolymeshPrimitivesIdentityId, bool, bool]>;
|
|
1874
1725
|
readonly isProposalCreated: boolean;
|
|
@@ -1879,7 +1730,7 @@ declare module "./types-lookup.ts" {
|
|
|
1879
1730
|
u128,
|
|
1880
1731
|
Option<Bytes>,
|
|
1881
1732
|
Option<Bytes>,
|
|
1882
|
-
|
|
1733
|
+
PolymeshPrimitivesMaybeBlock,
|
|
1883
1734
|
PalletPipsProposalData
|
|
1884
1735
|
]>;
|
|
1885
1736
|
readonly isProposalStateUpdated: boolean;
|
|
@@ -1901,8 +1752,8 @@ declare module "./types-lookup.ts" {
|
|
|
1901
1752
|
readonly isPendingPipExpiryChanged: boolean;
|
|
1902
1753
|
readonly asPendingPipExpiryChanged: ITuple<[
|
|
1903
1754
|
PolymeshPrimitivesIdentityId,
|
|
1904
|
-
|
|
1905
|
-
|
|
1755
|
+
PolymeshPrimitivesMaybeBlock,
|
|
1756
|
+
PolymeshPrimitivesMaybeBlock
|
|
1906
1757
|
]>;
|
|
1907
1758
|
readonly isMaxPipSkipCountChanged: boolean;
|
|
1908
1759
|
readonly asMaxPipSkipCountChanged: ITuple<[PolymeshPrimitivesIdentityId, u8, u8]>;
|
|
@@ -1938,7 +1789,7 @@ declare module "./types-lookup.ts" {
|
|
|
1938
1789
|
readonly asExecutionCancellingFailed: u32;
|
|
1939
1790
|
readonly type: 'HistoricalPipsPruned' | 'ProposalCreated' | 'ProposalStateUpdated' | 'Voted' | 'PipClosed' | 'ExecutionScheduled' | 'DefaultEnactmentPeriodChanged' | 'MinimumProposalDepositChanged' | 'PendingPipExpiryChanged' | 'MaxPipSkipCountChanged' | 'ActivePipLimitChanged' | 'ProposalRefund' | 'SnapshotCleared' | 'SnapshotTaken' | 'PipSkipped' | 'SnapshotResultsEnacted' | 'ExecutionSchedulingFailed' | 'ExpiryScheduled' | 'ExpirySchedulingFailed' | 'ExecutionCancellingFailed';
|
|
1940
1791
|
}
|
|
1941
|
-
/** @name PalletPipsProposer (
|
|
1792
|
+
/** @name PalletPipsProposer (210) */
|
|
1942
1793
|
interface PalletPipsProposer extends Enum {
|
|
1943
1794
|
readonly isCommunity: boolean;
|
|
1944
1795
|
readonly asCommunity: AccountId32;
|
|
@@ -1946,13 +1797,13 @@ declare module "./types-lookup.ts" {
|
|
|
1946
1797
|
readonly asCommittee: PalletPipsCommittee;
|
|
1947
1798
|
readonly type: 'Community' | 'Committee';
|
|
1948
1799
|
}
|
|
1949
|
-
/** @name PalletPipsCommittee (
|
|
1800
|
+
/** @name PalletPipsCommittee (211) */
|
|
1950
1801
|
interface PalletPipsCommittee extends Enum {
|
|
1951
1802
|
readonly isTechnical: boolean;
|
|
1952
1803
|
readonly isUpgrade: boolean;
|
|
1953
1804
|
readonly type: 'Technical' | 'Upgrade';
|
|
1954
1805
|
}
|
|
1955
|
-
/** @name PalletPipsProposalData (
|
|
1806
|
+
/** @name PalletPipsProposalData (215) */
|
|
1956
1807
|
interface PalletPipsProposalData extends Enum {
|
|
1957
1808
|
readonly isHash: boolean;
|
|
1958
1809
|
readonly asHash: H256;
|
|
@@ -1960,7 +1811,7 @@ declare module "./types-lookup.ts" {
|
|
|
1960
1811
|
readonly asProposal: Bytes;
|
|
1961
1812
|
readonly type: 'Hash' | 'Proposal';
|
|
1962
1813
|
}
|
|
1963
|
-
/** @name PalletPipsProposalState (
|
|
1814
|
+
/** @name PalletPipsProposalState (216) */
|
|
1964
1815
|
interface PalletPipsProposalState extends Enum {
|
|
1965
1816
|
readonly isPending: boolean;
|
|
1966
1817
|
readonly isRejected: boolean;
|
|
@@ -1970,13 +1821,13 @@ declare module "./types-lookup.ts" {
|
|
|
1970
1821
|
readonly isExpired: boolean;
|
|
1971
1822
|
readonly type: 'Pending' | 'Rejected' | 'Scheduled' | 'Failed' | 'Executed' | 'Expired';
|
|
1972
1823
|
}
|
|
1973
|
-
/** @name PalletPipsSnapshottedPip (
|
|
1824
|
+
/** @name PalletPipsSnapshottedPip (219) */
|
|
1974
1825
|
interface PalletPipsSnapshottedPip extends Struct {
|
|
1975
1826
|
readonly id: u32;
|
|
1976
1827
|
readonly weight: ITuple<[bool, u128]>;
|
|
1977
1828
|
}
|
|
1978
|
-
/** @name
|
|
1979
|
-
interface
|
|
1829
|
+
/** @name PalletPortfolioEvent (225) */
|
|
1830
|
+
interface PalletPortfolioEvent extends Enum {
|
|
1980
1831
|
readonly isPortfolioCreated: boolean;
|
|
1981
1832
|
readonly asPortfolioCreated: ITuple<[PolymeshPrimitivesIdentityId, u64, Bytes]>;
|
|
1982
1833
|
readonly isPortfolioDeleted: boolean;
|
|
@@ -2011,9 +1862,19 @@ declare module "./types-lookup.ts" {
|
|
|
2011
1862
|
PolymeshPrimitivesIdentityIdPortfolioId,
|
|
2012
1863
|
PolymeshPrimitivesAssetAssetId
|
|
2013
1864
|
]>;
|
|
2014
|
-
readonly
|
|
1865
|
+
readonly isAllowIdentityToCreatePortfolios: boolean;
|
|
1866
|
+
readonly asAllowIdentityToCreatePortfolios: ITuple<[
|
|
1867
|
+
PolymeshPrimitivesIdentityId,
|
|
1868
|
+
PolymeshPrimitivesIdentityId
|
|
1869
|
+
]>;
|
|
1870
|
+
readonly isRevokeCreatePortfoliosPermission: boolean;
|
|
1871
|
+
readonly asRevokeCreatePortfoliosPermission: ITuple<[
|
|
1872
|
+
PolymeshPrimitivesIdentityId,
|
|
1873
|
+
PolymeshPrimitivesIdentityId
|
|
1874
|
+
]>;
|
|
1875
|
+
readonly type: 'PortfolioCreated' | 'PortfolioDeleted' | 'PortfolioRenamed' | 'UserPortfolios' | 'PortfolioCustodianChanged' | 'FundsMovedBetweenPortfolios' | 'PreApprovedPortfolio' | 'RevokePreApprovedPortfolio' | 'AllowIdentityToCreatePortfolios' | 'RevokeCreatePortfoliosPermission';
|
|
2015
1876
|
}
|
|
2016
|
-
/** @name PolymeshPrimitivesPortfolioFundDescription (
|
|
1877
|
+
/** @name PolymeshPrimitivesPortfolioFundDescription (229) */
|
|
2017
1878
|
interface PolymeshPrimitivesPortfolioFundDescription extends Enum {
|
|
2018
1879
|
readonly isFungible: boolean;
|
|
2019
1880
|
readonly asFungible: {
|
|
@@ -2024,13 +1885,13 @@ declare module "./types-lookup.ts" {
|
|
|
2024
1885
|
readonly asNonFungible: PolymeshPrimitivesNftNfTs;
|
|
2025
1886
|
readonly type: 'Fungible' | 'NonFungible';
|
|
2026
1887
|
}
|
|
2027
|
-
/** @name PolymeshPrimitivesNftNfTs (
|
|
1888
|
+
/** @name PolymeshPrimitivesNftNfTs (230) */
|
|
2028
1889
|
interface PolymeshPrimitivesNftNfTs extends Struct {
|
|
2029
1890
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
2030
1891
|
readonly ids: Vec<u64>;
|
|
2031
1892
|
}
|
|
2032
|
-
/** @name
|
|
2033
|
-
interface
|
|
1893
|
+
/** @name PalletProtocolFeeEvent (233) */
|
|
1894
|
+
interface PalletProtocolFeeEvent extends Enum {
|
|
2034
1895
|
readonly isFeeSet: boolean;
|
|
2035
1896
|
readonly asFeeSet: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
2036
1897
|
readonly isCoefficientSet: boolean;
|
|
@@ -2039,10 +1900,10 @@ declare module "./types-lookup.ts" {
|
|
|
2039
1900
|
readonly asFeeCharged: ITuple<[AccountId32, u128]>;
|
|
2040
1901
|
readonly type: 'FeeSet' | 'CoefficientSet' | 'FeeCharged';
|
|
2041
1902
|
}
|
|
2042
|
-
/** @name PolymeshPrimitivesPosRatio (
|
|
1903
|
+
/** @name PolymeshPrimitivesPosRatio (234) */
|
|
2043
1904
|
interface PolymeshPrimitivesPosRatio extends ITuple<[u32, u32]> {
|
|
2044
1905
|
}
|
|
2045
|
-
/** @name PalletSchedulerEvent (
|
|
1906
|
+
/** @name PalletSchedulerEvent (235) */
|
|
2046
1907
|
interface PalletSchedulerEvent extends Enum {
|
|
2047
1908
|
readonly isScheduled: boolean;
|
|
2048
1909
|
readonly asScheduled: {
|
|
@@ -2077,8 +1938,8 @@ declare module "./types-lookup.ts" {
|
|
|
2077
1938
|
} & Struct;
|
|
2078
1939
|
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';
|
|
2079
1940
|
}
|
|
2080
|
-
/** @name
|
|
2081
|
-
interface
|
|
1941
|
+
/** @name PalletSettlementEvent (238) */
|
|
1942
|
+
interface PalletSettlementEvent extends Enum {
|
|
2082
1943
|
readonly isVenueCreated: boolean;
|
|
2083
1944
|
readonly asVenueCreated: ITuple<[
|
|
2084
1945
|
PolymeshPrimitivesIdentityId,
|
|
@@ -2189,7 +2050,7 @@ declare module "./types-lookup.ts" {
|
|
|
2189
2050
|
readonly asInstructionMediators: ITuple<[u64, BTreeSet<PolymeshPrimitivesIdentityId>]>;
|
|
2190
2051
|
readonly type: 'VenueCreated' | 'VenueDetailsUpdated' | 'VenueTypeUpdated' | 'InstructionAffirmed' | 'AffirmationWithdrawn' | 'InstructionRejected' | 'ReceiptClaimed' | 'VenueFiltering' | 'VenuesAllowed' | 'VenuesBlocked' | 'LegFailedExecution' | 'InstructionExecuted' | 'VenueUnauthorized' | 'SchedulingFailed' | 'InstructionRescheduled' | 'VenueSignersUpdated' | 'SettlementManuallyExecuted' | 'InstructionCreated' | 'FailedToExecuteInstruction' | 'InstructionAutomaticallyAffirmed' | 'MediatorAffirmationReceived' | 'MediatorAffirmationWithdrawn' | 'InstructionMediators';
|
|
2191
2052
|
}
|
|
2192
|
-
/** @name PolymeshPrimitivesSettlementVenueType (
|
|
2053
|
+
/** @name PolymeshPrimitivesSettlementVenueType (241) */
|
|
2193
2054
|
interface PolymeshPrimitivesSettlementVenueType extends Enum {
|
|
2194
2055
|
readonly isOther: boolean;
|
|
2195
2056
|
readonly isDistribution: boolean;
|
|
@@ -2197,10 +2058,10 @@ declare module "./types-lookup.ts" {
|
|
|
2197
2058
|
readonly isExchange: boolean;
|
|
2198
2059
|
readonly type: 'Other' | 'Distribution' | 'Sto' | 'Exchange';
|
|
2199
2060
|
}
|
|
2200
|
-
/** @name PolymeshPrimitivesSettlementReceiptMetadata (
|
|
2061
|
+
/** @name PolymeshPrimitivesSettlementReceiptMetadata (244) */
|
|
2201
2062
|
interface PolymeshPrimitivesSettlementReceiptMetadata extends U8aFixed {
|
|
2202
2063
|
}
|
|
2203
|
-
/** @name PolymeshPrimitivesSettlementSettlementType (
|
|
2064
|
+
/** @name PolymeshPrimitivesSettlementSettlementType (247) */
|
|
2204
2065
|
interface PolymeshPrimitivesSettlementSettlementType extends Enum {
|
|
2205
2066
|
readonly isSettleOnAffirmation: boolean;
|
|
2206
2067
|
readonly isSettleOnBlock: boolean;
|
|
@@ -2209,7 +2070,7 @@ declare module "./types-lookup.ts" {
|
|
|
2209
2070
|
readonly asSettleManual: u32;
|
|
2210
2071
|
readonly type: 'SettleOnAffirmation' | 'SettleOnBlock' | 'SettleManual';
|
|
2211
2072
|
}
|
|
2212
|
-
/** @name PolymeshPrimitivesSettlementLeg (
|
|
2073
|
+
/** @name PolymeshPrimitivesSettlementLeg (249) */
|
|
2213
2074
|
interface PolymeshPrimitivesSettlementLeg extends Enum {
|
|
2214
2075
|
readonly isFungible: boolean;
|
|
2215
2076
|
readonly asFungible: {
|
|
@@ -2233,8 +2094,8 @@ declare module "./types-lookup.ts" {
|
|
|
2233
2094
|
} & Struct;
|
|
2234
2095
|
readonly type: 'Fungible' | 'NonFungible' | 'OffChain';
|
|
2235
2096
|
}
|
|
2236
|
-
/** @name
|
|
2237
|
-
interface
|
|
2097
|
+
/** @name PalletStatisticsEvent (250) */
|
|
2098
|
+
interface PalletStatisticsEvent extends Enum {
|
|
2238
2099
|
readonly isStatTypesAdded: boolean;
|
|
2239
2100
|
readonly asStatTypesAdded: ITuple<[
|
|
2240
2101
|
PolymeshPrimitivesIdentityId,
|
|
@@ -2274,30 +2135,30 @@ declare module "./types-lookup.ts" {
|
|
|
2274
2135
|
]>;
|
|
2275
2136
|
readonly type: 'StatTypesAdded' | 'StatTypesRemoved' | 'AssetStatsUpdated' | 'SetAssetTransferCompliance' | 'TransferConditionExemptionsAdded' | 'TransferConditionExemptionsRemoved';
|
|
2276
2137
|
}
|
|
2277
|
-
/** @name PolymeshPrimitivesStatisticsStatType (
|
|
2138
|
+
/** @name PolymeshPrimitivesStatisticsStatType (252) */
|
|
2278
2139
|
interface PolymeshPrimitivesStatisticsStatType extends Struct {
|
|
2279
2140
|
readonly operationType: PolymeshPrimitivesStatisticsStatOpType;
|
|
2280
2141
|
readonly claimIssuer: Option<ITuple<[PolymeshPrimitivesIdentityClaimClaimType, PolymeshPrimitivesIdentityId]>>;
|
|
2281
2142
|
}
|
|
2282
|
-
/** @name PolymeshPrimitivesStatisticsStatOpType (
|
|
2143
|
+
/** @name PolymeshPrimitivesStatisticsStatOpType (253) */
|
|
2283
2144
|
interface PolymeshPrimitivesStatisticsStatOpType extends Enum {
|
|
2284
2145
|
readonly isCount: boolean;
|
|
2285
2146
|
readonly isBalance: boolean;
|
|
2286
2147
|
readonly type: 'Count' | 'Balance';
|
|
2287
2148
|
}
|
|
2288
|
-
/** @name PolymeshPrimitivesStatisticsStatUpdate (
|
|
2149
|
+
/** @name PolymeshPrimitivesStatisticsStatUpdate (257) */
|
|
2289
2150
|
interface PolymeshPrimitivesStatisticsStatUpdate extends Struct {
|
|
2290
2151
|
readonly key2: PolymeshPrimitivesStatisticsStat2ndKey;
|
|
2291
2152
|
readonly value: Option<u128>;
|
|
2292
2153
|
}
|
|
2293
|
-
/** @name PolymeshPrimitivesStatisticsStat2ndKey (
|
|
2154
|
+
/** @name PolymeshPrimitivesStatisticsStat2ndKey (258) */
|
|
2294
2155
|
interface PolymeshPrimitivesStatisticsStat2ndKey extends Enum {
|
|
2295
2156
|
readonly isNoClaimStat: boolean;
|
|
2296
2157
|
readonly isClaim: boolean;
|
|
2297
2158
|
readonly asClaim: PolymeshPrimitivesStatisticsStatClaim;
|
|
2298
2159
|
readonly type: 'NoClaimStat' | 'Claim';
|
|
2299
2160
|
}
|
|
2300
|
-
/** @name PolymeshPrimitivesStatisticsStatClaim (
|
|
2161
|
+
/** @name PolymeshPrimitivesStatisticsStatClaim (259) */
|
|
2301
2162
|
interface PolymeshPrimitivesStatisticsStatClaim extends Enum {
|
|
2302
2163
|
readonly isAccredited: boolean;
|
|
2303
2164
|
readonly asAccredited: bool;
|
|
@@ -2307,7 +2168,7 @@ declare module "./types-lookup.ts" {
|
|
|
2307
2168
|
readonly asJurisdiction: Option<PolymeshPrimitivesJurisdictionCountryCode>;
|
|
2308
2169
|
readonly type: 'Accredited' | 'Affiliate' | 'Jurisdiction';
|
|
2309
2170
|
}
|
|
2310
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (
|
|
2171
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferCondition (263) */
|
|
2311
2172
|
interface PolymeshPrimitivesTransferComplianceTransferCondition extends Enum {
|
|
2312
2173
|
readonly isMaxInvestorCount: boolean;
|
|
2313
2174
|
readonly asMaxInvestorCount: u64;
|
|
@@ -2329,14 +2190,14 @@ declare module "./types-lookup.ts" {
|
|
|
2329
2190
|
]>;
|
|
2330
2191
|
readonly type: 'MaxInvestorCount' | 'MaxInvestorOwnership' | 'ClaimCount' | 'ClaimOwnership';
|
|
2331
2192
|
}
|
|
2332
|
-
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (
|
|
2193
|
+
/** @name PolymeshPrimitivesTransferComplianceTransferConditionExemptKey (264) */
|
|
2333
2194
|
interface PolymeshPrimitivesTransferComplianceTransferConditionExemptKey extends Struct {
|
|
2334
2195
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
2335
2196
|
readonly op: PolymeshPrimitivesStatisticsStatOpType;
|
|
2336
2197
|
readonly claimType: Option<PolymeshPrimitivesIdentityClaimClaimType>;
|
|
2337
2198
|
}
|
|
2338
|
-
/** @name
|
|
2339
|
-
interface
|
|
2199
|
+
/** @name PalletStoEvent (266) */
|
|
2200
|
+
interface PalletStoEvent extends Enum {
|
|
2340
2201
|
readonly isFundraiserCreated: boolean;
|
|
2341
2202
|
readonly asFundraiserCreated: ITuple<[
|
|
2342
2203
|
PolymeshPrimitivesIdentityId,
|
|
@@ -2370,7 +2231,7 @@ declare module "./types-lookup.ts" {
|
|
|
2370
2231
|
readonly asFundraiserClosed: ITuple<[PolymeshPrimitivesIdentityId, u64]>;
|
|
2371
2232
|
readonly type: 'FundraiserCreated' | 'Invested' | 'FundraiserFrozen' | 'FundraiserUnfrozen' | 'FundraiserWindowModified' | 'FundraiserClosed';
|
|
2372
2233
|
}
|
|
2373
|
-
/** @name PalletStoFundraiser (
|
|
2234
|
+
/** @name PalletStoFundraiser (269) */
|
|
2374
2235
|
interface PalletStoFundraiser extends Struct {
|
|
2375
2236
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
2376
2237
|
readonly offeringPortfolio: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
@@ -2384,13 +2245,13 @@ declare module "./types-lookup.ts" {
|
|
|
2384
2245
|
readonly status: PalletStoFundraiserStatus;
|
|
2385
2246
|
readonly minimumInvestment: u128;
|
|
2386
2247
|
}
|
|
2387
|
-
/** @name PalletStoFundraiserTier (
|
|
2248
|
+
/** @name PalletStoFundraiserTier (271) */
|
|
2388
2249
|
interface PalletStoFundraiserTier extends Struct {
|
|
2389
2250
|
readonly total: u128;
|
|
2390
2251
|
readonly price: u128;
|
|
2391
2252
|
readonly remaining: u128;
|
|
2392
2253
|
}
|
|
2393
|
-
/** @name PalletStoFundraiserStatus (
|
|
2254
|
+
/** @name PalletStoFundraiserStatus (272) */
|
|
2394
2255
|
interface PalletStoFundraiserStatus extends Enum {
|
|
2395
2256
|
readonly isLive: boolean;
|
|
2396
2257
|
readonly isFrozen: boolean;
|
|
@@ -2398,8 +2259,8 @@ declare module "./types-lookup.ts" {
|
|
|
2398
2259
|
readonly isClosedEarly: boolean;
|
|
2399
2260
|
readonly type: 'Live' | 'Frozen' | 'Closed' | 'ClosedEarly';
|
|
2400
2261
|
}
|
|
2401
|
-
/** @name
|
|
2402
|
-
interface
|
|
2262
|
+
/** @name PalletTreasuryEvent (273) */
|
|
2263
|
+
interface PalletTreasuryEvent extends Enum {
|
|
2403
2264
|
readonly isTreasuryDisbursement: boolean;
|
|
2404
2265
|
readonly asTreasuryDisbursement: ITuple<[
|
|
2405
2266
|
PolymeshPrimitivesIdentityId,
|
|
@@ -2418,7 +2279,7 @@ declare module "./types-lookup.ts" {
|
|
|
2418
2279
|
readonly asTreasuryReimbursement: ITuple<[PolymeshPrimitivesIdentityId, u128]>;
|
|
2419
2280
|
readonly type: 'TreasuryDisbursement' | 'TreasuryDisbursementFailed' | 'TreasuryReimbursement';
|
|
2420
2281
|
}
|
|
2421
|
-
/** @name PalletUtilityEvent (
|
|
2282
|
+
/** @name PalletUtilityEvent (274) */
|
|
2422
2283
|
interface PalletUtilityEvent extends Enum {
|
|
2423
2284
|
readonly isBatchInterrupted: boolean;
|
|
2424
2285
|
readonly asBatchInterrupted: {
|
|
@@ -2444,14 +2305,14 @@ declare module "./types-lookup.ts" {
|
|
|
2444
2305
|
} & Struct;
|
|
2445
2306
|
readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs' | 'RelayedTx';
|
|
2446
2307
|
}
|
|
2447
|
-
/** @name
|
|
2448
|
-
interface
|
|
2308
|
+
/** @name PalletBaseEvent (275) */
|
|
2309
|
+
interface PalletBaseEvent extends Enum {
|
|
2449
2310
|
readonly isUnexpectedError: boolean;
|
|
2450
2311
|
readonly asUnexpectedError: Option<SpRuntimeDispatchError>;
|
|
2451
2312
|
readonly type: 'UnexpectedError';
|
|
2452
2313
|
}
|
|
2453
|
-
/** @name
|
|
2454
|
-
interface
|
|
2314
|
+
/** @name PalletExternalAgentsEvent (277) */
|
|
2315
|
+
interface PalletExternalAgentsEvent extends Enum {
|
|
2455
2316
|
readonly isGroupCreated: boolean;
|
|
2456
2317
|
readonly asGroupCreated: ITuple<[
|
|
2457
2318
|
PolymeshPrimitivesEventOnly,
|
|
@@ -2487,8 +2348,8 @@ declare module "./types-lookup.ts" {
|
|
|
2487
2348
|
]>;
|
|
2488
2349
|
readonly type: 'GroupCreated' | 'GroupPermissionsUpdated' | 'AgentAdded' | 'AgentRemoved' | 'GroupChanged';
|
|
2489
2350
|
}
|
|
2490
|
-
/** @name
|
|
2491
|
-
interface
|
|
2351
|
+
/** @name PalletRelayerEvent (278) */
|
|
2352
|
+
interface PalletRelayerEvent extends Enum {
|
|
2492
2353
|
readonly isAuthorizedPayingKey: boolean;
|
|
2493
2354
|
readonly asAuthorizedPayingKey: ITuple<[
|
|
2494
2355
|
PolymeshPrimitivesEventOnly,
|
|
@@ -2511,7 +2372,7 @@ declare module "./types-lookup.ts" {
|
|
|
2511
2372
|
]>;
|
|
2512
2373
|
readonly type: 'AuthorizedPayingKey' | 'AcceptedPayingKey' | 'RemovedPayingKey' | 'UpdatedPolyxLimit';
|
|
2513
2374
|
}
|
|
2514
|
-
/** @name PalletContractsEvent (
|
|
2375
|
+
/** @name PalletContractsEvent (279) */
|
|
2515
2376
|
interface PalletContractsEvent extends Enum {
|
|
2516
2377
|
readonly isInstantiated: boolean;
|
|
2517
2378
|
readonly asInstantiated: {
|
|
@@ -2554,28 +2415,28 @@ declare module "./types-lookup.ts" {
|
|
|
2554
2415
|
} & Struct;
|
|
2555
2416
|
readonly type: 'Instantiated' | 'Terminated' | 'CodeStored' | 'ContractEmitted' | 'CodeRemoved' | 'ContractCodeUpdated' | 'Called' | 'DelegateCalled';
|
|
2556
2417
|
}
|
|
2557
|
-
/** @name
|
|
2558
|
-
interface
|
|
2418
|
+
/** @name PolymeshContractsEvent (280) */
|
|
2419
|
+
interface PolymeshContractsEvent extends Enum {
|
|
2559
2420
|
readonly isApiHashUpdated: boolean;
|
|
2560
2421
|
readonly asApiHashUpdated: ITuple<[PolymeshContractsApi, PolymeshContractsChainVersion, H256]>;
|
|
2561
2422
|
readonly isScRuntimeCall: boolean;
|
|
2562
2423
|
readonly asScRuntimeCall: ITuple<[AccountId32, PolymeshContractsChainExtensionExtrinsicId]>;
|
|
2563
2424
|
readonly type: 'ApiHashUpdated' | 'ScRuntimeCall';
|
|
2564
2425
|
}
|
|
2565
|
-
/** @name PolymeshContractsApi (
|
|
2426
|
+
/** @name PolymeshContractsApi (281) */
|
|
2566
2427
|
interface PolymeshContractsApi extends Struct {
|
|
2567
2428
|
readonly desc: U8aFixed;
|
|
2568
2429
|
readonly major: u32;
|
|
2569
2430
|
}
|
|
2570
|
-
/** @name PolymeshContractsChainVersion (
|
|
2431
|
+
/** @name PolymeshContractsChainVersion (282) */
|
|
2571
2432
|
interface PolymeshContractsChainVersion extends Struct {
|
|
2572
2433
|
readonly specVersion: u32;
|
|
2573
2434
|
readonly txVersion: u32;
|
|
2574
2435
|
}
|
|
2575
|
-
/** @name PolymeshContractsChainExtensionExtrinsicId (
|
|
2436
|
+
/** @name PolymeshContractsChainExtensionExtrinsicId (283) */
|
|
2576
2437
|
interface PolymeshContractsChainExtensionExtrinsicId extends ITuple<[u8, u8]> {
|
|
2577
2438
|
}
|
|
2578
|
-
/** @name PalletPreimageEvent (
|
|
2439
|
+
/** @name PalletPreimageEvent (284) */
|
|
2579
2440
|
interface PalletPreimageEvent extends Enum {
|
|
2580
2441
|
readonly isNoted: boolean;
|
|
2581
2442
|
readonly asNoted: {
|
|
@@ -2591,8 +2452,8 @@ declare module "./types-lookup.ts" {
|
|
|
2591
2452
|
} & Struct;
|
|
2592
2453
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
|
2593
2454
|
}
|
|
2594
|
-
/** @name
|
|
2595
|
-
interface
|
|
2455
|
+
/** @name PalletNftEvent (285) */
|
|
2456
|
+
interface PalletNftEvent extends Enum {
|
|
2596
2457
|
readonly isNftCollectionCreated: boolean;
|
|
2597
2458
|
readonly asNftCollectionCreated: ITuple<[
|
|
2598
2459
|
PolymeshPrimitivesIdentityId,
|
|
@@ -2609,7 +2470,7 @@ declare module "./types-lookup.ts" {
|
|
|
2609
2470
|
]>;
|
|
2610
2471
|
readonly type: 'NftCollectionCreated' | 'NftPortfolioUpdated';
|
|
2611
2472
|
}
|
|
2612
|
-
/** @name PalletElectionProviderMultiPhaseEvent (
|
|
2473
|
+
/** @name PalletElectionProviderMultiPhaseEvent (287) */
|
|
2613
2474
|
interface PalletElectionProviderMultiPhaseEvent extends Enum {
|
|
2614
2475
|
readonly isSolutionStored: boolean;
|
|
2615
2476
|
readonly asSolutionStored: {
|
|
@@ -2641,7 +2502,7 @@ declare module "./types-lookup.ts" {
|
|
|
2641
2502
|
} & Struct;
|
|
2642
2503
|
readonly type: 'SolutionStored' | 'ElectionFinalized' | 'ElectionFailed' | 'Rewarded' | 'Slashed' | 'PhaseTransitioned';
|
|
2643
2504
|
}
|
|
2644
|
-
/** @name PalletElectionProviderMultiPhaseElectionCompute (
|
|
2505
|
+
/** @name PalletElectionProviderMultiPhaseElectionCompute (288) */
|
|
2645
2506
|
interface PalletElectionProviderMultiPhaseElectionCompute extends Enum {
|
|
2646
2507
|
readonly isOnChain: boolean;
|
|
2647
2508
|
readonly isSigned: boolean;
|
|
@@ -2650,13 +2511,13 @@ declare module "./types-lookup.ts" {
|
|
|
2650
2511
|
readonly isEmergency: boolean;
|
|
2651
2512
|
readonly type: 'OnChain' | 'Signed' | 'Unsigned' | 'Fallback' | 'Emergency';
|
|
2652
2513
|
}
|
|
2653
|
-
/** @name SpNposElectionsElectionScore (
|
|
2514
|
+
/** @name SpNposElectionsElectionScore (289) */
|
|
2654
2515
|
interface SpNposElectionsElectionScore extends Struct {
|
|
2655
2516
|
readonly minimalStake: u128;
|
|
2656
2517
|
readonly sumStake: u128;
|
|
2657
2518
|
readonly sumStakeSquared: u128;
|
|
2658
2519
|
}
|
|
2659
|
-
/** @name PalletElectionProviderMultiPhasePhase (
|
|
2520
|
+
/** @name PalletElectionProviderMultiPhasePhase (290) */
|
|
2660
2521
|
interface PalletElectionProviderMultiPhasePhase extends Enum {
|
|
2661
2522
|
readonly isOff: boolean;
|
|
2662
2523
|
readonly isSigned: boolean;
|
|
@@ -2665,15 +2526,7 @@ declare module "./types-lookup.ts" {
|
|
|
2665
2526
|
readonly isEmergency: boolean;
|
|
2666
2527
|
readonly type: 'Off' | 'Signed' | 'Unsigned' | 'Emergency';
|
|
2667
2528
|
}
|
|
2668
|
-
/** @name
|
|
2669
|
-
interface PalletTestUtilsRawEvent extends Enum {
|
|
2670
|
-
readonly isDidStatus: boolean;
|
|
2671
|
-
readonly asDidStatus: ITuple<[PolymeshPrimitivesIdentityId, AccountId32]>;
|
|
2672
|
-
readonly isCddStatus: boolean;
|
|
2673
|
-
readonly asCddStatus: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, bool]>;
|
|
2674
|
-
readonly type: 'DidStatus' | 'CddStatus';
|
|
2675
|
-
}
|
|
2676
|
-
/** @name FrameSystemPhase (300) */
|
|
2529
|
+
/** @name FrameSystemPhase (292) */
|
|
2677
2530
|
interface FrameSystemPhase extends Enum {
|
|
2678
2531
|
readonly isApplyExtrinsic: boolean;
|
|
2679
2532
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2681,12 +2534,12 @@ declare module "./types-lookup.ts" {
|
|
|
2681
2534
|
readonly isInitialization: boolean;
|
|
2682
2535
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2683
2536
|
}
|
|
2684
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2537
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (295) */
|
|
2685
2538
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2686
2539
|
readonly specVersion: Compact<u32>;
|
|
2687
2540
|
readonly specName: Text;
|
|
2688
2541
|
}
|
|
2689
|
-
/** @name FrameSystemCall (
|
|
2542
|
+
/** @name FrameSystemCall (297) */
|
|
2690
2543
|
interface FrameSystemCall extends Enum {
|
|
2691
2544
|
readonly isRemark: boolean;
|
|
2692
2545
|
readonly asRemark: {
|
|
@@ -2723,41 +2576,41 @@ declare module "./types-lookup.ts" {
|
|
|
2723
2576
|
} & Struct;
|
|
2724
2577
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
|
|
2725
2578
|
}
|
|
2726
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2579
|
+
/** @name FrameSystemLimitsBlockWeights (301) */
|
|
2727
2580
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2728
2581
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2729
2582
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2730
2583
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2731
2584
|
}
|
|
2732
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2585
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (302) */
|
|
2733
2586
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2734
2587
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2735
2588
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2736
2589
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2737
2590
|
}
|
|
2738
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2591
|
+
/** @name FrameSystemLimitsWeightsPerClass (303) */
|
|
2739
2592
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2740
2593
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2741
2594
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2742
2595
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2743
2596
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2744
2597
|
}
|
|
2745
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2598
|
+
/** @name FrameSystemLimitsBlockLength (305) */
|
|
2746
2599
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2747
2600
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2748
2601
|
}
|
|
2749
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2602
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (306) */
|
|
2750
2603
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2751
2604
|
readonly normal: u32;
|
|
2752
2605
|
readonly operational: u32;
|
|
2753
2606
|
readonly mandatory: u32;
|
|
2754
2607
|
}
|
|
2755
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2608
|
+
/** @name SpWeightsRuntimeDbWeight (307) */
|
|
2756
2609
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2757
2610
|
readonly read: u64;
|
|
2758
2611
|
readonly write: u64;
|
|
2759
2612
|
}
|
|
2760
|
-
/** @name SpVersionRuntimeVersion (
|
|
2613
|
+
/** @name SpVersionRuntimeVersion (308) */
|
|
2761
2614
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2762
2615
|
readonly specName: Text;
|
|
2763
2616
|
readonly implName: Text;
|
|
@@ -2768,7 +2621,7 @@ declare module "./types-lookup.ts" {
|
|
|
2768
2621
|
readonly transactionVersion: u32;
|
|
2769
2622
|
readonly stateVersion: u8;
|
|
2770
2623
|
}
|
|
2771
|
-
/** @name FrameSystemError (
|
|
2624
|
+
/** @name FrameSystemError (313) */
|
|
2772
2625
|
interface FrameSystemError extends Enum {
|
|
2773
2626
|
readonly isInvalidSpecName: boolean;
|
|
2774
2627
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2778,10 +2631,10 @@ declare module "./types-lookup.ts" {
|
|
|
2778
2631
|
readonly isCallFiltered: boolean;
|
|
2779
2632
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
|
|
2780
2633
|
}
|
|
2781
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2634
|
+
/** @name SpConsensusBabeAppPublic (316) */
|
|
2782
2635
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
2783
2636
|
}
|
|
2784
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2637
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (319) */
|
|
2785
2638
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
2786
2639
|
readonly isV1: boolean;
|
|
2787
2640
|
readonly asV1: {
|
|
@@ -2790,14 +2643,14 @@ declare module "./types-lookup.ts" {
|
|
|
2790
2643
|
} & Struct;
|
|
2791
2644
|
readonly type: 'V1';
|
|
2792
2645
|
}
|
|
2793
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2646
|
+
/** @name SpConsensusBabeAllowedSlots (321) */
|
|
2794
2647
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
2795
2648
|
readonly isPrimarySlots: boolean;
|
|
2796
2649
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
2797
2650
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
2798
2651
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
2799
2652
|
}
|
|
2800
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
2653
|
+
/** @name SpConsensusBabeDigestsPreDigest (325) */
|
|
2801
2654
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
2802
2655
|
readonly isPrimary: boolean;
|
|
2803
2656
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -2807,31 +2660,31 @@ declare module "./types-lookup.ts" {
|
|
|
2807
2660
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
2808
2661
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
2809
2662
|
}
|
|
2810
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
2663
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (326) */
|
|
2811
2664
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
2812
2665
|
readonly authorityIndex: u32;
|
|
2813
2666
|
readonly slot: u64;
|
|
2814
2667
|
readonly vrfOutput: U8aFixed;
|
|
2815
2668
|
readonly vrfProof: U8aFixed;
|
|
2816
2669
|
}
|
|
2817
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
2670
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (327) */
|
|
2818
2671
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
2819
2672
|
readonly authorityIndex: u32;
|
|
2820
2673
|
readonly slot: u64;
|
|
2821
2674
|
}
|
|
2822
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
2675
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (328) */
|
|
2823
2676
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
2824
2677
|
readonly authorityIndex: u32;
|
|
2825
2678
|
readonly slot: u64;
|
|
2826
2679
|
readonly vrfOutput: U8aFixed;
|
|
2827
2680
|
readonly vrfProof: U8aFixed;
|
|
2828
2681
|
}
|
|
2829
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
2682
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (329) */
|
|
2830
2683
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
2831
2684
|
readonly c: ITuple<[u64, u64]>;
|
|
2832
2685
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
2833
2686
|
}
|
|
2834
|
-
/** @name PalletBabeCall (
|
|
2687
|
+
/** @name PalletBabeCall (333) */
|
|
2835
2688
|
interface PalletBabeCall extends Enum {
|
|
2836
2689
|
readonly isReportEquivocation: boolean;
|
|
2837
2690
|
readonly asReportEquivocation: {
|
|
@@ -2849,14 +2702,14 @@ declare module "./types-lookup.ts" {
|
|
|
2849
2702
|
} & Struct;
|
|
2850
2703
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
2851
2704
|
}
|
|
2852
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2705
|
+
/** @name SpConsensusSlotsEquivocationProof (334) */
|
|
2853
2706
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
2854
2707
|
readonly offender: SpConsensusBabeAppPublic;
|
|
2855
2708
|
readonly slot: u64;
|
|
2856
2709
|
readonly firstHeader: SpRuntimeHeader;
|
|
2857
2710
|
readonly secondHeader: SpRuntimeHeader;
|
|
2858
2711
|
}
|
|
2859
|
-
/** @name SpRuntimeHeader (
|
|
2712
|
+
/** @name SpRuntimeHeader (335) */
|
|
2860
2713
|
interface SpRuntimeHeader extends Struct {
|
|
2861
2714
|
readonly parentHash: H256;
|
|
2862
2715
|
readonly number: Compact<u32>;
|
|
@@ -2864,15 +2717,15 @@ declare module "./types-lookup.ts" {
|
|
|
2864
2717
|
readonly extrinsicsRoot: H256;
|
|
2865
2718
|
readonly digest: SpRuntimeDigest;
|
|
2866
2719
|
}
|
|
2867
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2720
|
+
/** @name SpRuntimeBlakeTwo256 (336) */
|
|
2868
2721
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2869
|
-
/** @name SpSessionMembershipProof (
|
|
2722
|
+
/** @name SpSessionMembershipProof (337) */
|
|
2870
2723
|
interface SpSessionMembershipProof extends Struct {
|
|
2871
2724
|
readonly session: u32;
|
|
2872
2725
|
readonly trieNodes: Vec<Bytes>;
|
|
2873
2726
|
readonly validatorCount: u32;
|
|
2874
2727
|
}
|
|
2875
|
-
/** @name PalletBabeError (
|
|
2728
|
+
/** @name PalletBabeError (338) */
|
|
2876
2729
|
interface PalletBabeError extends Enum {
|
|
2877
2730
|
readonly isInvalidEquivocationProof: boolean;
|
|
2878
2731
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -2880,7 +2733,7 @@ declare module "./types-lookup.ts" {
|
|
|
2880
2733
|
readonly isInvalidConfiguration: boolean;
|
|
2881
2734
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
2882
2735
|
}
|
|
2883
|
-
/** @name PalletTimestampCall (
|
|
2736
|
+
/** @name PalletTimestampCall (339) */
|
|
2884
2737
|
interface PalletTimestampCall extends Enum {
|
|
2885
2738
|
readonly isSet: boolean;
|
|
2886
2739
|
readonly asSet: {
|
|
@@ -2888,7 +2741,7 @@ declare module "./types-lookup.ts" {
|
|
|
2888
2741
|
} & Struct;
|
|
2889
2742
|
readonly type: 'Set';
|
|
2890
2743
|
}
|
|
2891
|
-
/** @name PalletIndicesCall (
|
|
2744
|
+
/** @name PalletIndicesCall (341) */
|
|
2892
2745
|
interface PalletIndicesCall extends Enum {
|
|
2893
2746
|
readonly isClaim: boolean;
|
|
2894
2747
|
readonly asClaim: {
|
|
@@ -2915,7 +2768,7 @@ declare module "./types-lookup.ts" {
|
|
|
2915
2768
|
} & Struct;
|
|
2916
2769
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2917
2770
|
}
|
|
2918
|
-
/** @name PalletIndicesError (
|
|
2771
|
+
/** @name PalletIndicesError (343) */
|
|
2919
2772
|
interface PalletIndicesError extends Enum {
|
|
2920
2773
|
readonly isNotAssigned: boolean;
|
|
2921
2774
|
readonly isNotOwner: boolean;
|
|
@@ -2924,20 +2777,20 @@ declare module "./types-lookup.ts" {
|
|
|
2924
2777
|
readonly isPermanent: boolean;
|
|
2925
2778
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
2926
2779
|
}
|
|
2927
|
-
/** @name PalletBalancesBalanceLock (
|
|
2780
|
+
/** @name PalletBalancesBalanceLock (345) */
|
|
2928
2781
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2929
2782
|
readonly id: U8aFixed;
|
|
2930
2783
|
readonly amount: u128;
|
|
2931
|
-
readonly reasons:
|
|
2784
|
+
readonly reasons: PalletBalancesReasons;
|
|
2932
2785
|
}
|
|
2933
|
-
/** @name
|
|
2934
|
-
interface
|
|
2786
|
+
/** @name PalletBalancesReasons (346) */
|
|
2787
|
+
interface PalletBalancesReasons extends Enum {
|
|
2935
2788
|
readonly isFee: boolean;
|
|
2936
2789
|
readonly isMisc: boolean;
|
|
2937
2790
|
readonly isAll: boolean;
|
|
2938
2791
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2939
2792
|
}
|
|
2940
|
-
/** @name PalletBalancesCall (
|
|
2793
|
+
/** @name PalletBalancesCall (347) */
|
|
2941
2794
|
interface PalletBalancesCall extends Enum {
|
|
2942
2795
|
readonly isTransfer: boolean;
|
|
2943
2796
|
readonly asTransfer: {
|
|
@@ -2972,7 +2825,7 @@ declare module "./types-lookup.ts" {
|
|
|
2972
2825
|
} & Struct;
|
|
2973
2826
|
readonly type: 'Transfer' | 'TransferWithMemo' | 'DepositBlockRewardReserveBalance' | 'SetBalance' | 'ForceTransfer' | 'BurnAccountBalance';
|
|
2974
2827
|
}
|
|
2975
|
-
/** @name PalletBalancesError (
|
|
2828
|
+
/** @name PalletBalancesError (348) */
|
|
2976
2829
|
interface PalletBalancesError extends Enum {
|
|
2977
2830
|
readonly isLiquidityRestrictions: boolean;
|
|
2978
2831
|
readonly isOverflow: boolean;
|
|
@@ -2981,34 +2834,42 @@ declare module "./types-lookup.ts" {
|
|
|
2981
2834
|
readonly isReceiverCddMissing: boolean;
|
|
2982
2835
|
readonly type: 'LiquidityRestrictions' | 'Overflow' | 'InsufficientBalance' | 'ExistentialDeposit' | 'ReceiverCddMissing';
|
|
2983
2836
|
}
|
|
2984
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2837
|
+
/** @name PalletTransactionPaymentReleases (350) */
|
|
2985
2838
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2986
2839
|
readonly isV1Ancient: boolean;
|
|
2987
2840
|
readonly isV2: boolean;
|
|
2988
2841
|
readonly type: 'V1Ancient' | 'V2';
|
|
2989
2842
|
}
|
|
2990
|
-
/** @name
|
|
2843
|
+
/** @name PalletTransactionPaymentCall (351) */
|
|
2844
|
+
interface PalletTransactionPaymentCall extends Enum {
|
|
2845
|
+
readonly isSetDisableFees: boolean;
|
|
2846
|
+
readonly asSetDisableFees: {
|
|
2847
|
+
readonly value: bool;
|
|
2848
|
+
} & Struct;
|
|
2849
|
+
readonly type: 'SetDisableFees';
|
|
2850
|
+
}
|
|
2851
|
+
/** @name SpWeightsWeightToFeeCoefficient (353) */
|
|
2991
2852
|
interface SpWeightsWeightToFeeCoefficient extends Struct {
|
|
2992
2853
|
readonly coeffInteger: u128;
|
|
2993
2854
|
readonly coeffFrac: Perbill;
|
|
2994
2855
|
readonly negative: bool;
|
|
2995
2856
|
readonly degree: u8;
|
|
2996
2857
|
}
|
|
2997
|
-
/** @name PolymeshPrimitivesIdentityDidRecord (
|
|
2858
|
+
/** @name PolymeshPrimitivesIdentityDidRecord (354) */
|
|
2998
2859
|
interface PolymeshPrimitivesIdentityDidRecord extends Struct {
|
|
2999
2860
|
readonly primaryKey: Option<AccountId32>;
|
|
3000
2861
|
}
|
|
3001
|
-
/** @name PalletIdentityClaim1stKey (
|
|
2862
|
+
/** @name PalletIdentityClaim1stKey (356) */
|
|
3002
2863
|
interface PalletIdentityClaim1stKey extends Struct {
|
|
3003
2864
|
readonly target: PolymeshPrimitivesIdentityId;
|
|
3004
2865
|
readonly claimType: PolymeshPrimitivesIdentityClaimClaimType;
|
|
3005
2866
|
}
|
|
3006
|
-
/** @name PalletIdentityClaim2ndKey (
|
|
2867
|
+
/** @name PalletIdentityClaim2ndKey (357) */
|
|
3007
2868
|
interface PalletIdentityClaim2ndKey extends Struct {
|
|
3008
2869
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
3009
2870
|
readonly scope: Option<PolymeshPrimitivesIdentityClaimScope>;
|
|
3010
2871
|
}
|
|
3011
|
-
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (
|
|
2872
|
+
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (358) */
|
|
3012
2873
|
interface PolymeshPrimitivesSecondaryKeyKeyRecord extends Enum {
|
|
3013
2874
|
readonly isPrimaryKey: boolean;
|
|
3014
2875
|
readonly asPrimaryKey: PolymeshPrimitivesIdentityId;
|
|
@@ -3018,7 +2879,7 @@ declare module "./types-lookup.ts" {
|
|
|
3018
2879
|
readonly asMultiSigSignerKey: AccountId32;
|
|
3019
2880
|
readonly type: 'PrimaryKey' | 'SecondaryKey' | 'MultiSigSignerKey';
|
|
3020
2881
|
}
|
|
3021
|
-
/** @name PolymeshPrimitivesSecondaryKeySignatory (
|
|
2882
|
+
/** @name PolymeshPrimitivesSecondaryKeySignatory (361) */
|
|
3022
2883
|
interface PolymeshPrimitivesSecondaryKeySignatory extends Enum {
|
|
3023
2884
|
readonly isIdentity: boolean;
|
|
3024
2885
|
readonly asIdentity: PolymeshPrimitivesIdentityId;
|
|
@@ -3026,7 +2887,7 @@ declare module "./types-lookup.ts" {
|
|
|
3026
2887
|
readonly asAccount: AccountId32;
|
|
3027
2888
|
readonly type: 'Identity' | 'Account';
|
|
3028
2889
|
}
|
|
3029
|
-
/** @name PolymeshPrimitivesAuthorization (
|
|
2890
|
+
/** @name PolymeshPrimitivesAuthorization (362) */
|
|
3030
2891
|
interface PolymeshPrimitivesAuthorization extends Struct {
|
|
3031
2892
|
readonly authorizationData: PolymeshPrimitivesAuthorizationAuthorizationData;
|
|
3032
2893
|
readonly authorizedBy: PolymeshPrimitivesIdentityId;
|
|
@@ -3034,7 +2895,7 @@ declare module "./types-lookup.ts" {
|
|
|
3034
2895
|
readonly authId: u64;
|
|
3035
2896
|
readonly count: u32;
|
|
3036
2897
|
}
|
|
3037
|
-
/** @name PalletIdentityCall (
|
|
2898
|
+
/** @name PalletIdentityCall (366) */
|
|
3038
2899
|
interface PalletIdentityCall extends Enum {
|
|
3039
2900
|
readonly isCddRegisterDid: boolean;
|
|
3040
2901
|
readonly asCddRegisterDid: {
|
|
@@ -3144,17 +3005,17 @@ declare module "./types-lookup.ts" {
|
|
|
3144
3005
|
} & Struct;
|
|
3145
3006
|
readonly type: 'CddRegisterDid' | 'InvalidateCddClaims' | 'AcceptPrimaryKey' | 'ChangeCddRequirementForMkRotation' | 'JoinIdentityAsKey' | 'LeaveIdentityAsKey' | 'AddClaim' | 'RevokeClaim' | 'FreezeSecondaryKeys' | 'UnfreezeSecondaryKeys' | 'AddAuthorization' | 'RemoveAuthorization' | 'GcAddCddClaim' | 'GcRevokeCddClaim' | 'RevokeClaimByIndex' | 'RotatePrimaryKeyToSecondary' | 'AddSecondaryKeysWithAuthorization' | 'SetSecondaryKeyPermissions' | 'RemoveSecondaryKeys' | 'RegisterCustomClaimType' | 'CddRegisterDidWithCdd' | 'CreateChildIdentity' | 'CreateChildIdentities' | 'UnlinkChildIdentity';
|
|
3146
3007
|
}
|
|
3147
|
-
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (
|
|
3008
|
+
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (368) */
|
|
3148
3009
|
interface PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth extends Struct {
|
|
3149
3010
|
readonly secondaryKey: PolymeshPrimitivesSecondaryKey;
|
|
3150
3011
|
readonly authSignature: H512;
|
|
3151
3012
|
}
|
|
3152
|
-
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (
|
|
3013
|
+
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (371) */
|
|
3153
3014
|
interface PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth extends Struct {
|
|
3154
3015
|
readonly key: AccountId32;
|
|
3155
3016
|
readonly authSignature: H512;
|
|
3156
3017
|
}
|
|
3157
|
-
/** @name PalletIdentityError (
|
|
3018
|
+
/** @name PalletIdentityError (372) */
|
|
3158
3019
|
interface PalletIdentityError extends Enum {
|
|
3159
3020
|
readonly isAlreadyLinked: boolean;
|
|
3160
3021
|
readonly isMissingIdentity: boolean;
|
|
@@ -3189,15 +3050,17 @@ declare module "./types-lookup.ts" {
|
|
|
3189
3050
|
readonly isDuplicateKey: boolean;
|
|
3190
3051
|
readonly isExceptNotAllowedForExtrinsics: boolean;
|
|
3191
3052
|
readonly isExceededNumberOfGivenAuths: boolean;
|
|
3192
|
-
readonly
|
|
3053
|
+
readonly isBadAuthorizationType: boolean;
|
|
3054
|
+
readonly isInvalidAuthorization: boolean;
|
|
3055
|
+
readonly type: 'AlreadyLinked' | 'MissingIdentity' | 'Unauthorized' | 'InvalidAccountKey' | 'UnAuthorizedCddProvider' | 'InvalidAuthorizationFromOwner' | 'InvalidAuthorizationFromCddProvider' | 'NotCddProviderAttestation' | 'AuthorizationsNotForSameDids' | 'DidMustAlreadyExist' | 'AuthorizationExpired' | 'TargetHasNoCdd' | 'AuthorizationHasBeenRevoked' | 'InvalidAuthorizationSignature' | 'KeyNotAllowed' | 'NotPrimaryKey' | 'DidDoesNotExist' | 'DidAlreadyExists' | 'SecondaryKeysContainPrimaryKey' | 'FailedToChargeFee' | 'NotASigner' | 'CannotDecodeSignerAccountId' | 'AccountKeyIsBeingUsed' | 'CustomScopeTooLong' | 'CustomClaimTypeAlreadyExists' | 'CustomClaimTypeDoesNotExist' | 'ClaimDoesNotExist' | 'IsChildIdentity' | 'NoParentIdentity' | 'NotParentOrChildIdentity' | 'DuplicateKey' | 'ExceptNotAllowedForExtrinsics' | 'ExceededNumberOfGivenAuths' | 'BadAuthorizationType' | 'InvalidAuthorization';
|
|
3193
3056
|
}
|
|
3194
|
-
/** @name
|
|
3195
|
-
interface
|
|
3057
|
+
/** @name PolymeshPrimitivesGroupInactiveMember (374) */
|
|
3058
|
+
interface PolymeshPrimitivesGroupInactiveMember extends Struct {
|
|
3196
3059
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
3197
3060
|
readonly deactivatedAt: u64;
|
|
3198
3061
|
readonly expiry: Option<u64>;
|
|
3199
3062
|
}
|
|
3200
|
-
/** @name PalletGroupCall (
|
|
3063
|
+
/** @name PalletGroupCall (375) */
|
|
3201
3064
|
interface PalletGroupCall extends Enum {
|
|
3202
3065
|
readonly isSetActiveMembersLimit: boolean;
|
|
3203
3066
|
readonly asSetActiveMembersLimit: {
|
|
@@ -3229,7 +3092,7 @@ declare module "./types-lookup.ts" {
|
|
|
3229
3092
|
readonly isAbdicateMembership: boolean;
|
|
3230
3093
|
readonly type: 'SetActiveMembersLimit' | 'DisableMember' | 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'AbdicateMembership';
|
|
3231
3094
|
}
|
|
3232
|
-
/** @name PalletGroupError (
|
|
3095
|
+
/** @name PalletGroupError (376) */
|
|
3233
3096
|
interface PalletGroupError extends Enum {
|
|
3234
3097
|
readonly isOnlyPrimaryKeyAllowed: boolean;
|
|
3235
3098
|
readonly isDuplicateMember: boolean;
|
|
@@ -3239,7 +3102,7 @@ declare module "./types-lookup.ts" {
|
|
|
3239
3102
|
readonly isActiveMembersLimitOverflow: boolean;
|
|
3240
3103
|
readonly type: 'OnlyPrimaryKeyAllowed' | 'DuplicateMember' | 'NoSuchMember' | 'LastMemberCannotQuit' | 'ActiveMembersLimitExceeded' | 'ActiveMembersLimitOverflow';
|
|
3241
3104
|
}
|
|
3242
|
-
/** @name PalletCommitteeCall (
|
|
3105
|
+
/** @name PalletCommitteeCall (378) */
|
|
3243
3106
|
interface PalletCommitteeCall extends Enum {
|
|
3244
3107
|
readonly isSetVoteThreshold: boolean;
|
|
3245
3108
|
readonly asSetVoteThreshold: {
|
|
@@ -3252,7 +3115,7 @@ declare module "./types-lookup.ts" {
|
|
|
3252
3115
|
} & Struct;
|
|
3253
3116
|
readonly isSetExpiresAfter: boolean;
|
|
3254
3117
|
readonly asSetExpiresAfter: {
|
|
3255
|
-
readonly expiry:
|
|
3118
|
+
readonly expiry: PolymeshPrimitivesMaybeBlock;
|
|
3256
3119
|
} & Struct;
|
|
3257
3120
|
readonly isVoteOrPropose: boolean;
|
|
3258
3121
|
readonly asVoteOrPropose: {
|
|
@@ -3267,7 +3130,7 @@ declare module "./types-lookup.ts" {
|
|
|
3267
3130
|
} & Struct;
|
|
3268
3131
|
readonly type: 'SetVoteThreshold' | 'SetReleaseCoordinator' | 'SetExpiresAfter' | 'VoteOrPropose' | 'Vote';
|
|
3269
3132
|
}
|
|
3270
|
-
/** @name PalletMultisigCall (
|
|
3133
|
+
/** @name PalletMultisigCall (384) */
|
|
3271
3134
|
interface PalletMultisigCall extends Enum {
|
|
3272
3135
|
readonly isCreateMultisig: boolean;
|
|
3273
3136
|
readonly asCreateMultisig: {
|
|
@@ -3348,7 +3211,7 @@ declare module "./types-lookup.ts" {
|
|
|
3348
3211
|
readonly isRemoveAdmin: boolean;
|
|
3349
3212
|
readonly type: 'CreateMultisig' | 'CreateProposal' | 'Approve' | 'Reject' | 'AcceptMultisigSigner' | 'AddMultisigSigners' | 'RemoveMultisigSigners' | 'AddMultisigSignersViaAdmin' | 'RemoveMultisigSignersViaAdmin' | 'ChangeSigsRequired' | 'ChangeSigsRequiredViaAdmin' | 'AddAdmin' | 'RemoveAdminViaAdmin' | 'RemovePayer' | 'RemovePayerViaPayer' | 'ApproveJoinIdentity' | 'JoinIdentity' | 'RemoveAdmin';
|
|
3350
3213
|
}
|
|
3351
|
-
/** @name PalletStakingPalletCall (
|
|
3214
|
+
/** @name PalletStakingPalletCall (386) */
|
|
3352
3215
|
interface PalletStakingPalletCall extends Enum {
|
|
3353
3216
|
readonly isBond: boolean;
|
|
3354
3217
|
readonly asBond: {
|
|
@@ -3491,7 +3354,7 @@ declare module "./types-lookup.ts" {
|
|
|
3491
3354
|
} & Struct;
|
|
3492
3355
|
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' | 'AddPermissionedValidator' | 'RemovePermissionedValidator' | 'ValidateCddExpiryNominators' | 'PayoutStakersBySystem' | 'ChangeSlashingAllowedFor' | 'UpdatePermissionedValidatorIntendedCount' | 'ChillFromGovernance' | 'SetCommissionCap';
|
|
3493
3356
|
}
|
|
3494
|
-
/** @name PalletStakingRewardDestination (
|
|
3357
|
+
/** @name PalletStakingRewardDestination (387) */
|
|
3495
3358
|
interface PalletStakingRewardDestination extends Enum {
|
|
3496
3359
|
readonly isStaked: boolean;
|
|
3497
3360
|
readonly isStash: boolean;
|
|
@@ -3501,7 +3364,7 @@ declare module "./types-lookup.ts" {
|
|
|
3501
3364
|
readonly isNone: boolean;
|
|
3502
3365
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
|
3503
3366
|
}
|
|
3504
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
|
3367
|
+
/** @name PalletStakingPalletConfigOpU128 (391) */
|
|
3505
3368
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
|
3506
3369
|
readonly isNoop: boolean;
|
|
3507
3370
|
readonly isSet: boolean;
|
|
@@ -3509,7 +3372,7 @@ declare module "./types-lookup.ts" {
|
|
|
3509
3372
|
readonly isRemove: boolean;
|
|
3510
3373
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
3511
3374
|
}
|
|
3512
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
|
3375
|
+
/** @name PalletStakingPalletConfigOpU32 (392) */
|
|
3513
3376
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
|
3514
3377
|
readonly isNoop: boolean;
|
|
3515
3378
|
readonly isSet: boolean;
|
|
@@ -3517,7 +3380,7 @@ declare module "./types-lookup.ts" {
|
|
|
3517
3380
|
readonly isRemove: boolean;
|
|
3518
3381
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
3519
3382
|
}
|
|
3520
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
|
3383
|
+
/** @name PalletStakingPalletConfigOpPercent (393) */
|
|
3521
3384
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
|
3522
3385
|
readonly isNoop: boolean;
|
|
3523
3386
|
readonly isSet: boolean;
|
|
@@ -3525,7 +3388,7 @@ declare module "./types-lookup.ts" {
|
|
|
3525
3388
|
readonly isRemove: boolean;
|
|
3526
3389
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
3527
3390
|
}
|
|
3528
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
|
3391
|
+
/** @name PalletStakingPalletConfigOpPerbill (394) */
|
|
3529
3392
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
|
3530
3393
|
readonly isNoop: boolean;
|
|
3531
3394
|
readonly isSet: boolean;
|
|
@@ -3533,7 +3396,7 @@ declare module "./types-lookup.ts" {
|
|
|
3533
3396
|
readonly isRemove: boolean;
|
|
3534
3397
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
|
3535
3398
|
}
|
|
3536
|
-
/** @name PalletSessionCall (
|
|
3399
|
+
/** @name PalletSessionCall (396) */
|
|
3537
3400
|
interface PalletSessionCall extends Enum {
|
|
3538
3401
|
readonly isSetKeys: boolean;
|
|
3539
3402
|
readonly asSetKeys: {
|
|
@@ -3543,17 +3406,17 @@ declare module "./types-lookup.ts" {
|
|
|
3543
3406
|
readonly isPurgeKeys: boolean;
|
|
3544
3407
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
3545
3408
|
}
|
|
3546
|
-
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (
|
|
3409
|
+
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (397) */
|
|
3547
3410
|
interface PolymeshRuntimeDevelopRuntimeSessionKeys extends Struct {
|
|
3548
3411
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
3549
3412
|
readonly babe: SpConsensusBabeAppPublic;
|
|
3550
3413
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
3551
3414
|
readonly authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3552
3415
|
}
|
|
3553
|
-
/** @name SpAuthorityDiscoveryAppPublic (
|
|
3416
|
+
/** @name SpAuthorityDiscoveryAppPublic (398) */
|
|
3554
3417
|
interface SpAuthorityDiscoveryAppPublic extends SpCoreSr25519Public {
|
|
3555
3418
|
}
|
|
3556
|
-
/** @name PalletGrandpaCall (
|
|
3419
|
+
/** @name PalletGrandpaCall (399) */
|
|
3557
3420
|
interface PalletGrandpaCall extends Enum {
|
|
3558
3421
|
readonly isReportEquivocation: boolean;
|
|
3559
3422
|
readonly asReportEquivocation: {
|
|
@@ -3572,12 +3435,12 @@ declare module "./types-lookup.ts" {
|
|
|
3572
3435
|
} & Struct;
|
|
3573
3436
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
3574
3437
|
}
|
|
3575
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
3438
|
+
/** @name SpConsensusGrandpaEquivocationProof (400) */
|
|
3576
3439
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
3577
3440
|
readonly setId: u64;
|
|
3578
3441
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
3579
3442
|
}
|
|
3580
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
3443
|
+
/** @name SpConsensusGrandpaEquivocation (401) */
|
|
3581
3444
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
3582
3445
|
readonly isPrevote: boolean;
|
|
3583
3446
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -3585,37 +3448,37 @@ declare module "./types-lookup.ts" {
|
|
|
3585
3448
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
3586
3449
|
readonly type: 'Prevote' | 'Precommit';
|
|
3587
3450
|
}
|
|
3588
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
3451
|
+
/** @name FinalityGrandpaEquivocationPrevote (402) */
|
|
3589
3452
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
3590
3453
|
readonly roundNumber: u64;
|
|
3591
3454
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3592
3455
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3593
3456
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3594
3457
|
}
|
|
3595
|
-
/** @name FinalityGrandpaPrevote (
|
|
3458
|
+
/** @name FinalityGrandpaPrevote (403) */
|
|
3596
3459
|
interface FinalityGrandpaPrevote extends Struct {
|
|
3597
3460
|
readonly targetHash: H256;
|
|
3598
3461
|
readonly targetNumber: u32;
|
|
3599
3462
|
}
|
|
3600
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3463
|
+
/** @name SpConsensusGrandpaAppSignature (404) */
|
|
3601
3464
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
3602
3465
|
}
|
|
3603
|
-
/** @name SpCoreEd25519Signature (
|
|
3466
|
+
/** @name SpCoreEd25519Signature (405) */
|
|
3604
3467
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
3605
3468
|
}
|
|
3606
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3469
|
+
/** @name FinalityGrandpaEquivocationPrecommit (407) */
|
|
3607
3470
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3608
3471
|
readonly roundNumber: u64;
|
|
3609
3472
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3610
3473
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3611
3474
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3612
3475
|
}
|
|
3613
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3476
|
+
/** @name FinalityGrandpaPrecommit (408) */
|
|
3614
3477
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3615
3478
|
readonly targetHash: H256;
|
|
3616
3479
|
readonly targetNumber: u32;
|
|
3617
3480
|
}
|
|
3618
|
-
/** @name PalletImOnlineCall (
|
|
3481
|
+
/** @name PalletImOnlineCall (410) */
|
|
3619
3482
|
interface PalletImOnlineCall extends Enum {
|
|
3620
3483
|
readonly isHeartbeat: boolean;
|
|
3621
3484
|
readonly asHeartbeat: {
|
|
@@ -3624,7 +3487,7 @@ declare module "./types-lookup.ts" {
|
|
|
3624
3487
|
} & Struct;
|
|
3625
3488
|
readonly type: 'Heartbeat';
|
|
3626
3489
|
}
|
|
3627
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3490
|
+
/** @name PalletImOnlineHeartbeat (411) */
|
|
3628
3491
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
3629
3492
|
readonly blockNumber: u32;
|
|
3630
3493
|
readonly networkState: SpCoreOffchainOpaqueNetworkState;
|
|
@@ -3632,18 +3495,18 @@ declare module "./types-lookup.ts" {
|
|
|
3632
3495
|
readonly authorityIndex: u32;
|
|
3633
3496
|
readonly validatorsLen: u32;
|
|
3634
3497
|
}
|
|
3635
|
-
/** @name SpCoreOffchainOpaqueNetworkState (
|
|
3498
|
+
/** @name SpCoreOffchainOpaqueNetworkState (412) */
|
|
3636
3499
|
interface SpCoreOffchainOpaqueNetworkState extends Struct {
|
|
3637
3500
|
readonly peerId: OpaquePeerId;
|
|
3638
3501
|
readonly externalAddresses: Vec<OpaqueMultiaddr>;
|
|
3639
3502
|
}
|
|
3640
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3503
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (416) */
|
|
3641
3504
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
3642
3505
|
}
|
|
3643
|
-
/** @name SpCoreSr25519Signature (
|
|
3506
|
+
/** @name SpCoreSr25519Signature (417) */
|
|
3644
3507
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
3645
3508
|
}
|
|
3646
|
-
/** @name PalletSudoCall (
|
|
3509
|
+
/** @name PalletSudoCall (418) */
|
|
3647
3510
|
interface PalletSudoCall extends Enum {
|
|
3648
3511
|
readonly isSudo: boolean;
|
|
3649
3512
|
readonly asSudo: {
|
|
@@ -3665,7 +3528,7 @@ declare module "./types-lookup.ts" {
|
|
|
3665
3528
|
} & Struct;
|
|
3666
3529
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
|
|
3667
3530
|
}
|
|
3668
|
-
/** @name PalletAssetCall (
|
|
3531
|
+
/** @name PalletAssetCall (419) */
|
|
3669
3532
|
interface PalletAssetCall extends Enum {
|
|
3670
3533
|
readonly isRegisterUniqueTicker: boolean;
|
|
3671
3534
|
readonly asRegisterUniqueTicker: {
|
|
@@ -3729,7 +3592,7 @@ declare module "./types-lookup.ts" {
|
|
|
3729
3592
|
readonly isSetFundingRound: boolean;
|
|
3730
3593
|
readonly asSetFundingRound: {
|
|
3731
3594
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
3732
|
-
readonly
|
|
3595
|
+
readonly fundingRoundName: Bytes;
|
|
3733
3596
|
} & Struct;
|
|
3734
3597
|
readonly isUpdateIdentifiers: boolean;
|
|
3735
3598
|
readonly asUpdateIdentifiers: {
|
|
@@ -3837,10 +3700,15 @@ declare module "./types-lookup.ts" {
|
|
|
3837
3700
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
3838
3701
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
3839
3702
|
} & Struct;
|
|
3840
|
-
readonly
|
|
3703
|
+
readonly isUpdateGlobalMetadataSpec: boolean;
|
|
3704
|
+
readonly asUpdateGlobalMetadataSpec: {
|
|
3705
|
+
readonly assetMetadataName: Bytes;
|
|
3706
|
+
readonly assetMetadataSpec: PolymeshPrimitivesAssetMetadataAssetMetadataSpec;
|
|
3707
|
+
} & Struct;
|
|
3708
|
+
readonly type: 'RegisterUniqueTicker' | 'AcceptTickerTransfer' | 'AcceptAssetOwnershipTransfer' | 'CreateAsset' | 'Freeze' | 'Unfreeze' | 'RenameAsset' | 'Issue' | 'Redeem' | 'MakeDivisible' | 'AddDocuments' | 'RemoveDocuments' | 'SetFundingRound' | 'UpdateIdentifiers' | 'ControllerTransfer' | 'RegisterCustomAssetType' | 'CreateAssetWithCustomType' | 'SetAssetMetadata' | 'SetAssetMetadataDetails' | 'RegisterAndSetLocalAssetMetadata' | 'RegisterAssetMetadataLocalType' | 'RegisterAssetMetadataGlobalType' | 'UpdateAssetType' | 'RemoveLocalMetadataKey' | 'RemoveMetadataValue' | 'ExemptAssetAffirmation' | 'RemoveAssetAffirmationExemption' | 'PreApproveAsset' | 'RemoveAssetPreApproval' | 'AddMandatoryMediators' | 'RemoveMandatoryMediators' | 'LinkTickerToAssetId' | 'UnlinkTickerFromAssetId' | 'UpdateGlobalMetadataSpec';
|
|
3841
3709
|
}
|
|
3842
|
-
/** @name
|
|
3843
|
-
interface
|
|
3710
|
+
/** @name PalletCorporateActionsDistributionPalletCall (422) */
|
|
3711
|
+
interface PalletCorporateActionsDistributionPalletCall extends Enum {
|
|
3844
3712
|
readonly isDistribute: boolean;
|
|
3845
3713
|
readonly asDistribute: {
|
|
3846
3714
|
readonly caId: PalletCorporateActionsCaId;
|
|
@@ -3870,8 +3738,8 @@ declare module "./types-lookup.ts" {
|
|
|
3870
3738
|
} & Struct;
|
|
3871
3739
|
readonly type: 'Distribute' | 'Claim' | 'PushBenefit' | 'Reclaim' | 'RemoveDistribution';
|
|
3872
3740
|
}
|
|
3873
|
-
/** @name
|
|
3874
|
-
interface
|
|
3741
|
+
/** @name PalletAssetCheckpointPalletCall (424) */
|
|
3742
|
+
interface PalletAssetCheckpointPalletCall extends Enum {
|
|
3875
3743
|
readonly isCreateCheckpoint: boolean;
|
|
3876
3744
|
readonly asCreateCheckpoint: {
|
|
3877
3745
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
@@ -3892,7 +3760,7 @@ declare module "./types-lookup.ts" {
|
|
|
3892
3760
|
} & Struct;
|
|
3893
3761
|
readonly type: 'CreateCheckpoint' | 'SetSchedulesMaxComplexity' | 'CreateSchedule' | 'RemoveSchedule';
|
|
3894
3762
|
}
|
|
3895
|
-
/** @name PalletComplianceManagerCall (
|
|
3763
|
+
/** @name PalletComplianceManagerCall (425) */
|
|
3896
3764
|
interface PalletComplianceManagerCall extends Enum {
|
|
3897
3765
|
readonly isAddComplianceRequirement: boolean;
|
|
3898
3766
|
readonly asAddComplianceRequirement: {
|
|
@@ -3939,7 +3807,7 @@ declare module "./types-lookup.ts" {
|
|
|
3939
3807
|
} & Struct;
|
|
3940
3808
|
readonly type: 'AddComplianceRequirement' | 'RemoveComplianceRequirement' | 'ReplaceAssetCompliance' | 'ResetAssetCompliance' | 'PauseAssetCompliance' | 'ResumeAssetCompliance' | 'AddDefaultTrustedClaimIssuer' | 'RemoveDefaultTrustedClaimIssuer' | 'ChangeComplianceRequirement';
|
|
3941
3809
|
}
|
|
3942
|
-
/** @name PalletCorporateActionsCall (
|
|
3810
|
+
/** @name PalletCorporateActionsCall (426) */
|
|
3943
3811
|
interface PalletCorporateActionsCall extends Enum {
|
|
3944
3812
|
readonly isSetMaxDetailsLength: boolean;
|
|
3945
3813
|
readonly asSetMaxDetailsLength: {
|
|
@@ -3996,9 +3864,16 @@ declare module "./types-lookup.ts" {
|
|
|
3996
3864
|
readonly paymentAt: u64;
|
|
3997
3865
|
readonly expiresAt: Option<u64>;
|
|
3998
3866
|
} & Struct;
|
|
3999
|
-
readonly
|
|
3867
|
+
readonly isInitiateCorporateActionAndBallot: boolean;
|
|
3868
|
+
readonly asInitiateCorporateActionAndBallot: {
|
|
3869
|
+
readonly caArgs: PalletCorporateActionsInitiateCorporateActionArgs;
|
|
3870
|
+
readonly ballotTimeRange: PalletCorporateActionsBallotBallotTimeRange;
|
|
3871
|
+
readonly ballotMeta: PalletCorporateActionsBallotBallotMeta;
|
|
3872
|
+
readonly rcv: bool;
|
|
3873
|
+
} & Struct;
|
|
3874
|
+
readonly type: 'SetMaxDetailsLength' | 'SetDefaultTargets' | 'SetDefaultWithholdingTax' | 'SetDidWithholdingTax' | 'InitiateCorporateAction' | 'LinkCaDoc' | 'RemoveCa' | 'ChangeRecordDate' | 'InitiateCorporateActionAndDistribute' | 'InitiateCorporateActionAndBallot';
|
|
4000
3875
|
}
|
|
4001
|
-
/** @name PalletCorporateActionsRecordDateSpec (
|
|
3876
|
+
/** @name PalletCorporateActionsRecordDateSpec (428) */
|
|
4002
3877
|
interface PalletCorporateActionsRecordDateSpec extends Enum {
|
|
4003
3878
|
readonly isScheduled: boolean;
|
|
4004
3879
|
readonly asScheduled: u64;
|
|
@@ -4008,7 +3883,7 @@ declare module "./types-lookup.ts" {
|
|
|
4008
3883
|
readonly asExisting: u64;
|
|
4009
3884
|
readonly type: 'Scheduled' | 'ExistingSchedule' | 'Existing';
|
|
4010
3885
|
}
|
|
4011
|
-
/** @name PalletCorporateActionsInitiateCorporateActionArgs (
|
|
3886
|
+
/** @name PalletCorporateActionsInitiateCorporateActionArgs (431) */
|
|
4012
3887
|
interface PalletCorporateActionsInitiateCorporateActionArgs extends Struct {
|
|
4013
3888
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
4014
3889
|
readonly kind: PalletCorporateActionsCaKind;
|
|
@@ -4019,8 +3894,8 @@ declare module "./types-lookup.ts" {
|
|
|
4019
3894
|
readonly defaultWithholdingTax: Option<Permill>;
|
|
4020
3895
|
readonly withholdingTax: Option<Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>>;
|
|
4021
3896
|
}
|
|
4022
|
-
/** @name
|
|
4023
|
-
interface
|
|
3897
|
+
/** @name PalletCorporateActionsBallotPalletCall (432) */
|
|
3898
|
+
interface PalletCorporateActionsBallotPalletCall extends Enum {
|
|
4024
3899
|
readonly isAttachBallot: boolean;
|
|
4025
3900
|
readonly asAttachBallot: {
|
|
4026
3901
|
readonly caId: PalletCorporateActionsCaId;
|
|
@@ -4054,7 +3929,7 @@ declare module "./types-lookup.ts" {
|
|
|
4054
3929
|
} & Struct;
|
|
4055
3930
|
readonly type: 'AttachBallot' | 'Vote' | 'ChangeEnd' | 'ChangeMeta' | 'ChangeRcv' | 'RemoveBallot';
|
|
4056
3931
|
}
|
|
4057
|
-
/** @name PalletPipsCall (
|
|
3932
|
+
/** @name PalletPipsCall (433) */
|
|
4058
3933
|
interface PalletPipsCall extends Enum {
|
|
4059
3934
|
readonly isSetPruneHistoricalPips: boolean;
|
|
4060
3935
|
readonly asSetPruneHistoricalPips: {
|
|
@@ -4070,7 +3945,7 @@ declare module "./types-lookup.ts" {
|
|
|
4070
3945
|
} & Struct;
|
|
4071
3946
|
readonly isSetPendingPipExpiry: boolean;
|
|
4072
3947
|
readonly asSetPendingPipExpiry: {
|
|
4073
|
-
readonly expiry:
|
|
3948
|
+
readonly expiry: PolymeshPrimitivesMaybeBlock;
|
|
4074
3949
|
} & Struct;
|
|
4075
3950
|
readonly isSetMaxPipSkipCount: boolean;
|
|
4076
3951
|
readonly asSetMaxPipSkipCount: {
|
|
@@ -4127,14 +4002,14 @@ declare module "./types-lookup.ts" {
|
|
|
4127
4002
|
} & Struct;
|
|
4128
4003
|
readonly type: 'SetPruneHistoricalPips' | 'SetMinProposalDeposit' | 'SetDefaultEnactmentPeriod' | 'SetPendingPipExpiry' | 'SetMaxPipSkipCount' | 'SetActivePipLimit' | 'Propose' | 'Vote' | 'ApproveCommitteeProposal' | 'RejectProposal' | 'PruneProposal' | 'RescheduleExecution' | 'ClearSnapshot' | 'Snapshot' | 'EnactSnapshotResults' | 'ExecuteScheduledPip' | 'ExpireScheduledPip';
|
|
4129
4004
|
}
|
|
4130
|
-
/** @name PalletPipsSnapshotResult (
|
|
4005
|
+
/** @name PalletPipsSnapshotResult (436) */
|
|
4131
4006
|
interface PalletPipsSnapshotResult extends Enum {
|
|
4132
4007
|
readonly isApprove: boolean;
|
|
4133
4008
|
readonly isReject: boolean;
|
|
4134
4009
|
readonly isSkip: boolean;
|
|
4135
4010
|
readonly type: 'Approve' | 'Reject' | 'Skip';
|
|
4136
4011
|
}
|
|
4137
|
-
/** @name PalletPortfolioCall (
|
|
4012
|
+
/** @name PalletPortfolioCall (437) */
|
|
4138
4013
|
interface PalletPortfolioCall extends Enum {
|
|
4139
4014
|
readonly isCreatePortfolio: boolean;
|
|
4140
4015
|
readonly asCreatePortfolio: {
|
|
@@ -4188,12 +4063,12 @@ declare module "./types-lookup.ts" {
|
|
|
4188
4063
|
} & Struct;
|
|
4189
4064
|
readonly type: 'CreatePortfolio' | 'DeletePortfolio' | 'RenamePortfolio' | 'QuitPortfolioCustody' | 'AcceptPortfolioCustody' | 'MovePortfolioFunds' | 'PreApprovePortfolio' | 'RemovePortfolioPreApproval' | 'AllowIdentityToCreatePortfolios' | 'RevokeCreatePortfoliosPermission' | 'CreateCustodyPortfolio';
|
|
4190
4065
|
}
|
|
4191
|
-
/** @name PolymeshPrimitivesPortfolioFund (
|
|
4066
|
+
/** @name PolymeshPrimitivesPortfolioFund (439) */
|
|
4192
4067
|
interface PolymeshPrimitivesPortfolioFund extends Struct {
|
|
4193
4068
|
readonly description: PolymeshPrimitivesPortfolioFundDescription;
|
|
4194
4069
|
readonly memo: Option<PolymeshPrimitivesMemo>;
|
|
4195
4070
|
}
|
|
4196
|
-
/** @name PalletProtocolFeeCall (
|
|
4071
|
+
/** @name PalletProtocolFeeCall (440) */
|
|
4197
4072
|
interface PalletProtocolFeeCall extends Enum {
|
|
4198
4073
|
readonly isChangeCoefficient: boolean;
|
|
4199
4074
|
readonly asChangeCoefficient: {
|
|
@@ -4206,7 +4081,7 @@ declare module "./types-lookup.ts" {
|
|
|
4206
4081
|
} & Struct;
|
|
4207
4082
|
readonly type: 'ChangeCoefficient' | 'ChangeBaseFee';
|
|
4208
4083
|
}
|
|
4209
|
-
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (
|
|
4084
|
+
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (441) */
|
|
4210
4085
|
interface PolymeshCommonUtilitiesProtocolFeeProtocolOp extends Enum {
|
|
4211
4086
|
readonly isAssetRegisterTicker: boolean;
|
|
4212
4087
|
readonly isAssetIssue: boolean;
|
|
@@ -4226,7 +4101,7 @@ declare module "./types-lookup.ts" {
|
|
|
4226
4101
|
readonly isIdentityCreateChildIdentity: boolean;
|
|
4227
4102
|
readonly type: 'AssetRegisterTicker' | 'AssetIssue' | 'AssetAddDocuments' | 'AssetCreateAsset' | 'CheckpointCreateSchedule' | 'ComplianceManagerAddComplianceRequirement' | 'IdentityCddRegisterDid' | 'IdentityAddClaim' | 'IdentityAddSecondaryKeysWithAuthorization' | 'PipsPropose' | 'ContractsPutCode' | 'CorporateBallotAttachBallot' | 'CapitalDistributionDistribute' | 'NftCreateCollection' | 'NftMint' | 'IdentityCreateChildIdentity';
|
|
4228
4103
|
}
|
|
4229
|
-
/** @name PalletSchedulerCall (
|
|
4104
|
+
/** @name PalletSchedulerCall (442) */
|
|
4230
4105
|
interface PalletSchedulerCall extends Enum {
|
|
4231
4106
|
readonly isSchedule: boolean;
|
|
4232
4107
|
readonly asSchedule: {
|
|
@@ -4269,7 +4144,7 @@ declare module "./types-lookup.ts" {
|
|
|
4269
4144
|
} & Struct;
|
|
4270
4145
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
4271
4146
|
}
|
|
4272
|
-
/** @name PalletSettlementCall (
|
|
4147
|
+
/** @name PalletSettlementCall (444) */
|
|
4273
4148
|
interface PalletSettlementCall extends Enum {
|
|
4274
4149
|
readonly isCreateVenue: boolean;
|
|
4275
4150
|
readonly asCreateVenue: {
|
|
@@ -4424,7 +4299,7 @@ declare module "./types-lookup.ts" {
|
|
|
4424
4299
|
} & Struct;
|
|
4425
4300
|
readonly type: 'CreateVenue' | 'UpdateVenueDetails' | 'UpdateVenueType' | 'AffirmWithReceipts' | 'SetVenueFiltering' | 'AllowVenues' | 'DisallowVenues' | 'UpdateVenueSigners' | 'ExecuteManualInstruction' | 'AddInstruction' | 'AddAndAffirmInstruction' | 'AffirmInstruction' | 'WithdrawAffirmation' | 'RejectInstruction' | 'ExecuteScheduledInstruction' | 'AffirmWithReceiptsWithCount' | 'AffirmInstructionWithCount' | 'RejectInstructionWithCount' | 'WithdrawAffirmationWithCount' | 'AddInstructionWithMediators' | 'AddAndAffirmWithMediators' | 'AffirmInstructionAsMediator' | 'WithdrawAffirmationAsMediator' | 'RejectInstructionAsMediator';
|
|
4426
4301
|
}
|
|
4427
|
-
/** @name PolymeshPrimitivesSettlementReceiptDetails (
|
|
4302
|
+
/** @name PolymeshPrimitivesSettlementReceiptDetails (446) */
|
|
4428
4303
|
interface PolymeshPrimitivesSettlementReceiptDetails extends Struct {
|
|
4429
4304
|
readonly uid: u64;
|
|
4430
4305
|
readonly instructionId: u64;
|
|
@@ -4433,7 +4308,7 @@ declare module "./types-lookup.ts" {
|
|
|
4433
4308
|
readonly signature: SpRuntimeMultiSignature;
|
|
4434
4309
|
readonly metadata: Option<PolymeshPrimitivesSettlementReceiptMetadata>;
|
|
4435
4310
|
}
|
|
4436
|
-
/** @name SpRuntimeMultiSignature (
|
|
4311
|
+
/** @name SpRuntimeMultiSignature (447) */
|
|
4437
4312
|
interface SpRuntimeMultiSignature extends Enum {
|
|
4438
4313
|
readonly isEd25519: boolean;
|
|
4439
4314
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -4443,22 +4318,22 @@ declare module "./types-lookup.ts" {
|
|
|
4443
4318
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
4444
4319
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
4445
4320
|
}
|
|
4446
|
-
/** @name SpCoreEcdsaSignature (
|
|
4321
|
+
/** @name SpCoreEcdsaSignature (448) */
|
|
4447
4322
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4448
4323
|
}
|
|
4449
|
-
/** @name PolymeshPrimitivesSettlementAffirmationCount (
|
|
4324
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (452) */
|
|
4450
4325
|
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4451
4326
|
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4452
4327
|
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4453
4328
|
readonly offchainCount: u32;
|
|
4454
4329
|
}
|
|
4455
|
-
/** @name PolymeshPrimitivesSettlementAssetCount (
|
|
4330
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (453) */
|
|
4456
4331
|
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4457
4332
|
readonly fungible: u32;
|
|
4458
4333
|
readonly nonFungible: u32;
|
|
4459
4334
|
readonly offChain: u32;
|
|
4460
4335
|
}
|
|
4461
|
-
/** @name PalletStatisticsCall (
|
|
4336
|
+
/** @name PalletStatisticsCall (456) */
|
|
4462
4337
|
interface PalletStatisticsCall extends Enum {
|
|
4463
4338
|
readonly isSetActiveAssetStats: boolean;
|
|
4464
4339
|
readonly asSetActiveAssetStats: {
|
|
@@ -4484,7 +4359,7 @@ declare module "./types-lookup.ts" {
|
|
|
4484
4359
|
} & Struct;
|
|
4485
4360
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4486
4361
|
}
|
|
4487
|
-
/** @name PalletStoCall (
|
|
4362
|
+
/** @name PalletStoCall (460) */
|
|
4488
4363
|
interface PalletStoCall extends Enum {
|
|
4489
4364
|
readonly isCreateFundraiser: boolean;
|
|
4490
4365
|
readonly asCreateFundraiser: {
|
|
@@ -4533,12 +4408,12 @@ declare module "./types-lookup.ts" {
|
|
|
4533
4408
|
} & Struct;
|
|
4534
4409
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4535
4410
|
}
|
|
4536
|
-
/** @name PalletStoPriceTier (
|
|
4411
|
+
/** @name PalletStoPriceTier (462) */
|
|
4537
4412
|
interface PalletStoPriceTier extends Struct {
|
|
4538
4413
|
readonly total: u128;
|
|
4539
4414
|
readonly price: u128;
|
|
4540
4415
|
}
|
|
4541
|
-
/** @name PalletTreasuryCall (
|
|
4416
|
+
/** @name PalletTreasuryCall (464) */
|
|
4542
4417
|
interface PalletTreasuryCall extends Enum {
|
|
4543
4418
|
readonly isDisbursement: boolean;
|
|
4544
4419
|
readonly asDisbursement: {
|
|
@@ -4550,12 +4425,12 @@ declare module "./types-lookup.ts" {
|
|
|
4550
4425
|
} & Struct;
|
|
4551
4426
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4552
4427
|
}
|
|
4553
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4428
|
+
/** @name PolymeshPrimitivesBeneficiary (466) */
|
|
4554
4429
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4555
4430
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4556
4431
|
readonly amount: u128;
|
|
4557
4432
|
}
|
|
4558
|
-
/** @name PalletUtilityCall (
|
|
4433
|
+
/** @name PalletUtilityCall (467) */
|
|
4559
4434
|
interface PalletUtilityCall extends Enum {
|
|
4560
4435
|
readonly isBatch: boolean;
|
|
4561
4436
|
readonly asBatch: {
|
|
@@ -4592,25 +4467,25 @@ declare module "./types-lookup.ts" {
|
|
|
4592
4467
|
} & Struct;
|
|
4593
4468
|
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'AsDerivative';
|
|
4594
4469
|
}
|
|
4595
|
-
/** @name PalletUtilityUniqueCall (
|
|
4470
|
+
/** @name PalletUtilityUniqueCall (469) */
|
|
4596
4471
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4597
4472
|
readonly nonce: u64;
|
|
4598
4473
|
readonly call: Call;
|
|
4599
4474
|
}
|
|
4600
|
-
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (
|
|
4475
|
+
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (470) */
|
|
4601
4476
|
interface PolymeshRuntimeDevelopRuntimeOriginCaller extends Enum {
|
|
4602
4477
|
readonly isSystem: boolean;
|
|
4603
4478
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
4604
4479
|
readonly isVoid: boolean;
|
|
4605
4480
|
readonly isPolymeshCommittee: boolean;
|
|
4606
|
-
readonly asPolymeshCommittee:
|
|
4481
|
+
readonly asPolymeshCommittee: PalletCommitteeRawOrigin;
|
|
4607
4482
|
readonly isTechnicalCommittee: boolean;
|
|
4608
|
-
readonly asTechnicalCommittee:
|
|
4483
|
+
readonly asTechnicalCommittee: PalletCommitteeRawOrigin;
|
|
4609
4484
|
readonly isUpgradeCommittee: boolean;
|
|
4610
|
-
readonly asUpgradeCommittee:
|
|
4485
|
+
readonly asUpgradeCommittee: PalletCommitteeRawOrigin;
|
|
4611
4486
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4612
4487
|
}
|
|
4613
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4488
|
+
/** @name FrameSupportDispatchRawOrigin (471) */
|
|
4614
4489
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4615
4490
|
readonly isRoot: boolean;
|
|
4616
4491
|
readonly isSigned: boolean;
|
|
@@ -4618,26 +4493,16 @@ declare module "./types-lookup.ts" {
|
|
|
4618
4493
|
readonly isNone: boolean;
|
|
4619
4494
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4620
4495
|
}
|
|
4621
|
-
/** @name
|
|
4622
|
-
interface
|
|
4623
|
-
readonly isEndorsed: boolean;
|
|
4624
|
-
readonly type: 'Endorsed';
|
|
4625
|
-
}
|
|
4626
|
-
/** @name PalletCommitteeRawOriginInstance3 (480) */
|
|
4627
|
-
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4496
|
+
/** @name PalletCommitteeRawOrigin (472) */
|
|
4497
|
+
interface PalletCommitteeRawOrigin extends Enum {
|
|
4628
4498
|
readonly isEndorsed: boolean;
|
|
4629
4499
|
readonly type: 'Endorsed';
|
|
4630
4500
|
}
|
|
4631
|
-
/** @name
|
|
4632
|
-
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4633
|
-
readonly isEndorsed: boolean;
|
|
4634
|
-
readonly type: 'Endorsed';
|
|
4635
|
-
}
|
|
4636
|
-
/** @name SpCoreVoid (482) */
|
|
4501
|
+
/** @name SpCoreVoid (475) */
|
|
4637
4502
|
type SpCoreVoid = Null;
|
|
4638
|
-
/** @name PalletBaseCall (
|
|
4503
|
+
/** @name PalletBaseCall (476) */
|
|
4639
4504
|
type PalletBaseCall = Null;
|
|
4640
|
-
/** @name PalletExternalAgentsCall (
|
|
4505
|
+
/** @name PalletExternalAgentsCall (477) */
|
|
4641
4506
|
interface PalletExternalAgentsCall extends Enum {
|
|
4642
4507
|
readonly isCreateGroup: boolean;
|
|
4643
4508
|
readonly asCreateGroup: {
|
|
@@ -4684,7 +4549,7 @@ declare module "./types-lookup.ts" {
|
|
|
4684
4549
|
} & Struct;
|
|
4685
4550
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4686
4551
|
}
|
|
4687
|
-
/** @name PalletRelayerCall (
|
|
4552
|
+
/** @name PalletRelayerCall (478) */
|
|
4688
4553
|
interface PalletRelayerCall extends Enum {
|
|
4689
4554
|
readonly isSetPayingKey: boolean;
|
|
4690
4555
|
readonly asSetPayingKey: {
|
|
@@ -4717,7 +4582,7 @@ declare module "./types-lookup.ts" {
|
|
|
4717
4582
|
} & Struct;
|
|
4718
4583
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4719
4584
|
}
|
|
4720
|
-
/** @name PalletContractsCall (
|
|
4585
|
+
/** @name PalletContractsCall (479) */
|
|
4721
4586
|
interface PalletContractsCall extends Enum {
|
|
4722
4587
|
readonly isCallOldWeight: boolean;
|
|
4723
4588
|
readonly asCallOldWeight: {
|
|
@@ -4788,13 +4653,13 @@ declare module "./types-lookup.ts" {
|
|
|
4788
4653
|
} & Struct;
|
|
4789
4654
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4790
4655
|
}
|
|
4791
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4656
|
+
/** @name PalletContractsWasmDeterminism (483) */
|
|
4792
4657
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4793
4658
|
readonly isDeterministic: boolean;
|
|
4794
4659
|
readonly isAllowIndeterminism: boolean;
|
|
4795
4660
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4796
4661
|
}
|
|
4797
|
-
/** @name PolymeshContractsCall (
|
|
4662
|
+
/** @name PolymeshContractsCall (484) */
|
|
4798
4663
|
interface PolymeshContractsCall extends Enum {
|
|
4799
4664
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4800
4665
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4845,16 +4710,16 @@ declare module "./types-lookup.ts" {
|
|
|
4845
4710
|
} & Struct;
|
|
4846
4711
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist' | 'InstantiateWithCodeAsPrimaryKey' | 'InstantiateWithHashAsPrimaryKey' | 'UpgradeApi';
|
|
4847
4712
|
}
|
|
4848
|
-
/** @name PolymeshContractsNextUpgrade (
|
|
4713
|
+
/** @name PolymeshContractsNextUpgrade (487) */
|
|
4849
4714
|
interface PolymeshContractsNextUpgrade extends Struct {
|
|
4850
4715
|
readonly chainVersion: PolymeshContractsChainVersion;
|
|
4851
4716
|
readonly apiHash: PolymeshContractsApiCodeHash;
|
|
4852
4717
|
}
|
|
4853
|
-
/** @name PolymeshContractsApiCodeHash (
|
|
4718
|
+
/** @name PolymeshContractsApiCodeHash (488) */
|
|
4854
4719
|
interface PolymeshContractsApiCodeHash extends Struct {
|
|
4855
4720
|
readonly hash_: H256;
|
|
4856
4721
|
}
|
|
4857
|
-
/** @name PalletPreimageCall (
|
|
4722
|
+
/** @name PalletPreimageCall (489) */
|
|
4858
4723
|
interface PalletPreimageCall extends Enum {
|
|
4859
4724
|
readonly isNotePreimage: boolean;
|
|
4860
4725
|
readonly asNotePreimage: {
|
|
@@ -4874,7 +4739,7 @@ declare module "./types-lookup.ts" {
|
|
|
4874
4739
|
} & Struct;
|
|
4875
4740
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4876
4741
|
}
|
|
4877
|
-
/** @name PalletNftCall (
|
|
4742
|
+
/** @name PalletNftCall (490) */
|
|
4878
4743
|
interface PalletNftCall extends Enum {
|
|
4879
4744
|
readonly isCreateNftCollection: boolean;
|
|
4880
4745
|
readonly asCreateNftCollection: {
|
|
@@ -4903,15 +4768,15 @@ declare module "./types-lookup.ts" {
|
|
|
4903
4768
|
} & Struct;
|
|
4904
4769
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft' | 'ControllerTransfer';
|
|
4905
4770
|
}
|
|
4906
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4771
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (493) */
|
|
4907
4772
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4908
4773
|
}
|
|
4909
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4774
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (496) */
|
|
4910
4775
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4911
4776
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4912
4777
|
readonly value: Bytes;
|
|
4913
4778
|
}
|
|
4914
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
|
4779
|
+
/** @name PalletElectionProviderMultiPhaseCall (498) */
|
|
4915
4780
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
|
4916
4781
|
readonly isSubmitUnsigned: boolean;
|
|
4917
4782
|
readonly asSubmitUnsigned: {
|
|
@@ -4937,13 +4802,13 @@ declare module "./types-lookup.ts" {
|
|
|
4937
4802
|
} & Struct;
|
|
4938
4803
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
|
4939
4804
|
}
|
|
4940
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
|
4805
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (499) */
|
|
4941
4806
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
|
4942
4807
|
readonly solution: PolymeshRuntimeCommonNposSolution16;
|
|
4943
4808
|
readonly score: SpNposElectionsElectionScore;
|
|
4944
4809
|
readonly round: u32;
|
|
4945
4810
|
}
|
|
4946
|
-
/** @name PolymeshRuntimeCommonNposSolution16 (
|
|
4811
|
+
/** @name PolymeshRuntimeCommonNposSolution16 (500) */
|
|
4947
4812
|
interface PolymeshRuntimeCommonNposSolution16 extends Struct {
|
|
4948
4813
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
4949
4814
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -4962,41 +4827,24 @@ declare module "./types-lookup.ts" {
|
|
|
4962
4827
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
4963
4828
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
4964
4829
|
}
|
|
4965
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
|
4830
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (551) */
|
|
4966
4831
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
|
4967
4832
|
readonly voters: Compact<u32>;
|
|
4968
4833
|
readonly targets: Compact<u32>;
|
|
4969
4834
|
}
|
|
4970
|
-
/** @name SpNposElectionsSupport (
|
|
4835
|
+
/** @name SpNposElectionsSupport (555) */
|
|
4971
4836
|
interface SpNposElectionsSupport extends Struct {
|
|
4972
4837
|
readonly total: u128;
|
|
4973
4838
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
|
4974
4839
|
}
|
|
4975
|
-
/** @name
|
|
4976
|
-
interface PalletTestUtilsCall extends Enum {
|
|
4977
|
-
readonly isRegisterDid: boolean;
|
|
4978
|
-
readonly asRegisterDid: {
|
|
4979
|
-
readonly secondaryKeys: Vec<PolymeshPrimitivesSecondaryKey>;
|
|
4980
|
-
} & Struct;
|
|
4981
|
-
readonly isMockCddRegisterDid: boolean;
|
|
4982
|
-
readonly asMockCddRegisterDid: {
|
|
4983
|
-
readonly targetAccount: AccountId32;
|
|
4984
|
-
} & Struct;
|
|
4985
|
-
readonly isGetMyDid: boolean;
|
|
4986
|
-
readonly isGetCddOf: boolean;
|
|
4987
|
-
readonly asGetCddOf: {
|
|
4988
|
-
readonly of: AccountId32;
|
|
4989
|
-
} & Struct;
|
|
4990
|
-
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4991
|
-
}
|
|
4992
|
-
/** @name PalletCommitteePolymeshVotes (566) */
|
|
4840
|
+
/** @name PalletCommitteePolymeshVotes (558) */
|
|
4993
4841
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4994
4842
|
readonly index: u32;
|
|
4995
4843
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
4996
4844
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
4997
|
-
readonly expiry:
|
|
4845
|
+
readonly expiry: PolymeshPrimitivesMaybeBlock;
|
|
4998
4846
|
}
|
|
4999
|
-
/** @name PalletCommitteeError (
|
|
4847
|
+
/** @name PalletCommitteeError (559) */
|
|
5000
4848
|
interface PalletCommitteeError extends Enum {
|
|
5001
4849
|
readonly isDuplicateVote: boolean;
|
|
5002
4850
|
readonly isNotAMember: boolean;
|
|
@@ -5009,12 +4857,12 @@ declare module "./types-lookup.ts" {
|
|
|
5009
4857
|
readonly isProposalsLimitReached: boolean;
|
|
5010
4858
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
5011
4859
|
}
|
|
5012
|
-
/** @name PolymeshPrimitivesMultisigProposalVoteCount (
|
|
4860
|
+
/** @name PolymeshPrimitivesMultisigProposalVoteCount (568) */
|
|
5013
4861
|
interface PolymeshPrimitivesMultisigProposalVoteCount extends Struct {
|
|
5014
4862
|
readonly approvals: u64;
|
|
5015
4863
|
readonly rejections: u64;
|
|
5016
4864
|
}
|
|
5017
|
-
/** @name PolymeshPrimitivesMultisigProposalState (
|
|
4865
|
+
/** @name PolymeshPrimitivesMultisigProposalState (569) */
|
|
5018
4866
|
interface PolymeshPrimitivesMultisigProposalState extends Enum {
|
|
5019
4867
|
readonly isActive: boolean;
|
|
5020
4868
|
readonly asActive: {
|
|
@@ -5025,7 +4873,7 @@ declare module "./types-lookup.ts" {
|
|
|
5025
4873
|
readonly isRejected: boolean;
|
|
5026
4874
|
readonly type: 'Active' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
5027
4875
|
}
|
|
5028
|
-
/** @name PalletMultisigError (
|
|
4876
|
+
/** @name PalletMultisigError (571) */
|
|
5029
4877
|
interface PalletMultisigError extends Enum {
|
|
5030
4878
|
readonly isProposalMissing: boolean;
|
|
5031
4879
|
readonly isDecodingError: boolean;
|
|
@@ -5052,16 +4900,17 @@ declare module "./types-lookup.ts" {
|
|
|
5052
4900
|
readonly isInvalidExpiryDate: boolean;
|
|
5053
4901
|
readonly isInvalidatedProposal: boolean;
|
|
5054
4902
|
readonly isAdminNotFound: boolean;
|
|
5055
|
-
readonly
|
|
4903
|
+
readonly isBadAuthorizationType: boolean;
|
|
4904
|
+
readonly type: 'ProposalMissing' | 'DecodingError' | 'RequiredSignersIsZero' | 'NotASigner' | 'NoSuchMultisig' | 'NotEnoughSigners' | 'NonceOverflow' | 'AlreadyVoted' | 'AlreadyASigner' | 'IdentityNotAdmin' | 'IdentityNotPayer' | 'ChangeNotAllowed' | 'SignerAlreadyLinkedToMultisig' | 'SignerAlreadyLinkedToIdentity' | 'NestingNotAllowed' | 'ProposalAlreadyRejected' | 'ProposalExpired' | 'ProposalAlreadyExecuted' | 'MaxWeightTooLow' | 'MultisigMissingIdentity' | 'TooManySigners' | 'NoPayingDid' | 'InvalidExpiryDate' | 'InvalidatedProposal' | 'AdminNotFound' | 'BadAuthorizationType';
|
|
5056
4905
|
}
|
|
5057
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
4906
|
+
/** @name PalletBridgeBridgeTxDetail (573) */
|
|
5058
4907
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
5059
4908
|
readonly amount: u128;
|
|
5060
4909
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
5061
4910
|
readonly executionBlock: u32;
|
|
5062
4911
|
readonly txHash: H256;
|
|
5063
4912
|
}
|
|
5064
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
4913
|
+
/** @name PalletBridgeBridgeTxStatus (574) */
|
|
5065
4914
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
5066
4915
|
readonly isAbsent: boolean;
|
|
5067
4916
|
readonly isPending: boolean;
|
|
@@ -5071,7 +4920,7 @@ declare module "./types-lookup.ts" {
|
|
|
5071
4920
|
readonly isHandled: boolean;
|
|
5072
4921
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
5073
4922
|
}
|
|
5074
|
-
/** @name PalletStakingStakingLedger (
|
|
4923
|
+
/** @name PalletStakingStakingLedger (577) */
|
|
5075
4924
|
interface PalletStakingStakingLedger extends Struct {
|
|
5076
4925
|
readonly stash: AccountId32;
|
|
5077
4926
|
readonly total: Compact<u128>;
|
|
@@ -5079,28 +4928,28 @@ declare module "./types-lookup.ts" {
|
|
|
5079
4928
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
5080
4929
|
readonly claimedRewards: Vec<u32>;
|
|
5081
4930
|
}
|
|
5082
|
-
/** @name PalletStakingUnlockChunk (
|
|
4931
|
+
/** @name PalletStakingUnlockChunk (579) */
|
|
5083
4932
|
interface PalletStakingUnlockChunk extends Struct {
|
|
5084
4933
|
readonly value: Compact<u128>;
|
|
5085
4934
|
readonly era: Compact<u32>;
|
|
5086
4935
|
}
|
|
5087
|
-
/** @name PalletStakingNominations (
|
|
4936
|
+
/** @name PalletStakingNominations (582) */
|
|
5088
4937
|
interface PalletStakingNominations extends Struct {
|
|
5089
4938
|
readonly targets: Vec<AccountId32>;
|
|
5090
4939
|
readonly submittedIn: u32;
|
|
5091
4940
|
readonly suppressed: bool;
|
|
5092
4941
|
}
|
|
5093
|
-
/** @name PalletStakingActiveEraInfo (
|
|
4942
|
+
/** @name PalletStakingActiveEraInfo (584) */
|
|
5094
4943
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
5095
4944
|
readonly index: u32;
|
|
5096
4945
|
readonly start: Option<u64>;
|
|
5097
4946
|
}
|
|
5098
|
-
/** @name PalletStakingEraRewardPoints (
|
|
4947
|
+
/** @name PalletStakingEraRewardPoints (586) */
|
|
5099
4948
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
5100
4949
|
readonly total: u32;
|
|
5101
4950
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
5102
4951
|
}
|
|
5103
|
-
/** @name PalletStakingUnappliedSlash (
|
|
4952
|
+
/** @name PalletStakingUnappliedSlash (590) */
|
|
5104
4953
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
5105
4954
|
readonly validator: AccountId32;
|
|
5106
4955
|
readonly own: u128;
|
|
@@ -5108,24 +4957,24 @@ declare module "./types-lookup.ts" {
|
|
|
5108
4957
|
readonly reporters: Vec<AccountId32>;
|
|
5109
4958
|
readonly payout: u128;
|
|
5110
4959
|
}
|
|
5111
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
4960
|
+
/** @name PalletStakingSlashingSlashingSpans (592) */
|
|
5112
4961
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
5113
4962
|
readonly spanIndex: u32;
|
|
5114
4963
|
readonly lastStart: u32;
|
|
5115
4964
|
readonly lastNonzeroSlash: u32;
|
|
5116
4965
|
readonly prior: Vec<u32>;
|
|
5117
4966
|
}
|
|
5118
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
4967
|
+
/** @name PalletStakingSlashingSpanRecord (593) */
|
|
5119
4968
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
5120
4969
|
readonly slashed: u128;
|
|
5121
4970
|
readonly paidOut: u128;
|
|
5122
4971
|
}
|
|
5123
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
4972
|
+
/** @name PalletStakingPermissionedIdentityPrefs (596) */
|
|
5124
4973
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
5125
4974
|
readonly intendedCount: u32;
|
|
5126
4975
|
readonly runningCount: u32;
|
|
5127
4976
|
}
|
|
5128
|
-
/** @name PalletStakingPalletError (
|
|
4977
|
+
/** @name PalletStakingPalletError (598) */
|
|
5129
4978
|
interface PalletStakingPalletError extends Enum {
|
|
5130
4979
|
readonly isNotController: boolean;
|
|
5131
4980
|
readonly isNotStash: boolean;
|
|
@@ -5164,15 +5013,15 @@ declare module "./types-lookup.ts" {
|
|
|
5164
5013
|
readonly isCommissionUnchanged: boolean;
|
|
5165
5014
|
readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'DuplicateIndex' | 'InvalidSlashIndex' | 'InsufficientBond' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'InvalidNumberOfNominations' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'IncorrectHistoryDepth' | 'IncorrectSlashingSpans' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'CannotChillOther' | 'TooManyNominators' | 'TooManyValidators' | 'CommissionTooLow' | 'BoundNotMet' | 'StashIdentityDoesNotExist' | 'StashIdentityNotPermissioned' | 'StashIdentityNotCDDed' | 'IdentityIsAlreadyPermissioned' | 'IdentityIsMissingCDD' | 'IntendedCountIsExceedingConsensusLimit' | 'IdentityNotFound' | 'ValidatorNotFound' | 'CommissionTooHigh' | 'CommissionUnchanged';
|
|
5166
5015
|
}
|
|
5167
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5016
|
+
/** @name SpStakingOffenceOffenceDetails (599) */
|
|
5168
5017
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5169
5018
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5170
5019
|
readonly reporters: Vec<AccountId32>;
|
|
5171
5020
|
}
|
|
5172
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5021
|
+
/** @name SpCoreCryptoKeyTypeId (604) */
|
|
5173
5022
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5174
5023
|
}
|
|
5175
|
-
/** @name PalletSessionError (
|
|
5024
|
+
/** @name PalletSessionError (605) */
|
|
5176
5025
|
interface PalletSessionError extends Enum {
|
|
5177
5026
|
readonly isInvalidProof: boolean;
|
|
5178
5027
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5181,7 +5030,7 @@ declare module "./types-lookup.ts" {
|
|
|
5181
5030
|
readonly isNoAccount: boolean;
|
|
5182
5031
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5183
5032
|
}
|
|
5184
|
-
/** @name PalletGrandpaStoredState (
|
|
5033
|
+
/** @name PalletGrandpaStoredState (606) */
|
|
5185
5034
|
interface PalletGrandpaStoredState extends Enum {
|
|
5186
5035
|
readonly isLive: boolean;
|
|
5187
5036
|
readonly isPendingPause: boolean;
|
|
@@ -5197,14 +5046,14 @@ declare module "./types-lookup.ts" {
|
|
|
5197
5046
|
} & Struct;
|
|
5198
5047
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5199
5048
|
}
|
|
5200
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5049
|
+
/** @name PalletGrandpaStoredPendingChange (607) */
|
|
5201
5050
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5202
5051
|
readonly scheduledAt: u32;
|
|
5203
5052
|
readonly delay: u32;
|
|
5204
5053
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5205
5054
|
readonly forced: Option<u32>;
|
|
5206
5055
|
}
|
|
5207
|
-
/** @name PalletGrandpaError (
|
|
5056
|
+
/** @name PalletGrandpaError (609) */
|
|
5208
5057
|
interface PalletGrandpaError extends Enum {
|
|
5209
5058
|
readonly isPauseFailed: boolean;
|
|
5210
5059
|
readonly isResumeFailed: boolean;
|
|
@@ -5215,40 +5064,40 @@ declare module "./types-lookup.ts" {
|
|
|
5215
5064
|
readonly isDuplicateOffenceReport: boolean;
|
|
5216
5065
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5217
5066
|
}
|
|
5218
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5067
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (613) */
|
|
5219
5068
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5220
5069
|
readonly peerId: Bytes;
|
|
5221
5070
|
readonly externalAddresses: Vec<Bytes>;
|
|
5222
5071
|
}
|
|
5223
|
-
/** @name PalletImOnlineError (
|
|
5072
|
+
/** @name PalletImOnlineError (617) */
|
|
5224
5073
|
interface PalletImOnlineError extends Enum {
|
|
5225
5074
|
readonly isInvalidKey: boolean;
|
|
5226
5075
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5227
5076
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5228
5077
|
}
|
|
5229
|
-
/** @name PalletSudoError (
|
|
5078
|
+
/** @name PalletSudoError (619) */
|
|
5230
5079
|
interface PalletSudoError extends Enum {
|
|
5231
5080
|
readonly isRequireSudo: boolean;
|
|
5232
5081
|
readonly type: 'RequireSudo';
|
|
5233
5082
|
}
|
|
5234
|
-
/** @name PalletAssetTickerRegistration (
|
|
5083
|
+
/** @name PalletAssetTickerRegistration (620) */
|
|
5235
5084
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5236
5085
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5237
5086
|
readonly expiry: Option<u64>;
|
|
5238
5087
|
}
|
|
5239
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5088
|
+
/** @name PalletAssetTickerRegistrationConfig (621) */
|
|
5240
5089
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5241
5090
|
readonly maxTickerLength: u8;
|
|
5242
5091
|
readonly registrationLength: Option<u64>;
|
|
5243
5092
|
}
|
|
5244
|
-
/** @name PalletAssetAssetDetails (
|
|
5093
|
+
/** @name PalletAssetAssetDetails (622) */
|
|
5245
5094
|
interface PalletAssetAssetDetails extends Struct {
|
|
5246
5095
|
readonly totalSupply: u128;
|
|
5247
5096
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5248
5097
|
readonly divisible: bool;
|
|
5249
5098
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5250
5099
|
}
|
|
5251
|
-
/** @name PalletAssetError (
|
|
5100
|
+
/** @name PalletAssetError (632) */
|
|
5252
5101
|
interface PalletAssetError extends Enum {
|
|
5253
5102
|
readonly isUnauthorized: boolean;
|
|
5254
5103
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5299,10 +5148,11 @@ declare module "./types-lookup.ts" {
|
|
|
5299
5148
|
readonly isTickerNotRegisteredToCaller: boolean;
|
|
5300
5149
|
readonly isAssetIsAlreadyLinkedToATicker: boolean;
|
|
5301
5150
|
readonly isTickerIsNotLinkedToTheAsset: boolean;
|
|
5302
|
-
readonly
|
|
5151
|
+
readonly isBadAuthorizationType: boolean;
|
|
5152
|
+
readonly type: 'Unauthorized' | 'AssetAlreadyCreated' | 'TickerTooLong' | 'TickerNotAlphanumeric' | 'TickerAlreadyRegistered' | 'TotalSupplyAboveLimit' | 'NoSuchAsset' | 'AlreadyFrozen' | 'NotAnOwner' | 'BalanceOverflow' | 'TotalSupplyOverflow' | 'InvalidGranularity' | 'NotFrozen' | 'InvalidTransfer' | 'InsufficientBalance' | 'AssetAlreadyDivisible' | 'InvalidEthereumSignature' | 'TickerRegistrationExpired' | 'SenderSameAsReceiver' | 'NoSuchDoc' | 'MaxLengthOfAssetNameExceeded' | 'FundingRoundNameMaxLengthExceeded' | 'InvalidAssetIdentifier' | 'InvestorUniquenessClaimNotAllowed' | 'InvalidCustomAssetTypeId' | 'AssetMetadataNameMaxLengthExceeded' | 'AssetMetadataValueMaxLengthExceeded' | 'AssetMetadataTypeDefMaxLengthExceeded' | 'AssetMetadataKeyIsMissing' | 'AssetMetadataValueIsLocked' | 'AssetMetadataLocalKeyAlreadyExists' | 'AssetMetadataGlobalKeyAlreadyExists' | 'TickerFirstByteNotValid' | 'UnexpectedNonFungibleToken' | 'IncompatibleAssetTypeUpdate' | 'AssetMetadataKeyBelongsToNFTCollection' | 'AssetMetadataValueIsEmpty' | 'NumberOfAssetMediatorsExceeded' | 'InvalidTickerCharacter' | 'InvalidTransferFrozenAsset' | 'InvalidTransferComplianceFailure' | 'InvalidTransferInvalidReceiverCDD' | 'InvalidTransferInvalidSenderCDD' | 'TickerRegistrationNotFound' | 'TickerIsAlreadyLinkedToAnAsset' | 'AssetIdGenerationError' | 'TickerNotRegisteredToCaller' | 'AssetIsAlreadyLinkedToATicker' | 'TickerIsNotLinkedToTheAsset' | 'BadAuthorizationType';
|
|
5303
5153
|
}
|
|
5304
|
-
/** @name
|
|
5305
|
-
interface
|
|
5154
|
+
/** @name PalletCorporateActionsDistributionPalletError (635) */
|
|
5155
|
+
interface PalletCorporateActionsDistributionPalletError extends Enum {
|
|
5306
5156
|
readonly isCaNotBenefit: boolean;
|
|
5307
5157
|
readonly isAlreadyExists: boolean;
|
|
5308
5158
|
readonly isExpiryBeforePayment: boolean;
|
|
@@ -5320,14 +5170,14 @@ declare module "./types-lookup.ts" {
|
|
|
5320
5170
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5321
5171
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5322
5172
|
}
|
|
5323
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5173
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (639) */
|
|
5324
5174
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5325
5175
|
readonly nextAt: u64;
|
|
5326
5176
|
readonly totalPending: u64;
|
|
5327
5177
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5328
5178
|
}
|
|
5329
|
-
/** @name
|
|
5330
|
-
interface
|
|
5179
|
+
/** @name PalletAssetCheckpointPalletError (645) */
|
|
5180
|
+
interface PalletAssetCheckpointPalletError extends Enum {
|
|
5331
5181
|
readonly isNoSuchSchedule: boolean;
|
|
5332
5182
|
readonly isScheduleNotRemovable: boolean;
|
|
5333
5183
|
readonly isSchedulesOverMaxComplexity: boolean;
|
|
@@ -5336,12 +5186,12 @@ declare module "./types-lookup.ts" {
|
|
|
5336
5186
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5337
5187
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5338
5188
|
}
|
|
5339
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5189
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (646) */
|
|
5340
5190
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5341
5191
|
readonly paused: bool;
|
|
5342
5192
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5343
5193
|
}
|
|
5344
|
-
/** @name PalletComplianceManagerError (
|
|
5194
|
+
/** @name PalletComplianceManagerError (648) */
|
|
5345
5195
|
interface PalletComplianceManagerError extends Enum {
|
|
5346
5196
|
readonly isUnauthorized: boolean;
|
|
5347
5197
|
readonly isDidNotExist: boolean;
|
|
@@ -5352,7 +5202,7 @@ declare module "./types-lookup.ts" {
|
|
|
5352
5202
|
readonly isWeightLimitExceeded: boolean;
|
|
5353
5203
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5354
5204
|
}
|
|
5355
|
-
/** @name PalletCorporateActionsError (
|
|
5205
|
+
/** @name PalletCorporateActionsError (651) */
|
|
5356
5206
|
interface PalletCorporateActionsError extends Enum {
|
|
5357
5207
|
readonly isDetailsTooLong: boolean;
|
|
5358
5208
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5367,8 +5217,8 @@ declare module "./types-lookup.ts" {
|
|
|
5367
5217
|
readonly isNotTargetedByCA: boolean;
|
|
5368
5218
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5369
5219
|
}
|
|
5370
|
-
/** @name
|
|
5371
|
-
interface
|
|
5220
|
+
/** @name PalletCorporateActionsBallotPalletError (655) */
|
|
5221
|
+
interface PalletCorporateActionsBallotPalletError extends Enum {
|
|
5372
5222
|
readonly isCaNotNotice: boolean;
|
|
5373
5223
|
readonly isAlreadyExists: boolean;
|
|
5374
5224
|
readonly isNoSuchBallot: boolean;
|
|
@@ -5385,48 +5235,48 @@ declare module "./types-lookup.ts" {
|
|
|
5385
5235
|
readonly isRcvNotAllowed: boolean;
|
|
5386
5236
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5387
5237
|
}
|
|
5388
|
-
/** @name PalletPermissionsError (
|
|
5238
|
+
/** @name PalletPermissionsError (656) */
|
|
5389
5239
|
interface PalletPermissionsError extends Enum {
|
|
5390
5240
|
readonly isUnauthorizedCaller: boolean;
|
|
5391
5241
|
readonly type: 'UnauthorizedCaller';
|
|
5392
5242
|
}
|
|
5393
|
-
/** @name PalletPipsPipsMetadata (
|
|
5243
|
+
/** @name PalletPipsPipsMetadata (657) */
|
|
5394
5244
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5395
5245
|
readonly id: u32;
|
|
5396
5246
|
readonly url: Option<Bytes>;
|
|
5397
5247
|
readonly description: Option<Bytes>;
|
|
5398
5248
|
readonly createdAt: u32;
|
|
5399
5249
|
readonly transactionVersion: u32;
|
|
5400
|
-
readonly expiry:
|
|
5250
|
+
readonly expiry: PolymeshPrimitivesMaybeBlock;
|
|
5401
5251
|
}
|
|
5402
|
-
/** @name PalletPipsDepositInfo (
|
|
5252
|
+
/** @name PalletPipsDepositInfo (659) */
|
|
5403
5253
|
interface PalletPipsDepositInfo extends Struct {
|
|
5404
5254
|
readonly owner: AccountId32;
|
|
5405
5255
|
readonly amount: u128;
|
|
5406
5256
|
}
|
|
5407
|
-
/** @name PalletPipsPip (
|
|
5257
|
+
/** @name PalletPipsPip (660) */
|
|
5408
5258
|
interface PalletPipsPip extends Struct {
|
|
5409
5259
|
readonly id: u32;
|
|
5410
5260
|
readonly proposal: Call;
|
|
5411
5261
|
readonly proposer: PalletPipsProposer;
|
|
5412
5262
|
}
|
|
5413
|
-
/** @name PalletPipsVotingResult (
|
|
5263
|
+
/** @name PalletPipsVotingResult (661) */
|
|
5414
5264
|
interface PalletPipsVotingResult extends Struct {
|
|
5415
5265
|
readonly ayesCount: u32;
|
|
5416
5266
|
readonly ayesStake: u128;
|
|
5417
5267
|
readonly naysCount: u32;
|
|
5418
5268
|
readonly naysStake: u128;
|
|
5419
5269
|
}
|
|
5420
|
-
/** @name PalletPipsVote (
|
|
5270
|
+
/** @name PalletPipsVote (662) */
|
|
5421
5271
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5422
5272
|
}
|
|
5423
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5273
|
+
/** @name PalletPipsSnapshotMetadata (663) */
|
|
5424
5274
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5425
5275
|
readonly createdAt: u32;
|
|
5426
5276
|
readonly madeBy: AccountId32;
|
|
5427
5277
|
readonly id: u32;
|
|
5428
5278
|
}
|
|
5429
|
-
/** @name PalletPipsError (
|
|
5279
|
+
/** @name PalletPipsError (665) */
|
|
5430
5280
|
interface PalletPipsError extends Enum {
|
|
5431
5281
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5432
5282
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5446,9 +5296,10 @@ declare module "./types-lookup.ts" {
|
|
|
5446
5296
|
readonly isSnapshotIdMismatch: boolean;
|
|
5447
5297
|
readonly isScheduledProposalDoesntExist: boolean;
|
|
5448
5298
|
readonly isProposalNotInScheduledState: boolean;
|
|
5449
|
-
readonly
|
|
5299
|
+
readonly isInvalidPipId: boolean;
|
|
5300
|
+
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState' | 'InvalidPipId';
|
|
5450
5301
|
}
|
|
5451
|
-
/** @name PalletPortfolioError (
|
|
5302
|
+
/** @name PalletPortfolioError (673) */
|
|
5452
5303
|
interface PalletPortfolioError extends Enum {
|
|
5453
5304
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5454
5305
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5469,16 +5320,17 @@ declare module "./types-lookup.ts" {
|
|
|
5469
5320
|
readonly isMissingOwnersPermission: boolean;
|
|
5470
5321
|
readonly isInvalidTransferSenderIdMatchesReceiverId: boolean;
|
|
5471
5322
|
readonly isSelfAdditionNotAllowed: boolean;
|
|
5472
|
-
readonly
|
|
5323
|
+
readonly isBadAuthorizationType: boolean;
|
|
5324
|
+
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer' | 'MissingOwnersPermission' | 'InvalidTransferSenderIdMatchesReceiverId' | 'SelfAdditionNotAllowed' | 'BadAuthorizationType';
|
|
5473
5325
|
}
|
|
5474
|
-
/** @name PalletProtocolFeeError (
|
|
5326
|
+
/** @name PalletProtocolFeeError (674) */
|
|
5475
5327
|
interface PalletProtocolFeeError extends Enum {
|
|
5476
5328
|
readonly isInsufficientAccountBalance: boolean;
|
|
5477
5329
|
readonly isUnHandledImbalances: boolean;
|
|
5478
5330
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5479
5331
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5480
5332
|
}
|
|
5481
|
-
/** @name PalletSchedulerScheduled (
|
|
5333
|
+
/** @name PalletSchedulerScheduled (677) */
|
|
5482
5334
|
interface PalletSchedulerScheduled extends Struct {
|
|
5483
5335
|
readonly maybeId: Option<U8aFixed>;
|
|
5484
5336
|
readonly priority: u8;
|
|
@@ -5486,7 +5338,7 @@ declare module "./types-lookup.ts" {
|
|
|
5486
5338
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5487
5339
|
readonly origin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
5488
5340
|
}
|
|
5489
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5341
|
+
/** @name FrameSupportPreimagesBounded (678) */
|
|
5490
5342
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5491
5343
|
readonly isLegacy: boolean;
|
|
5492
5344
|
readonly asLegacy: {
|
|
@@ -5501,7 +5353,7 @@ declare module "./types-lookup.ts" {
|
|
|
5501
5353
|
} & Struct;
|
|
5502
5354
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5503
5355
|
}
|
|
5504
|
-
/** @name PalletSchedulerError (
|
|
5356
|
+
/** @name PalletSchedulerError (681) */
|
|
5505
5357
|
interface PalletSchedulerError extends Enum {
|
|
5506
5358
|
readonly isFailedToSchedule: boolean;
|
|
5507
5359
|
readonly isNotFound: boolean;
|
|
@@ -5510,12 +5362,12 @@ declare module "./types-lookup.ts" {
|
|
|
5510
5362
|
readonly isNamed: boolean;
|
|
5511
5363
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5512
5364
|
}
|
|
5513
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5365
|
+
/** @name PolymeshPrimitivesSettlementVenue (682) */
|
|
5514
5366
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5515
5367
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5516
5368
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5517
5369
|
}
|
|
5518
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5370
|
+
/** @name PolymeshPrimitivesSettlementInstruction (686) */
|
|
5519
5371
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5520
5372
|
readonly instructionId: u64;
|
|
5521
5373
|
readonly venueId: Option<u64>;
|
|
@@ -5524,7 +5376,7 @@ declare module "./types-lookup.ts" {
|
|
|
5524
5376
|
readonly tradeDate: Option<u64>;
|
|
5525
5377
|
readonly valueDate: Option<u64>;
|
|
5526
5378
|
}
|
|
5527
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5379
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (688) */
|
|
5528
5380
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5529
5381
|
readonly isPendingTokenLock: boolean;
|
|
5530
5382
|
readonly isExecutionPending: boolean;
|
|
@@ -5532,14 +5384,14 @@ declare module "./types-lookup.ts" {
|
|
|
5532
5384
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5533
5385
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5534
5386
|
}
|
|
5535
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5387
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (690) */
|
|
5536
5388
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5537
5389
|
readonly isUnknown: boolean;
|
|
5538
5390
|
readonly isPending: boolean;
|
|
5539
5391
|
readonly isAffirmed: boolean;
|
|
5540
5392
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5541
5393
|
}
|
|
5542
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5394
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (693) */
|
|
5543
5395
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5544
5396
|
readonly isUnknown: boolean;
|
|
5545
5397
|
readonly isPending: boolean;
|
|
@@ -5550,7 +5402,7 @@ declare module "./types-lookup.ts" {
|
|
|
5550
5402
|
readonly asRejected: u32;
|
|
5551
5403
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5552
5404
|
}
|
|
5553
|
-
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (
|
|
5405
|
+
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (695) */
|
|
5554
5406
|
interface PolymeshPrimitivesSettlementMediatorAffirmationStatus extends Enum {
|
|
5555
5407
|
readonly isUnknown: boolean;
|
|
5556
5408
|
readonly isPending: boolean;
|
|
@@ -5560,7 +5412,7 @@ declare module "./types-lookup.ts" {
|
|
|
5560
5412
|
} & Struct;
|
|
5561
5413
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5562
5414
|
}
|
|
5563
|
-
/** @name PalletSettlementError (
|
|
5415
|
+
/** @name PalletSettlementError (697) */
|
|
5564
5416
|
interface PalletSettlementError extends Enum {
|
|
5565
5417
|
readonly isInvalidVenue: boolean;
|
|
5566
5418
|
readonly isUnauthorized: boolean;
|
|
@@ -5608,17 +5460,17 @@ declare module "./types-lookup.ts" {
|
|
|
5608
5460
|
readonly isOffChainAssetsMustHaveAVenue: boolean;
|
|
5609
5461
|
readonly type: 'InvalidVenue' | 'Unauthorized' | 'InstructionNotAffirmed' | 'UnauthorizedSigner' | 'ReceiptAlreadyClaimed' | 'UnauthorizedVenue' | 'InstructionDatesInvalid' | 'InstructionSettleBlockPassed' | 'InvalidSignature' | 'SameSenderReceiver' | 'SettleOnPastBlock' | 'UnexpectedAffirmationStatus' | 'FailedToSchedule' | 'UnknownInstruction' | 'SignerAlreadyExists' | 'SignerDoesNotExist' | 'ZeroAmount' | 'InstructionSettleBlockNotReached' | 'CallerIsNotAParty' | 'MaxNumberOfNFTsExceeded' | 'NumberOfTransferredNFTsUnderestimated' | 'ReceiptForInvalidLegType' | 'WeightLimitExceeded' | 'MaxNumberOfFungibleAssetsExceeded' | 'MaxNumberOfOffChainAssetsExceeded' | 'NumberOfFungibleTransfersUnderestimated' | 'UnexpectedOFFChainAsset' | 'OffChainAssetCantBeLocked' | 'NumberOfOffChainTransfersUnderestimated' | 'LegNotFound' | 'InputWeightIsLessThanMinimum' | 'MaxNumberOfReceiptsExceeded' | 'NotAllAffirmationsHaveBeenReceived' | 'InvalidInstructionStatusForExecution' | 'FailedToReleaseLockOrTransferAssets' | 'DuplicateReceiptUid' | 'ReceiptInstructionIdMissmatch' | 'MultipleReceiptsForOneLeg' | 'UnexpectedLegStatus' | 'NumberOfVenueSignersExceeded' | 'CallerIsNotAMediator' | 'InvalidExpiryDate' | 'MediatorAffirmationExpired' | 'OffChainAssetsMustHaveAVenue';
|
|
5610
5462
|
}
|
|
5611
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5463
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (700) */
|
|
5612
5464
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5613
5465
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
5614
5466
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5615
5467
|
}
|
|
5616
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5468
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (701) */
|
|
5617
5469
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5618
5470
|
readonly paused: bool;
|
|
5619
5471
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5620
5472
|
}
|
|
5621
|
-
/** @name PalletStatisticsError (
|
|
5473
|
+
/** @name PalletStatisticsError (705) */
|
|
5622
5474
|
interface PalletStatisticsError extends Enum {
|
|
5623
5475
|
readonly isInvalidTransferStatisticsFailure: boolean;
|
|
5624
5476
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5629,7 +5481,7 @@ declare module "./types-lookup.ts" {
|
|
|
5629
5481
|
readonly isWeightLimitExceeded: boolean;
|
|
5630
5482
|
readonly type: 'InvalidTransferStatisticsFailure' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5631
5483
|
}
|
|
5632
|
-
/** @name PalletStoError (
|
|
5484
|
+
/** @name PalletStoError (708) */
|
|
5633
5485
|
interface PalletStoError extends Enum {
|
|
5634
5486
|
readonly isUnauthorized: boolean;
|
|
5635
5487
|
readonly isOverflow: boolean;
|
|
@@ -5645,13 +5497,13 @@ declare module "./types-lookup.ts" {
|
|
|
5645
5497
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5646
5498
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5647
5499
|
}
|
|
5648
|
-
/** @name PalletTreasuryError (
|
|
5500
|
+
/** @name PalletTreasuryError (709) */
|
|
5649
5501
|
interface PalletTreasuryError extends Enum {
|
|
5650
5502
|
readonly isInsufficientBalance: boolean;
|
|
5651
5503
|
readonly isInvalidIdentity: boolean;
|
|
5652
5504
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5653
5505
|
}
|
|
5654
|
-
/** @name PalletUtilityError (
|
|
5506
|
+
/** @name PalletUtilityError (710) */
|
|
5655
5507
|
interface PalletUtilityError extends Enum {
|
|
5656
5508
|
readonly isTooManyCalls: boolean;
|
|
5657
5509
|
readonly isInvalidSignature: boolean;
|
|
@@ -5660,13 +5512,13 @@ declare module "./types-lookup.ts" {
|
|
|
5660
5512
|
readonly isUnableToDeriveAccountId: boolean;
|
|
5661
5513
|
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce' | 'UnableToDeriveAccountId';
|
|
5662
5514
|
}
|
|
5663
|
-
/** @name PalletBaseError (
|
|
5515
|
+
/** @name PalletBaseError (711) */
|
|
5664
5516
|
interface PalletBaseError extends Enum {
|
|
5665
5517
|
readonly isTooLong: boolean;
|
|
5666
5518
|
readonly isCounterOverflow: boolean;
|
|
5667
5519
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5668
5520
|
}
|
|
5669
|
-
/** @name PalletExternalAgentsError (
|
|
5521
|
+
/** @name PalletExternalAgentsError (714) */
|
|
5670
5522
|
interface PalletExternalAgentsError extends Enum {
|
|
5671
5523
|
readonly isNoSuchAG: boolean;
|
|
5672
5524
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5674,14 +5526,15 @@ declare module "./types-lookup.ts" {
|
|
|
5674
5526
|
readonly isNotAnAgent: boolean;
|
|
5675
5527
|
readonly isRemovingLastFullAgent: boolean;
|
|
5676
5528
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5677
|
-
readonly
|
|
5529
|
+
readonly isBadAuthorizationType: boolean;
|
|
5530
|
+
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset' | 'BadAuthorizationType';
|
|
5678
5531
|
}
|
|
5679
|
-
/** @name PalletRelayerSubsidy (
|
|
5532
|
+
/** @name PalletRelayerSubsidy (715) */
|
|
5680
5533
|
interface PalletRelayerSubsidy extends Struct {
|
|
5681
5534
|
readonly payingKey: AccountId32;
|
|
5682
5535
|
readonly remaining: u128;
|
|
5683
5536
|
}
|
|
5684
|
-
/** @name PalletRelayerError (
|
|
5537
|
+
/** @name PalletRelayerError (716) */
|
|
5685
5538
|
interface PalletRelayerError extends Enum {
|
|
5686
5539
|
readonly isUserKeyCddMissing: boolean;
|
|
5687
5540
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5690,9 +5543,10 @@ declare module "./types-lookup.ts" {
|
|
|
5690
5543
|
readonly isNotAuthorizedForPayingKey: boolean;
|
|
5691
5544
|
readonly isNotAuthorizedForUserKey: boolean;
|
|
5692
5545
|
readonly isOverflow: boolean;
|
|
5693
|
-
readonly
|
|
5546
|
+
readonly isBadAuthorizationType: boolean;
|
|
5547
|
+
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow' | 'BadAuthorizationType';
|
|
5694
5548
|
}
|
|
5695
|
-
/** @name PalletContractsWasmPrefabWasmModule (
|
|
5549
|
+
/** @name PalletContractsWasmPrefabWasmModule (718) */
|
|
5696
5550
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5697
5551
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
5698
5552
|
readonly initial: Compact<u32>;
|
|
@@ -5700,13 +5554,13 @@ declare module "./types-lookup.ts" {
|
|
|
5700
5554
|
readonly code: Bytes;
|
|
5701
5555
|
readonly determinism: PalletContractsWasmDeterminism;
|
|
5702
5556
|
}
|
|
5703
|
-
/** @name PalletContractsWasmOwnerInfo (
|
|
5557
|
+
/** @name PalletContractsWasmOwnerInfo (720) */
|
|
5704
5558
|
interface PalletContractsWasmOwnerInfo extends Struct {
|
|
5705
5559
|
readonly owner: AccountId32;
|
|
5706
5560
|
readonly deposit: Compact<u128>;
|
|
5707
5561
|
readonly refcount: Compact<u64>;
|
|
5708
5562
|
}
|
|
5709
|
-
/** @name PalletContractsStorageContractInfo (
|
|
5563
|
+
/** @name PalletContractsStorageContractInfo (721) */
|
|
5710
5564
|
interface PalletContractsStorageContractInfo extends Struct {
|
|
5711
5565
|
readonly trieId: Bytes;
|
|
5712
5566
|
readonly depositAccount: AccountId32;
|
|
@@ -5717,17 +5571,17 @@ declare module "./types-lookup.ts" {
|
|
|
5717
5571
|
readonly storageItemDeposit: u128;
|
|
5718
5572
|
readonly storageBaseDeposit: u128;
|
|
5719
5573
|
}
|
|
5720
|
-
/** @name PalletContractsStorageDeletedContract (
|
|
5574
|
+
/** @name PalletContractsStorageDeletedContract (724) */
|
|
5721
5575
|
interface PalletContractsStorageDeletedContract extends Struct {
|
|
5722
5576
|
readonly trieId: Bytes;
|
|
5723
5577
|
}
|
|
5724
|
-
/** @name PalletContractsSchedule (
|
|
5578
|
+
/** @name PalletContractsSchedule (726) */
|
|
5725
5579
|
interface PalletContractsSchedule extends Struct {
|
|
5726
5580
|
readonly limits: PalletContractsScheduleLimits;
|
|
5727
5581
|
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
|
|
5728
5582
|
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
|
|
5729
5583
|
}
|
|
5730
|
-
/** @name PalletContractsScheduleLimits (
|
|
5584
|
+
/** @name PalletContractsScheduleLimits (727) */
|
|
5731
5585
|
interface PalletContractsScheduleLimits extends Struct {
|
|
5732
5586
|
readonly eventTopics: u32;
|
|
5733
5587
|
readonly globals: u32;
|
|
@@ -5739,7 +5593,7 @@ declare module "./types-lookup.ts" {
|
|
|
5739
5593
|
readonly subjectLen: u32;
|
|
5740
5594
|
readonly payloadLen: u32;
|
|
5741
5595
|
}
|
|
5742
|
-
/** @name PalletContractsScheduleInstructionWeights (
|
|
5596
|
+
/** @name PalletContractsScheduleInstructionWeights (728) */
|
|
5743
5597
|
interface PalletContractsScheduleInstructionWeights extends Struct {
|
|
5744
5598
|
readonly version: u32;
|
|
5745
5599
|
readonly fallback: u32;
|
|
@@ -5796,7 +5650,7 @@ declare module "./types-lookup.ts" {
|
|
|
5796
5650
|
readonly i64rotl: u32;
|
|
5797
5651
|
readonly i64rotr: u32;
|
|
5798
5652
|
}
|
|
5799
|
-
/** @name PalletContractsScheduleHostFnWeights (
|
|
5653
|
+
/** @name PalletContractsScheduleHostFnWeights (729) */
|
|
5800
5654
|
interface PalletContractsScheduleHostFnWeights extends Struct {
|
|
5801
5655
|
readonly caller: SpWeightsWeightV2Weight;
|
|
5802
5656
|
readonly isContract: SpWeightsWeightV2Weight;
|
|
@@ -5858,7 +5712,7 @@ declare module "./types-lookup.ts" {
|
|
|
5858
5712
|
readonly accountReentranceCount: SpWeightsWeightV2Weight;
|
|
5859
5713
|
readonly instantiationNonce: SpWeightsWeightV2Weight;
|
|
5860
5714
|
}
|
|
5861
|
-
/** @name PalletContractsError (
|
|
5715
|
+
/** @name PalletContractsError (730) */
|
|
5862
5716
|
interface PalletContractsError extends Enum {
|
|
5863
5717
|
readonly isInvalidScheduleVersion: boolean;
|
|
5864
5718
|
readonly isInvalidCallFlags: boolean;
|
|
@@ -5890,7 +5744,7 @@ declare module "./types-lookup.ts" {
|
|
|
5890
5744
|
readonly isIndeterministic: boolean;
|
|
5891
5745
|
readonly type: 'InvalidScheduleVersion' | 'InvalidCallFlags' | 'OutOfGas' | 'OutputBufferTooSmall' | 'TransferFailed' | 'MaxCallDepthReached' | 'ContractNotFound' | 'CodeTooLarge' | 'CodeNotFound' | 'OutOfBounds' | 'DecodingFailed' | 'ContractTrapped' | 'ValueTooLarge' | 'TerminatedWhileReentrant' | 'InputForwarded' | 'RandomSubjectTooLong' | 'TooManyTopics' | 'NoChainExtension' | 'DeletionQueueFull' | 'DuplicateContract' | 'TerminatedInConstructor' | 'ReentranceDenied' | 'StorageDepositNotEnoughFunds' | 'StorageDepositLimitExhausted' | 'CodeInUse' | 'ContractReverted' | 'CodeRejected' | 'Indeterministic';
|
|
5892
5746
|
}
|
|
5893
|
-
/** @name PolymeshContractsError (
|
|
5747
|
+
/** @name PolymeshContractsError (732) */
|
|
5894
5748
|
interface PolymeshContractsError extends Enum {
|
|
5895
5749
|
readonly isInvalidFuncId: boolean;
|
|
5896
5750
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5906,7 +5760,7 @@ declare module "./types-lookup.ts" {
|
|
|
5906
5760
|
readonly isNoUpgradesSupported: boolean;
|
|
5907
5761
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied' | 'CallerNotAPrimaryKey' | 'MissingKeyPermissions' | 'InvalidChainVersion' | 'NoUpgradesSupported';
|
|
5908
5762
|
}
|
|
5909
|
-
/** @name PalletPreimageRequestStatus (
|
|
5763
|
+
/** @name PalletPreimageRequestStatus (733) */
|
|
5910
5764
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5911
5765
|
readonly isUnrequested: boolean;
|
|
5912
5766
|
readonly asUnrequested: {
|
|
@@ -5921,7 +5775,7 @@ declare module "./types-lookup.ts" {
|
|
|
5921
5775
|
} & Struct;
|
|
5922
5776
|
readonly type: 'Unrequested' | 'Requested';
|
|
5923
5777
|
}
|
|
5924
|
-
/** @name PalletPreimageError (
|
|
5778
|
+
/** @name PalletPreimageError (737) */
|
|
5925
5779
|
interface PalletPreimageError extends Enum {
|
|
5926
5780
|
readonly isTooBig: boolean;
|
|
5927
5781
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5931,12 +5785,12 @@ declare module "./types-lookup.ts" {
|
|
|
5931
5785
|
readonly isNotRequested: boolean;
|
|
5932
5786
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5933
5787
|
}
|
|
5934
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
5788
|
+
/** @name PolymeshPrimitivesNftNftCollection (738) */
|
|
5935
5789
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5936
5790
|
readonly id: u64;
|
|
5937
5791
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
5938
5792
|
}
|
|
5939
|
-
/** @name PalletNftError (
|
|
5793
|
+
/** @name PalletNftError (742) */
|
|
5940
5794
|
interface PalletNftError extends Enum {
|
|
5941
5795
|
readonly isBalanceOverflow: boolean;
|
|
5942
5796
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5969,25 +5823,25 @@ declare module "./types-lookup.ts" {
|
|
|
5969
5823
|
readonly isNumberOfKeysIsLessThanExpected: boolean;
|
|
5970
5824
|
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount' | 'SupplyOverflow' | 'SupplyUnderflow' | 'InvalidNFTTransferNFTIsLocked' | 'InvalidNFTTransferSenderIdMatchesReceiverId' | 'InvalidNFTTransferInvalidReceiverCDD' | 'InvalidNFTTransferInvalidSenderCDD' | 'InvalidAssetId' | 'NftIsLocked' | 'NumberOfKeysIsLessThanExpected';
|
|
5971
5825
|
}
|
|
5972
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
|
5826
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (743) */
|
|
5973
5827
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
|
5974
5828
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
|
5975
5829
|
readonly score: SpNposElectionsElectionScore;
|
|
5976
5830
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
|
5977
5831
|
}
|
|
5978
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
|
5832
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (745) */
|
|
5979
5833
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
|
5980
5834
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
|
5981
5835
|
readonly targets: Vec<AccountId32>;
|
|
5982
5836
|
}
|
|
5983
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
|
5837
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (751) */
|
|
5984
5838
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
|
5985
5839
|
readonly who: AccountId32;
|
|
5986
5840
|
readonly deposit: u128;
|
|
5987
5841
|
readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
|
|
5988
5842
|
readonly callFee: u128;
|
|
5989
5843
|
}
|
|
5990
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
|
5844
|
+
/** @name PalletElectionProviderMultiPhaseError (752) */
|
|
5991
5845
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
|
5992
5846
|
readonly isPreDispatchEarlySubmission: boolean;
|
|
5993
5847
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
|
@@ -6005,28 +5859,23 @@ declare module "./types-lookup.ts" {
|
|
|
6005
5859
|
readonly isTooManyWinners: boolean;
|
|
6006
5860
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners';
|
|
6007
5861
|
}
|
|
6008
|
-
/** @name
|
|
6009
|
-
type PalletTestUtilsError = Null;
|
|
6010
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (766) */
|
|
5862
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (755) */
|
|
6011
5863
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
6012
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5864
|
+
/** @name FrameSystemExtensionsCheckTxVersion (756) */
|
|
6013
5865
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
6014
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5866
|
+
/** @name FrameSystemExtensionsCheckGenesis (757) */
|
|
6015
5867
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
6016
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5868
|
+
/** @name FrameSystemExtensionsCheckNonce (760) */
|
|
6017
5869
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
6018
5870
|
}
|
|
6019
|
-
/** @name
|
|
6020
|
-
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
6021
|
-
}
|
|
6022
|
-
/** @name FrameSystemExtensionsCheckWeight (773) */
|
|
5871
|
+
/** @name FrameSystemExtensionsCheckWeight (761) */
|
|
6023
5872
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
6024
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5873
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (762) */
|
|
6025
5874
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
6026
5875
|
}
|
|
6027
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
5876
|
+
/** @name PalletPermissionsStoreCallMetadata (763) */
|
|
6028
5877
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
6029
|
-
/** @name PolymeshRuntimeDevelopRuntime (
|
|
5878
|
+
/** @name PolymeshRuntimeDevelopRuntime (764) */
|
|
6030
5879
|
type PolymeshRuntimeDevelopRuntime = Null;
|
|
6031
5880
|
}
|
|
6032
5881
|
//# sourceMappingURL=types-lookup.d.ts.map
|