@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.
- package/dist/parachain/interfaces/lookup.js +160 -213
- package/dist/parachain/interfaces/lookup.js.map +1 -1
- package/dist/parachain/interfaces/storagehubclient/runtime.js +5 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -1
- package/dist/solochain-evm/interfaces/lookup.js +290 -343
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
- package/dist/types/parachain/interfaces/augment-api-errors.d.ts +4 -108
- package/dist/types/parachain/interfaces/augment-api-events.d.ts +25 -103
- package/dist/types/parachain/interfaces/augment-api-query.d.ts +11 -0
- package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +8 -0
- package/dist/types/parachain/interfaces/augment-api-tx.d.ts +75 -10
- package/dist/types/parachain/interfaces/augment-types.d.ts +2 -1
- package/dist/types/parachain/interfaces/lookup.d.ts +118 -145
- package/dist/types/parachain/interfaces/registry.d.ts +2 -2
- package/dist/types/parachain/interfaces/storagehubclient/types.d.ts +14 -4
- package/dist/types/parachain/interfaces/types-lookup.d.ts +175 -234
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +4 -108
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +25 -103
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +11 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +8 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +75 -10
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +2 -1
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +248 -275
- package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -2
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +14 -4
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +305 -364
- package/metadata-sh-parachain.json +1 -1
- package/metadata-sh-solochain-evm.json +1 -1
- package/package.json +2 -2
- package/src/parachain/interfaces/augment-api-errors.ts +4 -108
- package/src/parachain/interfaces/augment-api-events.ts +22 -113
- package/src/parachain/interfaces/augment-api-query.ts +12 -0
- package/src/parachain/interfaces/augment-api-runtime.ts +14 -0
- package/src/parachain/interfaces/augment-api-tx.ts +76 -10
- package/src/parachain/interfaces/augment-types.ts +2 -0
- package/src/parachain/interfaces/lookup.ts +160 -213
- package/src/parachain/interfaces/registry.ts +2 -2
- package/src/parachain/interfaces/storagehubclient/runtime.ts +5 -0
- package/src/parachain/interfaces/storagehubclient/types.ts +14 -4
- package/src/parachain/interfaces/types-lookup.ts +225 -314
- package/src/solochain-evm/interfaces/augment-api-errors.ts +4 -108
- package/src/solochain-evm/interfaces/augment-api-events.ts +22 -113
- package/src/solochain-evm/interfaces/augment-api-query.ts +12 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +14 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +76 -10
- package/src/solochain-evm/interfaces/augment-types.ts +2 -0
- package/src/solochain-evm/interfaces/lookup.ts +290 -343
- package/src/solochain-evm/interfaces/registry.ts +2 -2
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +14 -4
- package/src/solochain-evm/interfaces/types-lookup.ts +355 -444
|
@@ -549,8 +549,8 @@ export default {
|
|
|
549
549
|
MostlyStablePrice: "u128",
|
|
550
550
|
MaxPrice: "u128",
|
|
551
551
|
MinPrice: "u128",
|
|
552
|
-
UpperExponentFactor: "
|
|
553
|
-
LowerExponentFactor: "
|
|
552
|
+
UpperExponentFactor: "u128",
|
|
553
|
+
LowerExponentFactor: "u128",
|
|
554
554
|
ZeroSizeBucketFixedRate: "u128",
|
|
555
555
|
IdealUtilisationRate: "Perbill",
|
|
556
556
|
DecayRate: "Perbill",
|
|
@@ -858,12 +858,6 @@ export default {
|
|
|
858
858
|
bucketId: "H256",
|
|
859
859
|
maybeCollectionId: "Option<u32>"
|
|
860
860
|
},
|
|
861
|
-
MoveBucketRequested: {
|
|
862
|
-
who: "AccountId20",
|
|
863
|
-
bucketId: "H256",
|
|
864
|
-
newMspId: "H256",
|
|
865
|
-
newValuePropId: "H256"
|
|
866
|
-
},
|
|
867
861
|
BucketPrivacyUpdated: {
|
|
868
862
|
who: "AccountId20",
|
|
869
863
|
bucketId: "H256",
|
|
@@ -875,6 +869,26 @@ export default {
|
|
|
875
869
|
bucketId: "H256",
|
|
876
870
|
collectionId: "u32"
|
|
877
871
|
},
|
|
872
|
+
MoveBucketRequested: {
|
|
873
|
+
who: "AccountId20",
|
|
874
|
+
bucketId: "H256",
|
|
875
|
+
newMspId: "H256",
|
|
876
|
+
newValuePropId: "H256"
|
|
877
|
+
},
|
|
878
|
+
MoveBucketRequestExpired: {
|
|
879
|
+
bucketId: "H256"
|
|
880
|
+
},
|
|
881
|
+
MoveBucketAccepted: {
|
|
882
|
+
bucketId: "H256",
|
|
883
|
+
oldMspId: "Option<H256>",
|
|
884
|
+
newMspId: "H256",
|
|
885
|
+
valuePropId: "H256"
|
|
886
|
+
},
|
|
887
|
+
MoveBucketRejected: {
|
|
888
|
+
bucketId: "H256",
|
|
889
|
+
oldMspId: "Option<H256>",
|
|
890
|
+
newMspId: "H256"
|
|
891
|
+
},
|
|
878
892
|
NewStorageRequest: {
|
|
879
893
|
_alias: {
|
|
880
894
|
size_: "size"
|
|
@@ -892,6 +906,27 @@ export default {
|
|
|
892
906
|
fileKey: "H256",
|
|
893
907
|
fileMetadata: "ShpFileMetadataFileMetadata"
|
|
894
908
|
},
|
|
909
|
+
StorageRequestFulfilled: {
|
|
910
|
+
fileKey: "H256"
|
|
911
|
+
},
|
|
912
|
+
StorageRequestExpired: {
|
|
913
|
+
fileKey: "H256"
|
|
914
|
+
},
|
|
915
|
+
StorageRequestRevoked: {
|
|
916
|
+
fileKey: "H256"
|
|
917
|
+
},
|
|
918
|
+
StorageRequestRejected: {
|
|
919
|
+
fileKey: "H256",
|
|
920
|
+
mspId: "H256",
|
|
921
|
+
bucketId: "H256",
|
|
922
|
+
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
923
|
+
},
|
|
924
|
+
IncompleteStorageRequest: {
|
|
925
|
+
fileKey: "H256"
|
|
926
|
+
},
|
|
927
|
+
IncompleteStorageRequestCleanedUp: {
|
|
928
|
+
fileKey: "H256"
|
|
929
|
+
},
|
|
895
930
|
AcceptedBspVolunteer: {
|
|
896
931
|
_alias: {
|
|
897
932
|
size_: "size"
|
|
@@ -911,20 +946,9 @@ export default {
|
|
|
911
946
|
skippedFileKeys: "Vec<H256>",
|
|
912
947
|
newRoot: "H256"
|
|
913
948
|
},
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
StorageRequestExpired: {
|
|
918
|
-
fileKey: "H256"
|
|
919
|
-
},
|
|
920
|
-
StorageRequestRevoked: {
|
|
921
|
-
fileKey: "H256"
|
|
922
|
-
},
|
|
923
|
-
StorageRequestRejected: {
|
|
924
|
-
fileKey: "H256",
|
|
925
|
-
mspId: "H256",
|
|
926
|
-
bucketId: "H256",
|
|
927
|
-
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
949
|
+
BspChallengeCycleInitialised: {
|
|
950
|
+
who: "AccountId20",
|
|
951
|
+
bspId: "H256"
|
|
928
952
|
},
|
|
929
953
|
BspRequestedToStopStoring: {
|
|
930
954
|
bspId: "H256",
|
|
@@ -937,9 +961,10 @@ export default {
|
|
|
937
961
|
fileKey: "H256",
|
|
938
962
|
newRoot: "H256"
|
|
939
963
|
},
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
964
|
+
MspStoppedStoringBucket: {
|
|
965
|
+
mspId: "H256",
|
|
966
|
+
owner: "AccountId20",
|
|
967
|
+
bucketId: "H256"
|
|
943
968
|
},
|
|
944
969
|
SpStopStoringInsolventUser: {
|
|
945
970
|
spId: "H256",
|
|
@@ -953,76 +978,6 @@ export default {
|
|
|
953
978
|
owner: "AccountId20",
|
|
954
979
|
bucketId: "H256"
|
|
955
980
|
},
|
|
956
|
-
FailedToQueuePriorityChallenge: {
|
|
957
|
-
fileKey: "H256",
|
|
958
|
-
error: "SpRuntimeDispatchError"
|
|
959
|
-
},
|
|
960
|
-
FileDeletionRequest: {
|
|
961
|
-
user: "AccountId20",
|
|
962
|
-
fileKey: "H256",
|
|
963
|
-
fileSize: "u64",
|
|
964
|
-
bucketId: "H256",
|
|
965
|
-
mspId: "H256",
|
|
966
|
-
proofOfInclusion: "bool"
|
|
967
|
-
},
|
|
968
|
-
ProofSubmittedForPendingFileDeletionRequest: {
|
|
969
|
-
user: "AccountId20",
|
|
970
|
-
fileKey: "H256",
|
|
971
|
-
fileSize: "u64",
|
|
972
|
-
bucketId: "H256",
|
|
973
|
-
mspId: "H256",
|
|
974
|
-
proofOfInclusion: "bool"
|
|
975
|
-
},
|
|
976
|
-
BspChallengeCycleInitialised: {
|
|
977
|
-
who: "AccountId20",
|
|
978
|
-
bspId: "H256"
|
|
979
|
-
},
|
|
980
|
-
MoveBucketRequestExpired: {
|
|
981
|
-
bucketId: "H256"
|
|
982
|
-
},
|
|
983
|
-
MoveBucketAccepted: {
|
|
984
|
-
bucketId: "H256",
|
|
985
|
-
oldMspId: "Option<H256>",
|
|
986
|
-
newMspId: "H256",
|
|
987
|
-
valuePropId: "H256"
|
|
988
|
-
},
|
|
989
|
-
MoveBucketRejected: {
|
|
990
|
-
bucketId: "H256",
|
|
991
|
-
oldMspId: "Option<H256>",
|
|
992
|
-
newMspId: "H256"
|
|
993
|
-
},
|
|
994
|
-
MspStoppedStoringBucket: {
|
|
995
|
-
mspId: "H256",
|
|
996
|
-
owner: "AccountId20",
|
|
997
|
-
bucketId: "H256"
|
|
998
|
-
},
|
|
999
|
-
FailedToGetMspOfBucket: {
|
|
1000
|
-
bucketId: "H256",
|
|
1001
|
-
error: "SpRuntimeDispatchError"
|
|
1002
|
-
},
|
|
1003
|
-
FailedToDecreaseMspUsedCapacity: {
|
|
1004
|
-
user: "AccountId20",
|
|
1005
|
-
mspId: "H256",
|
|
1006
|
-
fileKey: "H256",
|
|
1007
|
-
fileSize: "u64",
|
|
1008
|
-
error: "SpRuntimeDispatchError"
|
|
1009
|
-
},
|
|
1010
|
-
UsedCapacityShouldBeZero: {
|
|
1011
|
-
actualUsedCapacity: "u64"
|
|
1012
|
-
},
|
|
1013
|
-
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1014
|
-
fileKey: "H256",
|
|
1015
|
-
owner: "AccountId20",
|
|
1016
|
-
amountToReturn: "u128",
|
|
1017
|
-
error: "SpRuntimeDispatchError"
|
|
1018
|
-
},
|
|
1019
|
-
FailedToTransferDepositFundsToBsp: {
|
|
1020
|
-
fileKey: "H256",
|
|
1021
|
-
owner: "AccountId20",
|
|
1022
|
-
bspId: "H256",
|
|
1023
|
-
amountToTransfer: "u128",
|
|
1024
|
-
error: "SpRuntimeDispatchError"
|
|
1025
|
-
},
|
|
1026
981
|
FileDeletionRequested: {
|
|
1027
982
|
signedDeleteIntention: "PalletFileSystemFileOperationIntention",
|
|
1028
983
|
signature: "FpAccountEthereumSignature"
|
|
@@ -1042,13 +997,26 @@ export default {
|
|
|
1042
997
|
oldRoot: "H256",
|
|
1043
998
|
newRoot: "H256"
|
|
1044
999
|
},
|
|
1045
|
-
|
|
1046
|
-
|
|
1000
|
+
UsedCapacityShouldBeZero: {
|
|
1001
|
+
actualUsedCapacity: "u64"
|
|
1002
|
+
},
|
|
1003
|
+
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1004
|
+
fileKey: "H256",
|
|
1005
|
+
owner: "AccountId20",
|
|
1006
|
+
amountToReturn: "u128",
|
|
1007
|
+
error: "SpRuntimeDispatchError"
|
|
1008
|
+
},
|
|
1009
|
+
UserOperationPauseFlagsUpdated: {
|
|
1010
|
+
_alias: {
|
|
1011
|
+
new_: "new"
|
|
1012
|
+
},
|
|
1013
|
+
old: "u32",
|
|
1014
|
+
new_: "u32"
|
|
1047
1015
|
}
|
|
1048
1016
|
}
|
|
1049
1017
|
},
|
|
1050
1018
|
/**
|
|
1051
|
-
*
|
|
1019
|
+
* Lookup113: shp_file_metadata::FileMetadata
|
|
1052
1020
|
**/
|
|
1053
1021
|
ShpFileMetadataFileMetadata: {
|
|
1054
1022
|
owner: "Bytes",
|
|
@@ -1058,7 +1026,7 @@ export default {
|
|
|
1058
1026
|
fingerprint: "ShpFileMetadataFingerprint"
|
|
1059
1027
|
},
|
|
1060
1028
|
/**
|
|
1061
|
-
*
|
|
1029
|
+
* Lookup114: shp_file_metadata::Fingerprint
|
|
1062
1030
|
**/
|
|
1063
1031
|
ShpFileMetadataFingerprint: "[u8;32]",
|
|
1064
1032
|
/**
|
|
@@ -1074,33 +1042,24 @@ export default {
|
|
|
1074
1042
|
]
|
|
1075
1043
|
},
|
|
1076
1044
|
/**
|
|
1077
|
-
*
|
|
1078
|
-
**/
|
|
1079
|
-
PalletFileSystemEitherAccountIdOrMspId: {
|
|
1080
|
-
_enum: {
|
|
1081
|
-
AccountId: "AccountId20",
|
|
1082
|
-
MspId: "H256"
|
|
1083
|
-
}
|
|
1084
|
-
},
|
|
1085
|
-
/**
|
|
1086
|
-
* Lookup118: pallet_file_system::types::FileOperationIntention<T>
|
|
1045
|
+
* Lookup120: pallet_file_system::types::FileOperationIntention<T>
|
|
1087
1046
|
**/
|
|
1088
1047
|
PalletFileSystemFileOperationIntention: {
|
|
1089
1048
|
fileKey: "H256",
|
|
1090
1049
|
operation: "PalletFileSystemFileOperation"
|
|
1091
1050
|
},
|
|
1092
1051
|
/**
|
|
1093
|
-
*
|
|
1052
|
+
* Lookup121: pallet_file_system::types::FileOperation
|
|
1094
1053
|
**/
|
|
1095
1054
|
PalletFileSystemFileOperation: {
|
|
1096
1055
|
_enum: ["Delete"]
|
|
1097
1056
|
},
|
|
1098
1057
|
/**
|
|
1099
|
-
*
|
|
1058
|
+
* Lookup122: fp_account::EthereumSignature
|
|
1100
1059
|
**/
|
|
1101
1060
|
FpAccountEthereumSignature: "[u8;65]",
|
|
1102
1061
|
/**
|
|
1103
|
-
*
|
|
1062
|
+
* Lookup128: pallet_proofs_dealer::pallet::Event<T>
|
|
1104
1063
|
**/
|
|
1105
1064
|
PalletProofsDealerEvent: {
|
|
1106
1065
|
_enum: {
|
|
@@ -1157,41 +1116,41 @@ export default {
|
|
|
1157
1116
|
}
|
|
1158
1117
|
},
|
|
1159
1118
|
/**
|
|
1160
|
-
*
|
|
1119
|
+
* Lookup129: pallet_proofs_dealer::types::Proof<T>
|
|
1161
1120
|
**/
|
|
1162
1121
|
PalletProofsDealerProof: {
|
|
1163
1122
|
forestProof: "SpTrieStorageProofCompactProof",
|
|
1164
1123
|
keyProofs: "BTreeMap<H256, PalletProofsDealerKeyProof>"
|
|
1165
1124
|
},
|
|
1166
1125
|
/**
|
|
1167
|
-
*
|
|
1126
|
+
* Lookup130: sp_trie::storage_proof::CompactProof
|
|
1168
1127
|
**/
|
|
1169
1128
|
SpTrieStorageProofCompactProof: {
|
|
1170
1129
|
encodedNodes: "Vec<Bytes>"
|
|
1171
1130
|
},
|
|
1172
1131
|
/**
|
|
1173
|
-
*
|
|
1132
|
+
* Lookup133: pallet_proofs_dealer::types::KeyProof<T>
|
|
1174
1133
|
**/
|
|
1175
1134
|
PalletProofsDealerKeyProof: {
|
|
1176
1135
|
proof: "ShpFileKeyVerifierFileKeyProof",
|
|
1177
1136
|
challengeCount: "u32"
|
|
1178
1137
|
},
|
|
1179
1138
|
/**
|
|
1180
|
-
*
|
|
1139
|
+
* Lookup134: shp_file_key_verifier::types::FileKeyProof
|
|
1181
1140
|
**/
|
|
1182
1141
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1183
1142
|
fileMetadata: "ShpFileMetadataFileMetadata",
|
|
1184
1143
|
proof: "SpTrieStorageProofCompactProof"
|
|
1185
1144
|
},
|
|
1186
1145
|
/**
|
|
1187
|
-
*
|
|
1146
|
+
* Lookup138: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1188
1147
|
**/
|
|
1189
1148
|
PalletProofsDealerCustomChallenge: {
|
|
1190
1149
|
key: "H256",
|
|
1191
1150
|
shouldRemoveKey: "bool"
|
|
1192
1151
|
},
|
|
1193
1152
|
/**
|
|
1194
|
-
*
|
|
1153
|
+
* Lookup142: shp_traits::TrieMutation
|
|
1195
1154
|
**/
|
|
1196
1155
|
ShpTraitsTrieMutation: {
|
|
1197
1156
|
_enum: {
|
|
@@ -1200,19 +1159,19 @@ export default {
|
|
|
1200
1159
|
}
|
|
1201
1160
|
},
|
|
1202
1161
|
/**
|
|
1203
|
-
*
|
|
1162
|
+
* Lookup143: shp_traits::TrieAddMutation
|
|
1204
1163
|
**/
|
|
1205
1164
|
ShpTraitsTrieAddMutation: {
|
|
1206
1165
|
value: "Bytes"
|
|
1207
1166
|
},
|
|
1208
1167
|
/**
|
|
1209
|
-
*
|
|
1168
|
+
* Lookup144: shp_traits::TrieRemoveMutation
|
|
1210
1169
|
**/
|
|
1211
1170
|
ShpTraitsTrieRemoveMutation: {
|
|
1212
1171
|
maybeValue: "Option<Bytes>"
|
|
1213
1172
|
},
|
|
1214
1173
|
/**
|
|
1215
|
-
*
|
|
1174
|
+
* Lookup146: pallet_randomness::pallet::Event<T>
|
|
1216
1175
|
**/
|
|
1217
1176
|
PalletRandomnessEvent: {
|
|
1218
1177
|
_enum: {
|
|
@@ -1224,7 +1183,7 @@ export default {
|
|
|
1224
1183
|
}
|
|
1225
1184
|
},
|
|
1226
1185
|
/**
|
|
1227
|
-
*
|
|
1186
|
+
* Lookup147: pallet_payment_streams::pallet::Event<T>
|
|
1228
1187
|
**/
|
|
1229
1188
|
PalletPaymentStreamsEvent: {
|
|
1230
1189
|
_enum: {
|
|
@@ -1292,7 +1251,7 @@ export default {
|
|
|
1292
1251
|
}
|
|
1293
1252
|
},
|
|
1294
1253
|
/**
|
|
1295
|
-
*
|
|
1254
|
+
* Lookup149: pallet_bucket_nfts::pallet::Event<T>
|
|
1296
1255
|
**/
|
|
1297
1256
|
PalletBucketNftsEvent: {
|
|
1298
1257
|
_enum: {
|
|
@@ -1313,7 +1272,7 @@ export default {
|
|
|
1313
1272
|
}
|
|
1314
1273
|
},
|
|
1315
1274
|
/**
|
|
1316
|
-
*
|
|
1275
|
+
* Lookup150: pallet_nfts::pallet::Event<T, I>
|
|
1317
1276
|
**/
|
|
1318
1277
|
PalletNftsEvent: {
|
|
1319
1278
|
_enum: {
|
|
@@ -1514,7 +1473,7 @@ export default {
|
|
|
1514
1473
|
}
|
|
1515
1474
|
},
|
|
1516
1475
|
/**
|
|
1517
|
-
*
|
|
1476
|
+
* Lookup154: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
|
|
1518
1477
|
**/
|
|
1519
1478
|
PalletNftsAttributeNamespace: {
|
|
1520
1479
|
_enum: {
|
|
@@ -1525,20 +1484,20 @@ export default {
|
|
|
1525
1484
|
}
|
|
1526
1485
|
},
|
|
1527
1486
|
/**
|
|
1528
|
-
*
|
|
1487
|
+
* Lookup156: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1529
1488
|
**/
|
|
1530
1489
|
PalletNftsPriceWithDirection: {
|
|
1531
1490
|
amount: "u128",
|
|
1532
1491
|
direction: "PalletNftsPriceDirection"
|
|
1533
1492
|
},
|
|
1534
1493
|
/**
|
|
1535
|
-
*
|
|
1494
|
+
* Lookup157: pallet_nfts::types::PriceDirection
|
|
1536
1495
|
**/
|
|
1537
1496
|
PalletNftsPriceDirection: {
|
|
1538
1497
|
_enum: ["Send", "Receive"]
|
|
1539
1498
|
},
|
|
1540
1499
|
/**
|
|
1541
|
-
*
|
|
1500
|
+
* Lookup158: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
1542
1501
|
**/
|
|
1543
1502
|
PalletNftsPalletAttributes: {
|
|
1544
1503
|
_enum: {
|
|
@@ -1547,7 +1506,7 @@ export default {
|
|
|
1547
1506
|
}
|
|
1548
1507
|
},
|
|
1549
1508
|
/**
|
|
1550
|
-
*
|
|
1509
|
+
* Lookup159: frame_system::Phase
|
|
1551
1510
|
**/
|
|
1552
1511
|
FrameSystemPhase: {
|
|
1553
1512
|
_enum: {
|
|
@@ -1557,21 +1516,21 @@ export default {
|
|
|
1557
1516
|
}
|
|
1558
1517
|
},
|
|
1559
1518
|
/**
|
|
1560
|
-
*
|
|
1519
|
+
* Lookup162: frame_system::LastRuntimeUpgradeInfo
|
|
1561
1520
|
**/
|
|
1562
1521
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1563
1522
|
specVersion: "Compact<u32>",
|
|
1564
1523
|
specName: "Text"
|
|
1565
1524
|
},
|
|
1566
1525
|
/**
|
|
1567
|
-
*
|
|
1526
|
+
* Lookup164: frame_system::CodeUpgradeAuthorization<T>
|
|
1568
1527
|
**/
|
|
1569
1528
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1570
1529
|
codeHash: "H256",
|
|
1571
1530
|
checkVersion: "bool"
|
|
1572
1531
|
},
|
|
1573
1532
|
/**
|
|
1574
|
-
*
|
|
1533
|
+
* Lookup165: frame_system::pallet::Call<T>
|
|
1575
1534
|
**/
|
|
1576
1535
|
FrameSystemCall: {
|
|
1577
1536
|
_enum: {
|
|
@@ -1616,7 +1575,7 @@ export default {
|
|
|
1616
1575
|
}
|
|
1617
1576
|
},
|
|
1618
1577
|
/**
|
|
1619
|
-
*
|
|
1578
|
+
* Lookup168: frame_system::limits::BlockWeights
|
|
1620
1579
|
**/
|
|
1621
1580
|
FrameSystemLimitsBlockWeights: {
|
|
1622
1581
|
baseBlock: "SpWeightsWeightV2Weight",
|
|
@@ -1624,7 +1583,7 @@ export default {
|
|
|
1624
1583
|
perClass: "FrameSupportDispatchPerDispatchClassWeightsPerClass"
|
|
1625
1584
|
},
|
|
1626
1585
|
/**
|
|
1627
|
-
*
|
|
1586
|
+
* Lookup169: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1628
1587
|
**/
|
|
1629
1588
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1630
1589
|
normal: "FrameSystemLimitsWeightsPerClass",
|
|
@@ -1632,7 +1591,7 @@ export default {
|
|
|
1632
1591
|
mandatory: "FrameSystemLimitsWeightsPerClass"
|
|
1633
1592
|
},
|
|
1634
1593
|
/**
|
|
1635
|
-
*
|
|
1594
|
+
* Lookup170: frame_system::limits::WeightsPerClass
|
|
1636
1595
|
**/
|
|
1637
1596
|
FrameSystemLimitsWeightsPerClass: {
|
|
1638
1597
|
baseExtrinsic: "SpWeightsWeightV2Weight",
|
|
@@ -1641,13 +1600,13 @@ export default {
|
|
|
1641
1600
|
reserved: "Option<SpWeightsWeightV2Weight>"
|
|
1642
1601
|
},
|
|
1643
1602
|
/**
|
|
1644
|
-
*
|
|
1603
|
+
* Lookup172: frame_system::limits::BlockLength
|
|
1645
1604
|
**/
|
|
1646
1605
|
FrameSystemLimitsBlockLength: {
|
|
1647
1606
|
max: "FrameSupportDispatchPerDispatchClassU32"
|
|
1648
1607
|
},
|
|
1649
1608
|
/**
|
|
1650
|
-
*
|
|
1609
|
+
* Lookup173: frame_support::dispatch::PerDispatchClass<T>
|
|
1651
1610
|
**/
|
|
1652
1611
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1653
1612
|
normal: "u32",
|
|
@@ -1655,14 +1614,14 @@ export default {
|
|
|
1655
1614
|
mandatory: "u32"
|
|
1656
1615
|
},
|
|
1657
1616
|
/**
|
|
1658
|
-
*
|
|
1617
|
+
* Lookup174: sp_weights::RuntimeDbWeight
|
|
1659
1618
|
**/
|
|
1660
1619
|
SpWeightsRuntimeDbWeight: {
|
|
1661
1620
|
read: "u64",
|
|
1662
1621
|
write: "u64"
|
|
1663
1622
|
},
|
|
1664
1623
|
/**
|
|
1665
|
-
*
|
|
1624
|
+
* Lookup175: sp_version::RuntimeVersion
|
|
1666
1625
|
**/
|
|
1667
1626
|
SpVersionRuntimeVersion: {
|
|
1668
1627
|
specName: "Text",
|
|
@@ -1675,7 +1634,7 @@ export default {
|
|
|
1675
1634
|
systemVersion: "u8"
|
|
1676
1635
|
},
|
|
1677
1636
|
/**
|
|
1678
|
-
*
|
|
1637
|
+
* Lookup181: frame_system::pallet::Error<T>
|
|
1679
1638
|
**/
|
|
1680
1639
|
FrameSystemError: {
|
|
1681
1640
|
_enum: [
|
|
@@ -1691,11 +1650,11 @@ export default {
|
|
|
1691
1650
|
]
|
|
1692
1651
|
},
|
|
1693
1652
|
/**
|
|
1694
|
-
*
|
|
1653
|
+
* Lookup184: sp_consensus_babe::app::Public
|
|
1695
1654
|
**/
|
|
1696
1655
|
SpConsensusBabeAppPublic: "[u8;32]",
|
|
1697
1656
|
/**
|
|
1698
|
-
*
|
|
1657
|
+
* Lookup187: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1699
1658
|
**/
|
|
1700
1659
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1701
1660
|
_enum: {
|
|
@@ -1707,13 +1666,13 @@ export default {
|
|
|
1707
1666
|
}
|
|
1708
1667
|
},
|
|
1709
1668
|
/**
|
|
1710
|
-
*
|
|
1669
|
+
* Lookup189: sp_consensus_babe::AllowedSlots
|
|
1711
1670
|
**/
|
|
1712
1671
|
SpConsensusBabeAllowedSlots: {
|
|
1713
1672
|
_enum: ["PrimarySlots", "PrimaryAndSecondaryPlainSlots", "PrimaryAndSecondaryVRFSlots"]
|
|
1714
1673
|
},
|
|
1715
1674
|
/**
|
|
1716
|
-
*
|
|
1675
|
+
* Lookup193: sp_consensus_babe::digests::PreDigest
|
|
1717
1676
|
**/
|
|
1718
1677
|
SpConsensusBabeDigestsPreDigest: {
|
|
1719
1678
|
_enum: {
|
|
@@ -1724,7 +1683,7 @@ export default {
|
|
|
1724
1683
|
}
|
|
1725
1684
|
},
|
|
1726
1685
|
/**
|
|
1727
|
-
*
|
|
1686
|
+
* Lookup194: sp_consensus_babe::digests::PrimaryPreDigest
|
|
1728
1687
|
**/
|
|
1729
1688
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
1730
1689
|
authorityIndex: "u32",
|
|
@@ -1732,21 +1691,21 @@ export default {
|
|
|
1732
1691
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1733
1692
|
},
|
|
1734
1693
|
/**
|
|
1735
|
-
*
|
|
1694
|
+
* Lookup195: sp_core::sr25519::vrf::VrfSignature
|
|
1736
1695
|
**/
|
|
1737
1696
|
SpCoreSr25519VrfVrfSignature: {
|
|
1738
1697
|
preOutput: "[u8;32]",
|
|
1739
1698
|
proof: "[u8;64]"
|
|
1740
1699
|
},
|
|
1741
1700
|
/**
|
|
1742
|
-
*
|
|
1701
|
+
* Lookup197: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
1743
1702
|
**/
|
|
1744
1703
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
1745
1704
|
authorityIndex: "u32",
|
|
1746
1705
|
slot: "u64"
|
|
1747
1706
|
},
|
|
1748
1707
|
/**
|
|
1749
|
-
*
|
|
1708
|
+
* Lookup198: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
1750
1709
|
**/
|
|
1751
1710
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
1752
1711
|
authorityIndex: "u32",
|
|
@@ -1754,14 +1713,14 @@ export default {
|
|
|
1754
1713
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1755
1714
|
},
|
|
1756
1715
|
/**
|
|
1757
|
-
*
|
|
1716
|
+
* Lookup200: sp_consensus_babe::BabeEpochConfiguration
|
|
1758
1717
|
**/
|
|
1759
1718
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
1760
1719
|
c: "(u64,u64)",
|
|
1761
1720
|
allowedSlots: "SpConsensusBabeAllowedSlots"
|
|
1762
1721
|
},
|
|
1763
1722
|
/**
|
|
1764
|
-
*
|
|
1723
|
+
* Lookup204: pallet_babe::pallet::Call<T>
|
|
1765
1724
|
**/
|
|
1766
1725
|
PalletBabeCall: {
|
|
1767
1726
|
_enum: {
|
|
@@ -1779,7 +1738,7 @@ export default {
|
|
|
1779
1738
|
}
|
|
1780
1739
|
},
|
|
1781
1740
|
/**
|
|
1782
|
-
*
|
|
1741
|
+
* Lookup205: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1783
1742
|
**/
|
|
1784
1743
|
SpConsensusSlotsEquivocationProof: {
|
|
1785
1744
|
offender: "SpConsensusBabeAppPublic",
|
|
@@ -1788,7 +1747,7 @@ export default {
|
|
|
1788
1747
|
secondHeader: "SpRuntimeHeader"
|
|
1789
1748
|
},
|
|
1790
1749
|
/**
|
|
1791
|
-
*
|
|
1750
|
+
* Lookup206: sp_runtime::generic::header::Header<Number, Hash>
|
|
1792
1751
|
**/
|
|
1793
1752
|
SpRuntimeHeader: {
|
|
1794
1753
|
parentHash: "H256",
|
|
@@ -1798,7 +1757,7 @@ export default {
|
|
|
1798
1757
|
digest: "SpRuntimeDigest"
|
|
1799
1758
|
},
|
|
1800
1759
|
/**
|
|
1801
|
-
*
|
|
1760
|
+
* Lookup207: sp_session::MembershipProof
|
|
1802
1761
|
**/
|
|
1803
1762
|
SpSessionMembershipProof: {
|
|
1804
1763
|
session: "u32",
|
|
@@ -1806,7 +1765,7 @@ export default {
|
|
|
1806
1765
|
validatorCount: "u32"
|
|
1807
1766
|
},
|
|
1808
1767
|
/**
|
|
1809
|
-
*
|
|
1768
|
+
* Lookup208: pallet_babe::pallet::Error<T>
|
|
1810
1769
|
**/
|
|
1811
1770
|
PalletBabeError: {
|
|
1812
1771
|
_enum: [
|
|
@@ -1817,7 +1776,7 @@ export default {
|
|
|
1817
1776
|
]
|
|
1818
1777
|
},
|
|
1819
1778
|
/**
|
|
1820
|
-
*
|
|
1779
|
+
* Lookup209: pallet_timestamp::pallet::Call<T>
|
|
1821
1780
|
**/
|
|
1822
1781
|
PalletTimestampCall: {
|
|
1823
1782
|
_enum: {
|
|
@@ -1827,7 +1786,7 @@ export default {
|
|
|
1827
1786
|
}
|
|
1828
1787
|
},
|
|
1829
1788
|
/**
|
|
1830
|
-
*
|
|
1789
|
+
* Lookup211: pallet_balances::types::BalanceLock<Balance>
|
|
1831
1790
|
**/
|
|
1832
1791
|
PalletBalancesBalanceLock: {
|
|
1833
1792
|
id: "[u8;8]",
|
|
@@ -1835,27 +1794,27 @@ export default {
|
|
|
1835
1794
|
reasons: "PalletBalancesReasons"
|
|
1836
1795
|
},
|
|
1837
1796
|
/**
|
|
1838
|
-
*
|
|
1797
|
+
* Lookup212: pallet_balances::types::Reasons
|
|
1839
1798
|
**/
|
|
1840
1799
|
PalletBalancesReasons: {
|
|
1841
1800
|
_enum: ["Fee", "Misc", "All"]
|
|
1842
1801
|
},
|
|
1843
1802
|
/**
|
|
1844
|
-
*
|
|
1803
|
+
* Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1845
1804
|
**/
|
|
1846
1805
|
PalletBalancesReserveData: {
|
|
1847
1806
|
id: "[u8;8]",
|
|
1848
1807
|
amount: "u128"
|
|
1849
1808
|
},
|
|
1850
1809
|
/**
|
|
1851
|
-
*
|
|
1810
|
+
* Lookup218: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
|
|
1852
1811
|
**/
|
|
1853
1812
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
1854
1813
|
id: "ShSolochainEvmRuntimeRuntimeHoldReason",
|
|
1855
1814
|
amount: "u128"
|
|
1856
1815
|
},
|
|
1857
1816
|
/**
|
|
1858
|
-
*
|
|
1817
|
+
* Lookup219: sh_solochain_evm_runtime::RuntimeHoldReason
|
|
1859
1818
|
**/
|
|
1860
1819
|
ShSolochainEvmRuntimeRuntimeHoldReason: {
|
|
1861
1820
|
_enum: {
|
|
@@ -1947,36 +1906,36 @@ export default {
|
|
|
1947
1906
|
}
|
|
1948
1907
|
},
|
|
1949
1908
|
/**
|
|
1950
|
-
*
|
|
1909
|
+
* Lookup220: pallet_storage_providers::pallet::HoldReason
|
|
1951
1910
|
**/
|
|
1952
1911
|
PalletStorageProvidersHoldReason: {
|
|
1953
1912
|
_enum: ["StorageProviderDeposit", "BucketDeposit"]
|
|
1954
1913
|
},
|
|
1955
1914
|
/**
|
|
1956
|
-
*
|
|
1915
|
+
* Lookup221: pallet_file_system::pallet::HoldReason
|
|
1957
1916
|
**/
|
|
1958
1917
|
PalletFileSystemHoldReason: {
|
|
1959
1918
|
_enum: ["StorageRequestCreationHold", "FileDeletionRequestHold"]
|
|
1960
1919
|
},
|
|
1961
1920
|
/**
|
|
1962
|
-
*
|
|
1921
|
+
* Lookup222: pallet_payment_streams::pallet::HoldReason
|
|
1963
1922
|
**/
|
|
1964
1923
|
PalletPaymentStreamsHoldReason: {
|
|
1965
1924
|
_enum: ["PaymentStreamDeposit"]
|
|
1966
1925
|
},
|
|
1967
1926
|
/**
|
|
1968
|
-
*
|
|
1927
|
+
* Lookup225: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
|
|
1969
1928
|
**/
|
|
1970
1929
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
1971
1930
|
id: "ShSolochainEvmRuntimeRuntimeFreezeReason",
|
|
1972
1931
|
amount: "u128"
|
|
1973
1932
|
},
|
|
1974
1933
|
/**
|
|
1975
|
-
*
|
|
1934
|
+
* Lookup226: sh_solochain_evm_runtime::RuntimeFreezeReason
|
|
1976
1935
|
**/
|
|
1977
1936
|
ShSolochainEvmRuntimeRuntimeFreezeReason: "Null",
|
|
1978
1937
|
/**
|
|
1979
|
-
*
|
|
1938
|
+
* Lookup228: pallet_balances::pallet::Call<T, I>
|
|
1980
1939
|
**/
|
|
1981
1940
|
PalletBalancesCall: {
|
|
1982
1941
|
_enum: {
|
|
@@ -2021,13 +1980,13 @@ export default {
|
|
|
2021
1980
|
}
|
|
2022
1981
|
},
|
|
2023
1982
|
/**
|
|
2024
|
-
*
|
|
1983
|
+
* Lookup230: pallet_balances::types::AdjustmentDirection
|
|
2025
1984
|
**/
|
|
2026
1985
|
PalletBalancesAdjustmentDirection: {
|
|
2027
1986
|
_enum: ["Increase", "Decrease"]
|
|
2028
1987
|
},
|
|
2029
1988
|
/**
|
|
2030
|
-
*
|
|
1989
|
+
* Lookup231: pallet_balances::pallet::Error<T, I>
|
|
2031
1990
|
**/
|
|
2032
1991
|
PalletBalancesError: {
|
|
2033
1992
|
_enum: [
|
|
@@ -2046,25 +2005,25 @@ export default {
|
|
|
2046
2005
|
]
|
|
2047
2006
|
},
|
|
2048
2007
|
/**
|
|
2049
|
-
*
|
|
2008
|
+
* Lookup232: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
|
|
2050
2009
|
**/
|
|
2051
2010
|
SpStakingOffenceOffenceDetails: {
|
|
2052
2011
|
offender: "(AccountId20,Null)",
|
|
2053
2012
|
reporters: "Vec<AccountId20>"
|
|
2054
2013
|
},
|
|
2055
2014
|
/**
|
|
2056
|
-
*
|
|
2015
|
+
* Lookup238: sh_solochain_evm_runtime::SessionKeys
|
|
2057
2016
|
**/
|
|
2058
2017
|
ShSolochainEvmRuntimeSessionKeys: {
|
|
2059
2018
|
babe: "SpConsensusBabeAppPublic",
|
|
2060
2019
|
grandpa: "SpConsensusGrandpaAppPublic"
|
|
2061
2020
|
},
|
|
2062
2021
|
/**
|
|
2063
|
-
*
|
|
2022
|
+
* Lookup240: sp_core::crypto::KeyTypeId
|
|
2064
2023
|
**/
|
|
2065
2024
|
SpCoreCryptoKeyTypeId: "[u8;4]",
|
|
2066
2025
|
/**
|
|
2067
|
-
*
|
|
2026
|
+
* Lookup241: pallet_session::pallet::Call<T>
|
|
2068
2027
|
**/
|
|
2069
2028
|
PalletSessionCall: {
|
|
2070
2029
|
_enum: {
|
|
@@ -2079,13 +2038,13 @@ export default {
|
|
|
2079
2038
|
}
|
|
2080
2039
|
},
|
|
2081
2040
|
/**
|
|
2082
|
-
*
|
|
2041
|
+
* Lookup242: pallet_session::pallet::Error<T>
|
|
2083
2042
|
**/
|
|
2084
2043
|
PalletSessionError: {
|
|
2085
2044
|
_enum: ["InvalidProof", "NoAssociatedValidatorId", "DuplicatedKey", "NoKeys", "NoAccount"]
|
|
2086
2045
|
},
|
|
2087
2046
|
/**
|
|
2088
|
-
*
|
|
2047
|
+
* Lookup243: pallet_grandpa::StoredState<N>
|
|
2089
2048
|
**/
|
|
2090
2049
|
PalletGrandpaStoredState: {
|
|
2091
2050
|
_enum: {
|
|
@@ -2102,7 +2061,7 @@ export default {
|
|
|
2102
2061
|
}
|
|
2103
2062
|
},
|
|
2104
2063
|
/**
|
|
2105
|
-
*
|
|
2064
|
+
* Lookup244: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2106
2065
|
**/
|
|
2107
2066
|
PalletGrandpaStoredPendingChange: {
|
|
2108
2067
|
scheduledAt: "u32",
|
|
@@ -2111,7 +2070,7 @@ export default {
|
|
|
2111
2070
|
forced: "Option<u32>"
|
|
2112
2071
|
},
|
|
2113
2072
|
/**
|
|
2114
|
-
*
|
|
2073
|
+
* Lookup246: pallet_grandpa::pallet::Call<T>
|
|
2115
2074
|
**/
|
|
2116
2075
|
PalletGrandpaCall: {
|
|
2117
2076
|
_enum: {
|
|
@@ -2130,14 +2089,14 @@ export default {
|
|
|
2130
2089
|
}
|
|
2131
2090
|
},
|
|
2132
2091
|
/**
|
|
2133
|
-
*
|
|
2092
|
+
* Lookup247: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2134
2093
|
**/
|
|
2135
2094
|
SpConsensusGrandpaEquivocationProof: {
|
|
2136
2095
|
setId: "u64",
|
|
2137
2096
|
equivocation: "SpConsensusGrandpaEquivocation"
|
|
2138
2097
|
},
|
|
2139
2098
|
/**
|
|
2140
|
-
*
|
|
2099
|
+
* Lookup248: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2141
2100
|
**/
|
|
2142
2101
|
SpConsensusGrandpaEquivocation: {
|
|
2143
2102
|
_enum: {
|
|
@@ -2146,7 +2105,7 @@ export default {
|
|
|
2146
2105
|
}
|
|
2147
2106
|
},
|
|
2148
2107
|
/**
|
|
2149
|
-
*
|
|
2108
|
+
* Lookup249: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2150
2109
|
**/
|
|
2151
2110
|
FinalityGrandpaEquivocationPrevote: {
|
|
2152
2111
|
roundNumber: "u64",
|
|
@@ -2155,18 +2114,18 @@ export default {
|
|
|
2155
2114
|
second: "(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)"
|
|
2156
2115
|
},
|
|
2157
2116
|
/**
|
|
2158
|
-
*
|
|
2117
|
+
* Lookup250: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2159
2118
|
**/
|
|
2160
2119
|
FinalityGrandpaPrevote: {
|
|
2161
2120
|
targetHash: "H256",
|
|
2162
2121
|
targetNumber: "u32"
|
|
2163
2122
|
},
|
|
2164
2123
|
/**
|
|
2165
|
-
*
|
|
2124
|
+
* Lookup251: sp_consensus_grandpa::app::Signature
|
|
2166
2125
|
**/
|
|
2167
2126
|
SpConsensusGrandpaAppSignature: "[u8;64]",
|
|
2168
2127
|
/**
|
|
2169
|
-
*
|
|
2128
|
+
* Lookup253: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2170
2129
|
**/
|
|
2171
2130
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2172
2131
|
roundNumber: "u64",
|
|
@@ -2175,14 +2134,14 @@ export default {
|
|
|
2175
2134
|
second: "(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)"
|
|
2176
2135
|
},
|
|
2177
2136
|
/**
|
|
2178
|
-
*
|
|
2137
|
+
* Lookup254: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2179
2138
|
**/
|
|
2180
2139
|
FinalityGrandpaPrecommit: {
|
|
2181
2140
|
targetHash: "H256",
|
|
2182
2141
|
targetNumber: "u32"
|
|
2183
2142
|
},
|
|
2184
2143
|
/**
|
|
2185
|
-
*
|
|
2144
|
+
* Lookup256: pallet_grandpa::pallet::Error<T>
|
|
2186
2145
|
**/
|
|
2187
2146
|
PalletGrandpaError: {
|
|
2188
2147
|
_enum: [
|
|
@@ -2196,13 +2155,13 @@ export default {
|
|
|
2196
2155
|
]
|
|
2197
2156
|
},
|
|
2198
2157
|
/**
|
|
2199
|
-
*
|
|
2158
|
+
* Lookup258: pallet_transaction_payment::Releases
|
|
2200
2159
|
**/
|
|
2201
2160
|
PalletTransactionPaymentReleases: {
|
|
2202
2161
|
_enum: ["V1Ancient", "V2"]
|
|
2203
2162
|
},
|
|
2204
2163
|
/**
|
|
2205
|
-
*
|
|
2164
|
+
* Lookup259: pallet_parameters::pallet::Call<T>
|
|
2206
2165
|
**/
|
|
2207
2166
|
PalletParametersCall: {
|
|
2208
2167
|
_enum: {
|
|
@@ -2212,7 +2171,7 @@ export default {
|
|
|
2212
2171
|
}
|
|
2213
2172
|
},
|
|
2214
2173
|
/**
|
|
2215
|
-
*
|
|
2174
|
+
* Lookup260: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
|
|
2216
2175
|
**/
|
|
2217
2176
|
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
2218
2177
|
_enum: {
|
|
@@ -2220,7 +2179,7 @@ export default {
|
|
|
2220
2179
|
}
|
|
2221
2180
|
},
|
|
2222
2181
|
/**
|
|
2223
|
-
*
|
|
2182
|
+
* Lookup261: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
2224
2183
|
**/
|
|
2225
2184
|
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
2226
2185
|
_enum: {
|
|
@@ -2233,8 +2192,8 @@ export default {
|
|
|
2233
2192
|
MostlyStablePrice: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice,Option<u128>)",
|
|
2234
2193
|
MaxPrice: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice,Option<u128>)",
|
|
2235
2194
|
MinPrice: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,Option<u128>)",
|
|
2236
|
-
UpperExponentFactor: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<
|
|
2237
|
-
LowerExponentFactor: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<
|
|
2195
|
+
UpperExponentFactor: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u128>)",
|
|
2196
|
+
LowerExponentFactor: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u128>)",
|
|
2238
2197
|
ZeroSizeBucketFixedRate: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,Option<u128>)",
|
|
2239
2198
|
IdealUtilisationRate: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate,Option<Perbill>)",
|
|
2240
2199
|
DecayRate: "(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate,Option<Perbill>)",
|
|
@@ -2257,7 +2216,7 @@ export default {
|
|
|
2257
2216
|
}
|
|
2258
2217
|
},
|
|
2259
2218
|
/**
|
|
2260
|
-
*
|
|
2219
|
+
* Lookup264: pallet_sudo::pallet::Call<T>
|
|
2261
2220
|
**/
|
|
2262
2221
|
PalletSudoCall: {
|
|
2263
2222
|
_enum: {
|
|
@@ -2282,7 +2241,7 @@ export default {
|
|
|
2282
2241
|
}
|
|
2283
2242
|
},
|
|
2284
2243
|
/**
|
|
2285
|
-
*
|
|
2244
|
+
* Lookup266: pallet_ethereum::pallet::Call<T>
|
|
2286
2245
|
**/
|
|
2287
2246
|
PalletEthereumCall: {
|
|
2288
2247
|
_enum: {
|
|
@@ -2292,7 +2251,7 @@ export default {
|
|
|
2292
2251
|
}
|
|
2293
2252
|
},
|
|
2294
2253
|
/**
|
|
2295
|
-
*
|
|
2254
|
+
* Lookup267: ethereum::transaction::TransactionV2
|
|
2296
2255
|
**/
|
|
2297
2256
|
EthereumTransactionTransactionV2: {
|
|
2298
2257
|
_enum: {
|
|
@@ -2302,7 +2261,7 @@ export default {
|
|
|
2302
2261
|
}
|
|
2303
2262
|
},
|
|
2304
2263
|
/**
|
|
2305
|
-
*
|
|
2264
|
+
* Lookup268: ethereum::transaction::legacy::LegacyTransaction
|
|
2306
2265
|
**/
|
|
2307
2266
|
EthereumTransactionLegacyLegacyTransaction: {
|
|
2308
2267
|
nonce: "U256",
|
|
@@ -2314,7 +2273,7 @@ export default {
|
|
|
2314
2273
|
signature: "EthereumTransactionLegacyTransactionSignature"
|
|
2315
2274
|
},
|
|
2316
2275
|
/**
|
|
2317
|
-
*
|
|
2276
|
+
* Lookup271: ethereum::transaction::legacy::TransactionAction
|
|
2318
2277
|
**/
|
|
2319
2278
|
EthereumTransactionLegacyTransactionAction: {
|
|
2320
2279
|
_enum: {
|
|
@@ -2323,7 +2282,7 @@ export default {
|
|
|
2323
2282
|
}
|
|
2324
2283
|
},
|
|
2325
2284
|
/**
|
|
2326
|
-
*
|
|
2285
|
+
* Lookup272: ethereum::transaction::legacy::TransactionSignature
|
|
2327
2286
|
**/
|
|
2328
2287
|
EthereumTransactionLegacyTransactionSignature: {
|
|
2329
2288
|
v: "u64",
|
|
@@ -2331,7 +2290,7 @@ export default {
|
|
|
2331
2290
|
s: "H256"
|
|
2332
2291
|
},
|
|
2333
2292
|
/**
|
|
2334
|
-
*
|
|
2293
|
+
* Lookup274: ethereum::transaction::eip2930::EIP2930Transaction
|
|
2335
2294
|
**/
|
|
2336
2295
|
EthereumTransactionEip2930Eip2930Transaction: {
|
|
2337
2296
|
chainId: "u64",
|
|
@@ -2347,14 +2306,14 @@ export default {
|
|
|
2347
2306
|
s: "H256"
|
|
2348
2307
|
},
|
|
2349
2308
|
/**
|
|
2350
|
-
*
|
|
2309
|
+
* Lookup276: ethereum::transaction::eip2930::AccessListItem
|
|
2351
2310
|
**/
|
|
2352
2311
|
EthereumTransactionEip2930AccessListItem: {
|
|
2353
2312
|
address: "H160",
|
|
2354
2313
|
storageKeys: "Vec<H256>"
|
|
2355
2314
|
},
|
|
2356
2315
|
/**
|
|
2357
|
-
*
|
|
2316
|
+
* Lookup277: ethereum::transaction::eip1559::EIP1559Transaction
|
|
2358
2317
|
**/
|
|
2359
2318
|
EthereumTransactionEip1559Eip1559Transaction: {
|
|
2360
2319
|
chainId: "u64",
|
|
@@ -2371,7 +2330,7 @@ export default {
|
|
|
2371
2330
|
s: "H256"
|
|
2372
2331
|
},
|
|
2373
2332
|
/**
|
|
2374
|
-
*
|
|
2333
|
+
* Lookup278: pallet_evm::pallet::Call<T>
|
|
2375
2334
|
**/
|
|
2376
2335
|
PalletEvmCall: {
|
|
2377
2336
|
_enum: {
|
|
@@ -2414,7 +2373,7 @@ export default {
|
|
|
2414
2373
|
}
|
|
2415
2374
|
},
|
|
2416
2375
|
/**
|
|
2417
|
-
*
|
|
2376
|
+
* Lookup282: pallet_storage_providers::pallet::Call<T>
|
|
2418
2377
|
**/
|
|
2419
2378
|
PalletStorageProvidersCall: {
|
|
2420
2379
|
_enum: {
|
|
@@ -2485,7 +2444,7 @@ export default {
|
|
|
2485
2444
|
}
|
|
2486
2445
|
},
|
|
2487
2446
|
/**
|
|
2488
|
-
*
|
|
2447
|
+
* Lookup283: pallet_file_system::pallet::Call<T>
|
|
2489
2448
|
**/
|
|
2490
2449
|
PalletFileSystemCall: {
|
|
2491
2450
|
_enum: {
|
|
@@ -2594,17 +2553,20 @@ export default {
|
|
|
2594
2553
|
fileKeys: "Vec<H256>",
|
|
2595
2554
|
bspId: "Option<H256>",
|
|
2596
2555
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2556
|
+
},
|
|
2557
|
+
set_user_operation_pause_flags: {
|
|
2558
|
+
newFlags: "u32"
|
|
2597
2559
|
}
|
|
2598
2560
|
}
|
|
2599
2561
|
},
|
|
2600
2562
|
/**
|
|
2601
|
-
*
|
|
2563
|
+
* Lookup284: pallet_file_system::types::BucketMoveRequestResponse
|
|
2602
2564
|
**/
|
|
2603
2565
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
2604
2566
|
_enum: ["Accepted", "Rejected"]
|
|
2605
2567
|
},
|
|
2606
2568
|
/**
|
|
2607
|
-
*
|
|
2569
|
+
* Lookup285: pallet_file_system::types::ReplicationTarget<T>
|
|
2608
2570
|
**/
|
|
2609
2571
|
PalletFileSystemReplicationTarget: {
|
|
2610
2572
|
_enum: {
|
|
@@ -2617,7 +2579,7 @@ export default {
|
|
|
2617
2579
|
}
|
|
2618
2580
|
},
|
|
2619
2581
|
/**
|
|
2620
|
-
*
|
|
2582
|
+
* Lookup287: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
2621
2583
|
**/
|
|
2622
2584
|
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
2623
2585
|
bucketId: "H256",
|
|
@@ -2625,28 +2587,28 @@ export default {
|
|
|
2625
2587
|
reject: "Vec<PalletFileSystemRejectedStorageRequest>"
|
|
2626
2588
|
},
|
|
2627
2589
|
/**
|
|
2628
|
-
*
|
|
2590
|
+
* Lookup289: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
2629
2591
|
**/
|
|
2630
2592
|
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
2631
2593
|
fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>",
|
|
2632
2594
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2633
2595
|
},
|
|
2634
2596
|
/**
|
|
2635
|
-
*
|
|
2597
|
+
* Lookup291: pallet_file_system::types::FileKeyWithProof<T>
|
|
2636
2598
|
**/
|
|
2637
2599
|
PalletFileSystemFileKeyWithProof: {
|
|
2638
2600
|
fileKey: "H256",
|
|
2639
2601
|
proof: "ShpFileKeyVerifierFileKeyProof"
|
|
2640
2602
|
},
|
|
2641
2603
|
/**
|
|
2642
|
-
*
|
|
2604
|
+
* Lookup293: pallet_file_system::types::RejectedStorageRequest<T>
|
|
2643
2605
|
**/
|
|
2644
2606
|
PalletFileSystemRejectedStorageRequest: {
|
|
2645
2607
|
fileKey: "H256",
|
|
2646
2608
|
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
2647
2609
|
},
|
|
2648
2610
|
/**
|
|
2649
|
-
*
|
|
2611
|
+
* Lookup296: pallet_file_system::types::FileDeletionRequest<T>
|
|
2650
2612
|
**/
|
|
2651
2613
|
PalletFileSystemFileDeletionRequest: {
|
|
2652
2614
|
_alias: {
|
|
@@ -2661,7 +2623,7 @@ export default {
|
|
|
2661
2623
|
fingerprint: "H256"
|
|
2662
2624
|
},
|
|
2663
2625
|
/**
|
|
2664
|
-
*
|
|
2626
|
+
* Lookup298: pallet_proofs_dealer::pallet::Call<T>
|
|
2665
2627
|
**/
|
|
2666
2628
|
PalletProofsDealerCall: {
|
|
2667
2629
|
_enum: {
|
|
@@ -2685,13 +2647,13 @@ export default {
|
|
|
2685
2647
|
}
|
|
2686
2648
|
},
|
|
2687
2649
|
/**
|
|
2688
|
-
*
|
|
2650
|
+
* Lookup299: pallet_randomness::pallet::Call<T>
|
|
2689
2651
|
**/
|
|
2690
2652
|
PalletRandomnessCall: {
|
|
2691
2653
|
_enum: ["set_babe_randomness"]
|
|
2692
2654
|
},
|
|
2693
2655
|
/**
|
|
2694
|
-
*
|
|
2656
|
+
* Lookup300: pallet_payment_streams::pallet::Call<T>
|
|
2695
2657
|
**/
|
|
2696
2658
|
PalletPaymentStreamsCall: {
|
|
2697
2659
|
_enum: {
|
|
@@ -2736,7 +2698,7 @@ export default {
|
|
|
2736
2698
|
}
|
|
2737
2699
|
},
|
|
2738
2700
|
/**
|
|
2739
|
-
*
|
|
2701
|
+
* Lookup301: pallet_bucket_nfts::pallet::Call<T>
|
|
2740
2702
|
**/
|
|
2741
2703
|
PalletBucketNftsCall: {
|
|
2742
2704
|
_enum: {
|
|
@@ -2754,7 +2716,7 @@ export default {
|
|
|
2754
2716
|
}
|
|
2755
2717
|
},
|
|
2756
2718
|
/**
|
|
2757
|
-
*
|
|
2719
|
+
* Lookup303: pallet_nfts::pallet::Call<T, I>
|
|
2758
2720
|
**/
|
|
2759
2721
|
PalletNftsCall: {
|
|
2760
2722
|
_enum: {
|
|
@@ -2951,7 +2913,7 @@ export default {
|
|
|
2951
2913
|
}
|
|
2952
2914
|
},
|
|
2953
2915
|
/**
|
|
2954
|
-
*
|
|
2916
|
+
* Lookup304: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
2955
2917
|
**/
|
|
2956
2918
|
PalletNftsCollectionConfig: {
|
|
2957
2919
|
settings: "u64",
|
|
@@ -2959,7 +2921,7 @@ export default {
|
|
|
2959
2921
|
mintSettings: "PalletNftsMintSettings"
|
|
2960
2922
|
},
|
|
2961
2923
|
/**
|
|
2962
|
-
*
|
|
2924
|
+
* Lookup306: pallet_nfts::types::CollectionSetting
|
|
2963
2925
|
**/
|
|
2964
2926
|
PalletNftsCollectionSetting: {
|
|
2965
2927
|
_enum: [
|
|
@@ -2983,7 +2945,7 @@ export default {
|
|
|
2983
2945
|
]
|
|
2984
2946
|
},
|
|
2985
2947
|
/**
|
|
2986
|
-
*
|
|
2948
|
+
* Lookup307: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
2987
2949
|
**/
|
|
2988
2950
|
PalletNftsMintSettings: {
|
|
2989
2951
|
mintType: "PalletNftsMintType",
|
|
@@ -2993,7 +2955,7 @@ export default {
|
|
|
2993
2955
|
defaultItemSettings: "u64"
|
|
2994
2956
|
},
|
|
2995
2957
|
/**
|
|
2996
|
-
*
|
|
2958
|
+
* Lookup308: pallet_nfts::types::MintType<CollectionId>
|
|
2997
2959
|
**/
|
|
2998
2960
|
PalletNftsMintType: {
|
|
2999
2961
|
_enum: {
|
|
@@ -3003,13 +2965,13 @@ export default {
|
|
|
3003
2965
|
}
|
|
3004
2966
|
},
|
|
3005
2967
|
/**
|
|
3006
|
-
*
|
|
2968
|
+
* Lookup310: pallet_nfts::types::ItemSetting
|
|
3007
2969
|
**/
|
|
3008
2970
|
PalletNftsItemSetting: {
|
|
3009
2971
|
_enum: ["__Unused0", "Transferable", "UnlockedMetadata", "__Unused3", "UnlockedAttributes"]
|
|
3010
2972
|
},
|
|
3011
2973
|
/**
|
|
3012
|
-
*
|
|
2974
|
+
* Lookup311: pallet_nfts::types::DestroyWitness
|
|
3013
2975
|
**/
|
|
3014
2976
|
PalletNftsDestroyWitness: {
|
|
3015
2977
|
itemMetadatas: "Compact<u32>",
|
|
@@ -3017,26 +2979,26 @@ export default {
|
|
|
3017
2979
|
attributes: "Compact<u32>"
|
|
3018
2980
|
},
|
|
3019
2981
|
/**
|
|
3020
|
-
*
|
|
2982
|
+
* Lookup313: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
3021
2983
|
**/
|
|
3022
2984
|
PalletNftsMintWitness: {
|
|
3023
2985
|
ownedItem: "Option<u32>",
|
|
3024
2986
|
mintPrice: "Option<u128>"
|
|
3025
2987
|
},
|
|
3026
2988
|
/**
|
|
3027
|
-
*
|
|
2989
|
+
* Lookup314: pallet_nfts::types::ItemConfig
|
|
3028
2990
|
**/
|
|
3029
2991
|
PalletNftsItemConfig: {
|
|
3030
2992
|
settings: "u64"
|
|
3031
2993
|
},
|
|
3032
2994
|
/**
|
|
3033
|
-
*
|
|
2995
|
+
* Lookup315: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
3034
2996
|
**/
|
|
3035
2997
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
3036
2998
|
accountAttributes: "u32"
|
|
3037
2999
|
},
|
|
3038
3000
|
/**
|
|
3039
|
-
*
|
|
3001
|
+
* Lookup317: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
|
|
3040
3002
|
**/
|
|
3041
3003
|
PalletNftsItemTip: {
|
|
3042
3004
|
collection: "u32",
|
|
@@ -3045,7 +3007,7 @@ export default {
|
|
|
3045
3007
|
amount: "u128"
|
|
3046
3008
|
},
|
|
3047
3009
|
/**
|
|
3048
|
-
*
|
|
3010
|
+
* Lookup319: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
|
|
3049
3011
|
**/
|
|
3050
3012
|
PalletNftsPreSignedMint: {
|
|
3051
3013
|
collection: "u32",
|
|
@@ -3057,7 +3019,7 @@ export default {
|
|
|
3057
3019
|
mintPrice: "Option<u128>"
|
|
3058
3020
|
},
|
|
3059
3021
|
/**
|
|
3060
|
-
*
|
|
3022
|
+
* Lookup320: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
|
|
3061
3023
|
**/
|
|
3062
3024
|
PalletNftsPreSignedAttributes: {
|
|
3063
3025
|
collection: "u32",
|
|
@@ -3067,13 +3029,13 @@ export default {
|
|
|
3067
3029
|
deadline: "u32"
|
|
3068
3030
|
},
|
|
3069
3031
|
/**
|
|
3070
|
-
*
|
|
3032
|
+
* Lookup321: pallet_sudo::pallet::Error<T>
|
|
3071
3033
|
**/
|
|
3072
3034
|
PalletSudoError: {
|
|
3073
3035
|
_enum: ["RequireSudo"]
|
|
3074
3036
|
},
|
|
3075
3037
|
/**
|
|
3076
|
-
*
|
|
3038
|
+
* Lookup323: fp_rpc::TransactionStatus
|
|
3077
3039
|
**/
|
|
3078
3040
|
FpRpcTransactionStatus: {
|
|
3079
3041
|
transactionHash: "H256",
|
|
@@ -3085,11 +3047,11 @@ export default {
|
|
|
3085
3047
|
logsBloom: "EthbloomBloom"
|
|
3086
3048
|
},
|
|
3087
3049
|
/**
|
|
3088
|
-
*
|
|
3050
|
+
* Lookup326: ethbloom::Bloom
|
|
3089
3051
|
**/
|
|
3090
3052
|
EthbloomBloom: "[u8;256]",
|
|
3091
3053
|
/**
|
|
3092
|
-
*
|
|
3054
|
+
* Lookup328: ethereum::receipt::ReceiptV3
|
|
3093
3055
|
**/
|
|
3094
3056
|
EthereumReceiptReceiptV3: {
|
|
3095
3057
|
_enum: {
|
|
@@ -3099,7 +3061,7 @@ export default {
|
|
|
3099
3061
|
}
|
|
3100
3062
|
},
|
|
3101
3063
|
/**
|
|
3102
|
-
*
|
|
3064
|
+
* Lookup329: ethereum::receipt::EIP658ReceiptData
|
|
3103
3065
|
**/
|
|
3104
3066
|
EthereumReceiptEip658ReceiptData: {
|
|
3105
3067
|
statusCode: "u8",
|
|
@@ -3108,7 +3070,7 @@ export default {
|
|
|
3108
3070
|
logs: "Vec<EthereumLog>"
|
|
3109
3071
|
},
|
|
3110
3072
|
/**
|
|
3111
|
-
*
|
|
3073
|
+
* Lookup330: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
3112
3074
|
**/
|
|
3113
3075
|
EthereumBlock: {
|
|
3114
3076
|
header: "EthereumHeader",
|
|
@@ -3116,7 +3078,7 @@ export default {
|
|
|
3116
3078
|
ommers: "Vec<EthereumHeader>"
|
|
3117
3079
|
},
|
|
3118
3080
|
/**
|
|
3119
|
-
*
|
|
3081
|
+
* Lookup331: ethereum::header::Header
|
|
3120
3082
|
**/
|
|
3121
3083
|
EthereumHeader: {
|
|
3122
3084
|
parentHash: "H256",
|
|
@@ -3136,17 +3098,17 @@ export default {
|
|
|
3136
3098
|
nonce: "EthereumTypesHashH64"
|
|
3137
3099
|
},
|
|
3138
3100
|
/**
|
|
3139
|
-
*
|
|
3101
|
+
* Lookup332: ethereum_types::hash::H64
|
|
3140
3102
|
**/
|
|
3141
3103
|
EthereumTypesHashH64: "[u8;8]",
|
|
3142
3104
|
/**
|
|
3143
|
-
*
|
|
3105
|
+
* Lookup337: pallet_ethereum::pallet::Error<T>
|
|
3144
3106
|
**/
|
|
3145
3107
|
PalletEthereumError: {
|
|
3146
3108
|
_enum: ["InvalidSignature", "PreLogExists"]
|
|
3147
3109
|
},
|
|
3148
3110
|
/**
|
|
3149
|
-
*
|
|
3111
|
+
* Lookup338: pallet_evm::CodeMetadata
|
|
3150
3112
|
**/
|
|
3151
3113
|
PalletEvmCodeMetadata: {
|
|
3152
3114
|
_alias: {
|
|
@@ -3157,7 +3119,7 @@ export default {
|
|
|
3157
3119
|
hash_: "H256"
|
|
3158
3120
|
},
|
|
3159
3121
|
/**
|
|
3160
|
-
*
|
|
3122
|
+
* Lookup340: pallet_evm::pallet::Error<T>
|
|
3161
3123
|
**/
|
|
3162
3124
|
PalletEvmError: {
|
|
3163
3125
|
_enum: [
|
|
@@ -3177,14 +3139,14 @@ export default {
|
|
|
3177
3139
|
]
|
|
3178
3140
|
},
|
|
3179
3141
|
/**
|
|
3180
|
-
*
|
|
3142
|
+
* Lookup341: pallet_storage_providers::types::SignUpRequest<T>
|
|
3181
3143
|
**/
|
|
3182
3144
|
PalletStorageProvidersSignUpRequest: {
|
|
3183
3145
|
spSignUpRequest: "PalletStorageProvidersSignUpRequestSpParams",
|
|
3184
3146
|
at: "u32"
|
|
3185
3147
|
},
|
|
3186
3148
|
/**
|
|
3187
|
-
*
|
|
3149
|
+
* Lookup342: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
3188
3150
|
**/
|
|
3189
3151
|
PalletStorageProvidersSignUpRequestSpParams: {
|
|
3190
3152
|
_enum: {
|
|
@@ -3193,7 +3155,7 @@ export default {
|
|
|
3193
3155
|
}
|
|
3194
3156
|
},
|
|
3195
3157
|
/**
|
|
3196
|
-
*
|
|
3158
|
+
* Lookup343: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
3197
3159
|
**/
|
|
3198
3160
|
PalletStorageProvidersBackupStorageProvider: {
|
|
3199
3161
|
capacity: "u64",
|
|
@@ -3207,14 +3169,14 @@ export default {
|
|
|
3207
3169
|
signUpBlock: "u32"
|
|
3208
3170
|
},
|
|
3209
3171
|
/**
|
|
3210
|
-
*
|
|
3172
|
+
* Lookup344: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
3211
3173
|
**/
|
|
3212
3174
|
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
3213
3175
|
mspInfo: "PalletStorageProvidersMainStorageProvider",
|
|
3214
3176
|
valueProp: "PalletStorageProvidersValueProposition"
|
|
3215
3177
|
},
|
|
3216
3178
|
/**
|
|
3217
|
-
*
|
|
3179
|
+
* Lookup345: pallet_storage_providers::types::MainStorageProvider<T>
|
|
3218
3180
|
**/
|
|
3219
3181
|
PalletStorageProvidersMainStorageProvider: {
|
|
3220
3182
|
capacity: "u64",
|
|
@@ -3228,7 +3190,7 @@ export default {
|
|
|
3228
3190
|
signUpBlock: "u32"
|
|
3229
3191
|
},
|
|
3230
3192
|
/**
|
|
3231
|
-
*
|
|
3193
|
+
* Lookup346: pallet_storage_providers::types::Bucket<T>
|
|
3232
3194
|
**/
|
|
3233
3195
|
PalletStorageProvidersBucket: {
|
|
3234
3196
|
_alias: {
|
|
@@ -3243,7 +3205,7 @@ export default {
|
|
|
3243
3205
|
valuePropId: "H256"
|
|
3244
3206
|
},
|
|
3245
3207
|
/**
|
|
3246
|
-
*
|
|
3208
|
+
* Lookup350: pallet_storage_providers::pallet::Error<T>
|
|
3247
3209
|
**/
|
|
3248
3210
|
PalletStorageProvidersError: {
|
|
3249
3211
|
_enum: [
|
|
@@ -3302,7 +3264,7 @@ export default {
|
|
|
3302
3264
|
]
|
|
3303
3265
|
},
|
|
3304
3266
|
/**
|
|
3305
|
-
*
|
|
3267
|
+
* Lookup351: pallet_file_system::types::StorageRequestMetadata<T>
|
|
3306
3268
|
**/
|
|
3307
3269
|
PalletFileSystemStorageRequestMetadata: {
|
|
3308
3270
|
_alias: {
|
|
@@ -3315,7 +3277,7 @@ export default {
|
|
|
3315
3277
|
location: "Bytes",
|
|
3316
3278
|
fingerprint: "H256",
|
|
3317
3279
|
size_: "u64",
|
|
3318
|
-
|
|
3280
|
+
mspStatus: "PalletFileSystemMspStorageRequestStatus",
|
|
3319
3281
|
userPeerIds: "Vec<Bytes>",
|
|
3320
3282
|
bspsRequired: "u32",
|
|
3321
3283
|
bspsConfirmed: "u32",
|
|
@@ -3323,13 +3285,24 @@ export default {
|
|
|
3323
3285
|
depositPaid: "u128"
|
|
3324
3286
|
},
|
|
3325
3287
|
/**
|
|
3326
|
-
*
|
|
3288
|
+
* Lookup352: pallet_file_system::types::MspStorageRequestStatus<T>
|
|
3289
|
+
**/
|
|
3290
|
+
PalletFileSystemMspStorageRequestStatus: {
|
|
3291
|
+
_enum: {
|
|
3292
|
+
None: "Null",
|
|
3293
|
+
Pending: "H256",
|
|
3294
|
+
AcceptedNewFile: "H256",
|
|
3295
|
+
AcceptedExistingFile: "H256"
|
|
3296
|
+
}
|
|
3297
|
+
},
|
|
3298
|
+
/**
|
|
3299
|
+
* Lookup353: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
3327
3300
|
**/
|
|
3328
3301
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
3329
3302
|
confirmed: "bool"
|
|
3330
3303
|
},
|
|
3331
3304
|
/**
|
|
3332
|
-
*
|
|
3305
|
+
* Lookup355: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
3333
3306
|
**/
|
|
3334
3307
|
PalletFileSystemPendingFileDeletionRequest: {
|
|
3335
3308
|
user: "AccountId20",
|
|
@@ -3340,7 +3313,7 @@ export default {
|
|
|
3340
3313
|
queuePriorityChallenge: "bool"
|
|
3341
3314
|
},
|
|
3342
3315
|
/**
|
|
3343
|
-
*
|
|
3316
|
+
* Lookup357: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
3344
3317
|
**/
|
|
3345
3318
|
PalletFileSystemPendingStopStoringRequest: {
|
|
3346
3319
|
tickWhenRequested: "u32",
|
|
@@ -3348,7 +3321,7 @@ export default {
|
|
|
3348
3321
|
fileSize: "u64"
|
|
3349
3322
|
},
|
|
3350
3323
|
/**
|
|
3351
|
-
*
|
|
3324
|
+
* Lookup358: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
3352
3325
|
**/
|
|
3353
3326
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
3354
3327
|
requester: "AccountId20",
|
|
@@ -3356,7 +3329,7 @@ export default {
|
|
|
3356
3329
|
newValuePropId: "H256"
|
|
3357
3330
|
},
|
|
3358
3331
|
/**
|
|
3359
|
-
*
|
|
3332
|
+
* Lookup359: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
3360
3333
|
**/
|
|
3361
3334
|
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
3362
3335
|
owner: "AccountId20",
|
|
@@ -3368,117 +3341,91 @@ export default {
|
|
|
3368
3341
|
pendingBucketRemoval: "bool"
|
|
3369
3342
|
},
|
|
3370
3343
|
/**
|
|
3371
|
-
*
|
|
3344
|
+
* Lookup361: pallet_file_system::pallet::Error<T>
|
|
3372
3345
|
**/
|
|
3373
3346
|
PalletFileSystemError: {
|
|
3374
3347
|
_enum: [
|
|
3348
|
+
"NotABsp",
|
|
3349
|
+
"NotAMsp",
|
|
3350
|
+
"NotASp",
|
|
3375
3351
|
"StorageRequestAlreadyRegistered",
|
|
3376
3352
|
"StorageRequestNotFound",
|
|
3377
|
-
"StorageRequestNotRevoked",
|
|
3378
3353
|
"StorageRequestExists",
|
|
3354
|
+
"StorageRequestNotAuthorized",
|
|
3355
|
+
"StorageRequestBspsRequiredFulfilled",
|
|
3356
|
+
"TooManyStorageRequestResponses",
|
|
3357
|
+
"IncompleteStorageRequestNotFound",
|
|
3379
3358
|
"ReplicationTargetCannotBeZero",
|
|
3380
3359
|
"ReplicationTargetExceedsMaximum",
|
|
3381
|
-
"MaxReplicationTargetSmallerThanDefault",
|
|
3382
|
-
"NotABsp",
|
|
3383
|
-
"NotAMsp",
|
|
3384
|
-
"NotASp",
|
|
3385
3360
|
"BspNotVolunteered",
|
|
3386
3361
|
"BspNotConfirmed",
|
|
3387
3362
|
"BspAlreadyConfirmed",
|
|
3388
|
-
"StorageRequestBspsRequiredFulfilled",
|
|
3389
3363
|
"BspAlreadyVolunteered",
|
|
3390
|
-
"InsufficientAvailableCapacity",
|
|
3391
|
-
"UnexpectedNumberOfRemovedVolunteeredBsps",
|
|
3392
3364
|
"BspNotEligibleToVolunteer",
|
|
3393
|
-
"
|
|
3394
|
-
"
|
|
3395
|
-
"
|
|
3396
|
-
"
|
|
3397
|
-
"
|
|
3398
|
-
"
|
|
3399
|
-
"
|
|
3400
|
-
"ThresholdArithmeticError",
|
|
3401
|
-
"FailedTypeConversion",
|
|
3402
|
-
"DividedByZero",
|
|
3403
|
-
"ImpossibleFailedToGetValue",
|
|
3404
|
-
"BucketIsNotPrivate",
|
|
3365
|
+
"InsufficientAvailableCapacity",
|
|
3366
|
+
"NoFileKeysToConfirm",
|
|
3367
|
+
"MspNotStoringBucket",
|
|
3368
|
+
"NotSelectedMsp",
|
|
3369
|
+
"MspAlreadyConfirmed",
|
|
3370
|
+
"RequestWithoutMsp",
|
|
3371
|
+
"MspAlreadyStoringBucket",
|
|
3405
3372
|
"BucketNotFound",
|
|
3406
3373
|
"BucketNotEmpty",
|
|
3407
3374
|
"NotBucketOwner",
|
|
3375
|
+
"BucketIsBeingMoved",
|
|
3376
|
+
"InvalidBucketIdFileKeyPair",
|
|
3408
3377
|
"ValuePropositionNotAvailable",
|
|
3409
3378
|
"CollectionNotFound",
|
|
3410
|
-
"
|
|
3411
|
-
"ExpectedNonInclusionProof",
|
|
3412
|
-
"ExpectedInclusionProof",
|
|
3379
|
+
"MoveBucketRequestNotFound",
|
|
3413
3380
|
"InvalidFileKeyMetadata",
|
|
3414
|
-
"
|
|
3415
|
-
"
|
|
3416
|
-
"
|
|
3381
|
+
"FileSizeCannotBeZero",
|
|
3382
|
+
"ProviderNotStoringFile",
|
|
3383
|
+
"FileHasActiveStorageRequest",
|
|
3384
|
+
"FileHasIncompleteStorageRequest",
|
|
3417
3385
|
"BatchFileDeletionMustContainSingleBucket",
|
|
3418
3386
|
"DuplicateFileKeyInBatchFileDeletion",
|
|
3419
3387
|
"NoFileKeysToDelete",
|
|
3420
3388
|
"FailedToPushFileKeyToBucketDeletionVector",
|
|
3421
3389
|
"FailedToPushUserToBspDeletionVector",
|
|
3422
3390
|
"FailedToPushFileKeyToBspDeletionVector",
|
|
3423
|
-
"MaxUserPendingDeletionRequestsReached",
|
|
3424
|
-
"MspNotStoringBucket",
|
|
3425
|
-
"FileKeyNotPendingDeletion",
|
|
3426
|
-
"FileSizeCannotBeZero",
|
|
3427
|
-
"NoGlobalReputationWeightSet",
|
|
3428
|
-
"NoBspReputationWeightSet",
|
|
3429
|
-
"MaximumThresholdCannotBeZero",
|
|
3430
|
-
"TickRangeToMaximumThresholdCannotBeZero",
|
|
3431
3391
|
"PendingStopStoringRequestNotFound",
|
|
3432
3392
|
"MinWaitForStopStoringNotReached",
|
|
3433
3393
|
"PendingStopStoringRequestAlreadyExists",
|
|
3434
|
-
"
|
|
3435
|
-
"
|
|
3436
|
-
"NotSelectedMsp",
|
|
3437
|
-
"MspAlreadyConfirmed",
|
|
3438
|
-
"RequestWithoutMsp",
|
|
3439
|
-
"MspAlreadyStoringBucket",
|
|
3440
|
-
"MoveBucketRequestNotFound",
|
|
3441
|
-
"BucketIsBeingMoved",
|
|
3442
|
-
"BspAlreadyDataServer",
|
|
3443
|
-
"BspDataServersExceeded",
|
|
3444
|
-
"FileMetadataProcessingQueueFull",
|
|
3445
|
-
"TooManyBatchResponses",
|
|
3446
|
-
"TooManyStorageRequestResponses",
|
|
3447
|
-
"InvalidBucketIdFileKeyPair",
|
|
3448
|
-
"InconsistentStateKeyAlreadyExists",
|
|
3394
|
+
"ExpectedNonInclusionProof",
|
|
3395
|
+
"ExpectedInclusionProof",
|
|
3449
3396
|
"FixedRatePaymentStreamNotFound",
|
|
3450
3397
|
"DynamicRatePaymentStreamNotFound",
|
|
3398
|
+
"OperationNotAllowedWithInsolventUser",
|
|
3399
|
+
"UserNotInsolvent",
|
|
3400
|
+
"OperationNotAllowedForInsolventProvider",
|
|
3401
|
+
"InvalidSignature",
|
|
3402
|
+
"InvalidProviderID",
|
|
3403
|
+
"InvalidSignedOperation",
|
|
3404
|
+
"NoGlobalReputationWeightSet",
|
|
3405
|
+
"NoBspReputationWeightSet",
|
|
3451
3406
|
"CannotHoldDeposit",
|
|
3407
|
+
"MaxTickNumberReached",
|
|
3408
|
+
"ThresholdArithmeticError",
|
|
3409
|
+
"RootNotUpdated",
|
|
3410
|
+
"ImpossibleFailedToGetValue",
|
|
3452
3411
|
"FailedToQueryEarliestFileVolunteerTick",
|
|
3453
3412
|
"FailedToGetOwnerAccount",
|
|
3454
3413
|
"FailedToGetPaymentAccount",
|
|
3455
|
-
"NoFileKeysToConfirm",
|
|
3456
|
-
"RootNotUpdated",
|
|
3457
|
-
"NoPrivacyChange",
|
|
3458
|
-
"OperationNotAllowedForInsolventProvider",
|
|
3459
|
-
"OperationNotAllowedWhileBucketIsNotStoredByMsp",
|
|
3460
3414
|
"FailedToComputeFileKey",
|
|
3461
3415
|
"FailedToCreateFileMetadata",
|
|
3462
|
-
"
|
|
3463
|
-
"
|
|
3464
|
-
"ProviderNotStoringFile",
|
|
3465
|
-
"InvalidProviderID",
|
|
3466
|
-
"InvalidSignedOperation",
|
|
3467
|
-
"FileKeyMismatch",
|
|
3468
|
-
"IncompleteStorageRequestNotFound",
|
|
3469
|
-
"FileHasActiveStorageRequest",
|
|
3470
|
-
"FileHasIncompleteStorageRequest"
|
|
3416
|
+
"FileMetadataProcessingQueueFull",
|
|
3417
|
+
"UserOperationPaused"
|
|
3471
3418
|
]
|
|
3472
3419
|
},
|
|
3473
3420
|
/**
|
|
3474
|
-
*
|
|
3421
|
+
* Lookup363: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
3475
3422
|
**/
|
|
3476
3423
|
PalletProofsDealerProofSubmissionRecord: {
|
|
3477
3424
|
lastTickProven: "u32",
|
|
3478
3425
|
nextTickToSubmitProofFor: "u32"
|
|
3479
3426
|
},
|
|
3480
3427
|
/**
|
|
3481
|
-
*
|
|
3428
|
+
* Lookup370: pallet_proofs_dealer::pallet::Error<T>
|
|
3482
3429
|
**/
|
|
3483
3430
|
PalletProofsDealerError: {
|
|
3484
3431
|
_enum: [
|
|
@@ -3509,7 +3456,7 @@ export default {
|
|
|
3509
3456
|
]
|
|
3510
3457
|
},
|
|
3511
3458
|
/**
|
|
3512
|
-
*
|
|
3459
|
+
* Lookup372: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
3513
3460
|
**/
|
|
3514
3461
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
3515
3462
|
rate: "u128",
|
|
@@ -3518,7 +3465,7 @@ export default {
|
|
|
3518
3465
|
outOfFundsTick: "Option<u32>"
|
|
3519
3466
|
},
|
|
3520
3467
|
/**
|
|
3521
|
-
*
|
|
3468
|
+
* Lookup373: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
3522
3469
|
**/
|
|
3523
3470
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
3524
3471
|
amountProvided: "u64",
|
|
@@ -3527,14 +3474,14 @@ export default {
|
|
|
3527
3474
|
outOfFundsTick: "Option<u32>"
|
|
3528
3475
|
},
|
|
3529
3476
|
/**
|
|
3530
|
-
*
|
|
3477
|
+
* Lookup374: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
3531
3478
|
**/
|
|
3532
3479
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
3533
3480
|
lastChargeableTick: "u32",
|
|
3534
3481
|
priceIndex: "u128"
|
|
3535
3482
|
},
|
|
3536
3483
|
/**
|
|
3537
|
-
*
|
|
3484
|
+
* Lookup375: pallet_payment_streams::pallet::Error<T>
|
|
3538
3485
|
**/
|
|
3539
3486
|
PalletPaymentStreamsError: {
|
|
3540
3487
|
_enum: [
|
|
@@ -3559,7 +3506,7 @@ export default {
|
|
|
3559
3506
|
]
|
|
3560
3507
|
},
|
|
3561
3508
|
/**
|
|
3562
|
-
*
|
|
3509
|
+
* Lookup376: pallet_bucket_nfts::pallet::Error<T>
|
|
3563
3510
|
**/
|
|
3564
3511
|
PalletBucketNftsError: {
|
|
3565
3512
|
_enum: [
|
|
@@ -3570,7 +3517,7 @@ export default {
|
|
|
3570
3517
|
]
|
|
3571
3518
|
},
|
|
3572
3519
|
/**
|
|
3573
|
-
*
|
|
3520
|
+
* Lookup377: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
|
|
3574
3521
|
**/
|
|
3575
3522
|
PalletNftsCollectionDetails: {
|
|
3576
3523
|
owner: "AccountId20",
|
|
@@ -3581,13 +3528,13 @@ export default {
|
|
|
3581
3528
|
attributes: "u32"
|
|
3582
3529
|
},
|
|
3583
3530
|
/**
|
|
3584
|
-
*
|
|
3531
|
+
* Lookup382: pallet_nfts::types::CollectionRole
|
|
3585
3532
|
**/
|
|
3586
3533
|
PalletNftsCollectionRole: {
|
|
3587
3534
|
_enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
|
|
3588
3535
|
},
|
|
3589
3536
|
/**
|
|
3590
|
-
*
|
|
3537
|
+
* 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>>
|
|
3591
3538
|
**/
|
|
3592
3539
|
PalletNftsItemDetails: {
|
|
3593
3540
|
owner: "AccountId20",
|
|
@@ -3595,42 +3542,42 @@ export default {
|
|
|
3595
3542
|
deposit: "PalletNftsItemDeposit"
|
|
3596
3543
|
},
|
|
3597
3544
|
/**
|
|
3598
|
-
*
|
|
3545
|
+
* Lookup384: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
|
|
3599
3546
|
**/
|
|
3600
3547
|
PalletNftsItemDeposit: {
|
|
3601
3548
|
account: "AccountId20",
|
|
3602
3549
|
amount: "u128"
|
|
3603
3550
|
},
|
|
3604
3551
|
/**
|
|
3605
|
-
*
|
|
3552
|
+
* Lookup389: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
3606
3553
|
**/
|
|
3607
3554
|
PalletNftsCollectionMetadata: {
|
|
3608
3555
|
deposit: "u128",
|
|
3609
3556
|
data: "Bytes"
|
|
3610
3557
|
},
|
|
3611
3558
|
/**
|
|
3612
|
-
*
|
|
3559
|
+
* Lookup390: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
|
|
3613
3560
|
**/
|
|
3614
3561
|
PalletNftsItemMetadata: {
|
|
3615
3562
|
deposit: "PalletNftsItemMetadataDeposit",
|
|
3616
3563
|
data: "Bytes"
|
|
3617
3564
|
},
|
|
3618
3565
|
/**
|
|
3619
|
-
*
|
|
3566
|
+
* Lookup391: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
|
|
3620
3567
|
**/
|
|
3621
3568
|
PalletNftsItemMetadataDeposit: {
|
|
3622
3569
|
account: "Option<AccountId20>",
|
|
3623
3570
|
amount: "u128"
|
|
3624
3571
|
},
|
|
3625
3572
|
/**
|
|
3626
|
-
*
|
|
3573
|
+
* Lookup394: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
|
|
3627
3574
|
**/
|
|
3628
3575
|
PalletNftsAttributeDeposit: {
|
|
3629
3576
|
account: "Option<AccountId20>",
|
|
3630
3577
|
amount: "u128"
|
|
3631
3578
|
},
|
|
3632
3579
|
/**
|
|
3633
|
-
*
|
|
3580
|
+
* Lookup398: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
3634
3581
|
**/
|
|
3635
3582
|
PalletNftsPendingSwap: {
|
|
3636
3583
|
desiredCollection: "u32",
|
|
@@ -3639,7 +3586,7 @@ export default {
|
|
|
3639
3586
|
deadline: "u32"
|
|
3640
3587
|
},
|
|
3641
3588
|
/**
|
|
3642
|
-
*
|
|
3589
|
+
* Lookup400: pallet_nfts::types::PalletFeature
|
|
3643
3590
|
**/
|
|
3644
3591
|
PalletNftsPalletFeature: {
|
|
3645
3592
|
_enum: [
|
|
@@ -3655,7 +3602,7 @@ export default {
|
|
|
3655
3602
|
]
|
|
3656
3603
|
},
|
|
3657
3604
|
/**
|
|
3658
|
-
*
|
|
3605
|
+
* Lookup401: pallet_nfts::pallet::Error<T, I>
|
|
3659
3606
|
**/
|
|
3660
3607
|
PalletNftsError: {
|
|
3661
3608
|
_enum: [
|
|
@@ -3707,47 +3654,47 @@ export default {
|
|
|
3707
3654
|
]
|
|
3708
3655
|
},
|
|
3709
3656
|
/**
|
|
3710
|
-
*
|
|
3657
|
+
* Lookup404: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
3711
3658
|
**/
|
|
3712
3659
|
FrameSystemExtensionsCheckNonZeroSender: "Null",
|
|
3713
3660
|
/**
|
|
3714
|
-
*
|
|
3661
|
+
* Lookup405: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
3715
3662
|
**/
|
|
3716
3663
|
FrameSystemExtensionsCheckSpecVersion: "Null",
|
|
3717
3664
|
/**
|
|
3718
|
-
*
|
|
3665
|
+
* Lookup406: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
3719
3666
|
**/
|
|
3720
3667
|
FrameSystemExtensionsCheckTxVersion: "Null",
|
|
3721
3668
|
/**
|
|
3722
|
-
*
|
|
3669
|
+
* Lookup407: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
3723
3670
|
**/
|
|
3724
3671
|
FrameSystemExtensionsCheckGenesis: "Null",
|
|
3725
3672
|
/**
|
|
3726
|
-
*
|
|
3673
|
+
* Lookup410: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
3727
3674
|
**/
|
|
3728
3675
|
FrameSystemExtensionsCheckNonce: "Compact<u32>",
|
|
3729
3676
|
/**
|
|
3730
|
-
*
|
|
3677
|
+
* Lookup411: frame_system::extensions::check_weight::CheckWeight<T>
|
|
3731
3678
|
**/
|
|
3732
3679
|
FrameSystemExtensionsCheckWeight: "Null",
|
|
3733
3680
|
/**
|
|
3734
|
-
*
|
|
3681
|
+
* Lookup412: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
3735
3682
|
**/
|
|
3736
3683
|
PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
|
|
3737
3684
|
/**
|
|
3738
|
-
*
|
|
3685
|
+
* Lookup413: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
3739
3686
|
**/
|
|
3740
3687
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
3741
3688
|
mode: "FrameMetadataHashExtensionMode"
|
|
3742
3689
|
},
|
|
3743
3690
|
/**
|
|
3744
|
-
*
|
|
3691
|
+
* Lookup414: frame_metadata_hash_extension::Mode
|
|
3745
3692
|
**/
|
|
3746
3693
|
FrameMetadataHashExtensionMode: {
|
|
3747
3694
|
_enum: ["Disabled", "Enabled"]
|
|
3748
3695
|
},
|
|
3749
3696
|
/**
|
|
3750
|
-
*
|
|
3697
|
+
* Lookup416: sh_solochain_evm_runtime::Runtime
|
|
3751
3698
|
**/
|
|
3752
3699
|
ShSolochainEvmRuntimeRuntime: "Null"
|
|
3753
3700
|
};
|