@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
|
@@ -564,8 +564,8 @@ export default {
|
|
|
564
564
|
MostlyStablePrice: "u128",
|
|
565
565
|
MaxPrice: "u128",
|
|
566
566
|
MinPrice: "u128",
|
|
567
|
-
UpperExponentFactor: "
|
|
568
|
-
LowerExponentFactor: "
|
|
567
|
+
UpperExponentFactor: "u128",
|
|
568
|
+
LowerExponentFactor: "u128",
|
|
569
569
|
ZeroSizeBucketFixedRate: "u128",
|
|
570
570
|
IdealUtilisationRate: "Perbill",
|
|
571
571
|
DecayRate: "Perbill",
|
|
@@ -873,12 +873,6 @@ export default {
|
|
|
873
873
|
bucketId: "H256",
|
|
874
874
|
maybeCollectionId: "Option<u32>"
|
|
875
875
|
},
|
|
876
|
-
MoveBucketRequested: {
|
|
877
|
-
who: "AccountId20",
|
|
878
|
-
bucketId: "H256",
|
|
879
|
-
newMspId: "H256",
|
|
880
|
-
newValuePropId: "H256"
|
|
881
|
-
},
|
|
882
876
|
BucketPrivacyUpdated: {
|
|
883
877
|
who: "AccountId20",
|
|
884
878
|
bucketId: "H256",
|
|
@@ -890,6 +884,26 @@ export default {
|
|
|
890
884
|
bucketId: "H256",
|
|
891
885
|
collectionId: "u32"
|
|
892
886
|
},
|
|
887
|
+
MoveBucketRequested: {
|
|
888
|
+
who: "AccountId20",
|
|
889
|
+
bucketId: "H256",
|
|
890
|
+
newMspId: "H256",
|
|
891
|
+
newValuePropId: "H256"
|
|
892
|
+
},
|
|
893
|
+
MoveBucketRequestExpired: {
|
|
894
|
+
bucketId: "H256"
|
|
895
|
+
},
|
|
896
|
+
MoveBucketAccepted: {
|
|
897
|
+
bucketId: "H256",
|
|
898
|
+
oldMspId: "Option<H256>",
|
|
899
|
+
newMspId: "H256",
|
|
900
|
+
valuePropId: "H256"
|
|
901
|
+
},
|
|
902
|
+
MoveBucketRejected: {
|
|
903
|
+
bucketId: "H256",
|
|
904
|
+
oldMspId: "Option<H256>",
|
|
905
|
+
newMspId: "H256"
|
|
906
|
+
},
|
|
893
907
|
NewStorageRequest: {
|
|
894
908
|
_alias: {
|
|
895
909
|
size_: "size"
|
|
@@ -907,6 +921,27 @@ export default {
|
|
|
907
921
|
fileKey: "H256",
|
|
908
922
|
fileMetadata: "ShpFileMetadataFileMetadata"
|
|
909
923
|
},
|
|
924
|
+
StorageRequestFulfilled: {
|
|
925
|
+
fileKey: "H256"
|
|
926
|
+
},
|
|
927
|
+
StorageRequestExpired: {
|
|
928
|
+
fileKey: "H256"
|
|
929
|
+
},
|
|
930
|
+
StorageRequestRevoked: {
|
|
931
|
+
fileKey: "H256"
|
|
932
|
+
},
|
|
933
|
+
StorageRequestRejected: {
|
|
934
|
+
fileKey: "H256",
|
|
935
|
+
mspId: "H256",
|
|
936
|
+
bucketId: "H256",
|
|
937
|
+
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
938
|
+
},
|
|
939
|
+
IncompleteStorageRequest: {
|
|
940
|
+
fileKey: "H256"
|
|
941
|
+
},
|
|
942
|
+
IncompleteStorageRequestCleanedUp: {
|
|
943
|
+
fileKey: "H256"
|
|
944
|
+
},
|
|
910
945
|
AcceptedBspVolunteer: {
|
|
911
946
|
_alias: {
|
|
912
947
|
size_: "size"
|
|
@@ -926,20 +961,9 @@ export default {
|
|
|
926
961
|
skippedFileKeys: "Vec<H256>",
|
|
927
962
|
newRoot: "H256"
|
|
928
963
|
},
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
StorageRequestExpired: {
|
|
933
|
-
fileKey: "H256"
|
|
934
|
-
},
|
|
935
|
-
StorageRequestRevoked: {
|
|
936
|
-
fileKey: "H256"
|
|
937
|
-
},
|
|
938
|
-
StorageRequestRejected: {
|
|
939
|
-
fileKey: "H256",
|
|
940
|
-
mspId: "H256",
|
|
941
|
-
bucketId: "H256",
|
|
942
|
-
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
964
|
+
BspChallengeCycleInitialised: {
|
|
965
|
+
who: "AccountId20",
|
|
966
|
+
bspId: "H256"
|
|
943
967
|
},
|
|
944
968
|
BspRequestedToStopStoring: {
|
|
945
969
|
bspId: "H256",
|
|
@@ -952,9 +976,10 @@ export default {
|
|
|
952
976
|
fileKey: "H256",
|
|
953
977
|
newRoot: "H256"
|
|
954
978
|
},
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
979
|
+
MspStoppedStoringBucket: {
|
|
980
|
+
mspId: "H256",
|
|
981
|
+
owner: "AccountId20",
|
|
982
|
+
bucketId: "H256"
|
|
958
983
|
},
|
|
959
984
|
SpStopStoringInsolventUser: {
|
|
960
985
|
spId: "H256",
|
|
@@ -968,76 +993,6 @@ export default {
|
|
|
968
993
|
owner: "AccountId20",
|
|
969
994
|
bucketId: "H256"
|
|
970
995
|
},
|
|
971
|
-
FailedToQueuePriorityChallenge: {
|
|
972
|
-
fileKey: "H256",
|
|
973
|
-
error: "SpRuntimeDispatchError"
|
|
974
|
-
},
|
|
975
|
-
FileDeletionRequest: {
|
|
976
|
-
user: "AccountId20",
|
|
977
|
-
fileKey: "H256",
|
|
978
|
-
fileSize: "u64",
|
|
979
|
-
bucketId: "H256",
|
|
980
|
-
mspId: "H256",
|
|
981
|
-
proofOfInclusion: "bool"
|
|
982
|
-
},
|
|
983
|
-
ProofSubmittedForPendingFileDeletionRequest: {
|
|
984
|
-
user: "AccountId20",
|
|
985
|
-
fileKey: "H256",
|
|
986
|
-
fileSize: "u64",
|
|
987
|
-
bucketId: "H256",
|
|
988
|
-
mspId: "H256",
|
|
989
|
-
proofOfInclusion: "bool"
|
|
990
|
-
},
|
|
991
|
-
BspChallengeCycleInitialised: {
|
|
992
|
-
who: "AccountId20",
|
|
993
|
-
bspId: "H256"
|
|
994
|
-
},
|
|
995
|
-
MoveBucketRequestExpired: {
|
|
996
|
-
bucketId: "H256"
|
|
997
|
-
},
|
|
998
|
-
MoveBucketAccepted: {
|
|
999
|
-
bucketId: "H256",
|
|
1000
|
-
oldMspId: "Option<H256>",
|
|
1001
|
-
newMspId: "H256",
|
|
1002
|
-
valuePropId: "H256"
|
|
1003
|
-
},
|
|
1004
|
-
MoveBucketRejected: {
|
|
1005
|
-
bucketId: "H256",
|
|
1006
|
-
oldMspId: "Option<H256>",
|
|
1007
|
-
newMspId: "H256"
|
|
1008
|
-
},
|
|
1009
|
-
MspStoppedStoringBucket: {
|
|
1010
|
-
mspId: "H256",
|
|
1011
|
-
owner: "AccountId20",
|
|
1012
|
-
bucketId: "H256"
|
|
1013
|
-
},
|
|
1014
|
-
FailedToGetMspOfBucket: {
|
|
1015
|
-
bucketId: "H256",
|
|
1016
|
-
error: "SpRuntimeDispatchError"
|
|
1017
|
-
},
|
|
1018
|
-
FailedToDecreaseMspUsedCapacity: {
|
|
1019
|
-
user: "AccountId20",
|
|
1020
|
-
mspId: "H256",
|
|
1021
|
-
fileKey: "H256",
|
|
1022
|
-
fileSize: "u64",
|
|
1023
|
-
error: "SpRuntimeDispatchError"
|
|
1024
|
-
},
|
|
1025
|
-
UsedCapacityShouldBeZero: {
|
|
1026
|
-
actualUsedCapacity: "u64"
|
|
1027
|
-
},
|
|
1028
|
-
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1029
|
-
fileKey: "H256",
|
|
1030
|
-
owner: "AccountId20",
|
|
1031
|
-
amountToReturn: "u128",
|
|
1032
|
-
error: "SpRuntimeDispatchError"
|
|
1033
|
-
},
|
|
1034
|
-
FailedToTransferDepositFundsToBsp: {
|
|
1035
|
-
fileKey: "H256",
|
|
1036
|
-
owner: "AccountId20",
|
|
1037
|
-
bspId: "H256",
|
|
1038
|
-
amountToTransfer: "u128",
|
|
1039
|
-
error: "SpRuntimeDispatchError"
|
|
1040
|
-
},
|
|
1041
996
|
FileDeletionRequested: {
|
|
1042
997
|
signedDeleteIntention: "PalletFileSystemFileOperationIntention",
|
|
1043
998
|
signature: "FpAccountEthereumSignature"
|
|
@@ -1057,13 +1012,26 @@ export default {
|
|
|
1057
1012
|
oldRoot: "H256",
|
|
1058
1013
|
newRoot: "H256"
|
|
1059
1014
|
},
|
|
1060
|
-
|
|
1061
|
-
|
|
1015
|
+
UsedCapacityShouldBeZero: {
|
|
1016
|
+
actualUsedCapacity: "u64"
|
|
1017
|
+
},
|
|
1018
|
+
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1019
|
+
fileKey: "H256",
|
|
1020
|
+
owner: "AccountId20",
|
|
1021
|
+
amountToReturn: "u128",
|
|
1022
|
+
error: "SpRuntimeDispatchError"
|
|
1023
|
+
},
|
|
1024
|
+
UserOperationPauseFlagsUpdated: {
|
|
1025
|
+
_alias: {
|
|
1026
|
+
new_: "new"
|
|
1027
|
+
},
|
|
1028
|
+
old: "u32",
|
|
1029
|
+
new_: "u32"
|
|
1062
1030
|
}
|
|
1063
1031
|
}
|
|
1064
1032
|
},
|
|
1065
1033
|
/**
|
|
1066
|
-
*
|
|
1034
|
+
* Lookup113: shp_file_metadata::FileMetadata
|
|
1067
1035
|
**/
|
|
1068
1036
|
ShpFileMetadataFileMetadata: {
|
|
1069
1037
|
owner: "Bytes",
|
|
@@ -1073,7 +1041,7 @@ export default {
|
|
|
1073
1041
|
fingerprint: "ShpFileMetadataFingerprint"
|
|
1074
1042
|
},
|
|
1075
1043
|
/**
|
|
1076
|
-
*
|
|
1044
|
+
* Lookup114: shp_file_metadata::Fingerprint
|
|
1077
1045
|
**/
|
|
1078
1046
|
ShpFileMetadataFingerprint: "[u8;32]",
|
|
1079
1047
|
/**
|
|
@@ -1089,33 +1057,24 @@ export default {
|
|
|
1089
1057
|
]
|
|
1090
1058
|
},
|
|
1091
1059
|
/**
|
|
1092
|
-
*
|
|
1093
|
-
**/
|
|
1094
|
-
PalletFileSystemEitherAccountIdOrMspId: {
|
|
1095
|
-
_enum: {
|
|
1096
|
-
AccountId: "AccountId20",
|
|
1097
|
-
MspId: "H256"
|
|
1098
|
-
}
|
|
1099
|
-
},
|
|
1100
|
-
/**
|
|
1101
|
-
* Lookup118: pallet_file_system::types::FileOperationIntention<T>
|
|
1060
|
+
* Lookup120: pallet_file_system::types::FileOperationIntention<T>
|
|
1102
1061
|
**/
|
|
1103
1062
|
PalletFileSystemFileOperationIntention: {
|
|
1104
1063
|
fileKey: "H256",
|
|
1105
1064
|
operation: "PalletFileSystemFileOperation"
|
|
1106
1065
|
},
|
|
1107
1066
|
/**
|
|
1108
|
-
*
|
|
1067
|
+
* Lookup121: pallet_file_system::types::FileOperation
|
|
1109
1068
|
**/
|
|
1110
1069
|
PalletFileSystemFileOperation: {
|
|
1111
1070
|
_enum: ["Delete"]
|
|
1112
1071
|
},
|
|
1113
1072
|
/**
|
|
1114
|
-
*
|
|
1073
|
+
* Lookup122: fp_account::EthereumSignature
|
|
1115
1074
|
**/
|
|
1116
1075
|
FpAccountEthereumSignature: "[u8;65]",
|
|
1117
1076
|
/**
|
|
1118
|
-
*
|
|
1077
|
+
* Lookup128: pallet_proofs_dealer::pallet::Event<T>
|
|
1119
1078
|
**/
|
|
1120
1079
|
PalletProofsDealerEvent: {
|
|
1121
1080
|
_enum: {
|
|
@@ -1172,41 +1131,41 @@ export default {
|
|
|
1172
1131
|
}
|
|
1173
1132
|
},
|
|
1174
1133
|
/**
|
|
1175
|
-
*
|
|
1134
|
+
* Lookup129: pallet_proofs_dealer::types::Proof<T>
|
|
1176
1135
|
**/
|
|
1177
1136
|
PalletProofsDealerProof: {
|
|
1178
1137
|
forestProof: "SpTrieStorageProofCompactProof",
|
|
1179
1138
|
keyProofs: "BTreeMap<H256, PalletProofsDealerKeyProof>"
|
|
1180
1139
|
},
|
|
1181
1140
|
/**
|
|
1182
|
-
*
|
|
1141
|
+
* Lookup130: sp_trie::storage_proof::CompactProof
|
|
1183
1142
|
**/
|
|
1184
1143
|
SpTrieStorageProofCompactProof: {
|
|
1185
1144
|
encodedNodes: "Vec<Bytes>"
|
|
1186
1145
|
},
|
|
1187
1146
|
/**
|
|
1188
|
-
*
|
|
1147
|
+
* Lookup133: pallet_proofs_dealer::types::KeyProof<T>
|
|
1189
1148
|
**/
|
|
1190
1149
|
PalletProofsDealerKeyProof: {
|
|
1191
1150
|
proof: "ShpFileKeyVerifierFileKeyProof",
|
|
1192
1151
|
challengeCount: "u32"
|
|
1193
1152
|
},
|
|
1194
1153
|
/**
|
|
1195
|
-
*
|
|
1154
|
+
* Lookup134: shp_file_key_verifier::types::FileKeyProof
|
|
1196
1155
|
**/
|
|
1197
1156
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1198
1157
|
fileMetadata: "ShpFileMetadataFileMetadata",
|
|
1199
1158
|
proof: "SpTrieStorageProofCompactProof"
|
|
1200
1159
|
},
|
|
1201
1160
|
/**
|
|
1202
|
-
*
|
|
1161
|
+
* Lookup138: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1203
1162
|
**/
|
|
1204
1163
|
PalletProofsDealerCustomChallenge: {
|
|
1205
1164
|
key: "H256",
|
|
1206
1165
|
shouldRemoveKey: "bool"
|
|
1207
1166
|
},
|
|
1208
1167
|
/**
|
|
1209
|
-
*
|
|
1168
|
+
* Lookup142: shp_traits::TrieMutation
|
|
1210
1169
|
**/
|
|
1211
1170
|
ShpTraitsTrieMutation: {
|
|
1212
1171
|
_enum: {
|
|
@@ -1215,19 +1174,19 @@ export default {
|
|
|
1215
1174
|
}
|
|
1216
1175
|
},
|
|
1217
1176
|
/**
|
|
1218
|
-
*
|
|
1177
|
+
* Lookup143: shp_traits::TrieAddMutation
|
|
1219
1178
|
**/
|
|
1220
1179
|
ShpTraitsTrieAddMutation: {
|
|
1221
1180
|
value: "Bytes"
|
|
1222
1181
|
},
|
|
1223
1182
|
/**
|
|
1224
|
-
*
|
|
1183
|
+
* Lookup144: shp_traits::TrieRemoveMutation
|
|
1225
1184
|
**/
|
|
1226
1185
|
ShpTraitsTrieRemoveMutation: {
|
|
1227
1186
|
maybeValue: "Option<Bytes>"
|
|
1228
1187
|
},
|
|
1229
1188
|
/**
|
|
1230
|
-
*
|
|
1189
|
+
* Lookup146: pallet_randomness::pallet::Event<T>
|
|
1231
1190
|
**/
|
|
1232
1191
|
PalletRandomnessEvent: {
|
|
1233
1192
|
_enum: {
|
|
@@ -1239,7 +1198,7 @@ export default {
|
|
|
1239
1198
|
}
|
|
1240
1199
|
},
|
|
1241
1200
|
/**
|
|
1242
|
-
*
|
|
1201
|
+
* Lookup147: pallet_payment_streams::pallet::Event<T>
|
|
1243
1202
|
**/
|
|
1244
1203
|
PalletPaymentStreamsEvent: {
|
|
1245
1204
|
_enum: {
|
|
@@ -1307,7 +1266,7 @@ export default {
|
|
|
1307
1266
|
}
|
|
1308
1267
|
},
|
|
1309
1268
|
/**
|
|
1310
|
-
*
|
|
1269
|
+
* Lookup149: pallet_bucket_nfts::pallet::Event<T>
|
|
1311
1270
|
**/
|
|
1312
1271
|
PalletBucketNftsEvent: {
|
|
1313
1272
|
_enum: {
|
|
@@ -1328,7 +1287,7 @@ export default {
|
|
|
1328
1287
|
}
|
|
1329
1288
|
},
|
|
1330
1289
|
/**
|
|
1331
|
-
*
|
|
1290
|
+
* Lookup150: pallet_nfts::pallet::Event<T, I>
|
|
1332
1291
|
**/
|
|
1333
1292
|
PalletNftsEvent: {
|
|
1334
1293
|
_enum: {
|
|
@@ -1529,7 +1488,7 @@ export default {
|
|
|
1529
1488
|
}
|
|
1530
1489
|
},
|
|
1531
1490
|
/**
|
|
1532
|
-
*
|
|
1491
|
+
* Lookup154: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
|
|
1533
1492
|
**/
|
|
1534
1493
|
PalletNftsAttributeNamespace: {
|
|
1535
1494
|
_enum: {
|
|
@@ -1540,20 +1499,20 @@ export default {
|
|
|
1540
1499
|
}
|
|
1541
1500
|
},
|
|
1542
1501
|
/**
|
|
1543
|
-
*
|
|
1502
|
+
* Lookup156: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1544
1503
|
**/
|
|
1545
1504
|
PalletNftsPriceWithDirection: {
|
|
1546
1505
|
amount: "u128",
|
|
1547
1506
|
direction: "PalletNftsPriceDirection"
|
|
1548
1507
|
},
|
|
1549
1508
|
/**
|
|
1550
|
-
*
|
|
1509
|
+
* Lookup157: pallet_nfts::types::PriceDirection
|
|
1551
1510
|
**/
|
|
1552
1511
|
PalletNftsPriceDirection: {
|
|
1553
1512
|
_enum: ["Send", "Receive"]
|
|
1554
1513
|
},
|
|
1555
1514
|
/**
|
|
1556
|
-
*
|
|
1515
|
+
* Lookup158: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
1557
1516
|
**/
|
|
1558
1517
|
PalletNftsPalletAttributes: {
|
|
1559
1518
|
_enum: {
|
|
@@ -1562,7 +1521,7 @@ export default {
|
|
|
1562
1521
|
}
|
|
1563
1522
|
},
|
|
1564
1523
|
/**
|
|
1565
|
-
*
|
|
1524
|
+
* Lookup159: frame_system::Phase
|
|
1566
1525
|
**/
|
|
1567
1526
|
FrameSystemPhase: {
|
|
1568
1527
|
_enum: {
|
|
@@ -1572,21 +1531,21 @@ export default {
|
|
|
1572
1531
|
}
|
|
1573
1532
|
},
|
|
1574
1533
|
/**
|
|
1575
|
-
*
|
|
1534
|
+
* Lookup162: frame_system::LastRuntimeUpgradeInfo
|
|
1576
1535
|
**/
|
|
1577
1536
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1578
1537
|
specVersion: "Compact<u32>",
|
|
1579
1538
|
specName: "Text"
|
|
1580
1539
|
},
|
|
1581
1540
|
/**
|
|
1582
|
-
*
|
|
1541
|
+
* Lookup164: frame_system::CodeUpgradeAuthorization<T>
|
|
1583
1542
|
**/
|
|
1584
1543
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1585
1544
|
codeHash: "H256",
|
|
1586
1545
|
checkVersion: "bool"
|
|
1587
1546
|
},
|
|
1588
1547
|
/**
|
|
1589
|
-
*
|
|
1548
|
+
* Lookup165: frame_system::pallet::Call<T>
|
|
1590
1549
|
**/
|
|
1591
1550
|
FrameSystemCall: {
|
|
1592
1551
|
_enum: {
|
|
@@ -1631,7 +1590,7 @@ export default {
|
|
|
1631
1590
|
}
|
|
1632
1591
|
},
|
|
1633
1592
|
/**
|
|
1634
|
-
*
|
|
1593
|
+
* Lookup168: frame_system::limits::BlockWeights
|
|
1635
1594
|
**/
|
|
1636
1595
|
FrameSystemLimitsBlockWeights: {
|
|
1637
1596
|
baseBlock: "SpWeightsWeightV2Weight",
|
|
@@ -1639,7 +1598,7 @@ export default {
|
|
|
1639
1598
|
perClass: "FrameSupportDispatchPerDispatchClassWeightsPerClass"
|
|
1640
1599
|
},
|
|
1641
1600
|
/**
|
|
1642
|
-
*
|
|
1601
|
+
* Lookup169: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1643
1602
|
**/
|
|
1644
1603
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1645
1604
|
normal: "FrameSystemLimitsWeightsPerClass",
|
|
@@ -1647,7 +1606,7 @@ export default {
|
|
|
1647
1606
|
mandatory: "FrameSystemLimitsWeightsPerClass"
|
|
1648
1607
|
},
|
|
1649
1608
|
/**
|
|
1650
|
-
*
|
|
1609
|
+
* Lookup170: frame_system::limits::WeightsPerClass
|
|
1651
1610
|
**/
|
|
1652
1611
|
FrameSystemLimitsWeightsPerClass: {
|
|
1653
1612
|
baseExtrinsic: "SpWeightsWeightV2Weight",
|
|
@@ -1656,13 +1615,13 @@ export default {
|
|
|
1656
1615
|
reserved: "Option<SpWeightsWeightV2Weight>"
|
|
1657
1616
|
},
|
|
1658
1617
|
/**
|
|
1659
|
-
*
|
|
1618
|
+
* Lookup172: frame_system::limits::BlockLength
|
|
1660
1619
|
**/
|
|
1661
1620
|
FrameSystemLimitsBlockLength: {
|
|
1662
1621
|
max: "FrameSupportDispatchPerDispatchClassU32"
|
|
1663
1622
|
},
|
|
1664
1623
|
/**
|
|
1665
|
-
*
|
|
1624
|
+
* Lookup173: frame_support::dispatch::PerDispatchClass<T>
|
|
1666
1625
|
**/
|
|
1667
1626
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1668
1627
|
normal: "u32",
|
|
@@ -1670,14 +1629,14 @@ export default {
|
|
|
1670
1629
|
mandatory: "u32"
|
|
1671
1630
|
},
|
|
1672
1631
|
/**
|
|
1673
|
-
*
|
|
1632
|
+
* Lookup174: sp_weights::RuntimeDbWeight
|
|
1674
1633
|
**/
|
|
1675
1634
|
SpWeightsRuntimeDbWeight: {
|
|
1676
1635
|
read: "u64",
|
|
1677
1636
|
write: "u64"
|
|
1678
1637
|
},
|
|
1679
1638
|
/**
|
|
1680
|
-
*
|
|
1639
|
+
* Lookup175: sp_version::RuntimeVersion
|
|
1681
1640
|
**/
|
|
1682
1641
|
SpVersionRuntimeVersion: {
|
|
1683
1642
|
specName: "Text",
|
|
@@ -1690,7 +1649,7 @@ export default {
|
|
|
1690
1649
|
systemVersion: "u8"
|
|
1691
1650
|
},
|
|
1692
1651
|
/**
|
|
1693
|
-
*
|
|
1652
|
+
* Lookup181: frame_system::pallet::Error<T>
|
|
1694
1653
|
**/
|
|
1695
1654
|
FrameSystemError: {
|
|
1696
1655
|
_enum: [
|
|
@@ -1706,11 +1665,11 @@ export default {
|
|
|
1706
1665
|
]
|
|
1707
1666
|
},
|
|
1708
1667
|
/**
|
|
1709
|
-
*
|
|
1668
|
+
* Lookup184: sp_consensus_babe::app::Public
|
|
1710
1669
|
**/
|
|
1711
1670
|
SpConsensusBabeAppPublic: "[u8;32]",
|
|
1712
1671
|
/**
|
|
1713
|
-
*
|
|
1672
|
+
* Lookup187: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1714
1673
|
**/
|
|
1715
1674
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1716
1675
|
_enum: {
|
|
@@ -1722,13 +1681,13 @@ export default {
|
|
|
1722
1681
|
}
|
|
1723
1682
|
},
|
|
1724
1683
|
/**
|
|
1725
|
-
*
|
|
1684
|
+
* Lookup189: sp_consensus_babe::AllowedSlots
|
|
1726
1685
|
**/
|
|
1727
1686
|
SpConsensusBabeAllowedSlots: {
|
|
1728
1687
|
_enum: ["PrimarySlots", "PrimaryAndSecondaryPlainSlots", "PrimaryAndSecondaryVRFSlots"]
|
|
1729
1688
|
},
|
|
1730
1689
|
/**
|
|
1731
|
-
*
|
|
1690
|
+
* Lookup193: sp_consensus_babe::digests::PreDigest
|
|
1732
1691
|
**/
|
|
1733
1692
|
SpConsensusBabeDigestsPreDigest: {
|
|
1734
1693
|
_enum: {
|
|
@@ -1739,7 +1698,7 @@ export default {
|
|
|
1739
1698
|
}
|
|
1740
1699
|
},
|
|
1741
1700
|
/**
|
|
1742
|
-
*
|
|
1701
|
+
* Lookup194: sp_consensus_babe::digests::PrimaryPreDigest
|
|
1743
1702
|
**/
|
|
1744
1703
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
1745
1704
|
authorityIndex: "u32",
|
|
@@ -1747,21 +1706,21 @@ export default {
|
|
|
1747
1706
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1748
1707
|
},
|
|
1749
1708
|
/**
|
|
1750
|
-
*
|
|
1709
|
+
* Lookup195: sp_core::sr25519::vrf::VrfSignature
|
|
1751
1710
|
**/
|
|
1752
1711
|
SpCoreSr25519VrfVrfSignature: {
|
|
1753
1712
|
preOutput: "[u8;32]",
|
|
1754
1713
|
proof: "[u8;64]"
|
|
1755
1714
|
},
|
|
1756
1715
|
/**
|
|
1757
|
-
*
|
|
1716
|
+
* Lookup197: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
1758
1717
|
**/
|
|
1759
1718
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
1760
1719
|
authorityIndex: "u32",
|
|
1761
1720
|
slot: "u64"
|
|
1762
1721
|
},
|
|
1763
1722
|
/**
|
|
1764
|
-
*
|
|
1723
|
+
* Lookup198: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
1765
1724
|
**/
|
|
1766
1725
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
1767
1726
|
authorityIndex: "u32",
|
|
@@ -1769,14 +1728,14 @@ export default {
|
|
|
1769
1728
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1770
1729
|
},
|
|
1771
1730
|
/**
|
|
1772
|
-
*
|
|
1731
|
+
* Lookup200: sp_consensus_babe::BabeEpochConfiguration
|
|
1773
1732
|
**/
|
|
1774
1733
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
1775
1734
|
c: "(u64,u64)",
|
|
1776
1735
|
allowedSlots: "SpConsensusBabeAllowedSlots"
|
|
1777
1736
|
},
|
|
1778
1737
|
/**
|
|
1779
|
-
*
|
|
1738
|
+
* Lookup204: pallet_babe::pallet::Call<T>
|
|
1780
1739
|
**/
|
|
1781
1740
|
PalletBabeCall: {
|
|
1782
1741
|
_enum: {
|
|
@@ -1794,7 +1753,7 @@ export default {
|
|
|
1794
1753
|
}
|
|
1795
1754
|
},
|
|
1796
1755
|
/**
|
|
1797
|
-
*
|
|
1756
|
+
* Lookup205: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1798
1757
|
**/
|
|
1799
1758
|
SpConsensusSlotsEquivocationProof: {
|
|
1800
1759
|
offender: "SpConsensusBabeAppPublic",
|
|
@@ -1803,7 +1762,7 @@ export default {
|
|
|
1803
1762
|
secondHeader: "SpRuntimeHeader"
|
|
1804
1763
|
},
|
|
1805
1764
|
/**
|
|
1806
|
-
*
|
|
1765
|
+
* Lookup206: sp_runtime::generic::header::Header<Number, Hash>
|
|
1807
1766
|
**/
|
|
1808
1767
|
SpRuntimeHeader: {
|
|
1809
1768
|
parentHash: "H256",
|
|
@@ -1813,7 +1772,7 @@ export default {
|
|
|
1813
1772
|
digest: "SpRuntimeDigest"
|
|
1814
1773
|
},
|
|
1815
1774
|
/**
|
|
1816
|
-
*
|
|
1775
|
+
* Lookup207: sp_session::MembershipProof
|
|
1817
1776
|
**/
|
|
1818
1777
|
SpSessionMembershipProof: {
|
|
1819
1778
|
session: "u32",
|
|
@@ -1821,7 +1780,7 @@ export default {
|
|
|
1821
1780
|
validatorCount: "u32"
|
|
1822
1781
|
},
|
|
1823
1782
|
/**
|
|
1824
|
-
*
|
|
1783
|
+
* Lookup208: pallet_babe::pallet::Error<T>
|
|
1825
1784
|
**/
|
|
1826
1785
|
PalletBabeError: {
|
|
1827
1786
|
_enum: [
|
|
@@ -1832,7 +1791,7 @@ export default {
|
|
|
1832
1791
|
]
|
|
1833
1792
|
},
|
|
1834
1793
|
/**
|
|
1835
|
-
*
|
|
1794
|
+
* Lookup209: pallet_timestamp::pallet::Call<T>
|
|
1836
1795
|
**/
|
|
1837
1796
|
PalletTimestampCall: {
|
|
1838
1797
|
_enum: {
|
|
@@ -1842,7 +1801,7 @@ export default {
|
|
|
1842
1801
|
}
|
|
1843
1802
|
},
|
|
1844
1803
|
/**
|
|
1845
|
-
*
|
|
1804
|
+
* Lookup211: pallet_balances::types::BalanceLock<Balance>
|
|
1846
1805
|
**/
|
|
1847
1806
|
PalletBalancesBalanceLock: {
|
|
1848
1807
|
id: "[u8;8]",
|
|
@@ -1850,27 +1809,27 @@ export default {
|
|
|
1850
1809
|
reasons: "PalletBalancesReasons"
|
|
1851
1810
|
},
|
|
1852
1811
|
/**
|
|
1853
|
-
*
|
|
1812
|
+
* Lookup212: pallet_balances::types::Reasons
|
|
1854
1813
|
**/
|
|
1855
1814
|
PalletBalancesReasons: {
|
|
1856
1815
|
_enum: ["Fee", "Misc", "All"]
|
|
1857
1816
|
},
|
|
1858
1817
|
/**
|
|
1859
|
-
*
|
|
1818
|
+
* Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1860
1819
|
**/
|
|
1861
1820
|
PalletBalancesReserveData: {
|
|
1862
1821
|
id: "[u8;8]",
|
|
1863
1822
|
amount: "u128"
|
|
1864
1823
|
},
|
|
1865
1824
|
/**
|
|
1866
|
-
*
|
|
1825
|
+
* Lookup218: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
|
|
1867
1826
|
**/
|
|
1868
1827
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
1869
1828
|
id: "ShSolochainEvmRuntimeRuntimeHoldReason",
|
|
1870
1829
|
amount: "u128"
|
|
1871
1830
|
},
|
|
1872
1831
|
/**
|
|
1873
|
-
*
|
|
1832
|
+
* Lookup219: sh_solochain_evm_runtime::RuntimeHoldReason
|
|
1874
1833
|
**/
|
|
1875
1834
|
ShSolochainEvmRuntimeRuntimeHoldReason: {
|
|
1876
1835
|
_enum: {
|
|
@@ -1962,36 +1921,36 @@ export default {
|
|
|
1962
1921
|
}
|
|
1963
1922
|
},
|
|
1964
1923
|
/**
|
|
1965
|
-
*
|
|
1924
|
+
* Lookup220: pallet_storage_providers::pallet::HoldReason
|
|
1966
1925
|
**/
|
|
1967
1926
|
PalletStorageProvidersHoldReason: {
|
|
1968
1927
|
_enum: ["StorageProviderDeposit", "BucketDeposit"]
|
|
1969
1928
|
},
|
|
1970
1929
|
/**
|
|
1971
|
-
*
|
|
1930
|
+
* Lookup221: pallet_file_system::pallet::HoldReason
|
|
1972
1931
|
**/
|
|
1973
1932
|
PalletFileSystemHoldReason: {
|
|
1974
1933
|
_enum: ["StorageRequestCreationHold", "FileDeletionRequestHold"]
|
|
1975
1934
|
},
|
|
1976
1935
|
/**
|
|
1977
|
-
*
|
|
1936
|
+
* Lookup222: pallet_payment_streams::pallet::HoldReason
|
|
1978
1937
|
**/
|
|
1979
1938
|
PalletPaymentStreamsHoldReason: {
|
|
1980
1939
|
_enum: ["PaymentStreamDeposit"]
|
|
1981
1940
|
},
|
|
1982
1941
|
/**
|
|
1983
|
-
*
|
|
1942
|
+
* Lookup225: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
|
|
1984
1943
|
**/
|
|
1985
1944
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
1986
1945
|
id: "ShSolochainEvmRuntimeRuntimeFreezeReason",
|
|
1987
1946
|
amount: "u128"
|
|
1988
1947
|
},
|
|
1989
1948
|
/**
|
|
1990
|
-
*
|
|
1949
|
+
* Lookup226: sh_solochain_evm_runtime::RuntimeFreezeReason
|
|
1991
1950
|
**/
|
|
1992
1951
|
ShSolochainEvmRuntimeRuntimeFreezeReason: "Null",
|
|
1993
1952
|
/**
|
|
1994
|
-
*
|
|
1953
|
+
* Lookup228: pallet_balances::pallet::Call<T, I>
|
|
1995
1954
|
**/
|
|
1996
1955
|
PalletBalancesCall: {
|
|
1997
1956
|
_enum: {
|
|
@@ -2036,13 +1995,13 @@ export default {
|
|
|
2036
1995
|
}
|
|
2037
1996
|
},
|
|
2038
1997
|
/**
|
|
2039
|
-
*
|
|
1998
|
+
* Lookup230: pallet_balances::types::AdjustmentDirection
|
|
2040
1999
|
**/
|
|
2041
2000
|
PalletBalancesAdjustmentDirection: {
|
|
2042
2001
|
_enum: ["Increase", "Decrease"]
|
|
2043
2002
|
},
|
|
2044
2003
|
/**
|
|
2045
|
-
*
|
|
2004
|
+
* Lookup231: pallet_balances::pallet::Error<T, I>
|
|
2046
2005
|
**/
|
|
2047
2006
|
PalletBalancesError: {
|
|
2048
2007
|
_enum: [
|
|
@@ -2061,25 +2020,25 @@ export default {
|
|
|
2061
2020
|
]
|
|
2062
2021
|
},
|
|
2063
2022
|
/**
|
|
2064
|
-
*
|
|
2023
|
+
* Lookup232: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
|
|
2065
2024
|
**/
|
|
2066
2025
|
SpStakingOffenceOffenceDetails: {
|
|
2067
2026
|
offender: "(AccountId20,Null)",
|
|
2068
2027
|
reporters: "Vec<AccountId20>"
|
|
2069
2028
|
},
|
|
2070
2029
|
/**
|
|
2071
|
-
*
|
|
2030
|
+
* Lookup238: sh_solochain_evm_runtime::SessionKeys
|
|
2072
2031
|
**/
|
|
2073
2032
|
ShSolochainEvmRuntimeSessionKeys: {
|
|
2074
2033
|
babe: "SpConsensusBabeAppPublic",
|
|
2075
2034
|
grandpa: "SpConsensusGrandpaAppPublic"
|
|
2076
2035
|
},
|
|
2077
2036
|
/**
|
|
2078
|
-
*
|
|
2037
|
+
* Lookup240: sp_core::crypto::KeyTypeId
|
|
2079
2038
|
**/
|
|
2080
2039
|
SpCoreCryptoKeyTypeId: "[u8;4]",
|
|
2081
2040
|
/**
|
|
2082
|
-
*
|
|
2041
|
+
* Lookup241: pallet_session::pallet::Call<T>
|
|
2083
2042
|
**/
|
|
2084
2043
|
PalletSessionCall: {
|
|
2085
2044
|
_enum: {
|
|
@@ -2094,13 +2053,13 @@ export default {
|
|
|
2094
2053
|
}
|
|
2095
2054
|
},
|
|
2096
2055
|
/**
|
|
2097
|
-
*
|
|
2056
|
+
* Lookup242: pallet_session::pallet::Error<T>
|
|
2098
2057
|
**/
|
|
2099
2058
|
PalletSessionError: {
|
|
2100
2059
|
_enum: ["InvalidProof", "NoAssociatedValidatorId", "DuplicatedKey", "NoKeys", "NoAccount"]
|
|
2101
2060
|
},
|
|
2102
2061
|
/**
|
|
2103
|
-
*
|
|
2062
|
+
* Lookup243: pallet_grandpa::StoredState<N>
|
|
2104
2063
|
**/
|
|
2105
2064
|
PalletGrandpaStoredState: {
|
|
2106
2065
|
_enum: {
|
|
@@ -2117,7 +2076,7 @@ export default {
|
|
|
2117
2076
|
}
|
|
2118
2077
|
},
|
|
2119
2078
|
/**
|
|
2120
|
-
*
|
|
2079
|
+
* Lookup244: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2121
2080
|
**/
|
|
2122
2081
|
PalletGrandpaStoredPendingChange: {
|
|
2123
2082
|
scheduledAt: "u32",
|
|
@@ -2126,7 +2085,7 @@ export default {
|
|
|
2126
2085
|
forced: "Option<u32>"
|
|
2127
2086
|
},
|
|
2128
2087
|
/**
|
|
2129
|
-
*
|
|
2088
|
+
* Lookup246: pallet_grandpa::pallet::Call<T>
|
|
2130
2089
|
**/
|
|
2131
2090
|
PalletGrandpaCall: {
|
|
2132
2091
|
_enum: {
|
|
@@ -2145,14 +2104,14 @@ export default {
|
|
|
2145
2104
|
}
|
|
2146
2105
|
},
|
|
2147
2106
|
/**
|
|
2148
|
-
*
|
|
2107
|
+
* Lookup247: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2149
2108
|
**/
|
|
2150
2109
|
SpConsensusGrandpaEquivocationProof: {
|
|
2151
2110
|
setId: "u64",
|
|
2152
2111
|
equivocation: "SpConsensusGrandpaEquivocation"
|
|
2153
2112
|
},
|
|
2154
2113
|
/**
|
|
2155
|
-
*
|
|
2114
|
+
* Lookup248: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2156
2115
|
**/
|
|
2157
2116
|
SpConsensusGrandpaEquivocation: {
|
|
2158
2117
|
_enum: {
|
|
@@ -2161,7 +2120,7 @@ export default {
|
|
|
2161
2120
|
}
|
|
2162
2121
|
},
|
|
2163
2122
|
/**
|
|
2164
|
-
*
|
|
2123
|
+
* Lookup249: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2165
2124
|
**/
|
|
2166
2125
|
FinalityGrandpaEquivocationPrevote: {
|
|
2167
2126
|
roundNumber: "u64",
|
|
@@ -2170,18 +2129,18 @@ export default {
|
|
|
2170
2129
|
second: "(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)"
|
|
2171
2130
|
},
|
|
2172
2131
|
/**
|
|
2173
|
-
*
|
|
2132
|
+
* Lookup250: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2174
2133
|
**/
|
|
2175
2134
|
FinalityGrandpaPrevote: {
|
|
2176
2135
|
targetHash: "H256",
|
|
2177
2136
|
targetNumber: "u32"
|
|
2178
2137
|
},
|
|
2179
2138
|
/**
|
|
2180
|
-
*
|
|
2139
|
+
* Lookup251: sp_consensus_grandpa::app::Signature
|
|
2181
2140
|
**/
|
|
2182
2141
|
SpConsensusGrandpaAppSignature: "[u8;64]",
|
|
2183
2142
|
/**
|
|
2184
|
-
*
|
|
2143
|
+
* Lookup253: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2185
2144
|
**/
|
|
2186
2145
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2187
2146
|
roundNumber: "u64",
|
|
@@ -2190,14 +2149,14 @@ export default {
|
|
|
2190
2149
|
second: "(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)"
|
|
2191
2150
|
},
|
|
2192
2151
|
/**
|
|
2193
|
-
*
|
|
2152
|
+
* Lookup254: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2194
2153
|
**/
|
|
2195
2154
|
FinalityGrandpaPrecommit: {
|
|
2196
2155
|
targetHash: "H256",
|
|
2197
2156
|
targetNumber: "u32"
|
|
2198
2157
|
},
|
|
2199
2158
|
/**
|
|
2200
|
-
*
|
|
2159
|
+
* Lookup256: pallet_grandpa::pallet::Error<T>
|
|
2201
2160
|
**/
|
|
2202
2161
|
PalletGrandpaError: {
|
|
2203
2162
|
_enum: [
|
|
@@ -2211,13 +2170,13 @@ export default {
|
|
|
2211
2170
|
]
|
|
2212
2171
|
},
|
|
2213
2172
|
/**
|
|
2214
|
-
*
|
|
2173
|
+
* Lookup258: pallet_transaction_payment::Releases
|
|
2215
2174
|
**/
|
|
2216
2175
|
PalletTransactionPaymentReleases: {
|
|
2217
2176
|
_enum: ["V1Ancient", "V2"]
|
|
2218
2177
|
},
|
|
2219
2178
|
/**
|
|
2220
|
-
*
|
|
2179
|
+
* Lookup259: pallet_parameters::pallet::Call<T>
|
|
2221
2180
|
**/
|
|
2222
2181
|
PalletParametersCall: {
|
|
2223
2182
|
_enum: {
|
|
@@ -2227,7 +2186,7 @@ export default {
|
|
|
2227
2186
|
}
|
|
2228
2187
|
},
|
|
2229
2188
|
/**
|
|
2230
|
-
*
|
|
2189
|
+
* Lookup260: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
|
|
2231
2190
|
**/
|
|
2232
2191
|
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
2233
2192
|
_enum: {
|
|
@@ -2235,7 +2194,7 @@ export default {
|
|
|
2235
2194
|
}
|
|
2236
2195
|
},
|
|
2237
2196
|
/**
|
|
2238
|
-
*
|
|
2197
|
+
* Lookup261: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
2239
2198
|
**/
|
|
2240
2199
|
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
2241
2200
|
_enum: {
|
|
@@ -2258,9 +2217,9 @@ export default {
|
|
|
2258
2217
|
MinPrice:
|
|
2259
2218
|
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice,Option<u128>)",
|
|
2260
2219
|
UpperExponentFactor:
|
|
2261
|
-
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<
|
|
2220
|
+
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor,Option<u128>)",
|
|
2262
2221
|
LowerExponentFactor:
|
|
2263
|
-
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<
|
|
2222
|
+
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor,Option<u128>)",
|
|
2264
2223
|
ZeroSizeBucketFixedRate:
|
|
2265
2224
|
"(ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate,Option<u128>)",
|
|
2266
2225
|
IdealUtilisationRate:
|
|
@@ -2302,7 +2261,7 @@ export default {
|
|
|
2302
2261
|
}
|
|
2303
2262
|
},
|
|
2304
2263
|
/**
|
|
2305
|
-
*
|
|
2264
|
+
* Lookup264: pallet_sudo::pallet::Call<T>
|
|
2306
2265
|
**/
|
|
2307
2266
|
PalletSudoCall: {
|
|
2308
2267
|
_enum: {
|
|
@@ -2327,7 +2286,7 @@ export default {
|
|
|
2327
2286
|
}
|
|
2328
2287
|
},
|
|
2329
2288
|
/**
|
|
2330
|
-
*
|
|
2289
|
+
* Lookup266: pallet_ethereum::pallet::Call<T>
|
|
2331
2290
|
**/
|
|
2332
2291
|
PalletEthereumCall: {
|
|
2333
2292
|
_enum: {
|
|
@@ -2337,7 +2296,7 @@ export default {
|
|
|
2337
2296
|
}
|
|
2338
2297
|
},
|
|
2339
2298
|
/**
|
|
2340
|
-
*
|
|
2299
|
+
* Lookup267: ethereum::transaction::TransactionV2
|
|
2341
2300
|
**/
|
|
2342
2301
|
EthereumTransactionTransactionV2: {
|
|
2343
2302
|
_enum: {
|
|
@@ -2347,7 +2306,7 @@ export default {
|
|
|
2347
2306
|
}
|
|
2348
2307
|
},
|
|
2349
2308
|
/**
|
|
2350
|
-
*
|
|
2309
|
+
* Lookup268: ethereum::transaction::legacy::LegacyTransaction
|
|
2351
2310
|
**/
|
|
2352
2311
|
EthereumTransactionLegacyLegacyTransaction: {
|
|
2353
2312
|
nonce: "U256",
|
|
@@ -2359,7 +2318,7 @@ export default {
|
|
|
2359
2318
|
signature: "EthereumTransactionLegacyTransactionSignature"
|
|
2360
2319
|
},
|
|
2361
2320
|
/**
|
|
2362
|
-
*
|
|
2321
|
+
* Lookup271: ethereum::transaction::legacy::TransactionAction
|
|
2363
2322
|
**/
|
|
2364
2323
|
EthereumTransactionLegacyTransactionAction: {
|
|
2365
2324
|
_enum: {
|
|
@@ -2368,7 +2327,7 @@ export default {
|
|
|
2368
2327
|
}
|
|
2369
2328
|
},
|
|
2370
2329
|
/**
|
|
2371
|
-
*
|
|
2330
|
+
* Lookup272: ethereum::transaction::legacy::TransactionSignature
|
|
2372
2331
|
**/
|
|
2373
2332
|
EthereumTransactionLegacyTransactionSignature: {
|
|
2374
2333
|
v: "u64",
|
|
@@ -2376,7 +2335,7 @@ export default {
|
|
|
2376
2335
|
s: "H256"
|
|
2377
2336
|
},
|
|
2378
2337
|
/**
|
|
2379
|
-
*
|
|
2338
|
+
* Lookup274: ethereum::transaction::eip2930::EIP2930Transaction
|
|
2380
2339
|
**/
|
|
2381
2340
|
EthereumTransactionEip2930Eip2930Transaction: {
|
|
2382
2341
|
chainId: "u64",
|
|
@@ -2392,14 +2351,14 @@ export default {
|
|
|
2392
2351
|
s: "H256"
|
|
2393
2352
|
},
|
|
2394
2353
|
/**
|
|
2395
|
-
*
|
|
2354
|
+
* Lookup276: ethereum::transaction::eip2930::AccessListItem
|
|
2396
2355
|
**/
|
|
2397
2356
|
EthereumTransactionEip2930AccessListItem: {
|
|
2398
2357
|
address: "H160",
|
|
2399
2358
|
storageKeys: "Vec<H256>"
|
|
2400
2359
|
},
|
|
2401
2360
|
/**
|
|
2402
|
-
*
|
|
2361
|
+
* Lookup277: ethereum::transaction::eip1559::EIP1559Transaction
|
|
2403
2362
|
**/
|
|
2404
2363
|
EthereumTransactionEip1559Eip1559Transaction: {
|
|
2405
2364
|
chainId: "u64",
|
|
@@ -2416,7 +2375,7 @@ export default {
|
|
|
2416
2375
|
s: "H256"
|
|
2417
2376
|
},
|
|
2418
2377
|
/**
|
|
2419
|
-
*
|
|
2378
|
+
* Lookup278: pallet_evm::pallet::Call<T>
|
|
2420
2379
|
**/
|
|
2421
2380
|
PalletEvmCall: {
|
|
2422
2381
|
_enum: {
|
|
@@ -2459,7 +2418,7 @@ export default {
|
|
|
2459
2418
|
}
|
|
2460
2419
|
},
|
|
2461
2420
|
/**
|
|
2462
|
-
*
|
|
2421
|
+
* Lookup282: pallet_storage_providers::pallet::Call<T>
|
|
2463
2422
|
**/
|
|
2464
2423
|
PalletStorageProvidersCall: {
|
|
2465
2424
|
_enum: {
|
|
@@ -2530,7 +2489,7 @@ export default {
|
|
|
2530
2489
|
}
|
|
2531
2490
|
},
|
|
2532
2491
|
/**
|
|
2533
|
-
*
|
|
2492
|
+
* Lookup283: pallet_file_system::pallet::Call<T>
|
|
2534
2493
|
**/
|
|
2535
2494
|
PalletFileSystemCall: {
|
|
2536
2495
|
_enum: {
|
|
@@ -2639,17 +2598,20 @@ export default {
|
|
|
2639
2598
|
fileKeys: "Vec<H256>",
|
|
2640
2599
|
bspId: "Option<H256>",
|
|
2641
2600
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2601
|
+
},
|
|
2602
|
+
set_user_operation_pause_flags: {
|
|
2603
|
+
newFlags: "u32"
|
|
2642
2604
|
}
|
|
2643
2605
|
}
|
|
2644
2606
|
},
|
|
2645
2607
|
/**
|
|
2646
|
-
*
|
|
2608
|
+
* Lookup284: pallet_file_system::types::BucketMoveRequestResponse
|
|
2647
2609
|
**/
|
|
2648
2610
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
2649
2611
|
_enum: ["Accepted", "Rejected"]
|
|
2650
2612
|
},
|
|
2651
2613
|
/**
|
|
2652
|
-
*
|
|
2614
|
+
* Lookup285: pallet_file_system::types::ReplicationTarget<T>
|
|
2653
2615
|
**/
|
|
2654
2616
|
PalletFileSystemReplicationTarget: {
|
|
2655
2617
|
_enum: {
|
|
@@ -2662,7 +2624,7 @@ export default {
|
|
|
2662
2624
|
}
|
|
2663
2625
|
},
|
|
2664
2626
|
/**
|
|
2665
|
-
*
|
|
2627
|
+
* Lookup287: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
2666
2628
|
**/
|
|
2667
2629
|
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
2668
2630
|
bucketId: "H256",
|
|
@@ -2670,28 +2632,28 @@ export default {
|
|
|
2670
2632
|
reject: "Vec<PalletFileSystemRejectedStorageRequest>"
|
|
2671
2633
|
},
|
|
2672
2634
|
/**
|
|
2673
|
-
*
|
|
2635
|
+
* Lookup289: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
2674
2636
|
**/
|
|
2675
2637
|
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
2676
2638
|
fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>",
|
|
2677
2639
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2678
2640
|
},
|
|
2679
2641
|
/**
|
|
2680
|
-
*
|
|
2642
|
+
* Lookup291: pallet_file_system::types::FileKeyWithProof<T>
|
|
2681
2643
|
**/
|
|
2682
2644
|
PalletFileSystemFileKeyWithProof: {
|
|
2683
2645
|
fileKey: "H256",
|
|
2684
2646
|
proof: "ShpFileKeyVerifierFileKeyProof"
|
|
2685
2647
|
},
|
|
2686
2648
|
/**
|
|
2687
|
-
*
|
|
2649
|
+
* Lookup293: pallet_file_system::types::RejectedStorageRequest<T>
|
|
2688
2650
|
**/
|
|
2689
2651
|
PalletFileSystemRejectedStorageRequest: {
|
|
2690
2652
|
fileKey: "H256",
|
|
2691
2653
|
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
2692
2654
|
},
|
|
2693
2655
|
/**
|
|
2694
|
-
*
|
|
2656
|
+
* Lookup296: pallet_file_system::types::FileDeletionRequest<T>
|
|
2695
2657
|
**/
|
|
2696
2658
|
PalletFileSystemFileDeletionRequest: {
|
|
2697
2659
|
_alias: {
|
|
@@ -2706,7 +2668,7 @@ export default {
|
|
|
2706
2668
|
fingerprint: "H256"
|
|
2707
2669
|
},
|
|
2708
2670
|
/**
|
|
2709
|
-
*
|
|
2671
|
+
* Lookup298: pallet_proofs_dealer::pallet::Call<T>
|
|
2710
2672
|
**/
|
|
2711
2673
|
PalletProofsDealerCall: {
|
|
2712
2674
|
_enum: {
|
|
@@ -2730,13 +2692,13 @@ export default {
|
|
|
2730
2692
|
}
|
|
2731
2693
|
},
|
|
2732
2694
|
/**
|
|
2733
|
-
*
|
|
2695
|
+
* Lookup299: pallet_randomness::pallet::Call<T>
|
|
2734
2696
|
**/
|
|
2735
2697
|
PalletRandomnessCall: {
|
|
2736
2698
|
_enum: ["set_babe_randomness"]
|
|
2737
2699
|
},
|
|
2738
2700
|
/**
|
|
2739
|
-
*
|
|
2701
|
+
* Lookup300: pallet_payment_streams::pallet::Call<T>
|
|
2740
2702
|
**/
|
|
2741
2703
|
PalletPaymentStreamsCall: {
|
|
2742
2704
|
_enum: {
|
|
@@ -2781,7 +2743,7 @@ export default {
|
|
|
2781
2743
|
}
|
|
2782
2744
|
},
|
|
2783
2745
|
/**
|
|
2784
|
-
*
|
|
2746
|
+
* Lookup301: pallet_bucket_nfts::pallet::Call<T>
|
|
2785
2747
|
**/
|
|
2786
2748
|
PalletBucketNftsCall: {
|
|
2787
2749
|
_enum: {
|
|
@@ -2799,7 +2761,7 @@ export default {
|
|
|
2799
2761
|
}
|
|
2800
2762
|
},
|
|
2801
2763
|
/**
|
|
2802
|
-
*
|
|
2764
|
+
* Lookup303: pallet_nfts::pallet::Call<T, I>
|
|
2803
2765
|
**/
|
|
2804
2766
|
PalletNftsCall: {
|
|
2805
2767
|
_enum: {
|
|
@@ -2996,7 +2958,7 @@ export default {
|
|
|
2996
2958
|
}
|
|
2997
2959
|
},
|
|
2998
2960
|
/**
|
|
2999
|
-
*
|
|
2961
|
+
* Lookup304: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
3000
2962
|
**/
|
|
3001
2963
|
PalletNftsCollectionConfig: {
|
|
3002
2964
|
settings: "u64",
|
|
@@ -3004,7 +2966,7 @@ export default {
|
|
|
3004
2966
|
mintSettings: "PalletNftsMintSettings"
|
|
3005
2967
|
},
|
|
3006
2968
|
/**
|
|
3007
|
-
*
|
|
2969
|
+
* Lookup306: pallet_nfts::types::CollectionSetting
|
|
3008
2970
|
**/
|
|
3009
2971
|
PalletNftsCollectionSetting: {
|
|
3010
2972
|
_enum: [
|
|
@@ -3028,7 +2990,7 @@ export default {
|
|
|
3028
2990
|
]
|
|
3029
2991
|
},
|
|
3030
2992
|
/**
|
|
3031
|
-
*
|
|
2993
|
+
* Lookup307: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
3032
2994
|
**/
|
|
3033
2995
|
PalletNftsMintSettings: {
|
|
3034
2996
|
mintType: "PalletNftsMintType",
|
|
@@ -3038,7 +3000,7 @@ export default {
|
|
|
3038
3000
|
defaultItemSettings: "u64"
|
|
3039
3001
|
},
|
|
3040
3002
|
/**
|
|
3041
|
-
*
|
|
3003
|
+
* Lookup308: pallet_nfts::types::MintType<CollectionId>
|
|
3042
3004
|
**/
|
|
3043
3005
|
PalletNftsMintType: {
|
|
3044
3006
|
_enum: {
|
|
@@ -3048,13 +3010,13 @@ export default {
|
|
|
3048
3010
|
}
|
|
3049
3011
|
},
|
|
3050
3012
|
/**
|
|
3051
|
-
*
|
|
3013
|
+
* Lookup310: pallet_nfts::types::ItemSetting
|
|
3052
3014
|
**/
|
|
3053
3015
|
PalletNftsItemSetting: {
|
|
3054
3016
|
_enum: ["__Unused0", "Transferable", "UnlockedMetadata", "__Unused3", "UnlockedAttributes"]
|
|
3055
3017
|
},
|
|
3056
3018
|
/**
|
|
3057
|
-
*
|
|
3019
|
+
* Lookup311: pallet_nfts::types::DestroyWitness
|
|
3058
3020
|
**/
|
|
3059
3021
|
PalletNftsDestroyWitness: {
|
|
3060
3022
|
itemMetadatas: "Compact<u32>",
|
|
@@ -3062,26 +3024,26 @@ export default {
|
|
|
3062
3024
|
attributes: "Compact<u32>"
|
|
3063
3025
|
},
|
|
3064
3026
|
/**
|
|
3065
|
-
*
|
|
3027
|
+
* Lookup313: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
3066
3028
|
**/
|
|
3067
3029
|
PalletNftsMintWitness: {
|
|
3068
3030
|
ownedItem: "Option<u32>",
|
|
3069
3031
|
mintPrice: "Option<u128>"
|
|
3070
3032
|
},
|
|
3071
3033
|
/**
|
|
3072
|
-
*
|
|
3034
|
+
* Lookup314: pallet_nfts::types::ItemConfig
|
|
3073
3035
|
**/
|
|
3074
3036
|
PalletNftsItemConfig: {
|
|
3075
3037
|
settings: "u64"
|
|
3076
3038
|
},
|
|
3077
3039
|
/**
|
|
3078
|
-
*
|
|
3040
|
+
* Lookup315: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
3079
3041
|
**/
|
|
3080
3042
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
3081
3043
|
accountAttributes: "u32"
|
|
3082
3044
|
},
|
|
3083
3045
|
/**
|
|
3084
|
-
*
|
|
3046
|
+
* Lookup317: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
|
|
3085
3047
|
**/
|
|
3086
3048
|
PalletNftsItemTip: {
|
|
3087
3049
|
collection: "u32",
|
|
@@ -3090,7 +3052,7 @@ export default {
|
|
|
3090
3052
|
amount: "u128"
|
|
3091
3053
|
},
|
|
3092
3054
|
/**
|
|
3093
|
-
*
|
|
3055
|
+
* Lookup319: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
|
|
3094
3056
|
**/
|
|
3095
3057
|
PalletNftsPreSignedMint: {
|
|
3096
3058
|
collection: "u32",
|
|
@@ -3102,7 +3064,7 @@ export default {
|
|
|
3102
3064
|
mintPrice: "Option<u128>"
|
|
3103
3065
|
},
|
|
3104
3066
|
/**
|
|
3105
|
-
*
|
|
3067
|
+
* Lookup320: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
|
|
3106
3068
|
**/
|
|
3107
3069
|
PalletNftsPreSignedAttributes: {
|
|
3108
3070
|
collection: "u32",
|
|
@@ -3112,13 +3074,13 @@ export default {
|
|
|
3112
3074
|
deadline: "u32"
|
|
3113
3075
|
},
|
|
3114
3076
|
/**
|
|
3115
|
-
*
|
|
3077
|
+
* Lookup321: pallet_sudo::pallet::Error<T>
|
|
3116
3078
|
**/
|
|
3117
3079
|
PalletSudoError: {
|
|
3118
3080
|
_enum: ["RequireSudo"]
|
|
3119
3081
|
},
|
|
3120
3082
|
/**
|
|
3121
|
-
*
|
|
3083
|
+
* Lookup323: fp_rpc::TransactionStatus
|
|
3122
3084
|
**/
|
|
3123
3085
|
FpRpcTransactionStatus: {
|
|
3124
3086
|
transactionHash: "H256",
|
|
@@ -3130,11 +3092,11 @@ export default {
|
|
|
3130
3092
|
logsBloom: "EthbloomBloom"
|
|
3131
3093
|
},
|
|
3132
3094
|
/**
|
|
3133
|
-
*
|
|
3095
|
+
* Lookup326: ethbloom::Bloom
|
|
3134
3096
|
**/
|
|
3135
3097
|
EthbloomBloom: "[u8;256]",
|
|
3136
3098
|
/**
|
|
3137
|
-
*
|
|
3099
|
+
* Lookup328: ethereum::receipt::ReceiptV3
|
|
3138
3100
|
**/
|
|
3139
3101
|
EthereumReceiptReceiptV3: {
|
|
3140
3102
|
_enum: {
|
|
@@ -3144,7 +3106,7 @@ export default {
|
|
|
3144
3106
|
}
|
|
3145
3107
|
},
|
|
3146
3108
|
/**
|
|
3147
|
-
*
|
|
3109
|
+
* Lookup329: ethereum::receipt::EIP658ReceiptData
|
|
3148
3110
|
**/
|
|
3149
3111
|
EthereumReceiptEip658ReceiptData: {
|
|
3150
3112
|
statusCode: "u8",
|
|
@@ -3153,7 +3115,7 @@ export default {
|
|
|
3153
3115
|
logs: "Vec<EthereumLog>"
|
|
3154
3116
|
},
|
|
3155
3117
|
/**
|
|
3156
|
-
*
|
|
3118
|
+
* Lookup330: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
3157
3119
|
**/
|
|
3158
3120
|
EthereumBlock: {
|
|
3159
3121
|
header: "EthereumHeader",
|
|
@@ -3161,7 +3123,7 @@ export default {
|
|
|
3161
3123
|
ommers: "Vec<EthereumHeader>"
|
|
3162
3124
|
},
|
|
3163
3125
|
/**
|
|
3164
|
-
*
|
|
3126
|
+
* Lookup331: ethereum::header::Header
|
|
3165
3127
|
**/
|
|
3166
3128
|
EthereumHeader: {
|
|
3167
3129
|
parentHash: "H256",
|
|
@@ -3181,17 +3143,17 @@ export default {
|
|
|
3181
3143
|
nonce: "EthereumTypesHashH64"
|
|
3182
3144
|
},
|
|
3183
3145
|
/**
|
|
3184
|
-
*
|
|
3146
|
+
* Lookup332: ethereum_types::hash::H64
|
|
3185
3147
|
**/
|
|
3186
3148
|
EthereumTypesHashH64: "[u8;8]",
|
|
3187
3149
|
/**
|
|
3188
|
-
*
|
|
3150
|
+
* Lookup337: pallet_ethereum::pallet::Error<T>
|
|
3189
3151
|
**/
|
|
3190
3152
|
PalletEthereumError: {
|
|
3191
3153
|
_enum: ["InvalidSignature", "PreLogExists"]
|
|
3192
3154
|
},
|
|
3193
3155
|
/**
|
|
3194
|
-
*
|
|
3156
|
+
* Lookup338: pallet_evm::CodeMetadata
|
|
3195
3157
|
**/
|
|
3196
3158
|
PalletEvmCodeMetadata: {
|
|
3197
3159
|
_alias: {
|
|
@@ -3202,7 +3164,7 @@ export default {
|
|
|
3202
3164
|
hash_: "H256"
|
|
3203
3165
|
},
|
|
3204
3166
|
/**
|
|
3205
|
-
*
|
|
3167
|
+
* Lookup340: pallet_evm::pallet::Error<T>
|
|
3206
3168
|
**/
|
|
3207
3169
|
PalletEvmError: {
|
|
3208
3170
|
_enum: [
|
|
@@ -3222,14 +3184,14 @@ export default {
|
|
|
3222
3184
|
]
|
|
3223
3185
|
},
|
|
3224
3186
|
/**
|
|
3225
|
-
*
|
|
3187
|
+
* Lookup341: pallet_storage_providers::types::SignUpRequest<T>
|
|
3226
3188
|
**/
|
|
3227
3189
|
PalletStorageProvidersSignUpRequest: {
|
|
3228
3190
|
spSignUpRequest: "PalletStorageProvidersSignUpRequestSpParams",
|
|
3229
3191
|
at: "u32"
|
|
3230
3192
|
},
|
|
3231
3193
|
/**
|
|
3232
|
-
*
|
|
3194
|
+
* Lookup342: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
3233
3195
|
**/
|
|
3234
3196
|
PalletStorageProvidersSignUpRequestSpParams: {
|
|
3235
3197
|
_enum: {
|
|
@@ -3238,7 +3200,7 @@ export default {
|
|
|
3238
3200
|
}
|
|
3239
3201
|
},
|
|
3240
3202
|
/**
|
|
3241
|
-
*
|
|
3203
|
+
* Lookup343: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
3242
3204
|
**/
|
|
3243
3205
|
PalletStorageProvidersBackupStorageProvider: {
|
|
3244
3206
|
capacity: "u64",
|
|
@@ -3252,14 +3214,14 @@ export default {
|
|
|
3252
3214
|
signUpBlock: "u32"
|
|
3253
3215
|
},
|
|
3254
3216
|
/**
|
|
3255
|
-
*
|
|
3217
|
+
* Lookup344: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
3256
3218
|
**/
|
|
3257
3219
|
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
3258
3220
|
mspInfo: "PalletStorageProvidersMainStorageProvider",
|
|
3259
3221
|
valueProp: "PalletStorageProvidersValueProposition"
|
|
3260
3222
|
},
|
|
3261
3223
|
/**
|
|
3262
|
-
*
|
|
3224
|
+
* Lookup345: pallet_storage_providers::types::MainStorageProvider<T>
|
|
3263
3225
|
**/
|
|
3264
3226
|
PalletStorageProvidersMainStorageProvider: {
|
|
3265
3227
|
capacity: "u64",
|
|
@@ -3273,7 +3235,7 @@ export default {
|
|
|
3273
3235
|
signUpBlock: "u32"
|
|
3274
3236
|
},
|
|
3275
3237
|
/**
|
|
3276
|
-
*
|
|
3238
|
+
* Lookup346: pallet_storage_providers::types::Bucket<T>
|
|
3277
3239
|
**/
|
|
3278
3240
|
PalletStorageProvidersBucket: {
|
|
3279
3241
|
_alias: {
|
|
@@ -3288,7 +3250,7 @@ export default {
|
|
|
3288
3250
|
valuePropId: "H256"
|
|
3289
3251
|
},
|
|
3290
3252
|
/**
|
|
3291
|
-
*
|
|
3253
|
+
* Lookup350: pallet_storage_providers::pallet::Error<T>
|
|
3292
3254
|
**/
|
|
3293
3255
|
PalletStorageProvidersError: {
|
|
3294
3256
|
_enum: [
|
|
@@ -3347,7 +3309,7 @@ export default {
|
|
|
3347
3309
|
]
|
|
3348
3310
|
},
|
|
3349
3311
|
/**
|
|
3350
|
-
*
|
|
3312
|
+
* Lookup351: pallet_file_system::types::StorageRequestMetadata<T>
|
|
3351
3313
|
**/
|
|
3352
3314
|
PalletFileSystemStorageRequestMetadata: {
|
|
3353
3315
|
_alias: {
|
|
@@ -3360,7 +3322,7 @@ export default {
|
|
|
3360
3322
|
location: "Bytes",
|
|
3361
3323
|
fingerprint: "H256",
|
|
3362
3324
|
size_: "u64",
|
|
3363
|
-
|
|
3325
|
+
mspStatus: "PalletFileSystemMspStorageRequestStatus",
|
|
3364
3326
|
userPeerIds: "Vec<Bytes>",
|
|
3365
3327
|
bspsRequired: "u32",
|
|
3366
3328
|
bspsConfirmed: "u32",
|
|
@@ -3368,13 +3330,24 @@ export default {
|
|
|
3368
3330
|
depositPaid: "u128"
|
|
3369
3331
|
},
|
|
3370
3332
|
/**
|
|
3371
|
-
*
|
|
3333
|
+
* Lookup352: pallet_file_system::types::MspStorageRequestStatus<T>
|
|
3334
|
+
**/
|
|
3335
|
+
PalletFileSystemMspStorageRequestStatus: {
|
|
3336
|
+
_enum: {
|
|
3337
|
+
None: "Null",
|
|
3338
|
+
Pending: "H256",
|
|
3339
|
+
AcceptedNewFile: "H256",
|
|
3340
|
+
AcceptedExistingFile: "H256"
|
|
3341
|
+
}
|
|
3342
|
+
},
|
|
3343
|
+
/**
|
|
3344
|
+
* Lookup353: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
3372
3345
|
**/
|
|
3373
3346
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
3374
3347
|
confirmed: "bool"
|
|
3375
3348
|
},
|
|
3376
3349
|
/**
|
|
3377
|
-
*
|
|
3350
|
+
* Lookup355: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
3378
3351
|
**/
|
|
3379
3352
|
PalletFileSystemPendingFileDeletionRequest: {
|
|
3380
3353
|
user: "AccountId20",
|
|
@@ -3385,7 +3358,7 @@ export default {
|
|
|
3385
3358
|
queuePriorityChallenge: "bool"
|
|
3386
3359
|
},
|
|
3387
3360
|
/**
|
|
3388
|
-
*
|
|
3361
|
+
* Lookup357: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
3389
3362
|
**/
|
|
3390
3363
|
PalletFileSystemPendingStopStoringRequest: {
|
|
3391
3364
|
tickWhenRequested: "u32",
|
|
@@ -3393,7 +3366,7 @@ export default {
|
|
|
3393
3366
|
fileSize: "u64"
|
|
3394
3367
|
},
|
|
3395
3368
|
/**
|
|
3396
|
-
*
|
|
3369
|
+
* Lookup358: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
3397
3370
|
**/
|
|
3398
3371
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
3399
3372
|
requester: "AccountId20",
|
|
@@ -3401,7 +3374,7 @@ export default {
|
|
|
3401
3374
|
newValuePropId: "H256"
|
|
3402
3375
|
},
|
|
3403
3376
|
/**
|
|
3404
|
-
*
|
|
3377
|
+
* Lookup359: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
3405
3378
|
**/
|
|
3406
3379
|
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
3407
3380
|
owner: "AccountId20",
|
|
@@ -3413,117 +3386,91 @@ export default {
|
|
|
3413
3386
|
pendingBucketRemoval: "bool"
|
|
3414
3387
|
},
|
|
3415
3388
|
/**
|
|
3416
|
-
*
|
|
3389
|
+
* Lookup361: pallet_file_system::pallet::Error<T>
|
|
3417
3390
|
**/
|
|
3418
3391
|
PalletFileSystemError: {
|
|
3419
3392
|
_enum: [
|
|
3393
|
+
"NotABsp",
|
|
3394
|
+
"NotAMsp",
|
|
3395
|
+
"NotASp",
|
|
3420
3396
|
"StorageRequestAlreadyRegistered",
|
|
3421
3397
|
"StorageRequestNotFound",
|
|
3422
|
-
"StorageRequestNotRevoked",
|
|
3423
3398
|
"StorageRequestExists",
|
|
3399
|
+
"StorageRequestNotAuthorized",
|
|
3400
|
+
"StorageRequestBspsRequiredFulfilled",
|
|
3401
|
+
"TooManyStorageRequestResponses",
|
|
3402
|
+
"IncompleteStorageRequestNotFound",
|
|
3424
3403
|
"ReplicationTargetCannotBeZero",
|
|
3425
3404
|
"ReplicationTargetExceedsMaximum",
|
|
3426
|
-
"MaxReplicationTargetSmallerThanDefault",
|
|
3427
|
-
"NotABsp",
|
|
3428
|
-
"NotAMsp",
|
|
3429
|
-
"NotASp",
|
|
3430
3405
|
"BspNotVolunteered",
|
|
3431
3406
|
"BspNotConfirmed",
|
|
3432
3407
|
"BspAlreadyConfirmed",
|
|
3433
|
-
"StorageRequestBspsRequiredFulfilled",
|
|
3434
3408
|
"BspAlreadyVolunteered",
|
|
3435
|
-
"InsufficientAvailableCapacity",
|
|
3436
|
-
"UnexpectedNumberOfRemovedVolunteeredBsps",
|
|
3437
3409
|
"BspNotEligibleToVolunteer",
|
|
3438
|
-
"
|
|
3439
|
-
"
|
|
3440
|
-
"
|
|
3441
|
-
"
|
|
3442
|
-
"
|
|
3443
|
-
"
|
|
3444
|
-
"
|
|
3445
|
-
"ThresholdArithmeticError",
|
|
3446
|
-
"FailedTypeConversion",
|
|
3447
|
-
"DividedByZero",
|
|
3448
|
-
"ImpossibleFailedToGetValue",
|
|
3449
|
-
"BucketIsNotPrivate",
|
|
3410
|
+
"InsufficientAvailableCapacity",
|
|
3411
|
+
"NoFileKeysToConfirm",
|
|
3412
|
+
"MspNotStoringBucket",
|
|
3413
|
+
"NotSelectedMsp",
|
|
3414
|
+
"MspAlreadyConfirmed",
|
|
3415
|
+
"RequestWithoutMsp",
|
|
3416
|
+
"MspAlreadyStoringBucket",
|
|
3450
3417
|
"BucketNotFound",
|
|
3451
3418
|
"BucketNotEmpty",
|
|
3452
3419
|
"NotBucketOwner",
|
|
3420
|
+
"BucketIsBeingMoved",
|
|
3421
|
+
"InvalidBucketIdFileKeyPair",
|
|
3453
3422
|
"ValuePropositionNotAvailable",
|
|
3454
3423
|
"CollectionNotFound",
|
|
3455
|
-
"
|
|
3456
|
-
"ExpectedNonInclusionProof",
|
|
3457
|
-
"ExpectedInclusionProof",
|
|
3424
|
+
"MoveBucketRequestNotFound",
|
|
3458
3425
|
"InvalidFileKeyMetadata",
|
|
3459
|
-
"
|
|
3460
|
-
"
|
|
3461
|
-
"
|
|
3426
|
+
"FileSizeCannotBeZero",
|
|
3427
|
+
"ProviderNotStoringFile",
|
|
3428
|
+
"FileHasActiveStorageRequest",
|
|
3429
|
+
"FileHasIncompleteStorageRequest",
|
|
3462
3430
|
"BatchFileDeletionMustContainSingleBucket",
|
|
3463
3431
|
"DuplicateFileKeyInBatchFileDeletion",
|
|
3464
3432
|
"NoFileKeysToDelete",
|
|
3465
3433
|
"FailedToPushFileKeyToBucketDeletionVector",
|
|
3466
3434
|
"FailedToPushUserToBspDeletionVector",
|
|
3467
3435
|
"FailedToPushFileKeyToBspDeletionVector",
|
|
3468
|
-
"MaxUserPendingDeletionRequestsReached",
|
|
3469
|
-
"MspNotStoringBucket",
|
|
3470
|
-
"FileKeyNotPendingDeletion",
|
|
3471
|
-
"FileSizeCannotBeZero",
|
|
3472
|
-
"NoGlobalReputationWeightSet",
|
|
3473
|
-
"NoBspReputationWeightSet",
|
|
3474
|
-
"MaximumThresholdCannotBeZero",
|
|
3475
|
-
"TickRangeToMaximumThresholdCannotBeZero",
|
|
3476
3436
|
"PendingStopStoringRequestNotFound",
|
|
3477
3437
|
"MinWaitForStopStoringNotReached",
|
|
3478
3438
|
"PendingStopStoringRequestAlreadyExists",
|
|
3479
|
-
"
|
|
3480
|
-
"
|
|
3481
|
-
"NotSelectedMsp",
|
|
3482
|
-
"MspAlreadyConfirmed",
|
|
3483
|
-
"RequestWithoutMsp",
|
|
3484
|
-
"MspAlreadyStoringBucket",
|
|
3485
|
-
"MoveBucketRequestNotFound",
|
|
3486
|
-
"BucketIsBeingMoved",
|
|
3487
|
-
"BspAlreadyDataServer",
|
|
3488
|
-
"BspDataServersExceeded",
|
|
3489
|
-
"FileMetadataProcessingQueueFull",
|
|
3490
|
-
"TooManyBatchResponses",
|
|
3491
|
-
"TooManyStorageRequestResponses",
|
|
3492
|
-
"InvalidBucketIdFileKeyPair",
|
|
3493
|
-
"InconsistentStateKeyAlreadyExists",
|
|
3439
|
+
"ExpectedNonInclusionProof",
|
|
3440
|
+
"ExpectedInclusionProof",
|
|
3494
3441
|
"FixedRatePaymentStreamNotFound",
|
|
3495
3442
|
"DynamicRatePaymentStreamNotFound",
|
|
3443
|
+
"OperationNotAllowedWithInsolventUser",
|
|
3444
|
+
"UserNotInsolvent",
|
|
3445
|
+
"OperationNotAllowedForInsolventProvider",
|
|
3446
|
+
"InvalidSignature",
|
|
3447
|
+
"InvalidProviderID",
|
|
3448
|
+
"InvalidSignedOperation",
|
|
3449
|
+
"NoGlobalReputationWeightSet",
|
|
3450
|
+
"NoBspReputationWeightSet",
|
|
3496
3451
|
"CannotHoldDeposit",
|
|
3452
|
+
"MaxTickNumberReached",
|
|
3453
|
+
"ThresholdArithmeticError",
|
|
3454
|
+
"RootNotUpdated",
|
|
3455
|
+
"ImpossibleFailedToGetValue",
|
|
3497
3456
|
"FailedToQueryEarliestFileVolunteerTick",
|
|
3498
3457
|
"FailedToGetOwnerAccount",
|
|
3499
3458
|
"FailedToGetPaymentAccount",
|
|
3500
|
-
"NoFileKeysToConfirm",
|
|
3501
|
-
"RootNotUpdated",
|
|
3502
|
-
"NoPrivacyChange",
|
|
3503
|
-
"OperationNotAllowedForInsolventProvider",
|
|
3504
|
-
"OperationNotAllowedWhileBucketIsNotStoredByMsp",
|
|
3505
3459
|
"FailedToComputeFileKey",
|
|
3506
3460
|
"FailedToCreateFileMetadata",
|
|
3507
|
-
"
|
|
3508
|
-
"
|
|
3509
|
-
"ProviderNotStoringFile",
|
|
3510
|
-
"InvalidProviderID",
|
|
3511
|
-
"InvalidSignedOperation",
|
|
3512
|
-
"FileKeyMismatch",
|
|
3513
|
-
"IncompleteStorageRequestNotFound",
|
|
3514
|
-
"FileHasActiveStorageRequest",
|
|
3515
|
-
"FileHasIncompleteStorageRequest"
|
|
3461
|
+
"FileMetadataProcessingQueueFull",
|
|
3462
|
+
"UserOperationPaused"
|
|
3516
3463
|
]
|
|
3517
3464
|
},
|
|
3518
3465
|
/**
|
|
3519
|
-
*
|
|
3466
|
+
* Lookup363: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
3520
3467
|
**/
|
|
3521
3468
|
PalletProofsDealerProofSubmissionRecord: {
|
|
3522
3469
|
lastTickProven: "u32",
|
|
3523
3470
|
nextTickToSubmitProofFor: "u32"
|
|
3524
3471
|
},
|
|
3525
3472
|
/**
|
|
3526
|
-
*
|
|
3473
|
+
* Lookup370: pallet_proofs_dealer::pallet::Error<T>
|
|
3527
3474
|
**/
|
|
3528
3475
|
PalletProofsDealerError: {
|
|
3529
3476
|
_enum: [
|
|
@@ -3554,7 +3501,7 @@ export default {
|
|
|
3554
3501
|
]
|
|
3555
3502
|
},
|
|
3556
3503
|
/**
|
|
3557
|
-
*
|
|
3504
|
+
* Lookup372: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
3558
3505
|
**/
|
|
3559
3506
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
3560
3507
|
rate: "u128",
|
|
@@ -3563,7 +3510,7 @@ export default {
|
|
|
3563
3510
|
outOfFundsTick: "Option<u32>"
|
|
3564
3511
|
},
|
|
3565
3512
|
/**
|
|
3566
|
-
*
|
|
3513
|
+
* Lookup373: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
3567
3514
|
**/
|
|
3568
3515
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
3569
3516
|
amountProvided: "u64",
|
|
@@ -3572,14 +3519,14 @@ export default {
|
|
|
3572
3519
|
outOfFundsTick: "Option<u32>"
|
|
3573
3520
|
},
|
|
3574
3521
|
/**
|
|
3575
|
-
*
|
|
3522
|
+
* Lookup374: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
3576
3523
|
**/
|
|
3577
3524
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
3578
3525
|
lastChargeableTick: "u32",
|
|
3579
3526
|
priceIndex: "u128"
|
|
3580
3527
|
},
|
|
3581
3528
|
/**
|
|
3582
|
-
*
|
|
3529
|
+
* Lookup375: pallet_payment_streams::pallet::Error<T>
|
|
3583
3530
|
**/
|
|
3584
3531
|
PalletPaymentStreamsError: {
|
|
3585
3532
|
_enum: [
|
|
@@ -3604,7 +3551,7 @@ export default {
|
|
|
3604
3551
|
]
|
|
3605
3552
|
},
|
|
3606
3553
|
/**
|
|
3607
|
-
*
|
|
3554
|
+
* Lookup376: pallet_bucket_nfts::pallet::Error<T>
|
|
3608
3555
|
**/
|
|
3609
3556
|
PalletBucketNftsError: {
|
|
3610
3557
|
_enum: [
|
|
@@ -3615,7 +3562,7 @@ export default {
|
|
|
3615
3562
|
]
|
|
3616
3563
|
},
|
|
3617
3564
|
/**
|
|
3618
|
-
*
|
|
3565
|
+
* Lookup377: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
|
|
3619
3566
|
**/
|
|
3620
3567
|
PalletNftsCollectionDetails: {
|
|
3621
3568
|
owner: "AccountId20",
|
|
@@ -3626,13 +3573,13 @@ export default {
|
|
|
3626
3573
|
attributes: "u32"
|
|
3627
3574
|
},
|
|
3628
3575
|
/**
|
|
3629
|
-
*
|
|
3576
|
+
* Lookup382: pallet_nfts::types::CollectionRole
|
|
3630
3577
|
**/
|
|
3631
3578
|
PalletNftsCollectionRole: {
|
|
3632
3579
|
_enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
|
|
3633
3580
|
},
|
|
3634
3581
|
/**
|
|
3635
|
-
*
|
|
3582
|
+
* 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>>
|
|
3636
3583
|
**/
|
|
3637
3584
|
PalletNftsItemDetails: {
|
|
3638
3585
|
owner: "AccountId20",
|
|
@@ -3640,42 +3587,42 @@ export default {
|
|
|
3640
3587
|
deposit: "PalletNftsItemDeposit"
|
|
3641
3588
|
},
|
|
3642
3589
|
/**
|
|
3643
|
-
*
|
|
3590
|
+
* Lookup384: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
|
|
3644
3591
|
**/
|
|
3645
3592
|
PalletNftsItemDeposit: {
|
|
3646
3593
|
account: "AccountId20",
|
|
3647
3594
|
amount: "u128"
|
|
3648
3595
|
},
|
|
3649
3596
|
/**
|
|
3650
|
-
*
|
|
3597
|
+
* Lookup389: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
3651
3598
|
**/
|
|
3652
3599
|
PalletNftsCollectionMetadata: {
|
|
3653
3600
|
deposit: "u128",
|
|
3654
3601
|
data: "Bytes"
|
|
3655
3602
|
},
|
|
3656
3603
|
/**
|
|
3657
|
-
*
|
|
3604
|
+
* Lookup390: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
|
|
3658
3605
|
**/
|
|
3659
3606
|
PalletNftsItemMetadata: {
|
|
3660
3607
|
deposit: "PalletNftsItemMetadataDeposit",
|
|
3661
3608
|
data: "Bytes"
|
|
3662
3609
|
},
|
|
3663
3610
|
/**
|
|
3664
|
-
*
|
|
3611
|
+
* Lookup391: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
|
|
3665
3612
|
**/
|
|
3666
3613
|
PalletNftsItemMetadataDeposit: {
|
|
3667
3614
|
account: "Option<AccountId20>",
|
|
3668
3615
|
amount: "u128"
|
|
3669
3616
|
},
|
|
3670
3617
|
/**
|
|
3671
|
-
*
|
|
3618
|
+
* Lookup394: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
|
|
3672
3619
|
**/
|
|
3673
3620
|
PalletNftsAttributeDeposit: {
|
|
3674
3621
|
account: "Option<AccountId20>",
|
|
3675
3622
|
amount: "u128"
|
|
3676
3623
|
},
|
|
3677
3624
|
/**
|
|
3678
|
-
*
|
|
3625
|
+
* Lookup398: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
3679
3626
|
**/
|
|
3680
3627
|
PalletNftsPendingSwap: {
|
|
3681
3628
|
desiredCollection: "u32",
|
|
@@ -3684,7 +3631,7 @@ export default {
|
|
|
3684
3631
|
deadline: "u32"
|
|
3685
3632
|
},
|
|
3686
3633
|
/**
|
|
3687
|
-
*
|
|
3634
|
+
* Lookup400: pallet_nfts::types::PalletFeature
|
|
3688
3635
|
**/
|
|
3689
3636
|
PalletNftsPalletFeature: {
|
|
3690
3637
|
_enum: [
|
|
@@ -3700,7 +3647,7 @@ export default {
|
|
|
3700
3647
|
]
|
|
3701
3648
|
},
|
|
3702
3649
|
/**
|
|
3703
|
-
*
|
|
3650
|
+
* Lookup401: pallet_nfts::pallet::Error<T, I>
|
|
3704
3651
|
**/
|
|
3705
3652
|
PalletNftsError: {
|
|
3706
3653
|
_enum: [
|
|
@@ -3752,47 +3699,47 @@ export default {
|
|
|
3752
3699
|
]
|
|
3753
3700
|
},
|
|
3754
3701
|
/**
|
|
3755
|
-
*
|
|
3702
|
+
* Lookup404: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
3756
3703
|
**/
|
|
3757
3704
|
FrameSystemExtensionsCheckNonZeroSender: "Null",
|
|
3758
3705
|
/**
|
|
3759
|
-
*
|
|
3706
|
+
* Lookup405: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
3760
3707
|
**/
|
|
3761
3708
|
FrameSystemExtensionsCheckSpecVersion: "Null",
|
|
3762
3709
|
/**
|
|
3763
|
-
*
|
|
3710
|
+
* Lookup406: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
3764
3711
|
**/
|
|
3765
3712
|
FrameSystemExtensionsCheckTxVersion: "Null",
|
|
3766
3713
|
/**
|
|
3767
|
-
*
|
|
3714
|
+
* Lookup407: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
3768
3715
|
**/
|
|
3769
3716
|
FrameSystemExtensionsCheckGenesis: "Null",
|
|
3770
3717
|
/**
|
|
3771
|
-
*
|
|
3718
|
+
* Lookup410: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
3772
3719
|
**/
|
|
3773
3720
|
FrameSystemExtensionsCheckNonce: "Compact<u32>",
|
|
3774
3721
|
/**
|
|
3775
|
-
*
|
|
3722
|
+
* Lookup411: frame_system::extensions::check_weight::CheckWeight<T>
|
|
3776
3723
|
**/
|
|
3777
3724
|
FrameSystemExtensionsCheckWeight: "Null",
|
|
3778
3725
|
/**
|
|
3779
|
-
*
|
|
3726
|
+
* Lookup412: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
3780
3727
|
**/
|
|
3781
3728
|
PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
|
|
3782
3729
|
/**
|
|
3783
|
-
*
|
|
3730
|
+
* Lookup413: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
3784
3731
|
**/
|
|
3785
3732
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
3786
3733
|
mode: "FrameMetadataHashExtensionMode"
|
|
3787
3734
|
},
|
|
3788
3735
|
/**
|
|
3789
|
-
*
|
|
3736
|
+
* Lookup414: frame_metadata_hash_extension::Mode
|
|
3790
3737
|
**/
|
|
3791
3738
|
FrameMetadataHashExtensionMode: {
|
|
3792
3739
|
_enum: ["Disabled", "Enabled"]
|
|
3793
3740
|
},
|
|
3794
3741
|
/**
|
|
3795
|
-
*
|
|
3742
|
+
* Lookup416: sh_solochain_evm_runtime::Runtime
|
|
3796
3743
|
**/
|
|
3797
3744
|
ShSolochainEvmRuntimeRuntime: "Null"
|
|
3798
3745
|
};
|