@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
@@ -798,12 +798,6 @@ declare const _default: {
798
798
  bucketId: string;
799
799
  maybeCollectionId: string;
800
800
  };
801
- MoveBucketRequested: {
802
- who: string;
803
- bucketId: string;
804
- newMspId: string;
805
- newValuePropId: string;
806
- };
807
801
  BucketPrivacyUpdated: {
808
802
  who: string;
809
803
  bucketId: string;
@@ -815,6 +809,26 @@ declare const _default: {
815
809
  bucketId: string;
816
810
  collectionId: string;
817
811
  };
812
+ MoveBucketRequested: {
813
+ who: string;
814
+ bucketId: string;
815
+ newMspId: string;
816
+ newValuePropId: string;
817
+ };
818
+ MoveBucketRequestExpired: {
819
+ bucketId: string;
820
+ };
821
+ MoveBucketAccepted: {
822
+ bucketId: string;
823
+ oldMspId: string;
824
+ newMspId: string;
825
+ valuePropId: string;
826
+ };
827
+ MoveBucketRejected: {
828
+ bucketId: string;
829
+ oldMspId: string;
830
+ newMspId: string;
831
+ };
818
832
  NewStorageRequest: {
819
833
  _alias: {
820
834
  size_: string;
@@ -832,6 +846,27 @@ declare const _default: {
832
846
  fileKey: string;
833
847
  fileMetadata: string;
834
848
  };
849
+ StorageRequestFulfilled: {
850
+ fileKey: string;
851
+ };
852
+ StorageRequestExpired: {
853
+ fileKey: string;
854
+ };
855
+ StorageRequestRevoked: {
856
+ fileKey: string;
857
+ };
858
+ StorageRequestRejected: {
859
+ fileKey: string;
860
+ mspId: string;
861
+ bucketId: string;
862
+ reason: string;
863
+ };
864
+ IncompleteStorageRequest: {
865
+ fileKey: string;
866
+ };
867
+ IncompleteStorageRequestCleanedUp: {
868
+ fileKey: string;
869
+ };
835
870
  AcceptedBspVolunteer: {
836
871
  _alias: {
837
872
  size_: string;
@@ -851,20 +886,9 @@ declare const _default: {
851
886
  skippedFileKeys: string;
852
887
  newRoot: string;
853
888
  };
854
- StorageRequestFulfilled: {
855
- fileKey: string;
856
- };
857
- StorageRequestExpired: {
858
- fileKey: string;
859
- };
860
- StorageRequestRevoked: {
861
- fileKey: string;
862
- };
863
- StorageRequestRejected: {
864
- fileKey: string;
865
- mspId: string;
866
- bucketId: string;
867
- reason: string;
889
+ BspChallengeCycleInitialised: {
890
+ who: string;
891
+ bspId: string;
868
892
  };
869
893
  BspRequestedToStopStoring: {
870
894
  bspId: string;
@@ -877,9 +901,10 @@ declare const _default: {
877
901
  fileKey: string;
878
902
  newRoot: string;
879
903
  };
880
- PriorityChallengeForFileDeletionQueued: {
881
- issuer: string;
882
- fileKey: string;
904
+ MspStoppedStoringBucket: {
905
+ mspId: string;
906
+ owner: string;
907
+ bucketId: string;
883
908
  };
884
909
  SpStopStoringInsolventUser: {
885
910
  spId: string;
@@ -893,76 +918,6 @@ declare const _default: {
893
918
  owner: string;
894
919
  bucketId: string;
895
920
  };
896
- FailedToQueuePriorityChallenge: {
897
- fileKey: string;
898
- error: string;
899
- };
900
- FileDeletionRequest: {
901
- user: string;
902
- fileKey: string;
903
- fileSize: string;
904
- bucketId: string;
905
- mspId: string;
906
- proofOfInclusion: string;
907
- };
908
- ProofSubmittedForPendingFileDeletionRequest: {
909
- user: string;
910
- fileKey: string;
911
- fileSize: string;
912
- bucketId: string;
913
- mspId: string;
914
- proofOfInclusion: string;
915
- };
916
- BspChallengeCycleInitialised: {
917
- who: string;
918
- bspId: string;
919
- };
920
- MoveBucketRequestExpired: {
921
- bucketId: string;
922
- };
923
- MoveBucketAccepted: {
924
- bucketId: string;
925
- oldMspId: string;
926
- newMspId: string;
927
- valuePropId: string;
928
- };
929
- MoveBucketRejected: {
930
- bucketId: string;
931
- oldMspId: string;
932
- newMspId: string;
933
- };
934
- MspStoppedStoringBucket: {
935
- mspId: string;
936
- owner: string;
937
- bucketId: string;
938
- };
939
- FailedToGetMspOfBucket: {
940
- bucketId: string;
941
- error: string;
942
- };
943
- FailedToDecreaseMspUsedCapacity: {
944
- user: string;
945
- mspId: string;
946
- fileKey: string;
947
- fileSize: string;
948
- error: string;
949
- };
950
- UsedCapacityShouldBeZero: {
951
- actualUsedCapacity: string;
952
- };
953
- FailedToReleaseStorageRequestCreationDeposit: {
954
- fileKey: string;
955
- owner: string;
956
- amountToReturn: string;
957
- error: string;
958
- };
959
- FailedToTransferDepositFundsToBsp: {
960
- fileKey: string;
961
- owner: string;
962
- bspId: string;
963
- amountToTransfer: string;
964
- error: string;
965
- };
966
921
  FileDeletionRequested: {
967
922
  signedDeleteIntention: string;
968
923
  signature: string;
@@ -982,13 +937,26 @@ declare const _default: {
982
937
  oldRoot: string;
983
938
  newRoot: string;
984
939
  };
985
- IncompleteStorageRequest: {
940
+ UsedCapacityShouldBeZero: {
941
+ actualUsedCapacity: string;
942
+ };
943
+ FailedToReleaseStorageRequestCreationDeposit: {
986
944
  fileKey: string;
945
+ owner: string;
946
+ amountToReturn: string;
947
+ error: string;
948
+ };
949
+ UserOperationPauseFlagsUpdated: {
950
+ _alias: {
951
+ new_: string;
952
+ };
953
+ old: string;
954
+ new_: string;
987
955
  };
988
956
  };
989
957
  };
990
958
  /**
991
- * Lookup109: shp_file_metadata::FileMetadata
959
+ * Lookup113: shp_file_metadata::FileMetadata
992
960
  **/
993
961
  ShpFileMetadataFileMetadata: {
994
962
  owner: string;
@@ -998,7 +966,7 @@ declare const _default: {
998
966
  fingerprint: string;
999
967
  };
1000
968
  /**
1001
- * Lookup110: shp_file_metadata::Fingerprint
969
+ * Lookup114: shp_file_metadata::Fingerprint
1002
970
  **/
1003
971
  ShpFileMetadataFingerprint: string;
1004
972
  /**
@@ -1008,33 +976,24 @@ declare const _default: {
1008
976
  _enum: string[];
1009
977
  };
1010
978
  /**
1011
- * Lookup116: pallet_file_system::types::EitherAccountIdOrMspId<T>
1012
- **/
1013
- PalletFileSystemEitherAccountIdOrMspId: {
1014
- _enum: {
1015
- AccountId: string;
1016
- MspId: string;
1017
- };
1018
- };
1019
- /**
1020
- * Lookup118: pallet_file_system::types::FileOperationIntention<T>
979
+ * Lookup120: pallet_file_system::types::FileOperationIntention<T>
1021
980
  **/
1022
981
  PalletFileSystemFileOperationIntention: {
1023
982
  fileKey: string;
1024
983
  operation: string;
1025
984
  };
1026
985
  /**
1027
- * Lookup119: pallet_file_system::types::FileOperation
986
+ * Lookup121: pallet_file_system::types::FileOperation
1028
987
  **/
1029
988
  PalletFileSystemFileOperation: {
1030
989
  _enum: string[];
1031
990
  };
1032
991
  /**
1033
- * Lookup120: fp_account::EthereumSignature
992
+ * Lookup122: fp_account::EthereumSignature
1034
993
  **/
1035
994
  FpAccountEthereumSignature: string;
1036
995
  /**
1037
- * Lookup125: pallet_proofs_dealer::pallet::Event<T>
996
+ * Lookup128: pallet_proofs_dealer::pallet::Event<T>
1038
997
  **/
1039
998
  PalletProofsDealerEvent: {
1040
999
  _enum: {
@@ -1091,41 +1050,41 @@ declare const _default: {
1091
1050
  };
1092
1051
  };
1093
1052
  /**
1094
- * Lookup126: pallet_proofs_dealer::types::Proof<T>
1053
+ * Lookup129: pallet_proofs_dealer::types::Proof<T>
1095
1054
  **/
1096
1055
  PalletProofsDealerProof: {
1097
1056
  forestProof: string;
1098
1057
  keyProofs: string;
1099
1058
  };
1100
1059
  /**
1101
- * Lookup127: sp_trie::storage_proof::CompactProof
1060
+ * Lookup130: sp_trie::storage_proof::CompactProof
1102
1061
  **/
1103
1062
  SpTrieStorageProofCompactProof: {
1104
1063
  encodedNodes: string;
1105
1064
  };
1106
1065
  /**
1107
- * Lookup130: pallet_proofs_dealer::types::KeyProof<T>
1066
+ * Lookup133: pallet_proofs_dealer::types::KeyProof<T>
1108
1067
  **/
1109
1068
  PalletProofsDealerKeyProof: {
1110
1069
  proof: string;
1111
1070
  challengeCount: string;
1112
1071
  };
1113
1072
  /**
1114
- * Lookup131: shp_file_key_verifier::types::FileKeyProof
1073
+ * Lookup134: shp_file_key_verifier::types::FileKeyProof
1115
1074
  **/
1116
1075
  ShpFileKeyVerifierFileKeyProof: {
1117
1076
  fileMetadata: string;
1118
1077
  proof: string;
1119
1078
  };
1120
1079
  /**
1121
- * Lookup135: pallet_proofs_dealer::types::CustomChallenge<T>
1080
+ * Lookup138: pallet_proofs_dealer::types::CustomChallenge<T>
1122
1081
  **/
1123
1082
  PalletProofsDealerCustomChallenge: {
1124
1083
  key: string;
1125
1084
  shouldRemoveKey: string;
1126
1085
  };
1127
1086
  /**
1128
- * Lookup139: shp_traits::TrieMutation
1087
+ * Lookup142: shp_traits::TrieMutation
1129
1088
  **/
1130
1089
  ShpTraitsTrieMutation: {
1131
1090
  _enum: {
@@ -1134,19 +1093,19 @@ declare const _default: {
1134
1093
  };
1135
1094
  };
1136
1095
  /**
1137
- * Lookup140: shp_traits::TrieAddMutation
1096
+ * Lookup143: shp_traits::TrieAddMutation
1138
1097
  **/
1139
1098
  ShpTraitsTrieAddMutation: {
1140
1099
  value: string;
1141
1100
  };
1142
1101
  /**
1143
- * Lookup141: shp_traits::TrieRemoveMutation
1102
+ * Lookup144: shp_traits::TrieRemoveMutation
1144
1103
  **/
1145
1104
  ShpTraitsTrieRemoveMutation: {
1146
1105
  maybeValue: string;
1147
1106
  };
1148
1107
  /**
1149
- * Lookup143: pallet_randomness::pallet::Event<T>
1108
+ * Lookup146: pallet_randomness::pallet::Event<T>
1150
1109
  **/
1151
1110
  PalletRandomnessEvent: {
1152
1111
  _enum: {
@@ -1158,7 +1117,7 @@ declare const _default: {
1158
1117
  };
1159
1118
  };
1160
1119
  /**
1161
- * Lookup144: pallet_payment_streams::pallet::Event<T>
1120
+ * Lookup147: pallet_payment_streams::pallet::Event<T>
1162
1121
  **/
1163
1122
  PalletPaymentStreamsEvent: {
1164
1123
  _enum: {
@@ -1226,7 +1185,7 @@ declare const _default: {
1226
1185
  };
1227
1186
  };
1228
1187
  /**
1229
- * Lookup146: pallet_bucket_nfts::pallet::Event<T>
1188
+ * Lookup149: pallet_bucket_nfts::pallet::Event<T>
1230
1189
  **/
1231
1190
  PalletBucketNftsEvent: {
1232
1191
  _enum: {
@@ -1247,7 +1206,7 @@ declare const _default: {
1247
1206
  };
1248
1207
  };
1249
1208
  /**
1250
- * Lookup147: pallet_nfts::pallet::Event<T, I>
1209
+ * Lookup150: pallet_nfts::pallet::Event<T, I>
1251
1210
  **/
1252
1211
  PalletNftsEvent: {
1253
1212
  _enum: {
@@ -1448,7 +1407,7 @@ declare const _default: {
1448
1407
  };
1449
1408
  };
1450
1409
  /**
1451
- * Lookup151: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
1410
+ * Lookup154: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
1452
1411
  **/
1453
1412
  PalletNftsAttributeNamespace: {
1454
1413
  _enum: {
@@ -1459,20 +1418,20 @@ declare const _default: {
1459
1418
  };
1460
1419
  };
1461
1420
  /**
1462
- * Lookup153: pallet_nfts::types::PriceWithDirection<Amount>
1421
+ * Lookup156: pallet_nfts::types::PriceWithDirection<Amount>
1463
1422
  **/
1464
1423
  PalletNftsPriceWithDirection: {
1465
1424
  amount: string;
1466
1425
  direction: string;
1467
1426
  };
1468
1427
  /**
1469
- * Lookup154: pallet_nfts::types::PriceDirection
1428
+ * Lookup157: pallet_nfts::types::PriceDirection
1470
1429
  **/
1471
1430
  PalletNftsPriceDirection: {
1472
1431
  _enum: string[];
1473
1432
  };
1474
1433
  /**
1475
- * Lookup155: pallet_nfts::types::PalletAttributes<CollectionId>
1434
+ * Lookup158: pallet_nfts::types::PalletAttributes<CollectionId>
1476
1435
  **/
1477
1436
  PalletNftsPalletAttributes: {
1478
1437
  _enum: {
@@ -1481,7 +1440,7 @@ declare const _default: {
1481
1440
  };
1482
1441
  };
1483
1442
  /**
1484
- * Lookup156: frame_system::Phase
1443
+ * Lookup159: frame_system::Phase
1485
1444
  **/
1486
1445
  FrameSystemPhase: {
1487
1446
  _enum: {
@@ -1491,21 +1450,21 @@ declare const _default: {
1491
1450
  };
1492
1451
  };
1493
1452
  /**
1494
- * Lookup159: frame_system::LastRuntimeUpgradeInfo
1453
+ * Lookup162: frame_system::LastRuntimeUpgradeInfo
1495
1454
  **/
1496
1455
  FrameSystemLastRuntimeUpgradeInfo: {
1497
1456
  specVersion: string;
1498
1457
  specName: string;
1499
1458
  };
1500
1459
  /**
1501
- * Lookup161: frame_system::CodeUpgradeAuthorization<T>
1460
+ * Lookup164: frame_system::CodeUpgradeAuthorization<T>
1502
1461
  **/
1503
1462
  FrameSystemCodeUpgradeAuthorization: {
1504
1463
  codeHash: string;
1505
1464
  checkVersion: string;
1506
1465
  };
1507
1466
  /**
1508
- * Lookup162: frame_system::pallet::Call<T>
1467
+ * Lookup165: frame_system::pallet::Call<T>
1509
1468
  **/
1510
1469
  FrameSystemCall: {
1511
1470
  _enum: {
@@ -1550,7 +1509,7 @@ declare const _default: {
1550
1509
  };
1551
1510
  };
1552
1511
  /**
1553
- * Lookup165: frame_system::limits::BlockWeights
1512
+ * Lookup168: frame_system::limits::BlockWeights
1554
1513
  **/
1555
1514
  FrameSystemLimitsBlockWeights: {
1556
1515
  baseBlock: string;
@@ -1558,7 +1517,7 @@ declare const _default: {
1558
1517
  perClass: string;
1559
1518
  };
1560
1519
  /**
1561
- * Lookup166: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1520
+ * Lookup169: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1562
1521
  **/
1563
1522
  FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1564
1523
  normal: string;
@@ -1566,7 +1525,7 @@ declare const _default: {
1566
1525
  mandatory: string;
1567
1526
  };
1568
1527
  /**
1569
- * Lookup167: frame_system::limits::WeightsPerClass
1528
+ * Lookup170: frame_system::limits::WeightsPerClass
1570
1529
  **/
1571
1530
  FrameSystemLimitsWeightsPerClass: {
1572
1531
  baseExtrinsic: string;
@@ -1575,13 +1534,13 @@ declare const _default: {
1575
1534
  reserved: string;
1576
1535
  };
1577
1536
  /**
1578
- * Lookup169: frame_system::limits::BlockLength
1537
+ * Lookup172: frame_system::limits::BlockLength
1579
1538
  **/
1580
1539
  FrameSystemLimitsBlockLength: {
1581
1540
  max: string;
1582
1541
  };
1583
1542
  /**
1584
- * Lookup170: frame_support::dispatch::PerDispatchClass<T>
1543
+ * Lookup173: frame_support::dispatch::PerDispatchClass<T>
1585
1544
  **/
1586
1545
  FrameSupportDispatchPerDispatchClassU32: {
1587
1546
  normal: string;
@@ -1589,14 +1548,14 @@ declare const _default: {
1589
1548
  mandatory: string;
1590
1549
  };
1591
1550
  /**
1592
- * Lookup171: sp_weights::RuntimeDbWeight
1551
+ * Lookup174: sp_weights::RuntimeDbWeight
1593
1552
  **/
1594
1553
  SpWeightsRuntimeDbWeight: {
1595
1554
  read: string;
1596
1555
  write: string;
1597
1556
  };
1598
1557
  /**
1599
- * Lookup172: sp_version::RuntimeVersion
1558
+ * Lookup175: sp_version::RuntimeVersion
1600
1559
  **/
1601
1560
  SpVersionRuntimeVersion: {
1602
1561
  specName: string;
@@ -1609,17 +1568,17 @@ declare const _default: {
1609
1568
  systemVersion: string;
1610
1569
  };
1611
1570
  /**
1612
- * Lookup178: frame_system::pallet::Error<T>
1571
+ * Lookup181: frame_system::pallet::Error<T>
1613
1572
  **/
1614
1573
  FrameSystemError: {
1615
1574
  _enum: string[];
1616
1575
  };
1617
1576
  /**
1618
- * Lookup181: sp_consensus_babe::app::Public
1577
+ * Lookup184: sp_consensus_babe::app::Public
1619
1578
  **/
1620
1579
  SpConsensusBabeAppPublic: string;
1621
1580
  /**
1622
- * Lookup184: sp_consensus_babe::digests::NextConfigDescriptor
1581
+ * Lookup187: sp_consensus_babe::digests::NextConfigDescriptor
1623
1582
  **/
1624
1583
  SpConsensusBabeDigestsNextConfigDescriptor: {
1625
1584
  _enum: {
@@ -1631,13 +1590,13 @@ declare const _default: {
1631
1590
  };
1632
1591
  };
1633
1592
  /**
1634
- * Lookup186: sp_consensus_babe::AllowedSlots
1593
+ * Lookup189: sp_consensus_babe::AllowedSlots
1635
1594
  **/
1636
1595
  SpConsensusBabeAllowedSlots: {
1637
1596
  _enum: string[];
1638
1597
  };
1639
1598
  /**
1640
- * Lookup190: sp_consensus_babe::digests::PreDigest
1599
+ * Lookup193: sp_consensus_babe::digests::PreDigest
1641
1600
  **/
1642
1601
  SpConsensusBabeDigestsPreDigest: {
1643
1602
  _enum: {
@@ -1648,7 +1607,7 @@ declare const _default: {
1648
1607
  };
1649
1608
  };
1650
1609
  /**
1651
- * Lookup191: sp_consensus_babe::digests::PrimaryPreDigest
1610
+ * Lookup194: sp_consensus_babe::digests::PrimaryPreDigest
1652
1611
  **/
1653
1612
  SpConsensusBabeDigestsPrimaryPreDigest: {
1654
1613
  authorityIndex: string;
@@ -1656,21 +1615,21 @@ declare const _default: {
1656
1615
  vrfSignature: string;
1657
1616
  };
1658
1617
  /**
1659
- * Lookup192: sp_core::sr25519::vrf::VrfSignature
1618
+ * Lookup195: sp_core::sr25519::vrf::VrfSignature
1660
1619
  **/
1661
1620
  SpCoreSr25519VrfVrfSignature: {
1662
1621
  preOutput: string;
1663
1622
  proof: string;
1664
1623
  };
1665
1624
  /**
1666
- * Lookup194: sp_consensus_babe::digests::SecondaryPlainPreDigest
1625
+ * Lookup197: sp_consensus_babe::digests::SecondaryPlainPreDigest
1667
1626
  **/
1668
1627
  SpConsensusBabeDigestsSecondaryPlainPreDigest: {
1669
1628
  authorityIndex: string;
1670
1629
  slot: string;
1671
1630
  };
1672
1631
  /**
1673
- * Lookup195: sp_consensus_babe::digests::SecondaryVRFPreDigest
1632
+ * Lookup198: sp_consensus_babe::digests::SecondaryVRFPreDigest
1674
1633
  **/
1675
1634
  SpConsensusBabeDigestsSecondaryVRFPreDigest: {
1676
1635
  authorityIndex: string;
@@ -1678,14 +1637,14 @@ declare const _default: {
1678
1637
  vrfSignature: string;
1679
1638
  };
1680
1639
  /**
1681
- * Lookup197: sp_consensus_babe::BabeEpochConfiguration
1640
+ * Lookup200: sp_consensus_babe::BabeEpochConfiguration
1682
1641
  **/
1683
1642
  SpConsensusBabeBabeEpochConfiguration: {
1684
1643
  c: string;
1685
1644
  allowedSlots: string;
1686
1645
  };
1687
1646
  /**
1688
- * Lookup201: pallet_babe::pallet::Call<T>
1647
+ * Lookup204: pallet_babe::pallet::Call<T>
1689
1648
  **/
1690
1649
  PalletBabeCall: {
1691
1650
  _enum: {
@@ -1703,7 +1662,7 @@ declare const _default: {
1703
1662
  };
1704
1663
  };
1705
1664
  /**
1706
- * Lookup202: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
1665
+ * Lookup205: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
1707
1666
  **/
1708
1667
  SpConsensusSlotsEquivocationProof: {
1709
1668
  offender: string;
@@ -1712,7 +1671,7 @@ declare const _default: {
1712
1671
  secondHeader: string;
1713
1672
  };
1714
1673
  /**
1715
- * Lookup203: sp_runtime::generic::header::Header<Number, Hash>
1674
+ * Lookup206: sp_runtime::generic::header::Header<Number, Hash>
1716
1675
  **/
1717
1676
  SpRuntimeHeader: {
1718
1677
  parentHash: string;
@@ -1722,7 +1681,7 @@ declare const _default: {
1722
1681
  digest: string;
1723
1682
  };
1724
1683
  /**
1725
- * Lookup204: sp_session::MembershipProof
1684
+ * Lookup207: sp_session::MembershipProof
1726
1685
  **/
1727
1686
  SpSessionMembershipProof: {
1728
1687
  session: string;
@@ -1730,13 +1689,13 @@ declare const _default: {
1730
1689
  validatorCount: string;
1731
1690
  };
1732
1691
  /**
1733
- * Lookup205: pallet_babe::pallet::Error<T>
1692
+ * Lookup208: pallet_babe::pallet::Error<T>
1734
1693
  **/
1735
1694
  PalletBabeError: {
1736
1695
  _enum: string[];
1737
1696
  };
1738
1697
  /**
1739
- * Lookup206: pallet_timestamp::pallet::Call<T>
1698
+ * Lookup209: pallet_timestamp::pallet::Call<T>
1740
1699
  **/
1741
1700
  PalletTimestampCall: {
1742
1701
  _enum: {
@@ -1746,7 +1705,7 @@ declare const _default: {
1746
1705
  };
1747
1706
  };
1748
1707
  /**
1749
- * Lookup208: pallet_balances::types::BalanceLock<Balance>
1708
+ * Lookup211: pallet_balances::types::BalanceLock<Balance>
1750
1709
  **/
1751
1710
  PalletBalancesBalanceLock: {
1752
1711
  id: string;
@@ -1754,27 +1713,27 @@ declare const _default: {
1754
1713
  reasons: string;
1755
1714
  };
1756
1715
  /**
1757
- * Lookup209: pallet_balances::types::Reasons
1716
+ * Lookup212: pallet_balances::types::Reasons
1758
1717
  **/
1759
1718
  PalletBalancesReasons: {
1760
1719
  _enum: string[];
1761
1720
  };
1762
1721
  /**
1763
- * Lookup212: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1722
+ * Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1764
1723
  **/
1765
1724
  PalletBalancesReserveData: {
1766
1725
  id: string;
1767
1726
  amount: string;
1768
1727
  };
1769
1728
  /**
1770
- * Lookup215: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
1729
+ * Lookup218: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
1771
1730
  **/
1772
1731
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
1773
1732
  id: string;
1774
1733
  amount: string;
1775
1734
  };
1776
1735
  /**
1777
- * Lookup216: sh_solochain_evm_runtime::RuntimeHoldReason
1736
+ * Lookup219: sh_solochain_evm_runtime::RuntimeHoldReason
1778
1737
  **/
1779
1738
  ShSolochainEvmRuntimeRuntimeHoldReason: {
1780
1739
  _enum: {
@@ -1866,36 +1825,36 @@ declare const _default: {
1866
1825
  };
1867
1826
  };
1868
1827
  /**
1869
- * Lookup217: pallet_storage_providers::pallet::HoldReason
1828
+ * Lookup220: pallet_storage_providers::pallet::HoldReason
1870
1829
  **/
1871
1830
  PalletStorageProvidersHoldReason: {
1872
1831
  _enum: string[];
1873
1832
  };
1874
1833
  /**
1875
- * Lookup218: pallet_file_system::pallet::HoldReason
1834
+ * Lookup221: pallet_file_system::pallet::HoldReason
1876
1835
  **/
1877
1836
  PalletFileSystemHoldReason: {
1878
1837
  _enum: string[];
1879
1838
  };
1880
1839
  /**
1881
- * Lookup219: pallet_payment_streams::pallet::HoldReason
1840
+ * Lookup222: pallet_payment_streams::pallet::HoldReason
1882
1841
  **/
1883
1842
  PalletPaymentStreamsHoldReason: {
1884
1843
  _enum: string[];
1885
1844
  };
1886
1845
  /**
1887
- * Lookup222: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
1846
+ * Lookup225: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
1888
1847
  **/
1889
1848
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
1890
1849
  id: string;
1891
1850
  amount: string;
1892
1851
  };
1893
1852
  /**
1894
- * Lookup223: sh_solochain_evm_runtime::RuntimeFreezeReason
1853
+ * Lookup226: sh_solochain_evm_runtime::RuntimeFreezeReason
1895
1854
  **/
1896
1855
  ShSolochainEvmRuntimeRuntimeFreezeReason: string;
1897
1856
  /**
1898
- * Lookup225: pallet_balances::pallet::Call<T, I>
1857
+ * Lookup228: pallet_balances::pallet::Call<T, I>
1899
1858
  **/
1900
1859
  PalletBalancesCall: {
1901
1860
  _enum: {
@@ -1940,37 +1899,37 @@ declare const _default: {
1940
1899
  };
1941
1900
  };
1942
1901
  /**
1943
- * Lookup227: pallet_balances::types::AdjustmentDirection
1902
+ * Lookup230: pallet_balances::types::AdjustmentDirection
1944
1903
  **/
1945
1904
  PalletBalancesAdjustmentDirection: {
1946
1905
  _enum: string[];
1947
1906
  };
1948
1907
  /**
1949
- * Lookup228: pallet_balances::pallet::Error<T, I>
1908
+ * Lookup231: pallet_balances::pallet::Error<T, I>
1950
1909
  **/
1951
1910
  PalletBalancesError: {
1952
1911
  _enum: string[];
1953
1912
  };
1954
1913
  /**
1955
- * Lookup229: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
1914
+ * Lookup232: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
1956
1915
  **/
1957
1916
  SpStakingOffenceOffenceDetails: {
1958
1917
  offender: string;
1959
1918
  reporters: string;
1960
1919
  };
1961
1920
  /**
1962
- * Lookup235: sh_solochain_evm_runtime::SessionKeys
1921
+ * Lookup238: sh_solochain_evm_runtime::SessionKeys
1963
1922
  **/
1964
1923
  ShSolochainEvmRuntimeSessionKeys: {
1965
1924
  babe: string;
1966
1925
  grandpa: string;
1967
1926
  };
1968
1927
  /**
1969
- * Lookup237: sp_core::crypto::KeyTypeId
1928
+ * Lookup240: sp_core::crypto::KeyTypeId
1970
1929
  **/
1971
1930
  SpCoreCryptoKeyTypeId: string;
1972
1931
  /**
1973
- * Lookup238: pallet_session::pallet::Call<T>
1932
+ * Lookup241: pallet_session::pallet::Call<T>
1974
1933
  **/
1975
1934
  PalletSessionCall: {
1976
1935
  _enum: {
@@ -1985,13 +1944,13 @@ declare const _default: {
1985
1944
  };
1986
1945
  };
1987
1946
  /**
1988
- * Lookup239: pallet_session::pallet::Error<T>
1947
+ * Lookup242: pallet_session::pallet::Error<T>
1989
1948
  **/
1990
1949
  PalletSessionError: {
1991
1950
  _enum: string[];
1992
1951
  };
1993
1952
  /**
1994
- * Lookup240: pallet_grandpa::StoredState<N>
1953
+ * Lookup243: pallet_grandpa::StoredState<N>
1995
1954
  **/
1996
1955
  PalletGrandpaStoredState: {
1997
1956
  _enum: {
@@ -2008,7 +1967,7 @@ declare const _default: {
2008
1967
  };
2009
1968
  };
2010
1969
  /**
2011
- * Lookup241: pallet_grandpa::StoredPendingChange<N, Limit>
1970
+ * Lookup244: pallet_grandpa::StoredPendingChange<N, Limit>
2012
1971
  **/
2013
1972
  PalletGrandpaStoredPendingChange: {
2014
1973
  scheduledAt: string;
@@ -2017,7 +1976,7 @@ declare const _default: {
2017
1976
  forced: string;
2018
1977
  };
2019
1978
  /**
2020
- * Lookup243: pallet_grandpa::pallet::Call<T>
1979
+ * Lookup246: pallet_grandpa::pallet::Call<T>
2021
1980
  **/
2022
1981
  PalletGrandpaCall: {
2023
1982
  _enum: {
@@ -2036,14 +1995,14 @@ declare const _default: {
2036
1995
  };
2037
1996
  };
2038
1997
  /**
2039
- * Lookup244: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
1998
+ * Lookup247: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
2040
1999
  **/
2041
2000
  SpConsensusGrandpaEquivocationProof: {
2042
2001
  setId: string;
2043
2002
  equivocation: string;
2044
2003
  };
2045
2004
  /**
2046
- * Lookup245: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
2005
+ * Lookup248: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
2047
2006
  **/
2048
2007
  SpConsensusGrandpaEquivocation: {
2049
2008
  _enum: {
@@ -2052,7 +2011,7 @@ declare const _default: {
2052
2011
  };
2053
2012
  };
2054
2013
  /**
2055
- * Lookup246: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2014
+ * Lookup249: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2056
2015
  **/
2057
2016
  FinalityGrandpaEquivocationPrevote: {
2058
2017
  roundNumber: string;
@@ -2061,18 +2020,18 @@ declare const _default: {
2061
2020
  second: string;
2062
2021
  };
2063
2022
  /**
2064
- * Lookup247: finality_grandpa::Prevote<primitive_types::H256, N>
2023
+ * Lookup250: finality_grandpa::Prevote<primitive_types::H256, N>
2065
2024
  **/
2066
2025
  FinalityGrandpaPrevote: {
2067
2026
  targetHash: string;
2068
2027
  targetNumber: string;
2069
2028
  };
2070
2029
  /**
2071
- * Lookup248: sp_consensus_grandpa::app::Signature
2030
+ * Lookup251: sp_consensus_grandpa::app::Signature
2072
2031
  **/
2073
2032
  SpConsensusGrandpaAppSignature: string;
2074
2033
  /**
2075
- * Lookup250: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2034
+ * Lookup253: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
2076
2035
  **/
2077
2036
  FinalityGrandpaEquivocationPrecommit: {
2078
2037
  roundNumber: string;
@@ -2081,26 +2040,26 @@ declare const _default: {
2081
2040
  second: string;
2082
2041
  };
2083
2042
  /**
2084
- * Lookup251: finality_grandpa::Precommit<primitive_types::H256, N>
2043
+ * Lookup254: finality_grandpa::Precommit<primitive_types::H256, N>
2085
2044
  **/
2086
2045
  FinalityGrandpaPrecommit: {
2087
2046
  targetHash: string;
2088
2047
  targetNumber: string;
2089
2048
  };
2090
2049
  /**
2091
- * Lookup253: pallet_grandpa::pallet::Error<T>
2050
+ * Lookup256: pallet_grandpa::pallet::Error<T>
2092
2051
  **/
2093
2052
  PalletGrandpaError: {
2094
2053
  _enum: string[];
2095
2054
  };
2096
2055
  /**
2097
- * Lookup255: pallet_transaction_payment::Releases
2056
+ * Lookup258: pallet_transaction_payment::Releases
2098
2057
  **/
2099
2058
  PalletTransactionPaymentReleases: {
2100
2059
  _enum: string[];
2101
2060
  };
2102
2061
  /**
2103
- * Lookup256: pallet_parameters::pallet::Call<T>
2062
+ * Lookup259: pallet_parameters::pallet::Call<T>
2104
2063
  **/
2105
2064
  PalletParametersCall: {
2106
2065
  _enum: {
@@ -2110,7 +2069,7 @@ declare const _default: {
2110
2069
  };
2111
2070
  };
2112
2071
  /**
2113
- * Lookup257: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
2072
+ * Lookup260: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
2114
2073
  **/
2115
2074
  ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
2116
2075
  _enum: {
@@ -2118,7 +2077,7 @@ declare const _default: {
2118
2077
  };
2119
2078
  };
2120
2079
  /**
2121
- * Lookup258: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
2080
+ * Lookup261: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
2122
2081
  **/
2123
2082
  ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
2124
2083
  _enum: {
@@ -2155,7 +2114,7 @@ declare const _default: {
2155
2114
  };
2156
2115
  };
2157
2116
  /**
2158
- * Lookup261: pallet_sudo::pallet::Call<T>
2117
+ * Lookup264: pallet_sudo::pallet::Call<T>
2159
2118
  **/
2160
2119
  PalletSudoCall: {
2161
2120
  _enum: {
@@ -2180,7 +2139,7 @@ declare const _default: {
2180
2139
  };
2181
2140
  };
2182
2141
  /**
2183
- * Lookup263: pallet_ethereum::pallet::Call<T>
2142
+ * Lookup266: pallet_ethereum::pallet::Call<T>
2184
2143
  **/
2185
2144
  PalletEthereumCall: {
2186
2145
  _enum: {
@@ -2190,7 +2149,7 @@ declare const _default: {
2190
2149
  };
2191
2150
  };
2192
2151
  /**
2193
- * Lookup264: ethereum::transaction::TransactionV2
2152
+ * Lookup267: ethereum::transaction::TransactionV2
2194
2153
  **/
2195
2154
  EthereumTransactionTransactionV2: {
2196
2155
  _enum: {
@@ -2200,7 +2159,7 @@ declare const _default: {
2200
2159
  };
2201
2160
  };
2202
2161
  /**
2203
- * Lookup265: ethereum::transaction::legacy::LegacyTransaction
2162
+ * Lookup268: ethereum::transaction::legacy::LegacyTransaction
2204
2163
  **/
2205
2164
  EthereumTransactionLegacyLegacyTransaction: {
2206
2165
  nonce: string;
@@ -2212,7 +2171,7 @@ declare const _default: {
2212
2171
  signature: string;
2213
2172
  };
2214
2173
  /**
2215
- * Lookup268: ethereum::transaction::legacy::TransactionAction
2174
+ * Lookup271: ethereum::transaction::legacy::TransactionAction
2216
2175
  **/
2217
2176
  EthereumTransactionLegacyTransactionAction: {
2218
2177
  _enum: {
@@ -2221,7 +2180,7 @@ declare const _default: {
2221
2180
  };
2222
2181
  };
2223
2182
  /**
2224
- * Lookup269: ethereum::transaction::legacy::TransactionSignature
2183
+ * Lookup272: ethereum::transaction::legacy::TransactionSignature
2225
2184
  **/
2226
2185
  EthereumTransactionLegacyTransactionSignature: {
2227
2186
  v: string;
@@ -2229,7 +2188,7 @@ declare const _default: {
2229
2188
  s: string;
2230
2189
  };
2231
2190
  /**
2232
- * Lookup271: ethereum::transaction::eip2930::EIP2930Transaction
2191
+ * Lookup274: ethereum::transaction::eip2930::EIP2930Transaction
2233
2192
  **/
2234
2193
  EthereumTransactionEip2930Eip2930Transaction: {
2235
2194
  chainId: string;
@@ -2245,14 +2204,14 @@ declare const _default: {
2245
2204
  s: string;
2246
2205
  };
2247
2206
  /**
2248
- * Lookup273: ethereum::transaction::eip2930::AccessListItem
2207
+ * Lookup276: ethereum::transaction::eip2930::AccessListItem
2249
2208
  **/
2250
2209
  EthereumTransactionEip2930AccessListItem: {
2251
2210
  address: string;
2252
2211
  storageKeys: string;
2253
2212
  };
2254
2213
  /**
2255
- * Lookup274: ethereum::transaction::eip1559::EIP1559Transaction
2214
+ * Lookup277: ethereum::transaction::eip1559::EIP1559Transaction
2256
2215
  **/
2257
2216
  EthereumTransactionEip1559Eip1559Transaction: {
2258
2217
  chainId: string;
@@ -2269,7 +2228,7 @@ declare const _default: {
2269
2228
  s: string;
2270
2229
  };
2271
2230
  /**
2272
- * Lookup275: pallet_evm::pallet::Call<T>
2231
+ * Lookup278: pallet_evm::pallet::Call<T>
2273
2232
  **/
2274
2233
  PalletEvmCall: {
2275
2234
  _enum: {
@@ -2312,7 +2271,7 @@ declare const _default: {
2312
2271
  };
2313
2272
  };
2314
2273
  /**
2315
- * Lookup279: pallet_storage_providers::pallet::Call<T>
2274
+ * Lookup282: pallet_storage_providers::pallet::Call<T>
2316
2275
  **/
2317
2276
  PalletStorageProvidersCall: {
2318
2277
  _enum: {
@@ -2383,7 +2342,7 @@ declare const _default: {
2383
2342
  };
2384
2343
  };
2385
2344
  /**
2386
- * Lookup280: pallet_file_system::pallet::Call<T>
2345
+ * Lookup283: pallet_file_system::pallet::Call<T>
2387
2346
  **/
2388
2347
  PalletFileSystemCall: {
2389
2348
  _enum: {
@@ -2493,16 +2452,19 @@ declare const _default: {
2493
2452
  bspId: string;
2494
2453
  forestProof: string;
2495
2454
  };
2455
+ set_user_operation_pause_flags: {
2456
+ newFlags: string;
2457
+ };
2496
2458
  };
2497
2459
  };
2498
2460
  /**
2499
- * Lookup281: pallet_file_system::types::BucketMoveRequestResponse
2461
+ * Lookup284: pallet_file_system::types::BucketMoveRequestResponse
2500
2462
  **/
2501
2463
  PalletFileSystemBucketMoveRequestResponse: {
2502
2464
  _enum: string[];
2503
2465
  };
2504
2466
  /**
2505
- * Lookup282: pallet_file_system::types::ReplicationTarget<T>
2467
+ * Lookup285: pallet_file_system::types::ReplicationTarget<T>
2506
2468
  **/
2507
2469
  PalletFileSystemReplicationTarget: {
2508
2470
  _enum: {
@@ -2515,7 +2477,7 @@ declare const _default: {
2515
2477
  };
2516
2478
  };
2517
2479
  /**
2518
- * Lookup284: pallet_file_system::types::StorageRequestMspBucketResponse<T>
2480
+ * Lookup287: pallet_file_system::types::StorageRequestMspBucketResponse<T>
2519
2481
  **/
2520
2482
  PalletFileSystemStorageRequestMspBucketResponse: {
2521
2483
  bucketId: string;
@@ -2523,28 +2485,28 @@ declare const _default: {
2523
2485
  reject: string;
2524
2486
  };
2525
2487
  /**
2526
- * Lookup286: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
2488
+ * Lookup289: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
2527
2489
  **/
2528
2490
  PalletFileSystemStorageRequestMspAcceptedFileKeys: {
2529
2491
  fileKeysAndProofs: string;
2530
2492
  forestProof: string;
2531
2493
  };
2532
2494
  /**
2533
- * Lookup288: pallet_file_system::types::FileKeyWithProof<T>
2495
+ * Lookup291: pallet_file_system::types::FileKeyWithProof<T>
2534
2496
  **/
2535
2497
  PalletFileSystemFileKeyWithProof: {
2536
2498
  fileKey: string;
2537
2499
  proof: string;
2538
2500
  };
2539
2501
  /**
2540
- * Lookup290: pallet_file_system::types::RejectedStorageRequest<T>
2502
+ * Lookup293: pallet_file_system::types::RejectedStorageRequest<T>
2541
2503
  **/
2542
2504
  PalletFileSystemRejectedStorageRequest: {
2543
2505
  fileKey: string;
2544
2506
  reason: string;
2545
2507
  };
2546
2508
  /**
2547
- * Lookup293: pallet_file_system::types::FileDeletionRequest<T>
2509
+ * Lookup296: pallet_file_system::types::FileDeletionRequest<T>
2548
2510
  **/
2549
2511
  PalletFileSystemFileDeletionRequest: {
2550
2512
  _alias: {
@@ -2559,7 +2521,7 @@ declare const _default: {
2559
2521
  fingerprint: string;
2560
2522
  };
2561
2523
  /**
2562
- * Lookup295: pallet_proofs_dealer::pallet::Call<T>
2524
+ * Lookup298: pallet_proofs_dealer::pallet::Call<T>
2563
2525
  **/
2564
2526
  PalletProofsDealerCall: {
2565
2527
  _enum: {
@@ -2583,13 +2545,13 @@ declare const _default: {
2583
2545
  };
2584
2546
  };
2585
2547
  /**
2586
- * Lookup296: pallet_randomness::pallet::Call<T>
2548
+ * Lookup299: pallet_randomness::pallet::Call<T>
2587
2549
  **/
2588
2550
  PalletRandomnessCall: {
2589
2551
  _enum: string[];
2590
2552
  };
2591
2553
  /**
2592
- * Lookup297: pallet_payment_streams::pallet::Call<T>
2554
+ * Lookup300: pallet_payment_streams::pallet::Call<T>
2593
2555
  **/
2594
2556
  PalletPaymentStreamsCall: {
2595
2557
  _enum: {
@@ -2634,7 +2596,7 @@ declare const _default: {
2634
2596
  };
2635
2597
  };
2636
2598
  /**
2637
- * Lookup298: pallet_bucket_nfts::pallet::Call<T>
2599
+ * Lookup301: pallet_bucket_nfts::pallet::Call<T>
2638
2600
  **/
2639
2601
  PalletBucketNftsCall: {
2640
2602
  _enum: {
@@ -2652,7 +2614,7 @@ declare const _default: {
2652
2614
  };
2653
2615
  };
2654
2616
  /**
2655
- * Lookup300: pallet_nfts::pallet::Call<T, I>
2617
+ * Lookup303: pallet_nfts::pallet::Call<T, I>
2656
2618
  **/
2657
2619
  PalletNftsCall: {
2658
2620
  _enum: {
@@ -2849,7 +2811,7 @@ declare const _default: {
2849
2811
  };
2850
2812
  };
2851
2813
  /**
2852
- * Lookup301: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
2814
+ * Lookup304: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
2853
2815
  **/
2854
2816
  PalletNftsCollectionConfig: {
2855
2817
  settings: string;
@@ -2857,13 +2819,13 @@ declare const _default: {
2857
2819
  mintSettings: string;
2858
2820
  };
2859
2821
  /**
2860
- * Lookup303: pallet_nfts::types::CollectionSetting
2822
+ * Lookup306: pallet_nfts::types::CollectionSetting
2861
2823
  **/
2862
2824
  PalletNftsCollectionSetting: {
2863
2825
  _enum: string[];
2864
2826
  };
2865
2827
  /**
2866
- * Lookup304: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
2828
+ * Lookup307: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
2867
2829
  **/
2868
2830
  PalletNftsMintSettings: {
2869
2831
  mintType: string;
@@ -2873,7 +2835,7 @@ declare const _default: {
2873
2835
  defaultItemSettings: string;
2874
2836
  };
2875
2837
  /**
2876
- * Lookup305: pallet_nfts::types::MintType<CollectionId>
2838
+ * Lookup308: pallet_nfts::types::MintType<CollectionId>
2877
2839
  **/
2878
2840
  PalletNftsMintType: {
2879
2841
  _enum: {
@@ -2883,13 +2845,13 @@ declare const _default: {
2883
2845
  };
2884
2846
  };
2885
2847
  /**
2886
- * Lookup307: pallet_nfts::types::ItemSetting
2848
+ * Lookup310: pallet_nfts::types::ItemSetting
2887
2849
  **/
2888
2850
  PalletNftsItemSetting: {
2889
2851
  _enum: string[];
2890
2852
  };
2891
2853
  /**
2892
- * Lookup308: pallet_nfts::types::DestroyWitness
2854
+ * Lookup311: pallet_nfts::types::DestroyWitness
2893
2855
  **/
2894
2856
  PalletNftsDestroyWitness: {
2895
2857
  itemMetadatas: string;
@@ -2897,26 +2859,26 @@ declare const _default: {
2897
2859
  attributes: string;
2898
2860
  };
2899
2861
  /**
2900
- * Lookup310: pallet_nfts::types::MintWitness<ItemId, Balance>
2862
+ * Lookup313: pallet_nfts::types::MintWitness<ItemId, Balance>
2901
2863
  **/
2902
2864
  PalletNftsMintWitness: {
2903
2865
  ownedItem: string;
2904
2866
  mintPrice: string;
2905
2867
  };
2906
2868
  /**
2907
- * Lookup311: pallet_nfts::types::ItemConfig
2869
+ * Lookup314: pallet_nfts::types::ItemConfig
2908
2870
  **/
2909
2871
  PalletNftsItemConfig: {
2910
2872
  settings: string;
2911
2873
  };
2912
2874
  /**
2913
- * Lookup312: pallet_nfts::types::CancelAttributesApprovalWitness
2875
+ * Lookup315: pallet_nfts::types::CancelAttributesApprovalWitness
2914
2876
  **/
2915
2877
  PalletNftsCancelAttributesApprovalWitness: {
2916
2878
  accountAttributes: string;
2917
2879
  };
2918
2880
  /**
2919
- * Lookup314: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
2881
+ * Lookup317: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
2920
2882
  **/
2921
2883
  PalletNftsItemTip: {
2922
2884
  collection: string;
@@ -2925,7 +2887,7 @@ declare const _default: {
2925
2887
  amount: string;
2926
2888
  };
2927
2889
  /**
2928
- * Lookup316: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
2890
+ * Lookup319: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
2929
2891
  **/
2930
2892
  PalletNftsPreSignedMint: {
2931
2893
  collection: string;
@@ -2937,7 +2899,7 @@ declare const _default: {
2937
2899
  mintPrice: string;
2938
2900
  };
2939
2901
  /**
2940
- * Lookup317: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
2902
+ * Lookup320: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
2941
2903
  **/
2942
2904
  PalletNftsPreSignedAttributes: {
2943
2905
  collection: string;
@@ -2947,13 +2909,13 @@ declare const _default: {
2947
2909
  deadline: string;
2948
2910
  };
2949
2911
  /**
2950
- * Lookup318: pallet_sudo::pallet::Error<T>
2912
+ * Lookup321: pallet_sudo::pallet::Error<T>
2951
2913
  **/
2952
2914
  PalletSudoError: {
2953
2915
  _enum: string[];
2954
2916
  };
2955
2917
  /**
2956
- * Lookup320: fp_rpc::TransactionStatus
2918
+ * Lookup323: fp_rpc::TransactionStatus
2957
2919
  **/
2958
2920
  FpRpcTransactionStatus: {
2959
2921
  transactionHash: string;
@@ -2965,11 +2927,11 @@ declare const _default: {
2965
2927
  logsBloom: string;
2966
2928
  };
2967
2929
  /**
2968
- * Lookup323: ethbloom::Bloom
2930
+ * Lookup326: ethbloom::Bloom
2969
2931
  **/
2970
2932
  EthbloomBloom: string;
2971
2933
  /**
2972
- * Lookup325: ethereum::receipt::ReceiptV3
2934
+ * Lookup328: ethereum::receipt::ReceiptV3
2973
2935
  **/
2974
2936
  EthereumReceiptReceiptV3: {
2975
2937
  _enum: {
@@ -2979,7 +2941,7 @@ declare const _default: {
2979
2941
  };
2980
2942
  };
2981
2943
  /**
2982
- * Lookup326: ethereum::receipt::EIP658ReceiptData
2944
+ * Lookup329: ethereum::receipt::EIP658ReceiptData
2983
2945
  **/
2984
2946
  EthereumReceiptEip658ReceiptData: {
2985
2947
  statusCode: string;
@@ -2988,7 +2950,7 @@ declare const _default: {
2988
2950
  logs: string;
2989
2951
  };
2990
2952
  /**
2991
- * Lookup327: ethereum::block::Block<ethereum::transaction::TransactionV2>
2953
+ * Lookup330: ethereum::block::Block<ethereum::transaction::TransactionV2>
2992
2954
  **/
2993
2955
  EthereumBlock: {
2994
2956
  header: string;
@@ -2996,7 +2958,7 @@ declare const _default: {
2996
2958
  ommers: string;
2997
2959
  };
2998
2960
  /**
2999
- * Lookup328: ethereum::header::Header
2961
+ * Lookup331: ethereum::header::Header
3000
2962
  **/
3001
2963
  EthereumHeader: {
3002
2964
  parentHash: string;
@@ -3016,17 +2978,17 @@ declare const _default: {
3016
2978
  nonce: string;
3017
2979
  };
3018
2980
  /**
3019
- * Lookup329: ethereum_types::hash::H64
2981
+ * Lookup332: ethereum_types::hash::H64
3020
2982
  **/
3021
2983
  EthereumTypesHashH64: string;
3022
2984
  /**
3023
- * Lookup334: pallet_ethereum::pallet::Error<T>
2985
+ * Lookup337: pallet_ethereum::pallet::Error<T>
3024
2986
  **/
3025
2987
  PalletEthereumError: {
3026
2988
  _enum: string[];
3027
2989
  };
3028
2990
  /**
3029
- * Lookup335: pallet_evm::CodeMetadata
2991
+ * Lookup338: pallet_evm::CodeMetadata
3030
2992
  **/
3031
2993
  PalletEvmCodeMetadata: {
3032
2994
  _alias: {
@@ -3037,20 +2999,20 @@ declare const _default: {
3037
2999
  hash_: string;
3038
3000
  };
3039
3001
  /**
3040
- * Lookup337: pallet_evm::pallet::Error<T>
3002
+ * Lookup340: pallet_evm::pallet::Error<T>
3041
3003
  **/
3042
3004
  PalletEvmError: {
3043
3005
  _enum: string[];
3044
3006
  };
3045
3007
  /**
3046
- * Lookup338: pallet_storage_providers::types::SignUpRequest<T>
3008
+ * Lookup341: pallet_storage_providers::types::SignUpRequest<T>
3047
3009
  **/
3048
3010
  PalletStorageProvidersSignUpRequest: {
3049
3011
  spSignUpRequest: string;
3050
3012
  at: string;
3051
3013
  };
3052
3014
  /**
3053
- * Lookup339: pallet_storage_providers::types::SignUpRequestSpParams<T>
3015
+ * Lookup342: pallet_storage_providers::types::SignUpRequestSpParams<T>
3054
3016
  **/
3055
3017
  PalletStorageProvidersSignUpRequestSpParams: {
3056
3018
  _enum: {
@@ -3059,7 +3021,7 @@ declare const _default: {
3059
3021
  };
3060
3022
  };
3061
3023
  /**
3062
- * Lookup340: pallet_storage_providers::types::BackupStorageProvider<T>
3024
+ * Lookup343: pallet_storage_providers::types::BackupStorageProvider<T>
3063
3025
  **/
3064
3026
  PalletStorageProvidersBackupStorageProvider: {
3065
3027
  capacity: string;
@@ -3073,14 +3035,14 @@ declare const _default: {
3073
3035
  signUpBlock: string;
3074
3036
  };
3075
3037
  /**
3076
- * Lookup341: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
3038
+ * Lookup344: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
3077
3039
  **/
3078
3040
  PalletStorageProvidersMainStorageProviderSignUpRequest: {
3079
3041
  mspInfo: string;
3080
3042
  valueProp: string;
3081
3043
  };
3082
3044
  /**
3083
- * Lookup342: pallet_storage_providers::types::MainStorageProvider<T>
3045
+ * Lookup345: pallet_storage_providers::types::MainStorageProvider<T>
3084
3046
  **/
3085
3047
  PalletStorageProvidersMainStorageProvider: {
3086
3048
  capacity: string;
@@ -3094,7 +3056,7 @@ declare const _default: {
3094
3056
  signUpBlock: string;
3095
3057
  };
3096
3058
  /**
3097
- * Lookup343: pallet_storage_providers::types::Bucket<T>
3059
+ * Lookup346: pallet_storage_providers::types::Bucket<T>
3098
3060
  **/
3099
3061
  PalletStorageProvidersBucket: {
3100
3062
  _alias: {
@@ -3109,13 +3071,13 @@ declare const _default: {
3109
3071
  valuePropId: string;
3110
3072
  };
3111
3073
  /**
3112
- * Lookup347: pallet_storage_providers::pallet::Error<T>
3074
+ * Lookup350: pallet_storage_providers::pallet::Error<T>
3113
3075
  **/
3114
3076
  PalletStorageProvidersError: {
3115
3077
  _enum: string[];
3116
3078
  };
3117
3079
  /**
3118
- * Lookup348: pallet_file_system::types::StorageRequestMetadata<T>
3080
+ * Lookup351: pallet_file_system::types::StorageRequestMetadata<T>
3119
3081
  **/
3120
3082
  PalletFileSystemStorageRequestMetadata: {
3121
3083
  _alias: {
@@ -3128,7 +3090,7 @@ declare const _default: {
3128
3090
  location: string;
3129
3091
  fingerprint: string;
3130
3092
  size_: string;
3131
- msp: string;
3093
+ mspStatus: string;
3132
3094
  userPeerIds: string;
3133
3095
  bspsRequired: string;
3134
3096
  bspsConfirmed: string;
@@ -3136,13 +3098,24 @@ declare const _default: {
3136
3098
  depositPaid: string;
3137
3099
  };
3138
3100
  /**
3139
- * Lookup351: pallet_file_system::types::StorageRequestBspsMetadata<T>
3101
+ * Lookup352: pallet_file_system::types::MspStorageRequestStatus<T>
3102
+ **/
3103
+ PalletFileSystemMspStorageRequestStatus: {
3104
+ _enum: {
3105
+ None: string;
3106
+ Pending: string;
3107
+ AcceptedNewFile: string;
3108
+ AcceptedExistingFile: string;
3109
+ };
3110
+ };
3111
+ /**
3112
+ * Lookup353: pallet_file_system::types::StorageRequestBspsMetadata<T>
3140
3113
  **/
3141
3114
  PalletFileSystemStorageRequestBspsMetadata: {
3142
3115
  confirmed: string;
3143
3116
  };
3144
3117
  /**
3145
- * Lookup353: pallet_file_system::types::PendingFileDeletionRequest<T>
3118
+ * Lookup355: pallet_file_system::types::PendingFileDeletionRequest<T>
3146
3119
  **/
3147
3120
  PalletFileSystemPendingFileDeletionRequest: {
3148
3121
  user: string;
@@ -3153,7 +3126,7 @@ declare const _default: {
3153
3126
  queuePriorityChallenge: string;
3154
3127
  };
3155
3128
  /**
3156
- * Lookup355: pallet_file_system::types::PendingStopStoringRequest<T>
3129
+ * Lookup357: pallet_file_system::types::PendingStopStoringRequest<T>
3157
3130
  **/
3158
3131
  PalletFileSystemPendingStopStoringRequest: {
3159
3132
  tickWhenRequested: string;
@@ -3161,7 +3134,7 @@ declare const _default: {
3161
3134
  fileSize: string;
3162
3135
  };
3163
3136
  /**
3164
- * Lookup356: pallet_file_system::types::MoveBucketRequestMetadata<T>
3137
+ * Lookup358: pallet_file_system::types::MoveBucketRequestMetadata<T>
3165
3138
  **/
3166
3139
  PalletFileSystemMoveBucketRequestMetadata: {
3167
3140
  requester: string;
@@ -3169,7 +3142,7 @@ declare const _default: {
3169
3142
  newValuePropId: string;
3170
3143
  };
3171
3144
  /**
3172
- * Lookup357: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
3145
+ * Lookup359: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
3173
3146
  **/
3174
3147
  PalletFileSystemIncompleteStorageRequestMetadata: {
3175
3148
  owner: string;
@@ -3181,26 +3154,26 @@ declare const _default: {
3181
3154
  pendingBucketRemoval: string;
3182
3155
  };
3183
3156
  /**
3184
- * Lookup359: pallet_file_system::pallet::Error<T>
3157
+ * Lookup361: pallet_file_system::pallet::Error<T>
3185
3158
  **/
3186
3159
  PalletFileSystemError: {
3187
3160
  _enum: string[];
3188
3161
  };
3189
3162
  /**
3190
- * Lookup361: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
3163
+ * Lookup363: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
3191
3164
  **/
3192
3165
  PalletProofsDealerProofSubmissionRecord: {
3193
3166
  lastTickProven: string;
3194
3167
  nextTickToSubmitProofFor: string;
3195
3168
  };
3196
3169
  /**
3197
- * Lookup368: pallet_proofs_dealer::pallet::Error<T>
3170
+ * Lookup370: pallet_proofs_dealer::pallet::Error<T>
3198
3171
  **/
3199
3172
  PalletProofsDealerError: {
3200
3173
  _enum: string[];
3201
3174
  };
3202
3175
  /**
3203
- * Lookup370: pallet_payment_streams::types::FixedRatePaymentStream<T>
3176
+ * Lookup372: pallet_payment_streams::types::FixedRatePaymentStream<T>
3204
3177
  **/
3205
3178
  PalletPaymentStreamsFixedRatePaymentStream: {
3206
3179
  rate: string;
@@ -3209,7 +3182,7 @@ declare const _default: {
3209
3182
  outOfFundsTick: string;
3210
3183
  };
3211
3184
  /**
3212
- * Lookup371: pallet_payment_streams::types::DynamicRatePaymentStream<T>
3185
+ * Lookup373: pallet_payment_streams::types::DynamicRatePaymentStream<T>
3213
3186
  **/
3214
3187
  PalletPaymentStreamsDynamicRatePaymentStream: {
3215
3188
  amountProvided: string;
@@ -3218,26 +3191,26 @@ declare const _default: {
3218
3191
  outOfFundsTick: string;
3219
3192
  };
3220
3193
  /**
3221
- * Lookup372: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
3194
+ * Lookup374: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
3222
3195
  **/
3223
3196
  PalletPaymentStreamsProviderLastChargeableInfo: {
3224
3197
  lastChargeableTick: string;
3225
3198
  priceIndex: string;
3226
3199
  };
3227
3200
  /**
3228
- * Lookup373: pallet_payment_streams::pallet::Error<T>
3201
+ * Lookup375: pallet_payment_streams::pallet::Error<T>
3229
3202
  **/
3230
3203
  PalletPaymentStreamsError: {
3231
3204
  _enum: string[];
3232
3205
  };
3233
3206
  /**
3234
- * Lookup374: pallet_bucket_nfts::pallet::Error<T>
3207
+ * Lookup376: pallet_bucket_nfts::pallet::Error<T>
3235
3208
  **/
3236
3209
  PalletBucketNftsError: {
3237
3210
  _enum: string[];
3238
3211
  };
3239
3212
  /**
3240
- * Lookup375: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
3213
+ * Lookup377: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
3241
3214
  **/
3242
3215
  PalletNftsCollectionDetails: {
3243
3216
  owner: string;
@@ -3248,13 +3221,13 @@ declare const _default: {
3248
3221
  attributes: string;
3249
3222
  };
3250
3223
  /**
3251
- * Lookup380: pallet_nfts::types::CollectionRole
3224
+ * Lookup382: pallet_nfts::types::CollectionRole
3252
3225
  **/
3253
3226
  PalletNftsCollectionRole: {
3254
3227
  _enum: string[];
3255
3228
  };
3256
3229
  /**
3257
- * Lookup381: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
3230
+ * Lookup383: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
3258
3231
  **/
3259
3232
  PalletNftsItemDetails: {
3260
3233
  owner: string;
@@ -3262,42 +3235,42 @@ declare const _default: {
3262
3235
  deposit: string;
3263
3236
  };
3264
3237
  /**
3265
- * Lookup382: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
3238
+ * Lookup384: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
3266
3239
  **/
3267
3240
  PalletNftsItemDeposit: {
3268
3241
  account: string;
3269
3242
  amount: string;
3270
3243
  };
3271
3244
  /**
3272
- * Lookup387: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
3245
+ * Lookup389: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
3273
3246
  **/
3274
3247
  PalletNftsCollectionMetadata: {
3275
3248
  deposit: string;
3276
3249
  data: string;
3277
3250
  };
3278
3251
  /**
3279
- * Lookup388: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
3252
+ * Lookup390: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
3280
3253
  **/
3281
3254
  PalletNftsItemMetadata: {
3282
3255
  deposit: string;
3283
3256
  data: string;
3284
3257
  };
3285
3258
  /**
3286
- * Lookup389: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
3259
+ * Lookup391: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
3287
3260
  **/
3288
3261
  PalletNftsItemMetadataDeposit: {
3289
3262
  account: string;
3290
3263
  amount: string;
3291
3264
  };
3292
3265
  /**
3293
- * Lookup392: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
3266
+ * Lookup394: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
3294
3267
  **/
3295
3268
  PalletNftsAttributeDeposit: {
3296
3269
  account: string;
3297
3270
  amount: string;
3298
3271
  };
3299
3272
  /**
3300
- * Lookup396: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
3273
+ * Lookup398: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
3301
3274
  **/
3302
3275
  PalletNftsPendingSwap: {
3303
3276
  desiredCollection: string;
@@ -3306,59 +3279,59 @@ declare const _default: {
3306
3279
  deadline: string;
3307
3280
  };
3308
3281
  /**
3309
- * Lookup398: pallet_nfts::types::PalletFeature
3282
+ * Lookup400: pallet_nfts::types::PalletFeature
3310
3283
  **/
3311
3284
  PalletNftsPalletFeature: {
3312
3285
  _enum: string[];
3313
3286
  };
3314
3287
  /**
3315
- * Lookup399: pallet_nfts::pallet::Error<T, I>
3288
+ * Lookup401: pallet_nfts::pallet::Error<T, I>
3316
3289
  **/
3317
3290
  PalletNftsError: {
3318
3291
  _enum: string[];
3319
3292
  };
3320
3293
  /**
3321
- * Lookup402: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3294
+ * Lookup404: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
3322
3295
  **/
3323
3296
  FrameSystemExtensionsCheckNonZeroSender: string;
3324
3297
  /**
3325
- * Lookup403: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3298
+ * Lookup405: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3326
3299
  **/
3327
3300
  FrameSystemExtensionsCheckSpecVersion: string;
3328
3301
  /**
3329
- * Lookup404: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3302
+ * Lookup406: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3330
3303
  **/
3331
3304
  FrameSystemExtensionsCheckTxVersion: string;
3332
3305
  /**
3333
- * Lookup405: frame_system::extensions::check_genesis::CheckGenesis<T>
3306
+ * Lookup407: frame_system::extensions::check_genesis::CheckGenesis<T>
3334
3307
  **/
3335
3308
  FrameSystemExtensionsCheckGenesis: string;
3336
3309
  /**
3337
- * Lookup408: frame_system::extensions::check_nonce::CheckNonce<T>
3310
+ * Lookup410: frame_system::extensions::check_nonce::CheckNonce<T>
3338
3311
  **/
3339
3312
  FrameSystemExtensionsCheckNonce: string;
3340
3313
  /**
3341
- * Lookup409: frame_system::extensions::check_weight::CheckWeight<T>
3314
+ * Lookup411: frame_system::extensions::check_weight::CheckWeight<T>
3342
3315
  **/
3343
3316
  FrameSystemExtensionsCheckWeight: string;
3344
3317
  /**
3345
- * Lookup410: pallet_transaction_payment::ChargeTransactionPayment<T>
3318
+ * Lookup412: pallet_transaction_payment::ChargeTransactionPayment<T>
3346
3319
  **/
3347
3320
  PalletTransactionPaymentChargeTransactionPayment: string;
3348
3321
  /**
3349
- * Lookup411: frame_metadata_hash_extension::CheckMetadataHash<T>
3322
+ * Lookup413: frame_metadata_hash_extension::CheckMetadataHash<T>
3350
3323
  **/
3351
3324
  FrameMetadataHashExtensionCheckMetadataHash: {
3352
3325
  mode: string;
3353
3326
  };
3354
3327
  /**
3355
- * Lookup412: frame_metadata_hash_extension::Mode
3328
+ * Lookup414: frame_metadata_hash_extension::Mode
3356
3329
  **/
3357
3330
  FrameMetadataHashExtensionMode: {
3358
3331
  _enum: string[];
3359
3332
  };
3360
3333
  /**
3361
- * Lookup414: sh_solochain_evm_runtime::Runtime
3334
+ * Lookup416: sh_solochain_evm_runtime::Runtime
3362
3335
  **/
3363
3336
  ShSolochainEvmRuntimeRuntime: string;
3364
3337
  };