@storagehub/api-augment 0.2.11 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/parachain/interfaces/lookup.js +160 -213
  2. package/dist/parachain/interfaces/lookup.js.map +1 -1
  3. package/dist/parachain/interfaces/storagehubclient/runtime.js +5 -0
  4. package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -1
  5. package/dist/solochain-evm/interfaces/lookup.js +290 -343
  6. package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
  7. package/dist/types/parachain/interfaces/augment-api-errors.d.ts +4 -108
  8. package/dist/types/parachain/interfaces/augment-api-events.d.ts +25 -103
  9. package/dist/types/parachain/interfaces/augment-api-query.d.ts +11 -0
  10. package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +8 -0
  11. package/dist/types/parachain/interfaces/augment-api-tx.d.ts +75 -10
  12. package/dist/types/parachain/interfaces/augment-types.d.ts +2 -1
  13. package/dist/types/parachain/interfaces/lookup.d.ts +118 -145
  14. package/dist/types/parachain/interfaces/registry.d.ts +2 -2
  15. package/dist/types/parachain/interfaces/storagehubclient/types.d.ts +14 -4
  16. package/dist/types/parachain/interfaces/types-lookup.d.ts +175 -234
  17. package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +4 -108
  18. package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +25 -103
  19. package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +11 -0
  20. package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +8 -0
  21. package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +75 -10
  22. package/dist/types/solochain-evm/interfaces/augment-types.d.ts +2 -1
  23. package/dist/types/solochain-evm/interfaces/lookup.d.ts +248 -275
  24. package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -2
  25. package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +14 -4
  26. package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +305 -364
  27. package/metadata-sh-parachain.json +1 -1
  28. package/metadata-sh-solochain-evm.json +1 -1
  29. package/package.json +2 -2
  30. package/src/parachain/interfaces/augment-api-errors.ts +4 -108
  31. package/src/parachain/interfaces/augment-api-events.ts +22 -113
  32. package/src/parachain/interfaces/augment-api-query.ts +12 -0
  33. package/src/parachain/interfaces/augment-api-runtime.ts +14 -0
  34. package/src/parachain/interfaces/augment-api-tx.ts +76 -10
  35. package/src/parachain/interfaces/augment-types.ts +2 -0
  36. package/src/parachain/interfaces/lookup.ts +160 -213
  37. package/src/parachain/interfaces/registry.ts +2 -2
  38. package/src/parachain/interfaces/storagehubclient/runtime.ts +5 -0
  39. package/src/parachain/interfaces/storagehubclient/types.ts +14 -4
  40. package/src/parachain/interfaces/types-lookup.ts +225 -314
  41. package/src/solochain-evm/interfaces/augment-api-errors.ts +4 -108
  42. package/src/solochain-evm/interfaces/augment-api-events.ts +22 -113
  43. package/src/solochain-evm/interfaces/augment-api-query.ts +12 -0
  44. package/src/solochain-evm/interfaces/augment-api-runtime.ts +14 -0
  45. package/src/solochain-evm/interfaces/augment-api-tx.ts +76 -10
  46. package/src/solochain-evm/interfaces/augment-types.ts +2 -0
  47. package/src/solochain-evm/interfaces/lookup.ts +290 -343
  48. package/src/solochain-evm/interfaces/registry.ts +2 -2
  49. package/src/solochain-evm/interfaces/storagehubclient/types.ts +14 -4
  50. package/src/solochain-evm/interfaces/types-lookup.ts +355 -444
@@ -475,9 +475,9 @@ declare module "@polkadot/types/lookup" {
475
475
  readonly isMinPrice: boolean;
476
476
  readonly asMinPrice: u128;
477
477
  readonly isUpperExponentFactor: boolean;
478
- readonly asUpperExponentFactor: u32;
478
+ readonly asUpperExponentFactor: u128;
479
479
  readonly isLowerExponentFactor: boolean;
480
- readonly asLowerExponentFactor: u32;
480
+ readonly asLowerExponentFactor: u128;
481
481
  readonly isZeroSizeBucketFixedRate: boolean;
482
482
  readonly asZeroSizeBucketFixedRate: u128;
483
483
  readonly isIdealUtilisationRate: boolean;
@@ -811,13 +811,6 @@ declare module "@polkadot/types/lookup" {
811
811
  readonly bucketId: H256;
812
812
  readonly maybeCollectionId: Option<u32>;
813
813
  } & Struct;
814
- readonly isMoveBucketRequested: boolean;
815
- readonly asMoveBucketRequested: {
816
- readonly who: AccountId20;
817
- readonly bucketId: H256;
818
- readonly newMspId: H256;
819
- readonly newValuePropId: H256;
820
- } & Struct;
821
814
  readonly isBucketPrivacyUpdated: boolean;
822
815
  readonly asBucketPrivacyUpdated: {
823
816
  readonly who: AccountId20;
@@ -831,6 +824,30 @@ declare module "@polkadot/types/lookup" {
831
824
  readonly bucketId: H256;
832
825
  readonly collectionId: u32;
833
826
  } & Struct;
827
+ readonly isMoveBucketRequested: boolean;
828
+ readonly asMoveBucketRequested: {
829
+ readonly who: AccountId20;
830
+ readonly bucketId: H256;
831
+ readonly newMspId: H256;
832
+ readonly newValuePropId: H256;
833
+ } & Struct;
834
+ readonly isMoveBucketRequestExpired: boolean;
835
+ readonly asMoveBucketRequestExpired: {
836
+ readonly bucketId: H256;
837
+ } & Struct;
838
+ readonly isMoveBucketAccepted: boolean;
839
+ readonly asMoveBucketAccepted: {
840
+ readonly bucketId: H256;
841
+ readonly oldMspId: Option<H256>;
842
+ readonly newMspId: H256;
843
+ readonly valuePropId: H256;
844
+ } & Struct;
845
+ readonly isMoveBucketRejected: boolean;
846
+ readonly asMoveBucketRejected: {
847
+ readonly bucketId: H256;
848
+ readonly oldMspId: Option<H256>;
849
+ readonly newMspId: H256;
850
+ } & Struct;
834
851
  readonly isNewStorageRequest: boolean;
835
852
  readonly asNewStorageRequest: {
836
853
  readonly who: AccountId20;
@@ -847,24 +864,6 @@ declare module "@polkadot/types/lookup" {
847
864
  readonly fileKey: H256;
848
865
  readonly fileMetadata: ShpFileMetadataFileMetadata;
849
866
  } & Struct;
850
- readonly isAcceptedBspVolunteer: boolean;
851
- readonly asAcceptedBspVolunteer: {
852
- readonly bspId: H256;
853
- readonly bucketId: H256;
854
- readonly location: Bytes;
855
- readonly fingerprint: H256;
856
- readonly multiaddresses: Vec<Bytes>;
857
- readonly owner: AccountId20;
858
- readonly size_: u64;
859
- } & Struct;
860
- readonly isBspConfirmedStoring: boolean;
861
- readonly asBspConfirmedStoring: {
862
- readonly who: AccountId20;
863
- readonly bspId: H256;
864
- readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
865
- readonly skippedFileKeys: Vec<H256>;
866
- readonly newRoot: H256;
867
- } & Struct;
868
867
  readonly isStorageRequestFulfilled: boolean;
869
868
  readonly asStorageRequestFulfilled: {
870
869
  readonly fileKey: H256;
@@ -884,6 +883,37 @@ declare module "@polkadot/types/lookup" {
884
883
  readonly bucketId: H256;
885
884
  readonly reason: PalletFileSystemRejectedStorageRequestReason;
886
885
  } & Struct;
886
+ readonly isIncompleteStorageRequest: boolean;
887
+ readonly asIncompleteStorageRequest: {
888
+ readonly fileKey: H256;
889
+ } & Struct;
890
+ readonly isIncompleteStorageRequestCleanedUp: boolean;
891
+ readonly asIncompleteStorageRequestCleanedUp: {
892
+ readonly fileKey: H256;
893
+ } & Struct;
894
+ readonly isAcceptedBspVolunteer: boolean;
895
+ readonly asAcceptedBspVolunteer: {
896
+ readonly bspId: H256;
897
+ readonly bucketId: H256;
898
+ readonly location: Bytes;
899
+ readonly fingerprint: H256;
900
+ readonly multiaddresses: Vec<Bytes>;
901
+ readonly owner: AccountId20;
902
+ readonly size_: u64;
903
+ } & Struct;
904
+ readonly isBspConfirmedStoring: boolean;
905
+ readonly asBspConfirmedStoring: {
906
+ readonly who: AccountId20;
907
+ readonly bspId: H256;
908
+ readonly confirmedFileKeys: Vec<ITuple<[H256, ShpFileMetadataFileMetadata]>>;
909
+ readonly skippedFileKeys: Vec<H256>;
910
+ readonly newRoot: H256;
911
+ } & Struct;
912
+ readonly isBspChallengeCycleInitialised: boolean;
913
+ readonly asBspChallengeCycleInitialised: {
914
+ readonly who: AccountId20;
915
+ readonly bspId: H256;
916
+ } & Struct;
887
917
  readonly isBspRequestedToStopStoring: boolean;
888
918
  readonly asBspRequestedToStopStoring: {
889
919
  readonly bspId: H256;
@@ -897,10 +927,11 @@ declare module "@polkadot/types/lookup" {
897
927
  readonly fileKey: H256;
898
928
  readonly newRoot: H256;
899
929
  } & Struct;
900
- readonly isPriorityChallengeForFileDeletionQueued: boolean;
901
- readonly asPriorityChallengeForFileDeletionQueued: {
902
- readonly issuer: PalletFileSystemEitherAccountIdOrMspId;
903
- readonly fileKey: H256;
930
+ readonly isMspStoppedStoringBucket: boolean;
931
+ readonly asMspStoppedStoringBucket: {
932
+ readonly mspId: H256;
933
+ readonly owner: AccountId20;
934
+ readonly bucketId: H256;
904
935
  } & Struct;
905
936
  readonly isSpStopStoringInsolventUser: boolean;
906
937
  readonly asSpStopStoringInsolventUser: {
@@ -916,89 +947,6 @@ declare module "@polkadot/types/lookup" {
916
947
  readonly owner: AccountId20;
917
948
  readonly bucketId: H256;
918
949
  } & Struct;
919
- readonly isFailedToQueuePriorityChallenge: boolean;
920
- readonly asFailedToQueuePriorityChallenge: {
921
- readonly fileKey: H256;
922
- readonly error: SpRuntimeDispatchError;
923
- } & Struct;
924
- readonly isFileDeletionRequest: boolean;
925
- readonly asFileDeletionRequest: {
926
- readonly user: AccountId20;
927
- readonly fileKey: H256;
928
- readonly fileSize: u64;
929
- readonly bucketId: H256;
930
- readonly mspId: H256;
931
- readonly proofOfInclusion: bool;
932
- } & Struct;
933
- readonly isProofSubmittedForPendingFileDeletionRequest: boolean;
934
- readonly asProofSubmittedForPendingFileDeletionRequest: {
935
- readonly user: AccountId20;
936
- readonly fileKey: H256;
937
- readonly fileSize: u64;
938
- readonly bucketId: H256;
939
- readonly mspId: H256;
940
- readonly proofOfInclusion: bool;
941
- } & Struct;
942
- readonly isBspChallengeCycleInitialised: boolean;
943
- readonly asBspChallengeCycleInitialised: {
944
- readonly who: AccountId20;
945
- readonly bspId: H256;
946
- } & Struct;
947
- readonly isMoveBucketRequestExpired: boolean;
948
- readonly asMoveBucketRequestExpired: {
949
- readonly bucketId: H256;
950
- } & Struct;
951
- readonly isMoveBucketAccepted: boolean;
952
- readonly asMoveBucketAccepted: {
953
- readonly bucketId: H256;
954
- readonly oldMspId: Option<H256>;
955
- readonly newMspId: H256;
956
- readonly valuePropId: H256;
957
- } & Struct;
958
- readonly isMoveBucketRejected: boolean;
959
- readonly asMoveBucketRejected: {
960
- readonly bucketId: H256;
961
- readonly oldMspId: Option<H256>;
962
- readonly newMspId: H256;
963
- } & Struct;
964
- readonly isMspStoppedStoringBucket: boolean;
965
- readonly asMspStoppedStoringBucket: {
966
- readonly mspId: H256;
967
- readonly owner: AccountId20;
968
- readonly bucketId: H256;
969
- } & Struct;
970
- readonly isFailedToGetMspOfBucket: boolean;
971
- readonly asFailedToGetMspOfBucket: {
972
- readonly bucketId: H256;
973
- readonly error: SpRuntimeDispatchError;
974
- } & Struct;
975
- readonly isFailedToDecreaseMspUsedCapacity: boolean;
976
- readonly asFailedToDecreaseMspUsedCapacity: {
977
- readonly user: AccountId20;
978
- readonly mspId: H256;
979
- readonly fileKey: H256;
980
- readonly fileSize: u64;
981
- readonly error: SpRuntimeDispatchError;
982
- } & Struct;
983
- readonly isUsedCapacityShouldBeZero: boolean;
984
- readonly asUsedCapacityShouldBeZero: {
985
- readonly actualUsedCapacity: u64;
986
- } & Struct;
987
- readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
988
- readonly asFailedToReleaseStorageRequestCreationDeposit: {
989
- readonly fileKey: H256;
990
- readonly owner: AccountId20;
991
- readonly amountToReturn: u128;
992
- readonly error: SpRuntimeDispatchError;
993
- } & Struct;
994
- readonly isFailedToTransferDepositFundsToBsp: boolean;
995
- readonly asFailedToTransferDepositFundsToBsp: {
996
- readonly fileKey: H256;
997
- readonly owner: AccountId20;
998
- readonly bspId: H256;
999
- readonly amountToTransfer: u128;
1000
- readonly error: SpRuntimeDispatchError;
1001
- } & Struct;
1002
950
  readonly isFileDeletionRequested: boolean;
1003
951
  readonly asFileDeletionRequested: {
1004
952
  readonly signedDeleteIntention: PalletFileSystemFileOperationIntention;
@@ -1021,13 +969,25 @@ declare module "@polkadot/types/lookup" {
1021
969
  readonly oldRoot: H256;
1022
970
  readonly newRoot: H256;
1023
971
  } & Struct;
1024
- readonly isIncompleteStorageRequest: boolean;
1025
- readonly asIncompleteStorageRequest: {
972
+ readonly isUsedCapacityShouldBeZero: boolean;
973
+ readonly asUsedCapacityShouldBeZero: {
974
+ readonly actualUsedCapacity: u64;
975
+ } & Struct;
976
+ readonly isFailedToReleaseStorageRequestCreationDeposit: boolean;
977
+ readonly asFailedToReleaseStorageRequestCreationDeposit: {
1026
978
  readonly fileKey: H256;
979
+ readonly owner: AccountId20;
980
+ readonly amountToReturn: u128;
981
+ readonly error: SpRuntimeDispatchError;
1027
982
  } & Struct;
1028
- readonly type: "NewBucket" | "BucketDeleted" | "MoveBucketRequested" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "PriorityChallengeForFileDeletionQueued" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FailedToQueuePriorityChallenge" | "FileDeletionRequest" | "ProofSubmittedForPendingFileDeletionRequest" | "BspChallengeCycleInitialised" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "MspStoppedStoringBucket" | "FailedToGetMspOfBucket" | "FailedToDecreaseMspUsedCapacity" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "FailedToTransferDepositFundsToBsp" | "FileDeletionRequested" | "BucketFileDeletionsCompleted" | "BspFileDeletionsCompleted" | "IncompleteStorageRequest";
983
+ readonly isUserOperationPauseFlagsUpdated: boolean;
984
+ readonly asUserOperationPauseFlagsUpdated: {
985
+ readonly old: u32;
986
+ readonly new_: u32;
987
+ } & Struct;
988
+ readonly type: "NewBucket" | "BucketDeleted" | "BucketPrivacyUpdated" | "NewCollectionAndAssociation" | "MoveBucketRequested" | "MoveBucketRequestExpired" | "MoveBucketAccepted" | "MoveBucketRejected" | "NewStorageRequest" | "MspAcceptedStorageRequest" | "StorageRequestFulfilled" | "StorageRequestExpired" | "StorageRequestRevoked" | "StorageRequestRejected" | "IncompleteStorageRequest" | "IncompleteStorageRequestCleanedUp" | "AcceptedBspVolunteer" | "BspConfirmedStoring" | "BspChallengeCycleInitialised" | "BspRequestedToStopStoring" | "BspConfirmStoppedStoring" | "MspStoppedStoringBucket" | "SpStopStoringInsolventUser" | "MspStopStoringBucketInsolventUser" | "FileDeletionRequested" | "BucketFileDeletionsCompleted" | "BspFileDeletionsCompleted" | "UsedCapacityShouldBeZero" | "FailedToReleaseStorageRequestCreationDeposit" | "UserOperationPauseFlagsUpdated";
1029
989
  }
1030
- /** @name ShpFileMetadataFileMetadata (109) */
990
+ /** @name ShpFileMetadataFileMetadata (113) */
1031
991
  interface ShpFileMetadataFileMetadata extends Struct {
1032
992
  readonly owner: Bytes;
1033
993
  readonly bucketId: Bytes;
@@ -1035,7 +995,7 @@ declare module "@polkadot/types/lookup" {
1035
995
  readonly fileSize: Compact<u64>;
1036
996
  readonly fingerprint: ShpFileMetadataFingerprint;
1037
997
  }
1038
- /** @name ShpFileMetadataFingerprint (110) */
998
+ /** @name ShpFileMetadataFingerprint (114) */
1039
999
  interface ShpFileMetadataFingerprint extends U8aFixed {
1040
1000
  }
1041
1001
  /** @name PalletFileSystemRejectedStorageRequestReason (115) */
@@ -1047,28 +1007,20 @@ declare module "@polkadot/types/lookup" {
1047
1007
  readonly isInternalError: boolean;
1048
1008
  readonly type: "ReachedMaximumCapacity" | "ReceivedInvalidProof" | "FileKeyAlreadyStored" | "RequestExpired" | "InternalError";
1049
1009
  }
1050
- /** @name PalletFileSystemEitherAccountIdOrMspId (116) */
1051
- interface PalletFileSystemEitherAccountIdOrMspId extends Enum {
1052
- readonly isAccountId: boolean;
1053
- readonly asAccountId: AccountId20;
1054
- readonly isMspId: boolean;
1055
- readonly asMspId: H256;
1056
- readonly type: "AccountId" | "MspId";
1057
- }
1058
- /** @name PalletFileSystemFileOperationIntention (118) */
1010
+ /** @name PalletFileSystemFileOperationIntention (120) */
1059
1011
  interface PalletFileSystemFileOperationIntention extends Struct {
1060
1012
  readonly fileKey: H256;
1061
1013
  readonly operation: PalletFileSystemFileOperation;
1062
1014
  }
1063
- /** @name PalletFileSystemFileOperation (119) */
1015
+ /** @name PalletFileSystemFileOperation (121) */
1064
1016
  interface PalletFileSystemFileOperation extends Enum {
1065
1017
  readonly isDelete: boolean;
1066
1018
  readonly type: "Delete";
1067
1019
  }
1068
- /** @name FpAccountEthereumSignature (120) */
1020
+ /** @name FpAccountEthereumSignature (122) */
1069
1021
  interface FpAccountEthereumSignature extends U8aFixed {
1070
1022
  }
1071
- /** @name PalletProofsDealerEvent (125) */
1023
+ /** @name PalletProofsDealerEvent (128) */
1072
1024
  interface PalletProofsDealerEvent extends Enum {
1073
1025
  readonly isNewChallenge: boolean;
1074
1026
  readonly asNewChallenge: {
@@ -1133,31 +1085,31 @@ declare module "@polkadot/types/lookup" {
1133
1085
  } & Struct;
1134
1086
  readonly type: "NewChallenge" | "NewPriorityChallenge" | "ProofAccepted" | "NewChallengeSeed" | "NewCheckpointChallenge" | "SlashableProvider" | "NoRecordOfLastSubmittedProof" | "NewChallengeCycleInitialised" | "MutationsAppliedForProvider" | "MutationsApplied" | "ChallengesTickerSet";
1135
1087
  }
1136
- /** @name PalletProofsDealerProof (126) */
1088
+ /** @name PalletProofsDealerProof (129) */
1137
1089
  interface PalletProofsDealerProof extends Struct {
1138
1090
  readonly forestProof: SpTrieStorageProofCompactProof;
1139
1091
  readonly keyProofs: BTreeMap<H256, PalletProofsDealerKeyProof>;
1140
1092
  }
1141
- /** @name SpTrieStorageProofCompactProof (127) */
1093
+ /** @name SpTrieStorageProofCompactProof (130) */
1142
1094
  interface SpTrieStorageProofCompactProof extends Struct {
1143
1095
  readonly encodedNodes: Vec<Bytes>;
1144
1096
  }
1145
- /** @name PalletProofsDealerKeyProof (130) */
1097
+ /** @name PalletProofsDealerKeyProof (133) */
1146
1098
  interface PalletProofsDealerKeyProof extends Struct {
1147
1099
  readonly proof: ShpFileKeyVerifierFileKeyProof;
1148
1100
  readonly challengeCount: u32;
1149
1101
  }
1150
- /** @name ShpFileKeyVerifierFileKeyProof (131) */
1102
+ /** @name ShpFileKeyVerifierFileKeyProof (134) */
1151
1103
  interface ShpFileKeyVerifierFileKeyProof extends Struct {
1152
1104
  readonly fileMetadata: ShpFileMetadataFileMetadata;
1153
1105
  readonly proof: SpTrieStorageProofCompactProof;
1154
1106
  }
1155
- /** @name PalletProofsDealerCustomChallenge (135) */
1107
+ /** @name PalletProofsDealerCustomChallenge (138) */
1156
1108
  interface PalletProofsDealerCustomChallenge extends Struct {
1157
1109
  readonly key: H256;
1158
1110
  readonly shouldRemoveKey: bool;
1159
1111
  }
1160
- /** @name ShpTraitsTrieMutation (139) */
1112
+ /** @name ShpTraitsTrieMutation (142) */
1161
1113
  interface ShpTraitsTrieMutation extends Enum {
1162
1114
  readonly isAdd: boolean;
1163
1115
  readonly asAdd: ShpTraitsTrieAddMutation;
@@ -1165,15 +1117,15 @@ declare module "@polkadot/types/lookup" {
1165
1117
  readonly asRemove: ShpTraitsTrieRemoveMutation;
1166
1118
  readonly type: "Add" | "Remove";
1167
1119
  }
1168
- /** @name ShpTraitsTrieAddMutation (140) */
1120
+ /** @name ShpTraitsTrieAddMutation (143) */
1169
1121
  interface ShpTraitsTrieAddMutation extends Struct {
1170
1122
  readonly value: Bytes;
1171
1123
  }
1172
- /** @name ShpTraitsTrieRemoveMutation (141) */
1124
+ /** @name ShpTraitsTrieRemoveMutation (144) */
1173
1125
  interface ShpTraitsTrieRemoveMutation extends Struct {
1174
1126
  readonly maybeValue: Option<Bytes>;
1175
1127
  }
1176
- /** @name PalletRandomnessEvent (143) */
1128
+ /** @name PalletRandomnessEvent (146) */
1177
1129
  interface PalletRandomnessEvent extends Enum {
1178
1130
  readonly isNewOneEpochAgoRandomnessAvailable: boolean;
1179
1131
  readonly asNewOneEpochAgoRandomnessAvailable: {
@@ -1183,7 +1135,7 @@ declare module "@polkadot/types/lookup" {
1183
1135
  } & Struct;
1184
1136
  readonly type: "NewOneEpochAgoRandomnessAvailable";
1185
1137
  }
1186
- /** @name PalletPaymentStreamsEvent (144) */
1138
+ /** @name PalletPaymentStreamsEvent (147) */
1187
1139
  interface PalletPaymentStreamsEvent extends Enum {
1188
1140
  readonly isFixedRatePaymentStreamCreated: boolean;
1189
1141
  readonly asFixedRatePaymentStreamCreated: {
@@ -1262,7 +1214,7 @@ declare module "@polkadot/types/lookup" {
1262
1214
  } & Struct;
1263
1215
  readonly type: "FixedRatePaymentStreamCreated" | "FixedRatePaymentStreamUpdated" | "FixedRatePaymentStreamDeleted" | "DynamicRatePaymentStreamCreated" | "DynamicRatePaymentStreamUpdated" | "DynamicRatePaymentStreamDeleted" | "PaymentStreamCharged" | "UsersCharged" | "LastChargeableInfoUpdated" | "UserWithoutFunds" | "UserPaidAllDebts" | "UserPaidSomeDebts" | "UserSolvent" | "InconsistentTickProcessing";
1264
1216
  }
1265
- /** @name PalletBucketNftsEvent (146) */
1217
+ /** @name PalletBucketNftsEvent (149) */
1266
1218
  interface PalletBucketNftsEvent extends Enum {
1267
1219
  readonly isAccessShared: boolean;
1268
1220
  readonly asAccessShared: {
@@ -1283,7 +1235,7 @@ declare module "@polkadot/types/lookup" {
1283
1235
  } & Struct;
1284
1236
  readonly type: "AccessShared" | "ItemReadAccessUpdated" | "ItemBurned";
1285
1237
  }
1286
- /** @name PalletNftsEvent (147) */
1238
+ /** @name PalletNftsEvent (150) */
1287
1239
  interface PalletNftsEvent extends Enum {
1288
1240
  readonly isCreated: boolean;
1289
1241
  readonly asCreated: {
@@ -1519,7 +1471,7 @@ declare module "@polkadot/types/lookup" {
1519
1471
  } & Struct;
1520
1472
  readonly type: "Created" | "ForceCreated" | "Destroyed" | "Issued" | "Transferred" | "Burned" | "ItemTransferLocked" | "ItemTransferUnlocked" | "ItemPropertiesLocked" | "CollectionLocked" | "OwnerChanged" | "TeamChanged" | "TransferApproved" | "ApprovalCancelled" | "AllApprovalsCancelled" | "CollectionConfigChanged" | "CollectionMetadataSet" | "CollectionMetadataCleared" | "ItemMetadataSet" | "ItemMetadataCleared" | "Redeposited" | "AttributeSet" | "AttributeCleared" | "ItemAttributesApprovalAdded" | "ItemAttributesApprovalRemoved" | "OwnershipAcceptanceChanged" | "CollectionMaxSupplySet" | "CollectionMintSettingsUpdated" | "NextCollectionIdIncremented" | "ItemPriceSet" | "ItemPriceRemoved" | "ItemBought" | "TipSent" | "SwapCreated" | "SwapCancelled" | "SwapClaimed" | "PreSignedAttributesSet" | "PalletAttributeSet";
1521
1473
  }
1522
- /** @name PalletNftsAttributeNamespace (151) */
1474
+ /** @name PalletNftsAttributeNamespace (154) */
1523
1475
  interface PalletNftsAttributeNamespace extends Enum {
1524
1476
  readonly isPallet: boolean;
1525
1477
  readonly isCollectionOwner: boolean;
@@ -1528,25 +1480,25 @@ declare module "@polkadot/types/lookup" {
1528
1480
  readonly asAccount: AccountId20;
1529
1481
  readonly type: "Pallet" | "CollectionOwner" | "ItemOwner" | "Account";
1530
1482
  }
1531
- /** @name PalletNftsPriceWithDirection (153) */
1483
+ /** @name PalletNftsPriceWithDirection (156) */
1532
1484
  interface PalletNftsPriceWithDirection extends Struct {
1533
1485
  readonly amount: u128;
1534
1486
  readonly direction: PalletNftsPriceDirection;
1535
1487
  }
1536
- /** @name PalletNftsPriceDirection (154) */
1488
+ /** @name PalletNftsPriceDirection (157) */
1537
1489
  interface PalletNftsPriceDirection extends Enum {
1538
1490
  readonly isSend: boolean;
1539
1491
  readonly isReceive: boolean;
1540
1492
  readonly type: "Send" | "Receive";
1541
1493
  }
1542
- /** @name PalletNftsPalletAttributes (155) */
1494
+ /** @name PalletNftsPalletAttributes (158) */
1543
1495
  interface PalletNftsPalletAttributes extends Enum {
1544
1496
  readonly isUsedToClaim: boolean;
1545
1497
  readonly asUsedToClaim: u32;
1546
1498
  readonly isTransferDisabled: boolean;
1547
1499
  readonly type: "UsedToClaim" | "TransferDisabled";
1548
1500
  }
1549
- /** @name FrameSystemPhase (156) */
1501
+ /** @name FrameSystemPhase (159) */
1550
1502
  interface FrameSystemPhase extends Enum {
1551
1503
  readonly isApplyExtrinsic: boolean;
1552
1504
  readonly asApplyExtrinsic: u32;
@@ -1554,17 +1506,17 @@ declare module "@polkadot/types/lookup" {
1554
1506
  readonly isInitialization: boolean;
1555
1507
  readonly type: "ApplyExtrinsic" | "Finalization" | "Initialization";
1556
1508
  }
1557
- /** @name FrameSystemLastRuntimeUpgradeInfo (159) */
1509
+ /** @name FrameSystemLastRuntimeUpgradeInfo (162) */
1558
1510
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1559
1511
  readonly specVersion: Compact<u32>;
1560
1512
  readonly specName: Text;
1561
1513
  }
1562
- /** @name FrameSystemCodeUpgradeAuthorization (161) */
1514
+ /** @name FrameSystemCodeUpgradeAuthorization (164) */
1563
1515
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1564
1516
  readonly codeHash: H256;
1565
1517
  readonly checkVersion: bool;
1566
1518
  }
1567
- /** @name FrameSystemCall (162) */
1519
+ /** @name FrameSystemCall (165) */
1568
1520
  interface FrameSystemCall extends Enum {
1569
1521
  readonly isRemark: boolean;
1570
1522
  readonly asRemark: {
@@ -1613,41 +1565,41 @@ declare module "@polkadot/types/lookup" {
1613
1565
  } & Struct;
1614
1566
  readonly type: "Remark" | "SetHeapPages" | "SetCode" | "SetCodeWithoutChecks" | "SetStorage" | "KillStorage" | "KillPrefix" | "RemarkWithEvent" | "AuthorizeUpgrade" | "AuthorizeUpgradeWithoutChecks" | "ApplyAuthorizedUpgrade";
1615
1567
  }
1616
- /** @name FrameSystemLimitsBlockWeights (165) */
1568
+ /** @name FrameSystemLimitsBlockWeights (168) */
1617
1569
  interface FrameSystemLimitsBlockWeights extends Struct {
1618
1570
  readonly baseBlock: SpWeightsWeightV2Weight;
1619
1571
  readonly maxBlock: SpWeightsWeightV2Weight;
1620
1572
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1621
1573
  }
1622
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (166) */
1574
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (169) */
1623
1575
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1624
1576
  readonly normal: FrameSystemLimitsWeightsPerClass;
1625
1577
  readonly operational: FrameSystemLimitsWeightsPerClass;
1626
1578
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1627
1579
  }
1628
- /** @name FrameSystemLimitsWeightsPerClass (167) */
1580
+ /** @name FrameSystemLimitsWeightsPerClass (170) */
1629
1581
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1630
1582
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1631
1583
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1632
1584
  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1633
1585
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1634
1586
  }
1635
- /** @name FrameSystemLimitsBlockLength (169) */
1587
+ /** @name FrameSystemLimitsBlockLength (172) */
1636
1588
  interface FrameSystemLimitsBlockLength extends Struct {
1637
1589
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1638
1590
  }
1639
- /** @name FrameSupportDispatchPerDispatchClassU32 (170) */
1591
+ /** @name FrameSupportDispatchPerDispatchClassU32 (173) */
1640
1592
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1641
1593
  readonly normal: u32;
1642
1594
  readonly operational: u32;
1643
1595
  readonly mandatory: u32;
1644
1596
  }
1645
- /** @name SpWeightsRuntimeDbWeight (171) */
1597
+ /** @name SpWeightsRuntimeDbWeight (174) */
1646
1598
  interface SpWeightsRuntimeDbWeight extends Struct {
1647
1599
  readonly read: u64;
1648
1600
  readonly write: u64;
1649
1601
  }
1650
- /** @name SpVersionRuntimeVersion (172) */
1602
+ /** @name SpVersionRuntimeVersion (175) */
1651
1603
  interface SpVersionRuntimeVersion extends Struct {
1652
1604
  readonly specName: Text;
1653
1605
  readonly implName: Text;
@@ -1658,7 +1610,7 @@ declare module "@polkadot/types/lookup" {
1658
1610
  readonly transactionVersion: u32;
1659
1611
  readonly systemVersion: u8;
1660
1612
  }
1661
- /** @name FrameSystemError (178) */
1613
+ /** @name FrameSystemError (181) */
1662
1614
  interface FrameSystemError extends Enum {
1663
1615
  readonly isInvalidSpecName: boolean;
1664
1616
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1671,10 +1623,10 @@ declare module "@polkadot/types/lookup" {
1671
1623
  readonly isUnauthorized: boolean;
1672
1624
  readonly type: "InvalidSpecName" | "SpecVersionNeedsToIncrease" | "FailedToExtractRuntimeVersion" | "NonDefaultComposite" | "NonZeroRefCount" | "CallFiltered" | "MultiBlockMigrationsOngoing" | "NothingAuthorized" | "Unauthorized";
1673
1625
  }
1674
- /** @name SpConsensusBabeAppPublic (181) */
1626
+ /** @name SpConsensusBabeAppPublic (184) */
1675
1627
  interface SpConsensusBabeAppPublic extends U8aFixed {
1676
1628
  }
1677
- /** @name SpConsensusBabeDigestsNextConfigDescriptor (184) */
1629
+ /** @name SpConsensusBabeDigestsNextConfigDescriptor (187) */
1678
1630
  interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
1679
1631
  readonly isV1: boolean;
1680
1632
  readonly asV1: {
@@ -1683,14 +1635,14 @@ declare module "@polkadot/types/lookup" {
1683
1635
  } & Struct;
1684
1636
  readonly type: "V1";
1685
1637
  }
1686
- /** @name SpConsensusBabeAllowedSlots (186) */
1638
+ /** @name SpConsensusBabeAllowedSlots (189) */
1687
1639
  interface SpConsensusBabeAllowedSlots extends Enum {
1688
1640
  readonly isPrimarySlots: boolean;
1689
1641
  readonly isPrimaryAndSecondaryPlainSlots: boolean;
1690
1642
  readonly isPrimaryAndSecondaryVRFSlots: boolean;
1691
1643
  readonly type: "PrimarySlots" | "PrimaryAndSecondaryPlainSlots" | "PrimaryAndSecondaryVRFSlots";
1692
1644
  }
1693
- /** @name SpConsensusBabeDigestsPreDigest (190) */
1645
+ /** @name SpConsensusBabeDigestsPreDigest (193) */
1694
1646
  interface SpConsensusBabeDigestsPreDigest extends Enum {
1695
1647
  readonly isPrimary: boolean;
1696
1648
  readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
@@ -1700,34 +1652,34 @@ declare module "@polkadot/types/lookup" {
1700
1652
  readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
1701
1653
  readonly type: "Primary" | "SecondaryPlain" | "SecondaryVRF";
1702
1654
  }
1703
- /** @name SpConsensusBabeDigestsPrimaryPreDigest (191) */
1655
+ /** @name SpConsensusBabeDigestsPrimaryPreDigest (194) */
1704
1656
  interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
1705
1657
  readonly authorityIndex: u32;
1706
1658
  readonly slot: u64;
1707
1659
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
1708
1660
  }
1709
- /** @name SpCoreSr25519VrfVrfSignature (192) */
1661
+ /** @name SpCoreSr25519VrfVrfSignature (195) */
1710
1662
  interface SpCoreSr25519VrfVrfSignature extends Struct {
1711
1663
  readonly preOutput: U8aFixed;
1712
1664
  readonly proof: U8aFixed;
1713
1665
  }
1714
- /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (194) */
1666
+ /** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (197) */
1715
1667
  interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
1716
1668
  readonly authorityIndex: u32;
1717
1669
  readonly slot: u64;
1718
1670
  }
1719
- /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (195) */
1671
+ /** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (198) */
1720
1672
  interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
1721
1673
  readonly authorityIndex: u32;
1722
1674
  readonly slot: u64;
1723
1675
  readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
1724
1676
  }
1725
- /** @name SpConsensusBabeBabeEpochConfiguration (197) */
1677
+ /** @name SpConsensusBabeBabeEpochConfiguration (200) */
1726
1678
  interface SpConsensusBabeBabeEpochConfiguration extends Struct {
1727
1679
  readonly c: ITuple<[u64, u64]>;
1728
1680
  readonly allowedSlots: SpConsensusBabeAllowedSlots;
1729
1681
  }
1730
- /** @name PalletBabeCall (201) */
1682
+ /** @name PalletBabeCall (204) */
1731
1683
  interface PalletBabeCall extends Enum {
1732
1684
  readonly isReportEquivocation: boolean;
1733
1685
  readonly asReportEquivocation: {
@@ -1745,14 +1697,14 @@ declare module "@polkadot/types/lookup" {
1745
1697
  } & Struct;
1746
1698
  readonly type: "ReportEquivocation" | "ReportEquivocationUnsigned" | "PlanConfigChange";
1747
1699
  }
1748
- /** @name SpConsensusSlotsEquivocationProof (202) */
1700
+ /** @name SpConsensusSlotsEquivocationProof (205) */
1749
1701
  interface SpConsensusSlotsEquivocationProof extends Struct {
1750
1702
  readonly offender: SpConsensusBabeAppPublic;
1751
1703
  readonly slot: u64;
1752
1704
  readonly firstHeader: SpRuntimeHeader;
1753
1705
  readonly secondHeader: SpRuntimeHeader;
1754
1706
  }
1755
- /** @name SpRuntimeHeader (203) */
1707
+ /** @name SpRuntimeHeader (206) */
1756
1708
  interface SpRuntimeHeader extends Struct {
1757
1709
  readonly parentHash: H256;
1758
1710
  readonly number: Compact<u32>;
@@ -1760,13 +1712,13 @@ declare module "@polkadot/types/lookup" {
1760
1712
  readonly extrinsicsRoot: H256;
1761
1713
  readonly digest: SpRuntimeDigest;
1762
1714
  }
1763
- /** @name SpSessionMembershipProof (204) */
1715
+ /** @name SpSessionMembershipProof (207) */
1764
1716
  interface SpSessionMembershipProof extends Struct {
1765
1717
  readonly session: u32;
1766
1718
  readonly trieNodes: Vec<Bytes>;
1767
1719
  readonly validatorCount: u32;
1768
1720
  }
1769
- /** @name PalletBabeError (205) */
1721
+ /** @name PalletBabeError (208) */
1770
1722
  interface PalletBabeError extends Enum {
1771
1723
  readonly isInvalidEquivocationProof: boolean;
1772
1724
  readonly isInvalidKeyOwnershipProof: boolean;
@@ -1774,7 +1726,7 @@ declare module "@polkadot/types/lookup" {
1774
1726
  readonly isInvalidConfiguration: boolean;
1775
1727
  readonly type: "InvalidEquivocationProof" | "InvalidKeyOwnershipProof" | "DuplicateOffenceReport" | "InvalidConfiguration";
1776
1728
  }
1777
- /** @name PalletTimestampCall (206) */
1729
+ /** @name PalletTimestampCall (209) */
1778
1730
  interface PalletTimestampCall extends Enum {
1779
1731
  readonly isSet: boolean;
1780
1732
  readonly asSet: {
@@ -1782,30 +1734,30 @@ declare module "@polkadot/types/lookup" {
1782
1734
  } & Struct;
1783
1735
  readonly type: "Set";
1784
1736
  }
1785
- /** @name PalletBalancesBalanceLock (208) */
1737
+ /** @name PalletBalancesBalanceLock (211) */
1786
1738
  interface PalletBalancesBalanceLock extends Struct {
1787
1739
  readonly id: U8aFixed;
1788
1740
  readonly amount: u128;
1789
1741
  readonly reasons: PalletBalancesReasons;
1790
1742
  }
1791
- /** @name PalletBalancesReasons (209) */
1743
+ /** @name PalletBalancesReasons (212) */
1792
1744
  interface PalletBalancesReasons extends Enum {
1793
1745
  readonly isFee: boolean;
1794
1746
  readonly isMisc: boolean;
1795
1747
  readonly isAll: boolean;
1796
1748
  readonly type: "Fee" | "Misc" | "All";
1797
1749
  }
1798
- /** @name PalletBalancesReserveData (212) */
1750
+ /** @name PalletBalancesReserveData (215) */
1799
1751
  interface PalletBalancesReserveData extends Struct {
1800
1752
  readonly id: U8aFixed;
1801
1753
  readonly amount: u128;
1802
1754
  }
1803
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (215) */
1755
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (218) */
1804
1756
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
1805
1757
  readonly id: ShSolochainEvmRuntimeRuntimeHoldReason;
1806
1758
  readonly amount: u128;
1807
1759
  }
1808
- /** @name ShSolochainEvmRuntimeRuntimeHoldReason (216) */
1760
+ /** @name ShSolochainEvmRuntimeRuntimeHoldReason (219) */
1809
1761
  interface ShSolochainEvmRuntimeRuntimeHoldReason extends Enum {
1810
1762
  readonly isProviders: boolean;
1811
1763
  readonly asProviders: PalletStorageProvidersHoldReason;
@@ -1815,31 +1767,31 @@ declare module "@polkadot/types/lookup" {
1815
1767
  readonly asPaymentStreams: PalletPaymentStreamsHoldReason;
1816
1768
  readonly type: "Providers" | "FileSystem" | "PaymentStreams";
1817
1769
  }
1818
- /** @name PalletStorageProvidersHoldReason (217) */
1770
+ /** @name PalletStorageProvidersHoldReason (220) */
1819
1771
  interface PalletStorageProvidersHoldReason extends Enum {
1820
1772
  readonly isStorageProviderDeposit: boolean;
1821
1773
  readonly isBucketDeposit: boolean;
1822
1774
  readonly type: "StorageProviderDeposit" | "BucketDeposit";
1823
1775
  }
1824
- /** @name PalletFileSystemHoldReason (218) */
1776
+ /** @name PalletFileSystemHoldReason (221) */
1825
1777
  interface PalletFileSystemHoldReason extends Enum {
1826
1778
  readonly isStorageRequestCreationHold: boolean;
1827
1779
  readonly isFileDeletionRequestHold: boolean;
1828
1780
  readonly type: "StorageRequestCreationHold" | "FileDeletionRequestHold";
1829
1781
  }
1830
- /** @name PalletPaymentStreamsHoldReason (219) */
1782
+ /** @name PalletPaymentStreamsHoldReason (222) */
1831
1783
  interface PalletPaymentStreamsHoldReason extends Enum {
1832
1784
  readonly isPaymentStreamDeposit: boolean;
1833
1785
  readonly type: "PaymentStreamDeposit";
1834
1786
  }
1835
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (222) */
1787
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (225) */
1836
1788
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
1837
1789
  readonly id: ShSolochainEvmRuntimeRuntimeFreezeReason;
1838
1790
  readonly amount: u128;
1839
1791
  }
1840
- /** @name ShSolochainEvmRuntimeRuntimeFreezeReason (223) */
1792
+ /** @name ShSolochainEvmRuntimeRuntimeFreezeReason (226) */
1841
1793
  type ShSolochainEvmRuntimeRuntimeFreezeReason = Null;
1842
- /** @name PalletBalancesCall (225) */
1794
+ /** @name PalletBalancesCall (228) */
1843
1795
  interface PalletBalancesCall extends Enum {
1844
1796
  readonly isTransferAllowDeath: boolean;
1845
1797
  readonly asTransferAllowDeath: {
@@ -1888,13 +1840,13 @@ declare module "@polkadot/types/lookup" {
1888
1840
  } & Struct;
1889
1841
  readonly type: "TransferAllowDeath" | "ForceTransfer" | "TransferKeepAlive" | "TransferAll" | "ForceUnreserve" | "UpgradeAccounts" | "ForceSetBalance" | "ForceAdjustTotalIssuance" | "Burn";
1890
1842
  }
1891
- /** @name PalletBalancesAdjustmentDirection (227) */
1843
+ /** @name PalletBalancesAdjustmentDirection (230) */
1892
1844
  interface PalletBalancesAdjustmentDirection extends Enum {
1893
1845
  readonly isIncrease: boolean;
1894
1846
  readonly isDecrease: boolean;
1895
1847
  readonly type: "Increase" | "Decrease";
1896
1848
  }
1897
- /** @name PalletBalancesError (228) */
1849
+ /** @name PalletBalancesError (231) */
1898
1850
  interface PalletBalancesError extends Enum {
1899
1851
  readonly isVestingBalance: boolean;
1900
1852
  readonly isLiquidityRestrictions: boolean;
@@ -1910,20 +1862,20 @@ declare module "@polkadot/types/lookup" {
1910
1862
  readonly isDeltaZero: boolean;
1911
1863
  readonly type: "VestingBalance" | "LiquidityRestrictions" | "InsufficientBalance" | "ExistentialDeposit" | "Expendability" | "ExistingVestingSchedule" | "DeadAccount" | "TooManyReserves" | "TooManyHolds" | "TooManyFreezes" | "IssuanceDeactivated" | "DeltaZero";
1912
1864
  }
1913
- /** @name SpStakingOffenceOffenceDetails (229) */
1865
+ /** @name SpStakingOffenceOffenceDetails (232) */
1914
1866
  interface SpStakingOffenceOffenceDetails extends Struct {
1915
1867
  readonly offender: ITuple<[AccountId20, Null]>;
1916
1868
  readonly reporters: Vec<AccountId20>;
1917
1869
  }
1918
- /** @name ShSolochainEvmRuntimeSessionKeys (235) */
1870
+ /** @name ShSolochainEvmRuntimeSessionKeys (238) */
1919
1871
  interface ShSolochainEvmRuntimeSessionKeys extends Struct {
1920
1872
  readonly babe: SpConsensusBabeAppPublic;
1921
1873
  readonly grandpa: SpConsensusGrandpaAppPublic;
1922
1874
  }
1923
- /** @name SpCoreCryptoKeyTypeId (237) */
1875
+ /** @name SpCoreCryptoKeyTypeId (240) */
1924
1876
  interface SpCoreCryptoKeyTypeId extends U8aFixed {
1925
1877
  }
1926
- /** @name PalletSessionCall (238) */
1878
+ /** @name PalletSessionCall (241) */
1927
1879
  interface PalletSessionCall extends Enum {
1928
1880
  readonly isSetKeys: boolean;
1929
1881
  readonly asSetKeys: {
@@ -1933,7 +1885,7 @@ declare module "@polkadot/types/lookup" {
1933
1885
  readonly isPurgeKeys: boolean;
1934
1886
  readonly type: "SetKeys" | "PurgeKeys";
1935
1887
  }
1936
- /** @name PalletSessionError (239) */
1888
+ /** @name PalletSessionError (242) */
1937
1889
  interface PalletSessionError extends Enum {
1938
1890
  readonly isInvalidProof: boolean;
1939
1891
  readonly isNoAssociatedValidatorId: boolean;
@@ -1942,7 +1894,7 @@ declare module "@polkadot/types/lookup" {
1942
1894
  readonly isNoAccount: boolean;
1943
1895
  readonly type: "InvalidProof" | "NoAssociatedValidatorId" | "DuplicatedKey" | "NoKeys" | "NoAccount";
1944
1896
  }
1945
- /** @name PalletGrandpaStoredState (240) */
1897
+ /** @name PalletGrandpaStoredState (243) */
1946
1898
  interface PalletGrandpaStoredState extends Enum {
1947
1899
  readonly isLive: boolean;
1948
1900
  readonly isPendingPause: boolean;
@@ -1958,14 +1910,14 @@ declare module "@polkadot/types/lookup" {
1958
1910
  } & Struct;
1959
1911
  readonly type: "Live" | "PendingPause" | "Paused" | "PendingResume";
1960
1912
  }
1961
- /** @name PalletGrandpaStoredPendingChange (241) */
1913
+ /** @name PalletGrandpaStoredPendingChange (244) */
1962
1914
  interface PalletGrandpaStoredPendingChange extends Struct {
1963
1915
  readonly scheduledAt: u32;
1964
1916
  readonly delay: u32;
1965
1917
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
1966
1918
  readonly forced: Option<u32>;
1967
1919
  }
1968
- /** @name PalletGrandpaCall (243) */
1920
+ /** @name PalletGrandpaCall (246) */
1969
1921
  interface PalletGrandpaCall extends Enum {
1970
1922
  readonly isReportEquivocation: boolean;
1971
1923
  readonly asReportEquivocation: {
@@ -1984,12 +1936,12 @@ declare module "@polkadot/types/lookup" {
1984
1936
  } & Struct;
1985
1937
  readonly type: "ReportEquivocation" | "ReportEquivocationUnsigned" | "NoteStalled";
1986
1938
  }
1987
- /** @name SpConsensusGrandpaEquivocationProof (244) */
1939
+ /** @name SpConsensusGrandpaEquivocationProof (247) */
1988
1940
  interface SpConsensusGrandpaEquivocationProof extends Struct {
1989
1941
  readonly setId: u64;
1990
1942
  readonly equivocation: SpConsensusGrandpaEquivocation;
1991
1943
  }
1992
- /** @name SpConsensusGrandpaEquivocation (245) */
1944
+ /** @name SpConsensusGrandpaEquivocation (248) */
1993
1945
  interface SpConsensusGrandpaEquivocation extends Enum {
1994
1946
  readonly isPrevote: boolean;
1995
1947
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -1997,34 +1949,34 @@ declare module "@polkadot/types/lookup" {
1997
1949
  readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
1998
1950
  readonly type: "Prevote" | "Precommit";
1999
1951
  }
2000
- /** @name FinalityGrandpaEquivocationPrevote (246) */
1952
+ /** @name FinalityGrandpaEquivocationPrevote (249) */
2001
1953
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2002
1954
  readonly roundNumber: u64;
2003
1955
  readonly identity: SpConsensusGrandpaAppPublic;
2004
1956
  readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2005
1957
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2006
1958
  }
2007
- /** @name FinalityGrandpaPrevote (247) */
1959
+ /** @name FinalityGrandpaPrevote (250) */
2008
1960
  interface FinalityGrandpaPrevote extends Struct {
2009
1961
  readonly targetHash: H256;
2010
1962
  readonly targetNumber: u32;
2011
1963
  }
2012
- /** @name SpConsensusGrandpaAppSignature (248) */
1964
+ /** @name SpConsensusGrandpaAppSignature (251) */
2013
1965
  interface SpConsensusGrandpaAppSignature extends U8aFixed {
2014
1966
  }
2015
- /** @name FinalityGrandpaEquivocationPrecommit (250) */
1967
+ /** @name FinalityGrandpaEquivocationPrecommit (253) */
2016
1968
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2017
1969
  readonly roundNumber: u64;
2018
1970
  readonly identity: SpConsensusGrandpaAppPublic;
2019
1971
  readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2020
1972
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2021
1973
  }
2022
- /** @name FinalityGrandpaPrecommit (251) */
1974
+ /** @name FinalityGrandpaPrecommit (254) */
2023
1975
  interface FinalityGrandpaPrecommit extends Struct {
2024
1976
  readonly targetHash: H256;
2025
1977
  readonly targetNumber: u32;
2026
1978
  }
2027
- /** @name PalletGrandpaError (253) */
1979
+ /** @name PalletGrandpaError (256) */
2028
1980
  interface PalletGrandpaError extends Enum {
2029
1981
  readonly isPauseFailed: boolean;
2030
1982
  readonly isResumeFailed: boolean;
@@ -2035,13 +1987,13 @@ declare module "@polkadot/types/lookup" {
2035
1987
  readonly isDuplicateOffenceReport: boolean;
2036
1988
  readonly type: "PauseFailed" | "ResumeFailed" | "ChangePending" | "TooSoon" | "InvalidKeyOwnershipProof" | "InvalidEquivocationProof" | "DuplicateOffenceReport";
2037
1989
  }
2038
- /** @name PalletTransactionPaymentReleases (255) */
1990
+ /** @name PalletTransactionPaymentReleases (258) */
2039
1991
  interface PalletTransactionPaymentReleases extends Enum {
2040
1992
  readonly isV1Ancient: boolean;
2041
1993
  readonly isV2: boolean;
2042
1994
  readonly type: "V1Ancient" | "V2";
2043
1995
  }
2044
- /** @name PalletParametersCall (256) */
1996
+ /** @name PalletParametersCall (259) */
2045
1997
  interface PalletParametersCall extends Enum {
2046
1998
  readonly isSetParameter: boolean;
2047
1999
  readonly asSetParameter: {
@@ -2049,13 +2001,13 @@ declare module "@polkadot/types/lookup" {
2049
2001
  } & Struct;
2050
2002
  readonly type: "SetParameter";
2051
2003
  }
2052
- /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters (257) */
2004
+ /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters (260) */
2053
2005
  interface ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters extends Enum {
2054
2006
  readonly isRuntimeConfig: boolean;
2055
2007
  readonly asRuntimeConfig: ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters;
2056
2008
  readonly type: "RuntimeConfig";
2057
2009
  }
2058
- /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (258) */
2010
+ /** @name ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters (261) */
2059
2011
  interface ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters extends Enum {
2060
2012
  readonly isSlashAmountPerMaxFileSize: boolean;
2061
2013
  readonly asSlashAmountPerMaxFileSize: ITuple<[
@@ -2105,12 +2057,12 @@ declare module "@polkadot/types/lookup" {
2105
2057
  readonly isUpperExponentFactor: boolean;
2106
2058
  readonly asUpperExponentFactor: ITuple<[
2107
2059
  ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,
2108
- Option<u32>
2060
+ Option<u128>
2109
2061
  ]>;
2110
2062
  readonly isLowerExponentFactor: boolean;
2111
2063
  readonly asLowerExponentFactor: ITuple<[
2112
2064
  ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,
2113
- Option<u32>
2065
+ Option<u128>
2114
2066
  ]>;
2115
2067
  readonly isZeroSizeBucketFixedRate: boolean;
2116
2068
  readonly asZeroSizeBucketFixedRate: ITuple<[
@@ -2209,7 +2161,7 @@ declare module "@polkadot/types/lookup" {
2209
2161
  ]>;
2210
2162
  readonly type: "SlashAmountPerMaxFileSize" | "StakeToChallengePeriod" | "CheckpointChallengePeriod" | "MinChallengePeriod" | "SystemUtilisationLowerThresholdPercentage" | "SystemUtilisationUpperThresholdPercentage" | "MostlyStablePrice" | "MaxPrice" | "MinPrice" | "UpperExponentFactor" | "LowerExponentFactor" | "ZeroSizeBucketFixedRate" | "IdealUtilisationRate" | "DecayRate" | "MinimumTreasuryCut" | "MaximumTreasuryCut" | "BspStopStoringFilePenalty" | "ProviderTopUpTtl" | "BasicReplicationTarget" | "StandardReplicationTarget" | "HighSecurityReplicationTarget" | "SuperHighSecurityReplicationTarget" | "UltraHighSecurityReplicationTarget" | "MaxReplicationTarget" | "TickRangeToMaximumThreshold" | "StorageRequestTtl" | "MinWaitForStopStoring" | "MinSeedPeriod" | "StakeToSeedPeriod" | "UpfrontTicksToPay";
2211
2163
  }
2212
- /** @name PalletSudoCall (261) */
2164
+ /** @name PalletSudoCall (264) */
2213
2165
  interface PalletSudoCall extends Enum {
2214
2166
  readonly isSudo: boolean;
2215
2167
  readonly asSudo: {
@@ -2232,7 +2184,7 @@ declare module "@polkadot/types/lookup" {
2232
2184
  readonly isRemoveKey: boolean;
2233
2185
  readonly type: "Sudo" | "SudoUncheckedWeight" | "SetKey" | "SudoAs" | "RemoveKey";
2234
2186
  }
2235
- /** @name PalletEthereumCall (263) */
2187
+ /** @name PalletEthereumCall (266) */
2236
2188
  interface PalletEthereumCall extends Enum {
2237
2189
  readonly isTransact: boolean;
2238
2190
  readonly asTransact: {
@@ -2240,7 +2192,7 @@ declare module "@polkadot/types/lookup" {
2240
2192
  } & Struct;
2241
2193
  readonly type: "Transact";
2242
2194
  }
2243
- /** @name EthereumTransactionTransactionV2 (264) */
2195
+ /** @name EthereumTransactionTransactionV2 (267) */
2244
2196
  interface EthereumTransactionTransactionV2 extends Enum {
2245
2197
  readonly isLegacy: boolean;
2246
2198
  readonly asLegacy: EthereumTransactionLegacyLegacyTransaction;
@@ -2250,7 +2202,7 @@ declare module "@polkadot/types/lookup" {
2250
2202
  readonly asEip1559: EthereumTransactionEip1559Eip1559Transaction;
2251
2203
  readonly type: "Legacy" | "Eip2930" | "Eip1559";
2252
2204
  }
2253
- /** @name EthereumTransactionLegacyLegacyTransaction (265) */
2205
+ /** @name EthereumTransactionLegacyLegacyTransaction (268) */
2254
2206
  interface EthereumTransactionLegacyLegacyTransaction extends Struct {
2255
2207
  readonly nonce: U256;
2256
2208
  readonly gasPrice: U256;
@@ -2260,20 +2212,20 @@ declare module "@polkadot/types/lookup" {
2260
2212
  readonly input: Bytes;
2261
2213
  readonly signature: EthereumTransactionLegacyTransactionSignature;
2262
2214
  }
2263
- /** @name EthereumTransactionLegacyTransactionAction (268) */
2215
+ /** @name EthereumTransactionLegacyTransactionAction (271) */
2264
2216
  interface EthereumTransactionLegacyTransactionAction extends Enum {
2265
2217
  readonly isCall: boolean;
2266
2218
  readonly asCall: H160;
2267
2219
  readonly isCreate: boolean;
2268
2220
  readonly type: "Call" | "Create";
2269
2221
  }
2270
- /** @name EthereumTransactionLegacyTransactionSignature (269) */
2222
+ /** @name EthereumTransactionLegacyTransactionSignature (272) */
2271
2223
  interface EthereumTransactionLegacyTransactionSignature extends Struct {
2272
2224
  readonly v: u64;
2273
2225
  readonly r: H256;
2274
2226
  readonly s: H256;
2275
2227
  }
2276
- /** @name EthereumTransactionEip2930Eip2930Transaction (271) */
2228
+ /** @name EthereumTransactionEip2930Eip2930Transaction (274) */
2277
2229
  interface EthereumTransactionEip2930Eip2930Transaction extends Struct {
2278
2230
  readonly chainId: u64;
2279
2231
  readonly nonce: U256;
@@ -2287,12 +2239,12 @@ declare module "@polkadot/types/lookup" {
2287
2239
  readonly r: H256;
2288
2240
  readonly s: H256;
2289
2241
  }
2290
- /** @name EthereumTransactionEip2930AccessListItem (273) */
2242
+ /** @name EthereumTransactionEip2930AccessListItem (276) */
2291
2243
  interface EthereumTransactionEip2930AccessListItem extends Struct {
2292
2244
  readonly address: H160;
2293
2245
  readonly storageKeys: Vec<H256>;
2294
2246
  }
2295
- /** @name EthereumTransactionEip1559Eip1559Transaction (274) */
2247
+ /** @name EthereumTransactionEip1559Eip1559Transaction (277) */
2296
2248
  interface EthereumTransactionEip1559Eip1559Transaction extends Struct {
2297
2249
  readonly chainId: u64;
2298
2250
  readonly nonce: U256;
@@ -2307,7 +2259,7 @@ declare module "@polkadot/types/lookup" {
2307
2259
  readonly r: H256;
2308
2260
  readonly s: H256;
2309
2261
  }
2310
- /** @name PalletEvmCall (275) */
2262
+ /** @name PalletEvmCall (278) */
2311
2263
  interface PalletEvmCall extends Enum {
2312
2264
  readonly isWithdraw: boolean;
2313
2265
  readonly asWithdraw: {
@@ -2351,7 +2303,7 @@ declare module "@polkadot/types/lookup" {
2351
2303
  } & Struct;
2352
2304
  readonly type: "Withdraw" | "Call" | "Create" | "Create2";
2353
2305
  }
2354
- /** @name PalletStorageProvidersCall (279) */
2306
+ /** @name PalletStorageProvidersCall (282) */
2355
2307
  interface PalletStorageProvidersCall extends Enum {
2356
2308
  readonly isRequestMspSignUp: boolean;
2357
2309
  readonly asRequestMspSignUp: {
@@ -2432,7 +2384,7 @@ declare module "@polkadot/types/lookup" {
2432
2384
  readonly isStopAllCycles: boolean;
2433
2385
  readonly type: "RequestMspSignUp" | "RequestBspSignUp" | "ConfirmSignUp" | "CancelSignUp" | "MspSignOff" | "BspSignOff" | "ChangeCapacity" | "AddValueProp" | "MakeValuePropUnavailable" | "AddMultiaddress" | "RemoveMultiaddress" | "ForceMspSignUp" | "ForceBspSignUp" | "Slash" | "TopUpDeposit" | "DeleteProvider" | "StopAllCycles";
2434
2386
  }
2435
- /** @name PalletFileSystemCall (280) */
2387
+ /** @name PalletFileSystemCall (283) */
2436
2388
  interface PalletFileSystemCall extends Enum {
2437
2389
  readonly isCreateBucket: boolean;
2438
2390
  readonly asCreateBucket: {
@@ -2547,15 +2499,19 @@ declare module "@polkadot/types/lookup" {
2547
2499
  readonly bspId: Option<H256>;
2548
2500
  readonly forestProof: SpTrieStorageProofCompactProof;
2549
2501
  } & Struct;
2550
- readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFiles" | "DeleteFilesForIncompleteStorageRequest";
2502
+ readonly isSetUserOperationPauseFlags: boolean;
2503
+ readonly asSetUserOperationPauseFlags: {
2504
+ readonly newFlags: u32;
2505
+ } & Struct;
2506
+ readonly type: "CreateBucket" | "RequestMoveBucket" | "MspRespondMoveBucketRequest" | "UpdateBucketPrivacy" | "CreateAndAssociateCollectionWithBucket" | "DeleteBucket" | "IssueStorageRequest" | "RevokeStorageRequest" | "MspRespondStorageRequestsMultipleBuckets" | "MspStopStoringBucket" | "BspVolunteer" | "BspConfirmStoring" | "BspRequestStopStoring" | "BspConfirmStopStoring" | "StopStoringForInsolventUser" | "MspStopStoringBucketForInsolventUser" | "RequestDeleteFile" | "DeleteFiles" | "DeleteFilesForIncompleteStorageRequest" | "SetUserOperationPauseFlags";
2551
2507
  }
2552
- /** @name PalletFileSystemBucketMoveRequestResponse (281) */
2508
+ /** @name PalletFileSystemBucketMoveRequestResponse (284) */
2553
2509
  interface PalletFileSystemBucketMoveRequestResponse extends Enum {
2554
2510
  readonly isAccepted: boolean;
2555
2511
  readonly isRejected: boolean;
2556
2512
  readonly type: "Accepted" | "Rejected";
2557
2513
  }
2558
- /** @name PalletFileSystemReplicationTarget (282) */
2514
+ /** @name PalletFileSystemReplicationTarget (285) */
2559
2515
  interface PalletFileSystemReplicationTarget extends Enum {
2560
2516
  readonly isBasic: boolean;
2561
2517
  readonly isStandard: boolean;
@@ -2566,28 +2522,28 @@ declare module "@polkadot/types/lookup" {
2566
2522
  readonly asCustom: u32;
2567
2523
  readonly type: "Basic" | "Standard" | "HighSecurity" | "SuperHighSecurity" | "UltraHighSecurity" | "Custom";
2568
2524
  }
2569
- /** @name PalletFileSystemStorageRequestMspBucketResponse (284) */
2525
+ /** @name PalletFileSystemStorageRequestMspBucketResponse (287) */
2570
2526
  interface PalletFileSystemStorageRequestMspBucketResponse extends Struct {
2571
2527
  readonly bucketId: H256;
2572
2528
  readonly accept: Option<PalletFileSystemStorageRequestMspAcceptedFileKeys>;
2573
2529
  readonly reject: Vec<PalletFileSystemRejectedStorageRequest>;
2574
2530
  }
2575
- /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (286) */
2531
+ /** @name PalletFileSystemStorageRequestMspAcceptedFileKeys (289) */
2576
2532
  interface PalletFileSystemStorageRequestMspAcceptedFileKeys extends Struct {
2577
2533
  readonly fileKeysAndProofs: Vec<PalletFileSystemFileKeyWithProof>;
2578
2534
  readonly forestProof: SpTrieStorageProofCompactProof;
2579
2535
  }
2580
- /** @name PalletFileSystemFileKeyWithProof (288) */
2536
+ /** @name PalletFileSystemFileKeyWithProof (291) */
2581
2537
  interface PalletFileSystemFileKeyWithProof extends Struct {
2582
2538
  readonly fileKey: H256;
2583
2539
  readonly proof: ShpFileKeyVerifierFileKeyProof;
2584
2540
  }
2585
- /** @name PalletFileSystemRejectedStorageRequest (290) */
2541
+ /** @name PalletFileSystemRejectedStorageRequest (293) */
2586
2542
  interface PalletFileSystemRejectedStorageRequest extends Struct {
2587
2543
  readonly fileKey: H256;
2588
2544
  readonly reason: PalletFileSystemRejectedStorageRequestReason;
2589
2545
  }
2590
- /** @name PalletFileSystemFileDeletionRequest (293) */
2546
+ /** @name PalletFileSystemFileDeletionRequest (296) */
2591
2547
  interface PalletFileSystemFileDeletionRequest extends Struct {
2592
2548
  readonly fileOwner: AccountId20;
2593
2549
  readonly signedIntention: PalletFileSystemFileOperationIntention;
@@ -2597,7 +2553,7 @@ declare module "@polkadot/types/lookup" {
2597
2553
  readonly size_: u64;
2598
2554
  readonly fingerprint: H256;
2599
2555
  }
2600
- /** @name PalletProofsDealerCall (295) */
2556
+ /** @name PalletProofsDealerCall (298) */
2601
2557
  interface PalletProofsDealerCall extends Enum {
2602
2558
  readonly isChallenge: boolean;
2603
2559
  readonly asChallenge: {
@@ -2623,12 +2579,12 @@ declare module "@polkadot/types/lookup" {
2623
2579
  } & Struct;
2624
2580
  readonly type: "Challenge" | "SubmitProof" | "ForceInitialiseChallengeCycle" | "SetPaused" | "PriorityChallenge";
2625
2581
  }
2626
- /** @name PalletRandomnessCall (296) */
2582
+ /** @name PalletRandomnessCall (299) */
2627
2583
  interface PalletRandomnessCall extends Enum {
2628
2584
  readonly isSetBabeRandomness: boolean;
2629
2585
  readonly type: "SetBabeRandomness";
2630
2586
  }
2631
- /** @name PalletPaymentStreamsCall (297) */
2587
+ /** @name PalletPaymentStreamsCall (300) */
2632
2588
  interface PalletPaymentStreamsCall extends Enum {
2633
2589
  readonly isCreateFixedRatePaymentStream: boolean;
2634
2590
  readonly asCreateFixedRatePaymentStream: {
@@ -2679,7 +2635,7 @@ declare module "@polkadot/types/lookup" {
2679
2635
  readonly isClearInsolventFlag: boolean;
2680
2636
  readonly type: "CreateFixedRatePaymentStream" | "UpdateFixedRatePaymentStream" | "DeleteFixedRatePaymentStream" | "CreateDynamicRatePaymentStream" | "UpdateDynamicRatePaymentStream" | "DeleteDynamicRatePaymentStream" | "ChargePaymentStreams" | "ChargeMultipleUsersPaymentStreams" | "PayOutstandingDebt" | "ClearInsolventFlag";
2681
2637
  }
2682
- /** @name PalletBucketNftsCall (298) */
2638
+ /** @name PalletBucketNftsCall (301) */
2683
2639
  interface PalletBucketNftsCall extends Enum {
2684
2640
  readonly isShareAccess: boolean;
2685
2641
  readonly asShareAccess: {
@@ -2696,7 +2652,7 @@ declare module "@polkadot/types/lookup" {
2696
2652
  } & Struct;
2697
2653
  readonly type: "ShareAccess" | "UpdateReadAccess";
2698
2654
  }
2699
- /** @name PalletNftsCall (300) */
2655
+ /** @name PalletNftsCall (303) */
2700
2656
  interface PalletNftsCall extends Enum {
2701
2657
  readonly isCreate: boolean;
2702
2658
  readonly asCreate: {
@@ -2929,13 +2885,13 @@ declare module "@polkadot/types/lookup" {
2929
2885
  } & Struct;
2930
2886
  readonly type: "Create" | "ForceCreate" | "Destroy" | "Mint" | "ForceMint" | "Burn" | "Transfer" | "Redeposit" | "LockItemTransfer" | "UnlockItemTransfer" | "LockCollection" | "TransferOwnership" | "SetTeam" | "ForceCollectionOwner" | "ForceCollectionConfig" | "ApproveTransfer" | "CancelApproval" | "ClearAllTransferApprovals" | "LockItemProperties" | "SetAttribute" | "ForceSetAttribute" | "ClearAttribute" | "ApproveItemAttributes" | "CancelItemAttributesApproval" | "SetMetadata" | "ClearMetadata" | "SetCollectionMetadata" | "ClearCollectionMetadata" | "SetAcceptOwnership" | "SetCollectionMaxSupply" | "UpdateMintSettings" | "SetPrice" | "BuyItem" | "PayTips" | "CreateSwap" | "CancelSwap" | "ClaimSwap" | "MintPreSigned" | "SetAttributesPreSigned";
2931
2887
  }
2932
- /** @name PalletNftsCollectionConfig (301) */
2888
+ /** @name PalletNftsCollectionConfig (304) */
2933
2889
  interface PalletNftsCollectionConfig extends Struct {
2934
2890
  readonly settings: u64;
2935
2891
  readonly maxSupply: Option<u32>;
2936
2892
  readonly mintSettings: PalletNftsMintSettings;
2937
2893
  }
2938
- /** @name PalletNftsCollectionSetting (303) */
2894
+ /** @name PalletNftsCollectionSetting (306) */
2939
2895
  interface PalletNftsCollectionSetting extends Enum {
2940
2896
  readonly isTransferableItems: boolean;
2941
2897
  readonly isUnlockedMetadata: boolean;
@@ -2944,7 +2900,7 @@ declare module "@polkadot/types/lookup" {
2944
2900
  readonly isDepositRequired: boolean;
2945
2901
  readonly type: "TransferableItems" | "UnlockedMetadata" | "UnlockedAttributes" | "UnlockedMaxSupply" | "DepositRequired";
2946
2902
  }
2947
- /** @name PalletNftsMintSettings (304) */
2903
+ /** @name PalletNftsMintSettings (307) */
2948
2904
  interface PalletNftsMintSettings extends Struct {
2949
2905
  readonly mintType: PalletNftsMintType;
2950
2906
  readonly price: Option<u128>;
@@ -2952,7 +2908,7 @@ declare module "@polkadot/types/lookup" {
2952
2908
  readonly endBlock: Option<u32>;
2953
2909
  readonly defaultItemSettings: u64;
2954
2910
  }
2955
- /** @name PalletNftsMintType (305) */
2911
+ /** @name PalletNftsMintType (308) */
2956
2912
  interface PalletNftsMintType extends Enum {
2957
2913
  readonly isIssuer: boolean;
2958
2914
  readonly isPublic: boolean;
@@ -2960,40 +2916,40 @@ declare module "@polkadot/types/lookup" {
2960
2916
  readonly asHolderOf: u32;
2961
2917
  readonly type: "Issuer" | "Public" | "HolderOf";
2962
2918
  }
2963
- /** @name PalletNftsItemSetting (307) */
2919
+ /** @name PalletNftsItemSetting (310) */
2964
2920
  interface PalletNftsItemSetting extends Enum {
2965
2921
  readonly isTransferable: boolean;
2966
2922
  readonly isUnlockedMetadata: boolean;
2967
2923
  readonly isUnlockedAttributes: boolean;
2968
2924
  readonly type: "Transferable" | "UnlockedMetadata" | "UnlockedAttributes";
2969
2925
  }
2970
- /** @name PalletNftsDestroyWitness (308) */
2926
+ /** @name PalletNftsDestroyWitness (311) */
2971
2927
  interface PalletNftsDestroyWitness extends Struct {
2972
2928
  readonly itemMetadatas: Compact<u32>;
2973
2929
  readonly itemConfigs: Compact<u32>;
2974
2930
  readonly attributes: Compact<u32>;
2975
2931
  }
2976
- /** @name PalletNftsMintWitness (310) */
2932
+ /** @name PalletNftsMintWitness (313) */
2977
2933
  interface PalletNftsMintWitness extends Struct {
2978
2934
  readonly ownedItem: Option<u32>;
2979
2935
  readonly mintPrice: Option<u128>;
2980
2936
  }
2981
- /** @name PalletNftsItemConfig (311) */
2937
+ /** @name PalletNftsItemConfig (314) */
2982
2938
  interface PalletNftsItemConfig extends Struct {
2983
2939
  readonly settings: u64;
2984
2940
  }
2985
- /** @name PalletNftsCancelAttributesApprovalWitness (312) */
2941
+ /** @name PalletNftsCancelAttributesApprovalWitness (315) */
2986
2942
  interface PalletNftsCancelAttributesApprovalWitness extends Struct {
2987
2943
  readonly accountAttributes: u32;
2988
2944
  }
2989
- /** @name PalletNftsItemTip (314) */
2945
+ /** @name PalletNftsItemTip (317) */
2990
2946
  interface PalletNftsItemTip extends Struct {
2991
2947
  readonly collection: u32;
2992
2948
  readonly item: u32;
2993
2949
  readonly receiver: AccountId20;
2994
2950
  readonly amount: u128;
2995
2951
  }
2996
- /** @name PalletNftsPreSignedMint (316) */
2952
+ /** @name PalletNftsPreSignedMint (319) */
2997
2953
  interface PalletNftsPreSignedMint extends Struct {
2998
2954
  readonly collection: u32;
2999
2955
  readonly item: u32;
@@ -3003,7 +2959,7 @@ declare module "@polkadot/types/lookup" {
3003
2959
  readonly deadline: u32;
3004
2960
  readonly mintPrice: Option<u128>;
3005
2961
  }
3006
- /** @name PalletNftsPreSignedAttributes (317) */
2962
+ /** @name PalletNftsPreSignedAttributes (320) */
3007
2963
  interface PalletNftsPreSignedAttributes extends Struct {
3008
2964
  readonly collection: u32;
3009
2965
  readonly item: u32;
@@ -3011,12 +2967,12 @@ declare module "@polkadot/types/lookup" {
3011
2967
  readonly namespace: PalletNftsAttributeNamespace;
3012
2968
  readonly deadline: u32;
3013
2969
  }
3014
- /** @name PalletSudoError (318) */
2970
+ /** @name PalletSudoError (321) */
3015
2971
  interface PalletSudoError extends Enum {
3016
2972
  readonly isRequireSudo: boolean;
3017
2973
  readonly type: "RequireSudo";
3018
2974
  }
3019
- /** @name FpRpcTransactionStatus (320) */
2975
+ /** @name FpRpcTransactionStatus (323) */
3020
2976
  interface FpRpcTransactionStatus extends Struct {
3021
2977
  readonly transactionHash: H256;
3022
2978
  readonly transactionIndex: u32;
@@ -3026,10 +2982,10 @@ declare module "@polkadot/types/lookup" {
3026
2982
  readonly logs: Vec<EthereumLog>;
3027
2983
  readonly logsBloom: EthbloomBloom;
3028
2984
  }
3029
- /** @name EthbloomBloom (323) */
2985
+ /** @name EthbloomBloom (326) */
3030
2986
  interface EthbloomBloom extends U8aFixed {
3031
2987
  }
3032
- /** @name EthereumReceiptReceiptV3 (325) */
2988
+ /** @name EthereumReceiptReceiptV3 (328) */
3033
2989
  interface EthereumReceiptReceiptV3 extends Enum {
3034
2990
  readonly isLegacy: boolean;
3035
2991
  readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3039,20 +2995,20 @@ declare module "@polkadot/types/lookup" {
3039
2995
  readonly asEip1559: EthereumReceiptEip658ReceiptData;
3040
2996
  readonly type: "Legacy" | "Eip2930" | "Eip1559";
3041
2997
  }
3042
- /** @name EthereumReceiptEip658ReceiptData (326) */
2998
+ /** @name EthereumReceiptEip658ReceiptData (329) */
3043
2999
  interface EthereumReceiptEip658ReceiptData extends Struct {
3044
3000
  readonly statusCode: u8;
3045
3001
  readonly usedGas: U256;
3046
3002
  readonly logsBloom: EthbloomBloom;
3047
3003
  readonly logs: Vec<EthereumLog>;
3048
3004
  }
3049
- /** @name EthereumBlock (327) */
3005
+ /** @name EthereumBlock (330) */
3050
3006
  interface EthereumBlock extends Struct {
3051
3007
  readonly header: EthereumHeader;
3052
3008
  readonly transactions: Vec<EthereumTransactionTransactionV2>;
3053
3009
  readonly ommers: Vec<EthereumHeader>;
3054
3010
  }
3055
- /** @name EthereumHeader (328) */
3011
+ /** @name EthereumHeader (331) */
3056
3012
  interface EthereumHeader extends Struct {
3057
3013
  readonly parentHash: H256;
3058
3014
  readonly ommersHash: H256;
@@ -3070,21 +3026,21 @@ declare module "@polkadot/types/lookup" {
3070
3026
  readonly mixHash: H256;
3071
3027
  readonly nonce: EthereumTypesHashH64;
3072
3028
  }
3073
- /** @name EthereumTypesHashH64 (329) */
3029
+ /** @name EthereumTypesHashH64 (332) */
3074
3030
  interface EthereumTypesHashH64 extends U8aFixed {
3075
3031
  }
3076
- /** @name PalletEthereumError (334) */
3032
+ /** @name PalletEthereumError (337) */
3077
3033
  interface PalletEthereumError extends Enum {
3078
3034
  readonly isInvalidSignature: boolean;
3079
3035
  readonly isPreLogExists: boolean;
3080
3036
  readonly type: "InvalidSignature" | "PreLogExists";
3081
3037
  }
3082
- /** @name PalletEvmCodeMetadata (335) */
3038
+ /** @name PalletEvmCodeMetadata (338) */
3083
3039
  interface PalletEvmCodeMetadata extends Struct {
3084
3040
  readonly size_: u64;
3085
3041
  readonly hash_: H256;
3086
3042
  }
3087
- /** @name PalletEvmError (337) */
3043
+ /** @name PalletEvmError (340) */
3088
3044
  interface PalletEvmError extends Enum {
3089
3045
  readonly isBalanceLow: boolean;
3090
3046
  readonly isFeeOverflow: boolean;
@@ -3101,12 +3057,12 @@ declare module "@polkadot/types/lookup" {
3101
3057
  readonly isUndefined: boolean;
3102
3058
  readonly type: "BalanceLow" | "FeeOverflow" | "PaymentOverflow" | "WithdrawFailed" | "GasPriceTooLow" | "InvalidNonce" | "GasLimitTooLow" | "GasLimitTooHigh" | "InvalidChainId" | "InvalidSignature" | "Reentrancy" | "TransactionMustComeFromEOA" | "Undefined";
3103
3059
  }
3104
- /** @name PalletStorageProvidersSignUpRequest (338) */
3060
+ /** @name PalletStorageProvidersSignUpRequest (341) */
3105
3061
  interface PalletStorageProvidersSignUpRequest extends Struct {
3106
3062
  readonly spSignUpRequest: PalletStorageProvidersSignUpRequestSpParams;
3107
3063
  readonly at: u32;
3108
3064
  }
3109
- /** @name PalletStorageProvidersSignUpRequestSpParams (339) */
3065
+ /** @name PalletStorageProvidersSignUpRequestSpParams (342) */
3110
3066
  interface PalletStorageProvidersSignUpRequestSpParams extends Enum {
3111
3067
  readonly isBackupStorageProvider: boolean;
3112
3068
  readonly asBackupStorageProvider: PalletStorageProvidersBackupStorageProvider;
@@ -3114,7 +3070,7 @@ declare module "@polkadot/types/lookup" {
3114
3070
  readonly asMainStorageProvider: PalletStorageProvidersMainStorageProviderSignUpRequest;
3115
3071
  readonly type: "BackupStorageProvider" | "MainStorageProvider";
3116
3072
  }
3117
- /** @name PalletStorageProvidersBackupStorageProvider (340) */
3073
+ /** @name PalletStorageProvidersBackupStorageProvider (343) */
3118
3074
  interface PalletStorageProvidersBackupStorageProvider extends Struct {
3119
3075
  readonly capacity: u64;
3120
3076
  readonly capacityUsed: u64;
@@ -3126,12 +3082,12 @@ declare module "@polkadot/types/lookup" {
3126
3082
  readonly reputationWeight: u32;
3127
3083
  readonly signUpBlock: u32;
3128
3084
  }
3129
- /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (341) */
3085
+ /** @name PalletStorageProvidersMainStorageProviderSignUpRequest (344) */
3130
3086
  interface PalletStorageProvidersMainStorageProviderSignUpRequest extends Struct {
3131
3087
  readonly mspInfo: PalletStorageProvidersMainStorageProvider;
3132
3088
  readonly valueProp: PalletStorageProvidersValueProposition;
3133
3089
  }
3134
- /** @name PalletStorageProvidersMainStorageProvider (342) */
3090
+ /** @name PalletStorageProvidersMainStorageProvider (345) */
3135
3091
  interface PalletStorageProvidersMainStorageProvider extends Struct {
3136
3092
  readonly capacity: u64;
3137
3093
  readonly capacityUsed: u64;
@@ -3143,7 +3099,7 @@ declare module "@polkadot/types/lookup" {
3143
3099
  readonly paymentAccount: AccountId20;
3144
3100
  readonly signUpBlock: u32;
3145
3101
  }
3146
- /** @name PalletStorageProvidersBucket (343) */
3102
+ /** @name PalletStorageProvidersBucket (346) */
3147
3103
  interface PalletStorageProvidersBucket extends Struct {
3148
3104
  readonly root: H256;
3149
3105
  readonly userId: AccountId20;
@@ -3153,7 +3109,7 @@ declare module "@polkadot/types/lookup" {
3153
3109
  readonly size_: u64;
3154
3110
  readonly valuePropId: H256;
3155
3111
  }
3156
- /** @name PalletStorageProvidersError (347) */
3112
+ /** @name PalletStorageProvidersError (350) */
3157
3113
  interface PalletStorageProvidersError extends Enum {
3158
3114
  readonly isAlreadyRegistered: boolean;
3159
3115
  readonly isSignUpNotRequested: boolean;
@@ -3209,7 +3165,7 @@ declare module "@polkadot/types/lookup" {
3209
3165
  readonly isPaymentStreamNotFound: boolean;
3210
3166
  readonly type: "AlreadyRegistered" | "SignUpNotRequested" | "SignUpRequestPending" | "NoMultiAddress" | "InvalidMultiAddress" | "StorageTooLow" | "NotEnoughBalance" | "CannotHoldDeposit" | "StorageStillInUse" | "SignOffPeriodNotPassed" | "RandomnessNotValidYet" | "SignUpRequestExpired" | "NewCapacityLessThanUsedStorage" | "NewCapacityEqualsCurrentCapacity" | "NewCapacityCantBeZero" | "NotEnoughTimePassed" | "NewUsedCapacityExceedsStorageCapacity" | "DepositTooLow" | "NotRegistered" | "NoUserId" | "NoBucketId" | "SpRegisteredButDataNotFound" | "BucketNotFound" | "BucketAlreadyExists" | "BucketNotEmpty" | "BucketsMovedAmountMismatch" | "AppendBucketToMspFailed" | "ProviderNotSlashable" | "TopUpNotRequired" | "BucketMustHaveMspForOperation" | "MultiAddressesMaxAmountReached" | "MultiAddressNotFound" | "MultiAddressAlreadyExists" | "LastMultiAddressCantBeRemoved" | "ValuePropositionNotFound" | "ValuePropositionAlreadyExists" | "ValuePropositionNotAvailable" | "CantDeactivateLastValueProp" | "ValuePropositionsDeletedAmountMismatch" | "FixedRatePaymentStreamNotFound" | "MspAlreadyAssignedToBucket" | "BucketSizeExceedsLimit" | "BucketHasNoValueProposition" | "MaxBlockNumberReached" | "OperationNotAllowedForInsolventProvider" | "DeleteProviderConditionsNotMet" | "CannotStopCycleWithNonDefaultRoot" | "BspOnlyOperation" | "MspOnlyOperation" | "InvalidEncodedFileMetadata" | "InvalidEncodedAccountId" | "PaymentStreamNotFound";
3211
3167
  }
3212
- /** @name PalletFileSystemStorageRequestMetadata (348) */
3168
+ /** @name PalletFileSystemStorageRequestMetadata (351) */
3213
3169
  interface PalletFileSystemStorageRequestMetadata extends Struct {
3214
3170
  readonly requestedAt: u32;
3215
3171
  readonly expiresAt: u32;
@@ -3218,18 +3174,29 @@ declare module "@polkadot/types/lookup" {
3218
3174
  readonly location: Bytes;
3219
3175
  readonly fingerprint: H256;
3220
3176
  readonly size_: u64;
3221
- readonly msp: Option<ITuple<[H256, bool]>>;
3177
+ readonly mspStatus: PalletFileSystemMspStorageRequestStatus;
3222
3178
  readonly userPeerIds: Vec<Bytes>;
3223
3179
  readonly bspsRequired: u32;
3224
3180
  readonly bspsConfirmed: u32;
3225
3181
  readonly bspsVolunteered: u32;
3226
3182
  readonly depositPaid: u128;
3227
3183
  }
3228
- /** @name PalletFileSystemStorageRequestBspsMetadata (351) */
3184
+ /** @name PalletFileSystemMspStorageRequestStatus (352) */
3185
+ interface PalletFileSystemMspStorageRequestStatus extends Enum {
3186
+ readonly isNone: boolean;
3187
+ readonly isPending: boolean;
3188
+ readonly asPending: H256;
3189
+ readonly isAcceptedNewFile: boolean;
3190
+ readonly asAcceptedNewFile: H256;
3191
+ readonly isAcceptedExistingFile: boolean;
3192
+ readonly asAcceptedExistingFile: H256;
3193
+ readonly type: "None" | "Pending" | "AcceptedNewFile" | "AcceptedExistingFile";
3194
+ }
3195
+ /** @name PalletFileSystemStorageRequestBspsMetadata (353) */
3229
3196
  interface PalletFileSystemStorageRequestBspsMetadata extends Struct {
3230
3197
  readonly confirmed: bool;
3231
3198
  }
3232
- /** @name PalletFileSystemPendingFileDeletionRequest (353) */
3199
+ /** @name PalletFileSystemPendingFileDeletionRequest (355) */
3233
3200
  interface PalletFileSystemPendingFileDeletionRequest extends Struct {
3234
3201
  readonly user: AccountId20;
3235
3202
  readonly fileKey: H256;
@@ -3238,19 +3205,19 @@ declare module "@polkadot/types/lookup" {
3238
3205
  readonly depositPaidForCreation: u128;
3239
3206
  readonly queuePriorityChallenge: bool;
3240
3207
  }
3241
- /** @name PalletFileSystemPendingStopStoringRequest (355) */
3208
+ /** @name PalletFileSystemPendingStopStoringRequest (357) */
3242
3209
  interface PalletFileSystemPendingStopStoringRequest extends Struct {
3243
3210
  readonly tickWhenRequested: u32;
3244
3211
  readonly fileOwner: AccountId20;
3245
3212
  readonly fileSize: u64;
3246
3213
  }
3247
- /** @name PalletFileSystemMoveBucketRequestMetadata (356) */
3214
+ /** @name PalletFileSystemMoveBucketRequestMetadata (358) */
3248
3215
  interface PalletFileSystemMoveBucketRequestMetadata extends Struct {
3249
3216
  readonly requester: AccountId20;
3250
3217
  readonly newMspId: H256;
3251
3218
  readonly newValuePropId: H256;
3252
3219
  }
3253
- /** @name PalletFileSystemIncompleteStorageRequestMetadata (357) */
3220
+ /** @name PalletFileSystemIncompleteStorageRequestMetadata (359) */
3254
3221
  interface PalletFileSystemIncompleteStorageRequestMetadata extends Struct {
3255
3222
  readonly owner: AccountId20;
3256
3223
  readonly bucketId: H256;
@@ -3260,112 +3227,86 @@ declare module "@polkadot/types/lookup" {
3260
3227
  readonly pendingBspRemovals: Vec<H256>;
3261
3228
  readonly pendingBucketRemoval: bool;
3262
3229
  }
3263
- /** @name PalletFileSystemError (359) */
3230
+ /** @name PalletFileSystemError (361) */
3264
3231
  interface PalletFileSystemError extends Enum {
3232
+ readonly isNotABsp: boolean;
3233
+ readonly isNotAMsp: boolean;
3234
+ readonly isNotASp: boolean;
3265
3235
  readonly isStorageRequestAlreadyRegistered: boolean;
3266
3236
  readonly isStorageRequestNotFound: boolean;
3267
- readonly isStorageRequestNotRevoked: boolean;
3268
3237
  readonly isStorageRequestExists: boolean;
3238
+ readonly isStorageRequestNotAuthorized: boolean;
3239
+ readonly isStorageRequestBspsRequiredFulfilled: boolean;
3240
+ readonly isTooManyStorageRequestResponses: boolean;
3241
+ readonly isIncompleteStorageRequestNotFound: boolean;
3269
3242
  readonly isReplicationTargetCannotBeZero: boolean;
3270
3243
  readonly isReplicationTargetExceedsMaximum: boolean;
3271
- readonly isMaxReplicationTargetSmallerThanDefault: boolean;
3272
- readonly isNotABsp: boolean;
3273
- readonly isNotAMsp: boolean;
3274
- readonly isNotASp: boolean;
3275
3244
  readonly isBspNotVolunteered: boolean;
3276
3245
  readonly isBspNotConfirmed: boolean;
3277
3246
  readonly isBspAlreadyConfirmed: boolean;
3278
- readonly isStorageRequestBspsRequiredFulfilled: boolean;
3279
3247
  readonly isBspAlreadyVolunteered: boolean;
3280
- readonly isInsufficientAvailableCapacity: boolean;
3281
- readonly isUnexpectedNumberOfRemovedVolunteeredBsps: boolean;
3282
3248
  readonly isBspNotEligibleToVolunteer: boolean;
3283
- readonly isStorageRequestExpiredNoSlotAvailable: boolean;
3284
- readonly isStorageRequestNotAuthorized: boolean;
3285
- readonly isMaxTickNumberReached: boolean;
3286
- readonly isFailedToEncodeBsp: boolean;
3287
- readonly isFailedToEncodeFingerprint: boolean;
3288
- readonly isFailedToDecodeThreshold: boolean;
3289
- readonly isAboveThreshold: boolean;
3290
- readonly isThresholdArithmeticError: boolean;
3291
- readonly isFailedTypeConversion: boolean;
3292
- readonly isDividedByZero: boolean;
3293
- readonly isImpossibleFailedToGetValue: boolean;
3294
- readonly isBucketIsNotPrivate: boolean;
3249
+ readonly isInsufficientAvailableCapacity: boolean;
3250
+ readonly isNoFileKeysToConfirm: boolean;
3251
+ readonly isMspNotStoringBucket: boolean;
3252
+ readonly isNotSelectedMsp: boolean;
3253
+ readonly isMspAlreadyConfirmed: boolean;
3254
+ readonly isRequestWithoutMsp: boolean;
3255
+ readonly isMspAlreadyStoringBucket: boolean;
3295
3256
  readonly isBucketNotFound: boolean;
3296
3257
  readonly isBucketNotEmpty: boolean;
3297
3258
  readonly isNotBucketOwner: boolean;
3259
+ readonly isBucketIsBeingMoved: boolean;
3260
+ readonly isInvalidBucketIdFileKeyPair: boolean;
3298
3261
  readonly isValuePropositionNotAvailable: boolean;
3299
3262
  readonly isCollectionNotFound: boolean;
3300
- readonly isProviderRootNotFound: boolean;
3301
- readonly isExpectedNonInclusionProof: boolean;
3302
- readonly isExpectedInclusionProof: boolean;
3263
+ readonly isMoveBucketRequestNotFound: boolean;
3303
3264
  readonly isInvalidFileKeyMetadata: boolean;
3304
- readonly isThresholdBelowAsymptote: boolean;
3305
- readonly isNotFileOwner: boolean;
3306
- readonly isFileKeyAlreadyPendingDeletion: boolean;
3265
+ readonly isFileSizeCannotBeZero: boolean;
3266
+ readonly isProviderNotStoringFile: boolean;
3267
+ readonly isFileHasActiveStorageRequest: boolean;
3268
+ readonly isFileHasIncompleteStorageRequest: boolean;
3307
3269
  readonly isBatchFileDeletionMustContainSingleBucket: boolean;
3308
3270
  readonly isDuplicateFileKeyInBatchFileDeletion: boolean;
3309
3271
  readonly isNoFileKeysToDelete: boolean;
3310
3272
  readonly isFailedToPushFileKeyToBucketDeletionVector: boolean;
3311
3273
  readonly isFailedToPushUserToBspDeletionVector: boolean;
3312
3274
  readonly isFailedToPushFileKeyToBspDeletionVector: boolean;
3313
- readonly isMaxUserPendingDeletionRequestsReached: boolean;
3314
- readonly isMspNotStoringBucket: boolean;
3315
- readonly isFileKeyNotPendingDeletion: boolean;
3316
- readonly isFileSizeCannotBeZero: boolean;
3317
- readonly isNoGlobalReputationWeightSet: boolean;
3318
- readonly isNoBspReputationWeightSet: boolean;
3319
- readonly isMaximumThresholdCannotBeZero: boolean;
3320
- readonly isTickRangeToMaximumThresholdCannotBeZero: boolean;
3321
3275
  readonly isPendingStopStoringRequestNotFound: boolean;
3322
3276
  readonly isMinWaitForStopStoringNotReached: boolean;
3323
3277
  readonly isPendingStopStoringRequestAlreadyExists: boolean;
3324
- readonly isOperationNotAllowedWithInsolventUser: boolean;
3325
- readonly isUserNotInsolvent: boolean;
3326
- readonly isNotSelectedMsp: boolean;
3327
- readonly isMspAlreadyConfirmed: boolean;
3328
- readonly isRequestWithoutMsp: boolean;
3329
- readonly isMspAlreadyStoringBucket: boolean;
3330
- readonly isMoveBucketRequestNotFound: boolean;
3331
- readonly isBucketIsBeingMoved: boolean;
3332
- readonly isBspAlreadyDataServer: boolean;
3333
- readonly isBspDataServersExceeded: boolean;
3334
- readonly isFileMetadataProcessingQueueFull: boolean;
3335
- readonly isTooManyBatchResponses: boolean;
3336
- readonly isTooManyStorageRequestResponses: boolean;
3337
- readonly isInvalidBucketIdFileKeyPair: boolean;
3338
- readonly isInconsistentStateKeyAlreadyExists: boolean;
3278
+ readonly isExpectedNonInclusionProof: boolean;
3279
+ readonly isExpectedInclusionProof: boolean;
3339
3280
  readonly isFixedRatePaymentStreamNotFound: boolean;
3340
3281
  readonly isDynamicRatePaymentStreamNotFound: boolean;
3282
+ readonly isOperationNotAllowedWithInsolventUser: boolean;
3283
+ readonly isUserNotInsolvent: boolean;
3284
+ readonly isOperationNotAllowedForInsolventProvider: boolean;
3285
+ readonly isInvalidSignature: boolean;
3286
+ readonly isInvalidProviderID: boolean;
3287
+ readonly isInvalidSignedOperation: boolean;
3288
+ readonly isNoGlobalReputationWeightSet: boolean;
3289
+ readonly isNoBspReputationWeightSet: boolean;
3341
3290
  readonly isCannotHoldDeposit: boolean;
3291
+ readonly isMaxTickNumberReached: boolean;
3292
+ readonly isThresholdArithmeticError: boolean;
3293
+ readonly isRootNotUpdated: boolean;
3294
+ readonly isImpossibleFailedToGetValue: boolean;
3342
3295
  readonly isFailedToQueryEarliestFileVolunteerTick: boolean;
3343
3296
  readonly isFailedToGetOwnerAccount: boolean;
3344
3297
  readonly isFailedToGetPaymentAccount: boolean;
3345
- readonly isNoFileKeysToConfirm: boolean;
3346
- readonly isRootNotUpdated: boolean;
3347
- readonly isNoPrivacyChange: boolean;
3348
- readonly isOperationNotAllowedForInsolventProvider: boolean;
3349
- readonly isOperationNotAllowedWhileBucketIsNotStoredByMsp: boolean;
3350
3298
  readonly isFailedToComputeFileKey: boolean;
3351
3299
  readonly isFailedToCreateFileMetadata: boolean;
3352
- readonly isInvalidSignature: boolean;
3353
- readonly isForestProofVerificationFailed: boolean;
3354
- readonly isProviderNotStoringFile: boolean;
3355
- readonly isInvalidProviderID: boolean;
3356
- readonly isInvalidSignedOperation: boolean;
3357
- readonly isFileKeyMismatch: boolean;
3358
- readonly isIncompleteStorageRequestNotFound: boolean;
3359
- readonly isFileHasActiveStorageRequest: boolean;
3360
- readonly isFileHasIncompleteStorageRequest: boolean;
3361
- readonly type: "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestNotRevoked" | "StorageRequestExists" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "MaxReplicationTargetSmallerThanDefault" | "NotABsp" | "NotAMsp" | "NotASp" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "StorageRequestBspsRequiredFulfilled" | "BspAlreadyVolunteered" | "InsufficientAvailableCapacity" | "UnexpectedNumberOfRemovedVolunteeredBsps" | "BspNotEligibleToVolunteer" | "StorageRequestExpiredNoSlotAvailable" | "StorageRequestNotAuthorized" | "MaxTickNumberReached" | "FailedToEncodeBsp" | "FailedToEncodeFingerprint" | "FailedToDecodeThreshold" | "AboveThreshold" | "ThresholdArithmeticError" | "FailedTypeConversion" | "DividedByZero" | "ImpossibleFailedToGetValue" | "BucketIsNotPrivate" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "ProviderRootNotFound" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "InvalidFileKeyMetadata" | "ThresholdBelowAsymptote" | "NotFileOwner" | "FileKeyAlreadyPendingDeletion" | "BatchFileDeletionMustContainSingleBucket" | "DuplicateFileKeyInBatchFileDeletion" | "NoFileKeysToDelete" | "FailedToPushFileKeyToBucketDeletionVector" | "FailedToPushUserToBspDeletionVector" | "FailedToPushFileKeyToBspDeletionVector" | "MaxUserPendingDeletionRequestsReached" | "MspNotStoringBucket" | "FileKeyNotPendingDeletion" | "FileSizeCannotBeZero" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "MaximumThresholdCannotBeZero" | "TickRangeToMaximumThresholdCannotBeZero" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "MoveBucketRequestNotFound" | "BucketIsBeingMoved" | "BspAlreadyDataServer" | "BspDataServersExceeded" | "FileMetadataProcessingQueueFull" | "TooManyBatchResponses" | "TooManyStorageRequestResponses" | "InvalidBucketIdFileKeyPair" | "InconsistentStateKeyAlreadyExists" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "CannotHoldDeposit" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "NoFileKeysToConfirm" | "RootNotUpdated" | "NoPrivacyChange" | "OperationNotAllowedForInsolventProvider" | "OperationNotAllowedWhileBucketIsNotStoredByMsp" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "InvalidSignature" | "ForestProofVerificationFailed" | "ProviderNotStoringFile" | "InvalidProviderID" | "InvalidSignedOperation" | "FileKeyMismatch" | "IncompleteStorageRequestNotFound" | "FileHasActiveStorageRequest" | "FileHasIncompleteStorageRequest";
3300
+ readonly isFileMetadataProcessingQueueFull: boolean;
3301
+ readonly isUserOperationPaused: boolean;
3302
+ readonly type: "NotABsp" | "NotAMsp" | "NotASp" | "StorageRequestAlreadyRegistered" | "StorageRequestNotFound" | "StorageRequestExists" | "StorageRequestNotAuthorized" | "StorageRequestBspsRequiredFulfilled" | "TooManyStorageRequestResponses" | "IncompleteStorageRequestNotFound" | "ReplicationTargetCannotBeZero" | "ReplicationTargetExceedsMaximum" | "BspNotVolunteered" | "BspNotConfirmed" | "BspAlreadyConfirmed" | "BspAlreadyVolunteered" | "BspNotEligibleToVolunteer" | "InsufficientAvailableCapacity" | "NoFileKeysToConfirm" | "MspNotStoringBucket" | "NotSelectedMsp" | "MspAlreadyConfirmed" | "RequestWithoutMsp" | "MspAlreadyStoringBucket" | "BucketNotFound" | "BucketNotEmpty" | "NotBucketOwner" | "BucketIsBeingMoved" | "InvalidBucketIdFileKeyPair" | "ValuePropositionNotAvailable" | "CollectionNotFound" | "MoveBucketRequestNotFound" | "InvalidFileKeyMetadata" | "FileSizeCannotBeZero" | "ProviderNotStoringFile" | "FileHasActiveStorageRequest" | "FileHasIncompleteStorageRequest" | "BatchFileDeletionMustContainSingleBucket" | "DuplicateFileKeyInBatchFileDeletion" | "NoFileKeysToDelete" | "FailedToPushFileKeyToBucketDeletionVector" | "FailedToPushUserToBspDeletionVector" | "FailedToPushFileKeyToBspDeletionVector" | "PendingStopStoringRequestNotFound" | "MinWaitForStopStoringNotReached" | "PendingStopStoringRequestAlreadyExists" | "ExpectedNonInclusionProof" | "ExpectedInclusionProof" | "FixedRatePaymentStreamNotFound" | "DynamicRatePaymentStreamNotFound" | "OperationNotAllowedWithInsolventUser" | "UserNotInsolvent" | "OperationNotAllowedForInsolventProvider" | "InvalidSignature" | "InvalidProviderID" | "InvalidSignedOperation" | "NoGlobalReputationWeightSet" | "NoBspReputationWeightSet" | "CannotHoldDeposit" | "MaxTickNumberReached" | "ThresholdArithmeticError" | "RootNotUpdated" | "ImpossibleFailedToGetValue" | "FailedToQueryEarliestFileVolunteerTick" | "FailedToGetOwnerAccount" | "FailedToGetPaymentAccount" | "FailedToComputeFileKey" | "FailedToCreateFileMetadata" | "FileMetadataProcessingQueueFull" | "UserOperationPaused";
3362
3303
  }
3363
- /** @name PalletProofsDealerProofSubmissionRecord (361) */
3304
+ /** @name PalletProofsDealerProofSubmissionRecord (363) */
3364
3305
  interface PalletProofsDealerProofSubmissionRecord extends Struct {
3365
3306
  readonly lastTickProven: u32;
3366
3307
  readonly nextTickToSubmitProofFor: u32;
3367
3308
  }
3368
- /** @name PalletProofsDealerError (368) */
3309
+ /** @name PalletProofsDealerError (370) */
3369
3310
  interface PalletProofsDealerError extends Enum {
3370
3311
  readonly isNotProvider: boolean;
3371
3312
  readonly isChallengesQueueOverflow: boolean;
@@ -3393,26 +3334,26 @@ declare module "@polkadot/types/lookup" {
3393
3334
  readonly isTooManyValidProofSubmitters: boolean;
3394
3335
  readonly type: "NotProvider" | "ChallengesQueueOverflow" | "PriorityChallengesQueueOverflow" | "FeeChargeFailed" | "EmptyKeyProofs" | "ProviderRootNotFound" | "ZeroRoot" | "NoRecordOfLastSubmittedProof" | "ProviderStakeNotFound" | "ZeroStake" | "StakeCouldNotBeConverted" | "ChallengesTickNotReached" | "ChallengesTickTooOld" | "ChallengesTickTooLate" | "SeedNotFound" | "CheckpointChallengesNotFound" | "ForestProofVerificationFailed" | "IncorrectNumberOfKeyProofs" | "KeyProofNotFound" | "KeyProofVerificationFailed" | "FailedToApplyDelta" | "UnexpectedNumberOfRemoveMutations" | "FailedToUpdateProviderAfterKeyRemoval" | "TooManyValidProofSubmitters";
3395
3336
  }
3396
- /** @name PalletPaymentStreamsFixedRatePaymentStream (370) */
3337
+ /** @name PalletPaymentStreamsFixedRatePaymentStream (372) */
3397
3338
  interface PalletPaymentStreamsFixedRatePaymentStream extends Struct {
3398
3339
  readonly rate: u128;
3399
3340
  readonly lastChargedTick: u32;
3400
3341
  readonly userDeposit: u128;
3401
3342
  readonly outOfFundsTick: Option<u32>;
3402
3343
  }
3403
- /** @name PalletPaymentStreamsDynamicRatePaymentStream (371) */
3344
+ /** @name PalletPaymentStreamsDynamicRatePaymentStream (373) */
3404
3345
  interface PalletPaymentStreamsDynamicRatePaymentStream extends Struct {
3405
3346
  readonly amountProvided: u64;
3406
3347
  readonly priceIndexWhenLastCharged: u128;
3407
3348
  readonly userDeposit: u128;
3408
3349
  readonly outOfFundsTick: Option<u32>;
3409
3350
  }
3410
- /** @name PalletPaymentStreamsProviderLastChargeableInfo (372) */
3351
+ /** @name PalletPaymentStreamsProviderLastChargeableInfo (374) */
3411
3352
  interface PalletPaymentStreamsProviderLastChargeableInfo extends Struct {
3412
3353
  readonly lastChargeableTick: u32;
3413
3354
  readonly priceIndex: u128;
3414
3355
  }
3415
- /** @name PalletPaymentStreamsError (373) */
3356
+ /** @name PalletPaymentStreamsError (375) */
3416
3357
  interface PalletPaymentStreamsError extends Enum {
3417
3358
  readonly isPaymentStreamAlreadyExists: boolean;
3418
3359
  readonly isPaymentStreamNotFound: boolean;
@@ -3434,7 +3375,7 @@ declare module "@polkadot/types/lookup" {
3434
3375
  readonly isProviderInsolvent: boolean;
3435
3376
  readonly type: "PaymentStreamAlreadyExists" | "PaymentStreamNotFound" | "NotAProvider" | "ProviderInconsistencyError" | "CannotHoldDeposit" | "UpdateRateToSameRate" | "UpdateAmountToSameAmount" | "RateCantBeZero" | "AmountProvidedCantBeZero" | "LastChargedGreaterThanLastChargeable" | "InvalidLastChargeableBlockNumber" | "InvalidLastChargeablePriceIndex" | "ChargeOverflow" | "UserWithoutFunds" | "UserNotFlaggedAsWithoutFunds" | "CooldownPeriodNotPassed" | "UserHasRemainingDebt" | "ProviderInsolvent";
3436
3377
  }
3437
- /** @name PalletBucketNftsError (374) */
3378
+ /** @name PalletBucketNftsError (376) */
3438
3379
  interface PalletBucketNftsError extends Enum {
3439
3380
  readonly isBucketIsNotPrivate: boolean;
3440
3381
  readonly isNotBucketOwner: boolean;
@@ -3442,7 +3383,7 @@ declare module "@polkadot/types/lookup" {
3442
3383
  readonly isConvertBytesToBoundedVec: boolean;
3443
3384
  readonly type: "BucketIsNotPrivate" | "NotBucketOwner" | "NoCorrespondingCollection" | "ConvertBytesToBoundedVec";
3444
3385
  }
3445
- /** @name PalletNftsCollectionDetails (375) */
3386
+ /** @name PalletNftsCollectionDetails (377) */
3446
3387
  interface PalletNftsCollectionDetails extends Struct {
3447
3388
  readonly owner: AccountId20;
3448
3389
  readonly ownerDeposit: u128;
@@ -3451,52 +3392,52 @@ declare module "@polkadot/types/lookup" {
3451
3392
  readonly itemConfigs: u32;
3452
3393
  readonly attributes: u32;
3453
3394
  }
3454
- /** @name PalletNftsCollectionRole (380) */
3395
+ /** @name PalletNftsCollectionRole (382) */
3455
3396
  interface PalletNftsCollectionRole extends Enum {
3456
3397
  readonly isIssuer: boolean;
3457
3398
  readonly isFreezer: boolean;
3458
3399
  readonly isAdmin: boolean;
3459
3400
  readonly type: "Issuer" | "Freezer" | "Admin";
3460
3401
  }
3461
- /** @name PalletNftsItemDetails (381) */
3402
+ /** @name PalletNftsItemDetails (383) */
3462
3403
  interface PalletNftsItemDetails extends Struct {
3463
3404
  readonly owner: AccountId20;
3464
3405
  readonly approvals: BTreeMap<AccountId20, Option<u32>>;
3465
3406
  readonly deposit: PalletNftsItemDeposit;
3466
3407
  }
3467
- /** @name PalletNftsItemDeposit (382) */
3408
+ /** @name PalletNftsItemDeposit (384) */
3468
3409
  interface PalletNftsItemDeposit extends Struct {
3469
3410
  readonly account: AccountId20;
3470
3411
  readonly amount: u128;
3471
3412
  }
3472
- /** @name PalletNftsCollectionMetadata (387) */
3413
+ /** @name PalletNftsCollectionMetadata (389) */
3473
3414
  interface PalletNftsCollectionMetadata extends Struct {
3474
3415
  readonly deposit: u128;
3475
3416
  readonly data: Bytes;
3476
3417
  }
3477
- /** @name PalletNftsItemMetadata (388) */
3418
+ /** @name PalletNftsItemMetadata (390) */
3478
3419
  interface PalletNftsItemMetadata extends Struct {
3479
3420
  readonly deposit: PalletNftsItemMetadataDeposit;
3480
3421
  readonly data: Bytes;
3481
3422
  }
3482
- /** @name PalletNftsItemMetadataDeposit (389) */
3423
+ /** @name PalletNftsItemMetadataDeposit (391) */
3483
3424
  interface PalletNftsItemMetadataDeposit extends Struct {
3484
3425
  readonly account: Option<AccountId20>;
3485
3426
  readonly amount: u128;
3486
3427
  }
3487
- /** @name PalletNftsAttributeDeposit (392) */
3428
+ /** @name PalletNftsAttributeDeposit (394) */
3488
3429
  interface PalletNftsAttributeDeposit extends Struct {
3489
3430
  readonly account: Option<AccountId20>;
3490
3431
  readonly amount: u128;
3491
3432
  }
3492
- /** @name PalletNftsPendingSwap (396) */
3433
+ /** @name PalletNftsPendingSwap (398) */
3493
3434
  interface PalletNftsPendingSwap extends Struct {
3494
3435
  readonly desiredCollection: u32;
3495
3436
  readonly desiredItem: Option<u32>;
3496
3437
  readonly price: Option<PalletNftsPriceWithDirection>;
3497
3438
  readonly deadline: u32;
3498
3439
  }
3499
- /** @name PalletNftsPalletFeature (398) */
3440
+ /** @name PalletNftsPalletFeature (400) */
3500
3441
  interface PalletNftsPalletFeature extends Enum {
3501
3442
  readonly isTrading: boolean;
3502
3443
  readonly isAttributes: boolean;
@@ -3504,7 +3445,7 @@ declare module "@polkadot/types/lookup" {
3504
3445
  readonly isSwaps: boolean;
3505
3446
  readonly type: "Trading" | "Attributes" | "Approvals" | "Swaps";
3506
3447
  }
3507
- /** @name PalletNftsError (399) */
3448
+ /** @name PalletNftsError (401) */
3508
3449
  interface PalletNftsError extends Enum {
3509
3450
  readonly isNoPermission: boolean;
3510
3451
  readonly isUnknownCollection: boolean;
@@ -3553,32 +3494,32 @@ declare module "@polkadot/types/lookup" {
3553
3494
  readonly isWitnessRequired: boolean;
3554
3495
  readonly type: "NoPermission" | "UnknownCollection" | "AlreadyExists" | "ApprovalExpired" | "WrongOwner" | "BadWitness" | "CollectionIdInUse" | "ItemsNonTransferable" | "NotDelegate" | "WrongDelegate" | "Unapproved" | "Unaccepted" | "ItemLocked" | "LockedItemAttributes" | "LockedCollectionAttributes" | "LockedItemMetadata" | "LockedCollectionMetadata" | "MaxSupplyReached" | "MaxSupplyLocked" | "MaxSupplyTooSmall" | "UnknownItem" | "UnknownSwap" | "MetadataNotFound" | "AttributeNotFound" | "NotForSale" | "BidTooLow" | "ReachedApprovalLimit" | "DeadlineExpired" | "WrongDuration" | "MethodDisabled" | "WrongSetting" | "InconsistentItemConfig" | "NoConfig" | "RolesNotCleared" | "MintNotStarted" | "MintEnded" | "AlreadyClaimed" | "IncorrectData" | "WrongOrigin" | "WrongSignature" | "IncorrectMetadata" | "MaxAttributesLimitReached" | "WrongNamespace" | "CollectionNotEmpty" | "WitnessRequired";
3555
3496
  }
3556
- /** @name FrameSystemExtensionsCheckNonZeroSender (402) */
3497
+ /** @name FrameSystemExtensionsCheckNonZeroSender (404) */
3557
3498
  type FrameSystemExtensionsCheckNonZeroSender = Null;
3558
- /** @name FrameSystemExtensionsCheckSpecVersion (403) */
3499
+ /** @name FrameSystemExtensionsCheckSpecVersion (405) */
3559
3500
  type FrameSystemExtensionsCheckSpecVersion = Null;
3560
- /** @name FrameSystemExtensionsCheckTxVersion (404) */
3501
+ /** @name FrameSystemExtensionsCheckTxVersion (406) */
3561
3502
  type FrameSystemExtensionsCheckTxVersion = Null;
3562
- /** @name FrameSystemExtensionsCheckGenesis (405) */
3503
+ /** @name FrameSystemExtensionsCheckGenesis (407) */
3563
3504
  type FrameSystemExtensionsCheckGenesis = Null;
3564
- /** @name FrameSystemExtensionsCheckNonce (408) */
3505
+ /** @name FrameSystemExtensionsCheckNonce (410) */
3565
3506
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
3566
3507
  }
3567
- /** @name FrameSystemExtensionsCheckWeight (409) */
3508
+ /** @name FrameSystemExtensionsCheckWeight (411) */
3568
3509
  type FrameSystemExtensionsCheckWeight = Null;
3569
- /** @name PalletTransactionPaymentChargeTransactionPayment (410) */
3510
+ /** @name PalletTransactionPaymentChargeTransactionPayment (412) */
3570
3511
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
3571
3512
  }
3572
- /** @name FrameMetadataHashExtensionCheckMetadataHash (411) */
3513
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (413) */
3573
3514
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
3574
3515
  readonly mode: FrameMetadataHashExtensionMode;
3575
3516
  }
3576
- /** @name FrameMetadataHashExtensionMode (412) */
3517
+ /** @name FrameMetadataHashExtensionMode (414) */
3577
3518
  interface FrameMetadataHashExtensionMode extends Enum {
3578
3519
  readonly isDisabled: boolean;
3579
3520
  readonly isEnabled: boolean;
3580
3521
  readonly type: "Disabled" | "Enabled";
3581
3522
  }
3582
- /** @name ShSolochainEvmRuntimeRuntime (414) */
3523
+ /** @name ShSolochainEvmRuntimeRuntime (416) */
3583
3524
  type ShSolochainEvmRuntimeRuntime = Null;
3584
3525
  }