@storagehub/api-augment 0.2.6 → 0.2.8
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 +245 -239
- package/dist/parachain/interfaces/lookup.js.map +1 -1
- package/dist/solochain-evm/interfaces/lookup.js +195 -189
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
- package/dist/types/parachain/interfaces/augment-api-consts.d.ts +4 -0
- package/dist/types/parachain/interfaces/augment-api-errors.d.ts +24 -0
- package/dist/types/parachain/interfaces/augment-api-events.d.ts +10 -24
- package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +4 -0
- package/dist/types/parachain/interfaces/augment-api-tx.d.ts +27 -29
- package/dist/types/parachain/interfaces/lookup.d.ts +239 -239
- package/dist/types/parachain/interfaces/registry.d.ts +2 -1
- package/dist/types/parachain/interfaces/types-lookup.d.ts +247 -244
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +4 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +24 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +10 -24
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +4 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +27 -23
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +189 -189
- package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -1
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +197 -194
- 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-consts.ts +4 -0
- package/src/parachain/interfaces/augment-api-errors.ts +24 -0
- package/src/parachain/interfaces/augment-api-events.ts +8 -32
- package/src/parachain/interfaces/augment-api-runtime.ts +10 -0
- package/src/parachain/interfaces/augment-api-tx.ts +36 -41
- package/src/parachain/interfaces/lookup.ts +245 -239
- package/src/parachain/interfaces/registry.ts +2 -0
- package/src/parachain/interfaces/types-lookup.ts +255 -246
- package/src/solochain-evm/interfaces/augment-api-consts.ts +4 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +24 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +8 -32
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +10 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +36 -35
- package/src/solochain-evm/interfaces/lookup.ts +195 -189
- package/src/solochain-evm/interfaces/registry.ts +2 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +205 -196
|
@@ -1025,27 +1025,21 @@ export default {
|
|
|
1025
1025
|
signedDeleteIntention: "PalletFileSystemFileOperationIntention",
|
|
1026
1026
|
signature: "FpAccountEthereumSignature"
|
|
1027
1027
|
},
|
|
1028
|
-
|
|
1028
|
+
BucketFileDeletionsCompleted: {
|
|
1029
1029
|
user: "AccountId20",
|
|
1030
|
-
|
|
1031
|
-
fileSize: "u64",
|
|
1030
|
+
fileKeys: "Vec<H256>",
|
|
1032
1031
|
bucketId: "H256",
|
|
1033
1032
|
mspId: "Option<H256>",
|
|
1034
1033
|
oldRoot: "H256",
|
|
1035
1034
|
newRoot: "H256"
|
|
1036
1035
|
},
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
fileSize: "u64",
|
|
1036
|
+
BspFileDeletionsCompleted: {
|
|
1037
|
+
users: "Vec<AccountId20>",
|
|
1038
|
+
fileKeys: "Vec<H256>",
|
|
1041
1039
|
bspId: "H256",
|
|
1042
1040
|
oldRoot: "H256",
|
|
1043
1041
|
newRoot: "H256"
|
|
1044
1042
|
},
|
|
1045
|
-
FileDeletedFromIncompleteStorageRequest: {
|
|
1046
|
-
fileKey: "H256",
|
|
1047
|
-
bspId: "Option<H256>"
|
|
1048
|
-
},
|
|
1049
1043
|
IncompleteStorageRequest: {
|
|
1050
1044
|
fileKey: "H256"
|
|
1051
1045
|
}
|
|
@@ -1104,7 +1098,7 @@ export default {
|
|
|
1104
1098
|
**/
|
|
1105
1099
|
FpAccountEthereumSignature: "[u8;65]",
|
|
1106
1100
|
/**
|
|
1107
|
-
*
|
|
1101
|
+
* Lookup125: pallet_proofs_dealer::pallet::Event<T>
|
|
1108
1102
|
**/
|
|
1109
1103
|
PalletProofsDealerEvent: {
|
|
1110
1104
|
_enum: {
|
|
@@ -1161,41 +1155,41 @@ export default {
|
|
|
1161
1155
|
}
|
|
1162
1156
|
},
|
|
1163
1157
|
/**
|
|
1164
|
-
*
|
|
1158
|
+
* Lookup126: pallet_proofs_dealer::types::Proof<T>
|
|
1165
1159
|
**/
|
|
1166
1160
|
PalletProofsDealerProof: {
|
|
1167
1161
|
forestProof: "SpTrieStorageProofCompactProof",
|
|
1168
1162
|
keyProofs: "BTreeMap<H256, PalletProofsDealerKeyProof>"
|
|
1169
1163
|
},
|
|
1170
1164
|
/**
|
|
1171
|
-
*
|
|
1165
|
+
* Lookup127: sp_trie::storage_proof::CompactProof
|
|
1172
1166
|
**/
|
|
1173
1167
|
SpTrieStorageProofCompactProof: {
|
|
1174
1168
|
encodedNodes: "Vec<Bytes>"
|
|
1175
1169
|
},
|
|
1176
1170
|
/**
|
|
1177
|
-
*
|
|
1171
|
+
* Lookup130: pallet_proofs_dealer::types::KeyProof<T>
|
|
1178
1172
|
**/
|
|
1179
1173
|
PalletProofsDealerKeyProof: {
|
|
1180
1174
|
proof: "ShpFileKeyVerifierFileKeyProof",
|
|
1181
1175
|
challengeCount: "u32"
|
|
1182
1176
|
},
|
|
1183
1177
|
/**
|
|
1184
|
-
*
|
|
1178
|
+
* Lookup131: shp_file_key_verifier::types::FileKeyProof
|
|
1185
1179
|
**/
|
|
1186
1180
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1187
1181
|
fileMetadata: "ShpFileMetadataFileMetadata",
|
|
1188
1182
|
proof: "SpTrieStorageProofCompactProof"
|
|
1189
1183
|
},
|
|
1190
1184
|
/**
|
|
1191
|
-
*
|
|
1185
|
+
* Lookup135: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1192
1186
|
**/
|
|
1193
1187
|
PalletProofsDealerCustomChallenge: {
|
|
1194
1188
|
key: "H256",
|
|
1195
1189
|
shouldRemoveKey: "bool"
|
|
1196
1190
|
},
|
|
1197
1191
|
/**
|
|
1198
|
-
*
|
|
1192
|
+
* Lookup139: shp_traits::TrieMutation
|
|
1199
1193
|
**/
|
|
1200
1194
|
ShpTraitsTrieMutation: {
|
|
1201
1195
|
_enum: {
|
|
@@ -1204,19 +1198,19 @@ export default {
|
|
|
1204
1198
|
}
|
|
1205
1199
|
},
|
|
1206
1200
|
/**
|
|
1207
|
-
*
|
|
1201
|
+
* Lookup140: shp_traits::TrieAddMutation
|
|
1208
1202
|
**/
|
|
1209
1203
|
ShpTraitsTrieAddMutation: {
|
|
1210
1204
|
value: "Bytes"
|
|
1211
1205
|
},
|
|
1212
1206
|
/**
|
|
1213
|
-
*
|
|
1207
|
+
* Lookup141: shp_traits::TrieRemoveMutation
|
|
1214
1208
|
**/
|
|
1215
1209
|
ShpTraitsTrieRemoveMutation: {
|
|
1216
1210
|
maybeValue: "Option<Bytes>"
|
|
1217
1211
|
},
|
|
1218
1212
|
/**
|
|
1219
|
-
*
|
|
1213
|
+
* Lookup143: pallet_randomness::pallet::Event<T>
|
|
1220
1214
|
**/
|
|
1221
1215
|
PalletRandomnessEvent: {
|
|
1222
1216
|
_enum: {
|
|
@@ -1228,7 +1222,7 @@ export default {
|
|
|
1228
1222
|
}
|
|
1229
1223
|
},
|
|
1230
1224
|
/**
|
|
1231
|
-
*
|
|
1225
|
+
* Lookup144: pallet_payment_streams::pallet::Event<T>
|
|
1232
1226
|
**/
|
|
1233
1227
|
PalletPaymentStreamsEvent: {
|
|
1234
1228
|
_enum: {
|
|
@@ -1296,7 +1290,7 @@ export default {
|
|
|
1296
1290
|
}
|
|
1297
1291
|
},
|
|
1298
1292
|
/**
|
|
1299
|
-
*
|
|
1293
|
+
* Lookup146: pallet_bucket_nfts::pallet::Event<T>
|
|
1300
1294
|
**/
|
|
1301
1295
|
PalletBucketNftsEvent: {
|
|
1302
1296
|
_enum: {
|
|
@@ -1317,7 +1311,7 @@ export default {
|
|
|
1317
1311
|
}
|
|
1318
1312
|
},
|
|
1319
1313
|
/**
|
|
1320
|
-
*
|
|
1314
|
+
* Lookup147: pallet_nfts::pallet::Event<T, I>
|
|
1321
1315
|
**/
|
|
1322
1316
|
PalletNftsEvent: {
|
|
1323
1317
|
_enum: {
|
|
@@ -1518,7 +1512,7 @@ export default {
|
|
|
1518
1512
|
}
|
|
1519
1513
|
},
|
|
1520
1514
|
/**
|
|
1521
|
-
*
|
|
1515
|
+
* Lookup151: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
|
|
1522
1516
|
**/
|
|
1523
1517
|
PalletNftsAttributeNamespace: {
|
|
1524
1518
|
_enum: {
|
|
@@ -1529,20 +1523,20 @@ export default {
|
|
|
1529
1523
|
}
|
|
1530
1524
|
},
|
|
1531
1525
|
/**
|
|
1532
|
-
*
|
|
1526
|
+
* Lookup153: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1533
1527
|
**/
|
|
1534
1528
|
PalletNftsPriceWithDirection: {
|
|
1535
1529
|
amount: "u128",
|
|
1536
1530
|
direction: "PalletNftsPriceDirection"
|
|
1537
1531
|
},
|
|
1538
1532
|
/**
|
|
1539
|
-
*
|
|
1533
|
+
* Lookup154: pallet_nfts::types::PriceDirection
|
|
1540
1534
|
**/
|
|
1541
1535
|
PalletNftsPriceDirection: {
|
|
1542
1536
|
_enum: ["Send", "Receive"]
|
|
1543
1537
|
},
|
|
1544
1538
|
/**
|
|
1545
|
-
*
|
|
1539
|
+
* Lookup155: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
1546
1540
|
**/
|
|
1547
1541
|
PalletNftsPalletAttributes: {
|
|
1548
1542
|
_enum: {
|
|
@@ -1551,7 +1545,7 @@ export default {
|
|
|
1551
1545
|
}
|
|
1552
1546
|
},
|
|
1553
1547
|
/**
|
|
1554
|
-
*
|
|
1548
|
+
* Lookup156: frame_system::Phase
|
|
1555
1549
|
**/
|
|
1556
1550
|
FrameSystemPhase: {
|
|
1557
1551
|
_enum: {
|
|
@@ -1561,21 +1555,21 @@ export default {
|
|
|
1561
1555
|
}
|
|
1562
1556
|
},
|
|
1563
1557
|
/**
|
|
1564
|
-
*
|
|
1558
|
+
* Lookup159: frame_system::LastRuntimeUpgradeInfo
|
|
1565
1559
|
**/
|
|
1566
1560
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1567
1561
|
specVersion: "Compact<u32>",
|
|
1568
1562
|
specName: "Text"
|
|
1569
1563
|
},
|
|
1570
1564
|
/**
|
|
1571
|
-
*
|
|
1565
|
+
* Lookup161: frame_system::CodeUpgradeAuthorization<T>
|
|
1572
1566
|
**/
|
|
1573
1567
|
FrameSystemCodeUpgradeAuthorization: {
|
|
1574
1568
|
codeHash: "H256",
|
|
1575
1569
|
checkVersion: "bool"
|
|
1576
1570
|
},
|
|
1577
1571
|
/**
|
|
1578
|
-
*
|
|
1572
|
+
* Lookup162: frame_system::pallet::Call<T>
|
|
1579
1573
|
**/
|
|
1580
1574
|
FrameSystemCall: {
|
|
1581
1575
|
_enum: {
|
|
@@ -1620,7 +1614,7 @@ export default {
|
|
|
1620
1614
|
}
|
|
1621
1615
|
},
|
|
1622
1616
|
/**
|
|
1623
|
-
*
|
|
1617
|
+
* Lookup165: frame_system::limits::BlockWeights
|
|
1624
1618
|
**/
|
|
1625
1619
|
FrameSystemLimitsBlockWeights: {
|
|
1626
1620
|
baseBlock: "SpWeightsWeightV2Weight",
|
|
@@ -1628,7 +1622,7 @@ export default {
|
|
|
1628
1622
|
perClass: "FrameSupportDispatchPerDispatchClassWeightsPerClass"
|
|
1629
1623
|
},
|
|
1630
1624
|
/**
|
|
1631
|
-
*
|
|
1625
|
+
* Lookup166: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1632
1626
|
**/
|
|
1633
1627
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1634
1628
|
normal: "FrameSystemLimitsWeightsPerClass",
|
|
@@ -1636,7 +1630,7 @@ export default {
|
|
|
1636
1630
|
mandatory: "FrameSystemLimitsWeightsPerClass"
|
|
1637
1631
|
},
|
|
1638
1632
|
/**
|
|
1639
|
-
*
|
|
1633
|
+
* Lookup167: frame_system::limits::WeightsPerClass
|
|
1640
1634
|
**/
|
|
1641
1635
|
FrameSystemLimitsWeightsPerClass: {
|
|
1642
1636
|
baseExtrinsic: "SpWeightsWeightV2Weight",
|
|
@@ -1645,13 +1639,13 @@ export default {
|
|
|
1645
1639
|
reserved: "Option<SpWeightsWeightV2Weight>"
|
|
1646
1640
|
},
|
|
1647
1641
|
/**
|
|
1648
|
-
*
|
|
1642
|
+
* Lookup169: frame_system::limits::BlockLength
|
|
1649
1643
|
**/
|
|
1650
1644
|
FrameSystemLimitsBlockLength: {
|
|
1651
1645
|
max: "FrameSupportDispatchPerDispatchClassU32"
|
|
1652
1646
|
},
|
|
1653
1647
|
/**
|
|
1654
|
-
*
|
|
1648
|
+
* Lookup170: frame_support::dispatch::PerDispatchClass<T>
|
|
1655
1649
|
**/
|
|
1656
1650
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1657
1651
|
normal: "u32",
|
|
@@ -1659,14 +1653,14 @@ export default {
|
|
|
1659
1653
|
mandatory: "u32"
|
|
1660
1654
|
},
|
|
1661
1655
|
/**
|
|
1662
|
-
*
|
|
1656
|
+
* Lookup171: sp_weights::RuntimeDbWeight
|
|
1663
1657
|
**/
|
|
1664
1658
|
SpWeightsRuntimeDbWeight: {
|
|
1665
1659
|
read: "u64",
|
|
1666
1660
|
write: "u64"
|
|
1667
1661
|
},
|
|
1668
1662
|
/**
|
|
1669
|
-
*
|
|
1663
|
+
* Lookup172: sp_version::RuntimeVersion
|
|
1670
1664
|
**/
|
|
1671
1665
|
SpVersionRuntimeVersion: {
|
|
1672
1666
|
specName: "Text",
|
|
@@ -1679,7 +1673,7 @@ export default {
|
|
|
1679
1673
|
systemVersion: "u8"
|
|
1680
1674
|
},
|
|
1681
1675
|
/**
|
|
1682
|
-
*
|
|
1676
|
+
* Lookup178: frame_system::pallet::Error<T>
|
|
1683
1677
|
**/
|
|
1684
1678
|
FrameSystemError: {
|
|
1685
1679
|
_enum: [
|
|
@@ -1695,11 +1689,11 @@ export default {
|
|
|
1695
1689
|
]
|
|
1696
1690
|
},
|
|
1697
1691
|
/**
|
|
1698
|
-
*
|
|
1692
|
+
* Lookup181: sp_consensus_babe::app::Public
|
|
1699
1693
|
**/
|
|
1700
1694
|
SpConsensusBabeAppPublic: "[u8;32]",
|
|
1701
1695
|
/**
|
|
1702
|
-
*
|
|
1696
|
+
* Lookup184: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1703
1697
|
**/
|
|
1704
1698
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1705
1699
|
_enum: {
|
|
@@ -1711,13 +1705,13 @@ export default {
|
|
|
1711
1705
|
}
|
|
1712
1706
|
},
|
|
1713
1707
|
/**
|
|
1714
|
-
*
|
|
1708
|
+
* Lookup186: sp_consensus_babe::AllowedSlots
|
|
1715
1709
|
**/
|
|
1716
1710
|
SpConsensusBabeAllowedSlots: {
|
|
1717
1711
|
_enum: ["PrimarySlots", "PrimaryAndSecondaryPlainSlots", "PrimaryAndSecondaryVRFSlots"]
|
|
1718
1712
|
},
|
|
1719
1713
|
/**
|
|
1720
|
-
*
|
|
1714
|
+
* Lookup190: sp_consensus_babe::digests::PreDigest
|
|
1721
1715
|
**/
|
|
1722
1716
|
SpConsensusBabeDigestsPreDigest: {
|
|
1723
1717
|
_enum: {
|
|
@@ -1728,7 +1722,7 @@ export default {
|
|
|
1728
1722
|
}
|
|
1729
1723
|
},
|
|
1730
1724
|
/**
|
|
1731
|
-
*
|
|
1725
|
+
* Lookup191: sp_consensus_babe::digests::PrimaryPreDigest
|
|
1732
1726
|
**/
|
|
1733
1727
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
1734
1728
|
authorityIndex: "u32",
|
|
@@ -1736,21 +1730,21 @@ export default {
|
|
|
1736
1730
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1737
1731
|
},
|
|
1738
1732
|
/**
|
|
1739
|
-
*
|
|
1733
|
+
* Lookup192: sp_core::sr25519::vrf::VrfSignature
|
|
1740
1734
|
**/
|
|
1741
1735
|
SpCoreSr25519VrfVrfSignature: {
|
|
1742
1736
|
preOutput: "[u8;32]",
|
|
1743
1737
|
proof: "[u8;64]"
|
|
1744
1738
|
},
|
|
1745
1739
|
/**
|
|
1746
|
-
*
|
|
1740
|
+
* Lookup194: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
1747
1741
|
**/
|
|
1748
1742
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
1749
1743
|
authorityIndex: "u32",
|
|
1750
1744
|
slot: "u64"
|
|
1751
1745
|
},
|
|
1752
1746
|
/**
|
|
1753
|
-
*
|
|
1747
|
+
* Lookup195: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
1754
1748
|
**/
|
|
1755
1749
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
1756
1750
|
authorityIndex: "u32",
|
|
@@ -1758,14 +1752,14 @@ export default {
|
|
|
1758
1752
|
vrfSignature: "SpCoreSr25519VrfVrfSignature"
|
|
1759
1753
|
},
|
|
1760
1754
|
/**
|
|
1761
|
-
*
|
|
1755
|
+
* Lookup197: sp_consensus_babe::BabeEpochConfiguration
|
|
1762
1756
|
**/
|
|
1763
1757
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
1764
1758
|
c: "(u64,u64)",
|
|
1765
1759
|
allowedSlots: "SpConsensusBabeAllowedSlots"
|
|
1766
1760
|
},
|
|
1767
1761
|
/**
|
|
1768
|
-
*
|
|
1762
|
+
* Lookup201: pallet_babe::pallet::Call<T>
|
|
1769
1763
|
**/
|
|
1770
1764
|
PalletBabeCall: {
|
|
1771
1765
|
_enum: {
|
|
@@ -1783,7 +1777,7 @@ export default {
|
|
|
1783
1777
|
}
|
|
1784
1778
|
},
|
|
1785
1779
|
/**
|
|
1786
|
-
*
|
|
1780
|
+
* Lookup202: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1787
1781
|
**/
|
|
1788
1782
|
SpConsensusSlotsEquivocationProof: {
|
|
1789
1783
|
offender: "SpConsensusBabeAppPublic",
|
|
@@ -1792,7 +1786,7 @@ export default {
|
|
|
1792
1786
|
secondHeader: "SpRuntimeHeader"
|
|
1793
1787
|
},
|
|
1794
1788
|
/**
|
|
1795
|
-
*
|
|
1789
|
+
* Lookup203: sp_runtime::generic::header::Header<Number, Hash>
|
|
1796
1790
|
**/
|
|
1797
1791
|
SpRuntimeHeader: {
|
|
1798
1792
|
parentHash: "H256",
|
|
@@ -1802,7 +1796,7 @@ export default {
|
|
|
1802
1796
|
digest: "SpRuntimeDigest"
|
|
1803
1797
|
},
|
|
1804
1798
|
/**
|
|
1805
|
-
*
|
|
1799
|
+
* Lookup204: sp_session::MembershipProof
|
|
1806
1800
|
**/
|
|
1807
1801
|
SpSessionMembershipProof: {
|
|
1808
1802
|
session: "u32",
|
|
@@ -1810,7 +1804,7 @@ export default {
|
|
|
1810
1804
|
validatorCount: "u32"
|
|
1811
1805
|
},
|
|
1812
1806
|
/**
|
|
1813
|
-
*
|
|
1807
|
+
* Lookup205: pallet_babe::pallet::Error<T>
|
|
1814
1808
|
**/
|
|
1815
1809
|
PalletBabeError: {
|
|
1816
1810
|
_enum: [
|
|
@@ -1821,7 +1815,7 @@ export default {
|
|
|
1821
1815
|
]
|
|
1822
1816
|
},
|
|
1823
1817
|
/**
|
|
1824
|
-
*
|
|
1818
|
+
* Lookup206: pallet_timestamp::pallet::Call<T>
|
|
1825
1819
|
**/
|
|
1826
1820
|
PalletTimestampCall: {
|
|
1827
1821
|
_enum: {
|
|
@@ -1831,7 +1825,7 @@ export default {
|
|
|
1831
1825
|
}
|
|
1832
1826
|
},
|
|
1833
1827
|
/**
|
|
1834
|
-
*
|
|
1828
|
+
* Lookup208: pallet_balances::types::BalanceLock<Balance>
|
|
1835
1829
|
**/
|
|
1836
1830
|
PalletBalancesBalanceLock: {
|
|
1837
1831
|
id: "[u8;8]",
|
|
@@ -1839,27 +1833,27 @@ export default {
|
|
|
1839
1833
|
reasons: "PalletBalancesReasons"
|
|
1840
1834
|
},
|
|
1841
1835
|
/**
|
|
1842
|
-
*
|
|
1836
|
+
* Lookup209: pallet_balances::types::Reasons
|
|
1843
1837
|
**/
|
|
1844
1838
|
PalletBalancesReasons: {
|
|
1845
1839
|
_enum: ["Fee", "Misc", "All"]
|
|
1846
1840
|
},
|
|
1847
1841
|
/**
|
|
1848
|
-
*
|
|
1842
|
+
* Lookup212: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1849
1843
|
**/
|
|
1850
1844
|
PalletBalancesReserveData: {
|
|
1851
1845
|
id: "[u8;8]",
|
|
1852
1846
|
amount: "u128"
|
|
1853
1847
|
},
|
|
1854
1848
|
/**
|
|
1855
|
-
*
|
|
1849
|
+
* Lookup215: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
|
|
1856
1850
|
**/
|
|
1857
1851
|
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
1858
1852
|
id: "ShSolochainEvmRuntimeRuntimeHoldReason",
|
|
1859
1853
|
amount: "u128"
|
|
1860
1854
|
},
|
|
1861
1855
|
/**
|
|
1862
|
-
*
|
|
1856
|
+
* Lookup216: sh_solochain_evm_runtime::RuntimeHoldReason
|
|
1863
1857
|
**/
|
|
1864
1858
|
ShSolochainEvmRuntimeRuntimeHoldReason: {
|
|
1865
1859
|
_enum: {
|
|
@@ -1951,36 +1945,36 @@ export default {
|
|
|
1951
1945
|
}
|
|
1952
1946
|
},
|
|
1953
1947
|
/**
|
|
1954
|
-
*
|
|
1948
|
+
* Lookup217: pallet_storage_providers::pallet::HoldReason
|
|
1955
1949
|
**/
|
|
1956
1950
|
PalletStorageProvidersHoldReason: {
|
|
1957
1951
|
_enum: ["StorageProviderDeposit", "BucketDeposit"]
|
|
1958
1952
|
},
|
|
1959
1953
|
/**
|
|
1960
|
-
*
|
|
1954
|
+
* Lookup218: pallet_file_system::pallet::HoldReason
|
|
1961
1955
|
**/
|
|
1962
1956
|
PalletFileSystemHoldReason: {
|
|
1963
1957
|
_enum: ["StorageRequestCreationHold", "FileDeletionRequestHold"]
|
|
1964
1958
|
},
|
|
1965
1959
|
/**
|
|
1966
|
-
*
|
|
1960
|
+
* Lookup219: pallet_payment_streams::pallet::HoldReason
|
|
1967
1961
|
**/
|
|
1968
1962
|
PalletPaymentStreamsHoldReason: {
|
|
1969
1963
|
_enum: ["PaymentStreamDeposit"]
|
|
1970
1964
|
},
|
|
1971
1965
|
/**
|
|
1972
|
-
*
|
|
1966
|
+
* Lookup222: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
|
|
1973
1967
|
**/
|
|
1974
1968
|
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
1975
1969
|
id: "ShSolochainEvmRuntimeRuntimeFreezeReason",
|
|
1976
1970
|
amount: "u128"
|
|
1977
1971
|
},
|
|
1978
1972
|
/**
|
|
1979
|
-
*
|
|
1973
|
+
* Lookup223: sh_solochain_evm_runtime::RuntimeFreezeReason
|
|
1980
1974
|
**/
|
|
1981
1975
|
ShSolochainEvmRuntimeRuntimeFreezeReason: "Null",
|
|
1982
1976
|
/**
|
|
1983
|
-
*
|
|
1977
|
+
* Lookup225: pallet_balances::pallet::Call<T, I>
|
|
1984
1978
|
**/
|
|
1985
1979
|
PalletBalancesCall: {
|
|
1986
1980
|
_enum: {
|
|
@@ -2025,13 +2019,13 @@ export default {
|
|
|
2025
2019
|
}
|
|
2026
2020
|
},
|
|
2027
2021
|
/**
|
|
2028
|
-
*
|
|
2022
|
+
* Lookup227: pallet_balances::types::AdjustmentDirection
|
|
2029
2023
|
**/
|
|
2030
2024
|
PalletBalancesAdjustmentDirection: {
|
|
2031
2025
|
_enum: ["Increase", "Decrease"]
|
|
2032
2026
|
},
|
|
2033
2027
|
/**
|
|
2034
|
-
*
|
|
2028
|
+
* Lookup228: pallet_balances::pallet::Error<T, I>
|
|
2035
2029
|
**/
|
|
2036
2030
|
PalletBalancesError: {
|
|
2037
2031
|
_enum: [
|
|
@@ -2050,25 +2044,25 @@ export default {
|
|
|
2050
2044
|
]
|
|
2051
2045
|
},
|
|
2052
2046
|
/**
|
|
2053
|
-
*
|
|
2047
|
+
* Lookup229: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
|
|
2054
2048
|
**/
|
|
2055
2049
|
SpStakingOffenceOffenceDetails: {
|
|
2056
2050
|
offender: "(AccountId20,Null)",
|
|
2057
2051
|
reporters: "Vec<AccountId20>"
|
|
2058
2052
|
},
|
|
2059
2053
|
/**
|
|
2060
|
-
*
|
|
2054
|
+
* Lookup235: sh_solochain_evm_runtime::SessionKeys
|
|
2061
2055
|
**/
|
|
2062
2056
|
ShSolochainEvmRuntimeSessionKeys: {
|
|
2063
2057
|
babe: "SpConsensusBabeAppPublic",
|
|
2064
2058
|
grandpa: "SpConsensusGrandpaAppPublic"
|
|
2065
2059
|
},
|
|
2066
2060
|
/**
|
|
2067
|
-
*
|
|
2061
|
+
* Lookup237: sp_core::crypto::KeyTypeId
|
|
2068
2062
|
**/
|
|
2069
2063
|
SpCoreCryptoKeyTypeId: "[u8;4]",
|
|
2070
2064
|
/**
|
|
2071
|
-
*
|
|
2065
|
+
* Lookup238: pallet_session::pallet::Call<T>
|
|
2072
2066
|
**/
|
|
2073
2067
|
PalletSessionCall: {
|
|
2074
2068
|
_enum: {
|
|
@@ -2083,13 +2077,13 @@ export default {
|
|
|
2083
2077
|
}
|
|
2084
2078
|
},
|
|
2085
2079
|
/**
|
|
2086
|
-
*
|
|
2080
|
+
* Lookup239: pallet_session::pallet::Error<T>
|
|
2087
2081
|
**/
|
|
2088
2082
|
PalletSessionError: {
|
|
2089
2083
|
_enum: ["InvalidProof", "NoAssociatedValidatorId", "DuplicatedKey", "NoKeys", "NoAccount"]
|
|
2090
2084
|
},
|
|
2091
2085
|
/**
|
|
2092
|
-
*
|
|
2086
|
+
* Lookup240: pallet_grandpa::StoredState<N>
|
|
2093
2087
|
**/
|
|
2094
2088
|
PalletGrandpaStoredState: {
|
|
2095
2089
|
_enum: {
|
|
@@ -2106,7 +2100,7 @@ export default {
|
|
|
2106
2100
|
}
|
|
2107
2101
|
},
|
|
2108
2102
|
/**
|
|
2109
|
-
*
|
|
2103
|
+
* Lookup241: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2110
2104
|
**/
|
|
2111
2105
|
PalletGrandpaStoredPendingChange: {
|
|
2112
2106
|
scheduledAt: "u32",
|
|
@@ -2115,7 +2109,7 @@ export default {
|
|
|
2115
2109
|
forced: "Option<u32>"
|
|
2116
2110
|
},
|
|
2117
2111
|
/**
|
|
2118
|
-
*
|
|
2112
|
+
* Lookup243: pallet_grandpa::pallet::Call<T>
|
|
2119
2113
|
**/
|
|
2120
2114
|
PalletGrandpaCall: {
|
|
2121
2115
|
_enum: {
|
|
@@ -2134,14 +2128,14 @@ export default {
|
|
|
2134
2128
|
}
|
|
2135
2129
|
},
|
|
2136
2130
|
/**
|
|
2137
|
-
*
|
|
2131
|
+
* Lookup244: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2138
2132
|
**/
|
|
2139
2133
|
SpConsensusGrandpaEquivocationProof: {
|
|
2140
2134
|
setId: "u64",
|
|
2141
2135
|
equivocation: "SpConsensusGrandpaEquivocation"
|
|
2142
2136
|
},
|
|
2143
2137
|
/**
|
|
2144
|
-
*
|
|
2138
|
+
* Lookup245: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2145
2139
|
**/
|
|
2146
2140
|
SpConsensusGrandpaEquivocation: {
|
|
2147
2141
|
_enum: {
|
|
@@ -2150,7 +2144,7 @@ export default {
|
|
|
2150
2144
|
}
|
|
2151
2145
|
},
|
|
2152
2146
|
/**
|
|
2153
|
-
*
|
|
2147
|
+
* Lookup246: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2154
2148
|
**/
|
|
2155
2149
|
FinalityGrandpaEquivocationPrevote: {
|
|
2156
2150
|
roundNumber: "u64",
|
|
@@ -2159,18 +2153,18 @@ export default {
|
|
|
2159
2153
|
second: "(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)"
|
|
2160
2154
|
},
|
|
2161
2155
|
/**
|
|
2162
|
-
*
|
|
2156
|
+
* Lookup247: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2163
2157
|
**/
|
|
2164
2158
|
FinalityGrandpaPrevote: {
|
|
2165
2159
|
targetHash: "H256",
|
|
2166
2160
|
targetNumber: "u32"
|
|
2167
2161
|
},
|
|
2168
2162
|
/**
|
|
2169
|
-
*
|
|
2163
|
+
* Lookup248: sp_consensus_grandpa::app::Signature
|
|
2170
2164
|
**/
|
|
2171
2165
|
SpConsensusGrandpaAppSignature: "[u8;64]",
|
|
2172
2166
|
/**
|
|
2173
|
-
*
|
|
2167
|
+
* Lookup250: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2174
2168
|
**/
|
|
2175
2169
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2176
2170
|
roundNumber: "u64",
|
|
@@ -2179,14 +2173,14 @@ export default {
|
|
|
2179
2173
|
second: "(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)"
|
|
2180
2174
|
},
|
|
2181
2175
|
/**
|
|
2182
|
-
*
|
|
2176
|
+
* Lookup251: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2183
2177
|
**/
|
|
2184
2178
|
FinalityGrandpaPrecommit: {
|
|
2185
2179
|
targetHash: "H256",
|
|
2186
2180
|
targetNumber: "u32"
|
|
2187
2181
|
},
|
|
2188
2182
|
/**
|
|
2189
|
-
*
|
|
2183
|
+
* Lookup253: pallet_grandpa::pallet::Error<T>
|
|
2190
2184
|
**/
|
|
2191
2185
|
PalletGrandpaError: {
|
|
2192
2186
|
_enum: [
|
|
@@ -2200,13 +2194,13 @@ export default {
|
|
|
2200
2194
|
]
|
|
2201
2195
|
},
|
|
2202
2196
|
/**
|
|
2203
|
-
*
|
|
2197
|
+
* Lookup255: pallet_transaction_payment::Releases
|
|
2204
2198
|
**/
|
|
2205
2199
|
PalletTransactionPaymentReleases: {
|
|
2206
2200
|
_enum: ["V1Ancient", "V2"]
|
|
2207
2201
|
},
|
|
2208
2202
|
/**
|
|
2209
|
-
*
|
|
2203
|
+
* Lookup256: pallet_parameters::pallet::Call<T>
|
|
2210
2204
|
**/
|
|
2211
2205
|
PalletParametersCall: {
|
|
2212
2206
|
_enum: {
|
|
@@ -2216,7 +2210,7 @@ export default {
|
|
|
2216
2210
|
}
|
|
2217
2211
|
},
|
|
2218
2212
|
/**
|
|
2219
|
-
*
|
|
2213
|
+
* Lookup257: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
|
|
2220
2214
|
**/
|
|
2221
2215
|
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
2222
2216
|
_enum: {
|
|
@@ -2224,7 +2218,7 @@ export default {
|
|
|
2224
2218
|
}
|
|
2225
2219
|
},
|
|
2226
2220
|
/**
|
|
2227
|
-
*
|
|
2221
|
+
* Lookup258: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
2228
2222
|
**/
|
|
2229
2223
|
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
2230
2224
|
_enum: {
|
|
@@ -2261,7 +2255,7 @@ export default {
|
|
|
2261
2255
|
}
|
|
2262
2256
|
},
|
|
2263
2257
|
/**
|
|
2264
|
-
*
|
|
2258
|
+
* Lookup261: pallet_sudo::pallet::Call<T>
|
|
2265
2259
|
**/
|
|
2266
2260
|
PalletSudoCall: {
|
|
2267
2261
|
_enum: {
|
|
@@ -2286,7 +2280,7 @@ export default {
|
|
|
2286
2280
|
}
|
|
2287
2281
|
},
|
|
2288
2282
|
/**
|
|
2289
|
-
*
|
|
2283
|
+
* Lookup263: pallet_ethereum::pallet::Call<T>
|
|
2290
2284
|
**/
|
|
2291
2285
|
PalletEthereumCall: {
|
|
2292
2286
|
_enum: {
|
|
@@ -2296,7 +2290,7 @@ export default {
|
|
|
2296
2290
|
}
|
|
2297
2291
|
},
|
|
2298
2292
|
/**
|
|
2299
|
-
*
|
|
2293
|
+
* Lookup264: ethereum::transaction::TransactionV2
|
|
2300
2294
|
**/
|
|
2301
2295
|
EthereumTransactionTransactionV2: {
|
|
2302
2296
|
_enum: {
|
|
@@ -2306,7 +2300,7 @@ export default {
|
|
|
2306
2300
|
}
|
|
2307
2301
|
},
|
|
2308
2302
|
/**
|
|
2309
|
-
*
|
|
2303
|
+
* Lookup265: ethereum::transaction::legacy::LegacyTransaction
|
|
2310
2304
|
**/
|
|
2311
2305
|
EthereumTransactionLegacyLegacyTransaction: {
|
|
2312
2306
|
nonce: "U256",
|
|
@@ -2318,7 +2312,7 @@ export default {
|
|
|
2318
2312
|
signature: "EthereumTransactionLegacyTransactionSignature"
|
|
2319
2313
|
},
|
|
2320
2314
|
/**
|
|
2321
|
-
*
|
|
2315
|
+
* Lookup268: ethereum::transaction::legacy::TransactionAction
|
|
2322
2316
|
**/
|
|
2323
2317
|
EthereumTransactionLegacyTransactionAction: {
|
|
2324
2318
|
_enum: {
|
|
@@ -2327,7 +2321,7 @@ export default {
|
|
|
2327
2321
|
}
|
|
2328
2322
|
},
|
|
2329
2323
|
/**
|
|
2330
|
-
*
|
|
2324
|
+
* Lookup269: ethereum::transaction::legacy::TransactionSignature
|
|
2331
2325
|
**/
|
|
2332
2326
|
EthereumTransactionLegacyTransactionSignature: {
|
|
2333
2327
|
v: "u64",
|
|
@@ -2335,7 +2329,7 @@ export default {
|
|
|
2335
2329
|
s: "H256"
|
|
2336
2330
|
},
|
|
2337
2331
|
/**
|
|
2338
|
-
*
|
|
2332
|
+
* Lookup271: ethereum::transaction::eip2930::EIP2930Transaction
|
|
2339
2333
|
**/
|
|
2340
2334
|
EthereumTransactionEip2930Eip2930Transaction: {
|
|
2341
2335
|
chainId: "u64",
|
|
@@ -2351,14 +2345,14 @@ export default {
|
|
|
2351
2345
|
s: "H256"
|
|
2352
2346
|
},
|
|
2353
2347
|
/**
|
|
2354
|
-
*
|
|
2348
|
+
* Lookup273: ethereum::transaction::eip2930::AccessListItem
|
|
2355
2349
|
**/
|
|
2356
2350
|
EthereumTransactionEip2930AccessListItem: {
|
|
2357
2351
|
address: "H160",
|
|
2358
2352
|
storageKeys: "Vec<H256>"
|
|
2359
2353
|
},
|
|
2360
2354
|
/**
|
|
2361
|
-
*
|
|
2355
|
+
* Lookup274: ethereum::transaction::eip1559::EIP1559Transaction
|
|
2362
2356
|
**/
|
|
2363
2357
|
EthereumTransactionEip1559Eip1559Transaction: {
|
|
2364
2358
|
chainId: "u64",
|
|
@@ -2375,7 +2369,7 @@ export default {
|
|
|
2375
2369
|
s: "H256"
|
|
2376
2370
|
},
|
|
2377
2371
|
/**
|
|
2378
|
-
*
|
|
2372
|
+
* Lookup275: pallet_evm::pallet::Call<T>
|
|
2379
2373
|
**/
|
|
2380
2374
|
PalletEvmCall: {
|
|
2381
2375
|
_enum: {
|
|
@@ -2418,7 +2412,7 @@ export default {
|
|
|
2418
2412
|
}
|
|
2419
2413
|
},
|
|
2420
2414
|
/**
|
|
2421
|
-
*
|
|
2415
|
+
* Lookup279: pallet_storage_providers::pallet::Call<T>
|
|
2422
2416
|
**/
|
|
2423
2417
|
PalletStorageProvidersCall: {
|
|
2424
2418
|
_enum: {
|
|
@@ -2489,7 +2483,7 @@ export default {
|
|
|
2489
2483
|
}
|
|
2490
2484
|
},
|
|
2491
2485
|
/**
|
|
2492
|
-
*
|
|
2486
|
+
* Lookup280: pallet_file_system::pallet::Call<T>
|
|
2493
2487
|
**/
|
|
2494
2488
|
PalletFileSystemCall: {
|
|
2495
2489
|
_enum: {
|
|
@@ -2589,35 +2583,26 @@ export default {
|
|
|
2589
2583
|
size_: "u64",
|
|
2590
2584
|
fingerprint: "H256"
|
|
2591
2585
|
},
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
size_: "size"
|
|
2595
|
-
},
|
|
2596
|
-
fileOwner: "AccountId20",
|
|
2597
|
-
signedIntention: "PalletFileSystemFileOperationIntention",
|
|
2598
|
-
signature: "FpAccountEthereumSignature",
|
|
2599
|
-
bucketId: "H256",
|
|
2600
|
-
location: "Bytes",
|
|
2601
|
-
size_: "u64",
|
|
2602
|
-
fingerprint: "H256",
|
|
2586
|
+
delete_files: {
|
|
2587
|
+
fileDeletions: "Vec<PalletFileSystemFileDeletionRequest>",
|
|
2603
2588
|
bspId: "Option<H256>",
|
|
2604
2589
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2605
2590
|
},
|
|
2606
|
-
|
|
2607
|
-
|
|
2591
|
+
delete_files_for_incomplete_storage_request: {
|
|
2592
|
+
fileKeys: "Vec<H256>",
|
|
2608
2593
|
bspId: "Option<H256>",
|
|
2609
2594
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2610
2595
|
}
|
|
2611
2596
|
}
|
|
2612
2597
|
},
|
|
2613
2598
|
/**
|
|
2614
|
-
*
|
|
2599
|
+
* Lookup281: pallet_file_system::types::BucketMoveRequestResponse
|
|
2615
2600
|
**/
|
|
2616
2601
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
2617
2602
|
_enum: ["Accepted", "Rejected"]
|
|
2618
2603
|
},
|
|
2619
2604
|
/**
|
|
2620
|
-
*
|
|
2605
|
+
* Lookup282: pallet_file_system::types::ReplicationTarget<T>
|
|
2621
2606
|
**/
|
|
2622
2607
|
PalletFileSystemReplicationTarget: {
|
|
2623
2608
|
_enum: {
|
|
@@ -2630,7 +2615,7 @@ export default {
|
|
|
2630
2615
|
}
|
|
2631
2616
|
},
|
|
2632
2617
|
/**
|
|
2633
|
-
*
|
|
2618
|
+
* Lookup284: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
2634
2619
|
**/
|
|
2635
2620
|
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
2636
2621
|
bucketId: "H256",
|
|
@@ -2638,28 +2623,43 @@ export default {
|
|
|
2638
2623
|
reject: "Vec<PalletFileSystemRejectedStorageRequest>"
|
|
2639
2624
|
},
|
|
2640
2625
|
/**
|
|
2641
|
-
*
|
|
2626
|
+
* Lookup286: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
2642
2627
|
**/
|
|
2643
2628
|
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
2644
2629
|
fileKeysAndProofs: "Vec<PalletFileSystemFileKeyWithProof>",
|
|
2645
2630
|
forestProof: "SpTrieStorageProofCompactProof"
|
|
2646
2631
|
},
|
|
2647
2632
|
/**
|
|
2648
|
-
*
|
|
2633
|
+
* Lookup288: pallet_file_system::types::FileKeyWithProof<T>
|
|
2649
2634
|
**/
|
|
2650
2635
|
PalletFileSystemFileKeyWithProof: {
|
|
2651
2636
|
fileKey: "H256",
|
|
2652
2637
|
proof: "ShpFileKeyVerifierFileKeyProof"
|
|
2653
2638
|
},
|
|
2654
2639
|
/**
|
|
2655
|
-
*
|
|
2640
|
+
* Lookup290: pallet_file_system::types::RejectedStorageRequest<T>
|
|
2656
2641
|
**/
|
|
2657
2642
|
PalletFileSystemRejectedStorageRequest: {
|
|
2658
2643
|
fileKey: "H256",
|
|
2659
2644
|
reason: "PalletFileSystemRejectedStorageRequestReason"
|
|
2660
2645
|
},
|
|
2661
2646
|
/**
|
|
2662
|
-
*
|
|
2647
|
+
* Lookup293: pallet_file_system::types::FileDeletionRequest<T>
|
|
2648
|
+
**/
|
|
2649
|
+
PalletFileSystemFileDeletionRequest: {
|
|
2650
|
+
_alias: {
|
|
2651
|
+
size_: "size"
|
|
2652
|
+
},
|
|
2653
|
+
fileOwner: "AccountId20",
|
|
2654
|
+
signedIntention: "PalletFileSystemFileOperationIntention",
|
|
2655
|
+
signature: "FpAccountEthereumSignature",
|
|
2656
|
+
bucketId: "H256",
|
|
2657
|
+
location: "Bytes",
|
|
2658
|
+
size_: "u64",
|
|
2659
|
+
fingerprint: "H256"
|
|
2660
|
+
},
|
|
2661
|
+
/**
|
|
2662
|
+
* Lookup295: pallet_proofs_dealer::pallet::Call<T>
|
|
2663
2663
|
**/
|
|
2664
2664
|
PalletProofsDealerCall: {
|
|
2665
2665
|
_enum: {
|
|
@@ -2683,13 +2683,13 @@ export default {
|
|
|
2683
2683
|
}
|
|
2684
2684
|
},
|
|
2685
2685
|
/**
|
|
2686
|
-
*
|
|
2686
|
+
* Lookup296: pallet_randomness::pallet::Call<T>
|
|
2687
2687
|
**/
|
|
2688
2688
|
PalletRandomnessCall: {
|
|
2689
2689
|
_enum: ["set_babe_randomness"]
|
|
2690
2690
|
},
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* Lookup297: pallet_payment_streams::pallet::Call<T>
|
|
2693
2693
|
**/
|
|
2694
2694
|
PalletPaymentStreamsCall: {
|
|
2695
2695
|
_enum: {
|
|
@@ -2734,7 +2734,7 @@ export default {
|
|
|
2734
2734
|
}
|
|
2735
2735
|
},
|
|
2736
2736
|
/**
|
|
2737
|
-
*
|
|
2737
|
+
* Lookup298: pallet_bucket_nfts::pallet::Call<T>
|
|
2738
2738
|
**/
|
|
2739
2739
|
PalletBucketNftsCall: {
|
|
2740
2740
|
_enum: {
|
|
@@ -2752,7 +2752,7 @@ export default {
|
|
|
2752
2752
|
}
|
|
2753
2753
|
},
|
|
2754
2754
|
/**
|
|
2755
|
-
*
|
|
2755
|
+
* Lookup300: pallet_nfts::pallet::Call<T, I>
|
|
2756
2756
|
**/
|
|
2757
2757
|
PalletNftsCall: {
|
|
2758
2758
|
_enum: {
|
|
@@ -2949,7 +2949,7 @@ export default {
|
|
|
2949
2949
|
}
|
|
2950
2950
|
},
|
|
2951
2951
|
/**
|
|
2952
|
-
*
|
|
2952
|
+
* Lookup301: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
2953
2953
|
**/
|
|
2954
2954
|
PalletNftsCollectionConfig: {
|
|
2955
2955
|
settings: "u64",
|
|
@@ -2957,7 +2957,7 @@ export default {
|
|
|
2957
2957
|
mintSettings: "PalletNftsMintSettings"
|
|
2958
2958
|
},
|
|
2959
2959
|
/**
|
|
2960
|
-
*
|
|
2960
|
+
* Lookup303: pallet_nfts::types::CollectionSetting
|
|
2961
2961
|
**/
|
|
2962
2962
|
PalletNftsCollectionSetting: {
|
|
2963
2963
|
_enum: [
|
|
@@ -2981,7 +2981,7 @@ export default {
|
|
|
2981
2981
|
]
|
|
2982
2982
|
},
|
|
2983
2983
|
/**
|
|
2984
|
-
*
|
|
2984
|
+
* Lookup304: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
2985
2985
|
**/
|
|
2986
2986
|
PalletNftsMintSettings: {
|
|
2987
2987
|
mintType: "PalletNftsMintType",
|
|
@@ -2991,7 +2991,7 @@ export default {
|
|
|
2991
2991
|
defaultItemSettings: "u64"
|
|
2992
2992
|
},
|
|
2993
2993
|
/**
|
|
2994
|
-
*
|
|
2994
|
+
* Lookup305: pallet_nfts::types::MintType<CollectionId>
|
|
2995
2995
|
**/
|
|
2996
2996
|
PalletNftsMintType: {
|
|
2997
2997
|
_enum: {
|
|
@@ -3001,13 +3001,13 @@ export default {
|
|
|
3001
3001
|
}
|
|
3002
3002
|
},
|
|
3003
3003
|
/**
|
|
3004
|
-
*
|
|
3004
|
+
* Lookup307: pallet_nfts::types::ItemSetting
|
|
3005
3005
|
**/
|
|
3006
3006
|
PalletNftsItemSetting: {
|
|
3007
3007
|
_enum: ["__Unused0", "Transferable", "UnlockedMetadata", "__Unused3", "UnlockedAttributes"]
|
|
3008
3008
|
},
|
|
3009
3009
|
/**
|
|
3010
|
-
*
|
|
3010
|
+
* Lookup308: pallet_nfts::types::DestroyWitness
|
|
3011
3011
|
**/
|
|
3012
3012
|
PalletNftsDestroyWitness: {
|
|
3013
3013
|
itemMetadatas: "Compact<u32>",
|
|
@@ -3015,26 +3015,26 @@ export default {
|
|
|
3015
3015
|
attributes: "Compact<u32>"
|
|
3016
3016
|
},
|
|
3017
3017
|
/**
|
|
3018
|
-
*
|
|
3018
|
+
* Lookup310: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
3019
3019
|
**/
|
|
3020
3020
|
PalletNftsMintWitness: {
|
|
3021
3021
|
ownedItem: "Option<u32>",
|
|
3022
3022
|
mintPrice: "Option<u128>"
|
|
3023
3023
|
},
|
|
3024
3024
|
/**
|
|
3025
|
-
*
|
|
3025
|
+
* Lookup311: pallet_nfts::types::ItemConfig
|
|
3026
3026
|
**/
|
|
3027
3027
|
PalletNftsItemConfig: {
|
|
3028
3028
|
settings: "u64"
|
|
3029
3029
|
},
|
|
3030
3030
|
/**
|
|
3031
|
-
*
|
|
3031
|
+
* Lookup312: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
3032
3032
|
**/
|
|
3033
3033
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
3034
3034
|
accountAttributes: "u32"
|
|
3035
3035
|
},
|
|
3036
3036
|
/**
|
|
3037
|
-
*
|
|
3037
|
+
* Lookup314: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
|
|
3038
3038
|
**/
|
|
3039
3039
|
PalletNftsItemTip: {
|
|
3040
3040
|
collection: "u32",
|
|
@@ -3043,7 +3043,7 @@ export default {
|
|
|
3043
3043
|
amount: "u128"
|
|
3044
3044
|
},
|
|
3045
3045
|
/**
|
|
3046
|
-
*
|
|
3046
|
+
* Lookup316: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
|
|
3047
3047
|
**/
|
|
3048
3048
|
PalletNftsPreSignedMint: {
|
|
3049
3049
|
collection: "u32",
|
|
@@ -3055,7 +3055,7 @@ export default {
|
|
|
3055
3055
|
mintPrice: "Option<u128>"
|
|
3056
3056
|
},
|
|
3057
3057
|
/**
|
|
3058
|
-
*
|
|
3058
|
+
* Lookup317: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
|
|
3059
3059
|
**/
|
|
3060
3060
|
PalletNftsPreSignedAttributes: {
|
|
3061
3061
|
collection: "u32",
|
|
@@ -3065,13 +3065,13 @@ export default {
|
|
|
3065
3065
|
deadline: "u32"
|
|
3066
3066
|
},
|
|
3067
3067
|
/**
|
|
3068
|
-
*
|
|
3068
|
+
* Lookup318: pallet_sudo::pallet::Error<T>
|
|
3069
3069
|
**/
|
|
3070
3070
|
PalletSudoError: {
|
|
3071
3071
|
_enum: ["RequireSudo"]
|
|
3072
3072
|
},
|
|
3073
3073
|
/**
|
|
3074
|
-
*
|
|
3074
|
+
* Lookup320: fp_rpc::TransactionStatus
|
|
3075
3075
|
**/
|
|
3076
3076
|
FpRpcTransactionStatus: {
|
|
3077
3077
|
transactionHash: "H256",
|
|
@@ -3083,11 +3083,11 @@ export default {
|
|
|
3083
3083
|
logsBloom: "EthbloomBloom"
|
|
3084
3084
|
},
|
|
3085
3085
|
/**
|
|
3086
|
-
*
|
|
3086
|
+
* Lookup323: ethbloom::Bloom
|
|
3087
3087
|
**/
|
|
3088
3088
|
EthbloomBloom: "[u8;256]",
|
|
3089
3089
|
/**
|
|
3090
|
-
*
|
|
3090
|
+
* Lookup325: ethereum::receipt::ReceiptV3
|
|
3091
3091
|
**/
|
|
3092
3092
|
EthereumReceiptReceiptV3: {
|
|
3093
3093
|
_enum: {
|
|
@@ -3097,7 +3097,7 @@ export default {
|
|
|
3097
3097
|
}
|
|
3098
3098
|
},
|
|
3099
3099
|
/**
|
|
3100
|
-
*
|
|
3100
|
+
* Lookup326: ethereum::receipt::EIP658ReceiptData
|
|
3101
3101
|
**/
|
|
3102
3102
|
EthereumReceiptEip658ReceiptData: {
|
|
3103
3103
|
statusCode: "u8",
|
|
@@ -3106,7 +3106,7 @@ export default {
|
|
|
3106
3106
|
logs: "Vec<EthereumLog>"
|
|
3107
3107
|
},
|
|
3108
3108
|
/**
|
|
3109
|
-
*
|
|
3109
|
+
* Lookup327: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
3110
3110
|
**/
|
|
3111
3111
|
EthereumBlock: {
|
|
3112
3112
|
header: "EthereumHeader",
|
|
@@ -3114,7 +3114,7 @@ export default {
|
|
|
3114
3114
|
ommers: "Vec<EthereumHeader>"
|
|
3115
3115
|
},
|
|
3116
3116
|
/**
|
|
3117
|
-
*
|
|
3117
|
+
* Lookup328: ethereum::header::Header
|
|
3118
3118
|
**/
|
|
3119
3119
|
EthereumHeader: {
|
|
3120
3120
|
parentHash: "H256",
|
|
@@ -3134,17 +3134,17 @@ export default {
|
|
|
3134
3134
|
nonce: "EthereumTypesHashH64"
|
|
3135
3135
|
},
|
|
3136
3136
|
/**
|
|
3137
|
-
*
|
|
3137
|
+
* Lookup329: ethereum_types::hash::H64
|
|
3138
3138
|
**/
|
|
3139
3139
|
EthereumTypesHashH64: "[u8;8]",
|
|
3140
3140
|
/**
|
|
3141
|
-
*
|
|
3141
|
+
* Lookup334: pallet_ethereum::pallet::Error<T>
|
|
3142
3142
|
**/
|
|
3143
3143
|
PalletEthereumError: {
|
|
3144
3144
|
_enum: ["InvalidSignature", "PreLogExists"]
|
|
3145
3145
|
},
|
|
3146
3146
|
/**
|
|
3147
|
-
*
|
|
3147
|
+
* Lookup335: pallet_evm::CodeMetadata
|
|
3148
3148
|
**/
|
|
3149
3149
|
PalletEvmCodeMetadata: {
|
|
3150
3150
|
_alias: {
|
|
@@ -3155,7 +3155,7 @@ export default {
|
|
|
3155
3155
|
hash_: "H256"
|
|
3156
3156
|
},
|
|
3157
3157
|
/**
|
|
3158
|
-
*
|
|
3158
|
+
* Lookup337: pallet_evm::pallet::Error<T>
|
|
3159
3159
|
**/
|
|
3160
3160
|
PalletEvmError: {
|
|
3161
3161
|
_enum: [
|
|
@@ -3175,14 +3175,14 @@ export default {
|
|
|
3175
3175
|
]
|
|
3176
3176
|
},
|
|
3177
3177
|
/**
|
|
3178
|
-
*
|
|
3178
|
+
* Lookup338: pallet_storage_providers::types::SignUpRequest<T>
|
|
3179
3179
|
**/
|
|
3180
3180
|
PalletStorageProvidersSignUpRequest: {
|
|
3181
3181
|
spSignUpRequest: "PalletStorageProvidersSignUpRequestSpParams",
|
|
3182
3182
|
at: "u32"
|
|
3183
3183
|
},
|
|
3184
3184
|
/**
|
|
3185
|
-
*
|
|
3185
|
+
* Lookup339: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
3186
3186
|
**/
|
|
3187
3187
|
PalletStorageProvidersSignUpRequestSpParams: {
|
|
3188
3188
|
_enum: {
|
|
@@ -3191,7 +3191,7 @@ export default {
|
|
|
3191
3191
|
}
|
|
3192
3192
|
},
|
|
3193
3193
|
/**
|
|
3194
|
-
*
|
|
3194
|
+
* Lookup340: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
3195
3195
|
**/
|
|
3196
3196
|
PalletStorageProvidersBackupStorageProvider: {
|
|
3197
3197
|
capacity: "u64",
|
|
@@ -3205,14 +3205,14 @@ export default {
|
|
|
3205
3205
|
signUpBlock: "u32"
|
|
3206
3206
|
},
|
|
3207
3207
|
/**
|
|
3208
|
-
*
|
|
3208
|
+
* Lookup341: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
3209
3209
|
**/
|
|
3210
3210
|
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
3211
3211
|
mspInfo: "PalletStorageProvidersMainStorageProvider",
|
|
3212
3212
|
valueProp: "PalletStorageProvidersValueProposition"
|
|
3213
3213
|
},
|
|
3214
3214
|
/**
|
|
3215
|
-
*
|
|
3215
|
+
* Lookup342: pallet_storage_providers::types::MainStorageProvider<T>
|
|
3216
3216
|
**/
|
|
3217
3217
|
PalletStorageProvidersMainStorageProvider: {
|
|
3218
3218
|
capacity: "u64",
|
|
@@ -3226,7 +3226,7 @@ export default {
|
|
|
3226
3226
|
signUpBlock: "u32"
|
|
3227
3227
|
},
|
|
3228
3228
|
/**
|
|
3229
|
-
*
|
|
3229
|
+
* Lookup343: pallet_storage_providers::types::Bucket<T>
|
|
3230
3230
|
**/
|
|
3231
3231
|
PalletStorageProvidersBucket: {
|
|
3232
3232
|
_alias: {
|
|
@@ -3241,7 +3241,7 @@ export default {
|
|
|
3241
3241
|
valuePropId: "H256"
|
|
3242
3242
|
},
|
|
3243
3243
|
/**
|
|
3244
|
-
*
|
|
3244
|
+
* Lookup347: pallet_storage_providers::pallet::Error<T>
|
|
3245
3245
|
**/
|
|
3246
3246
|
PalletStorageProvidersError: {
|
|
3247
3247
|
_enum: [
|
|
@@ -3300,7 +3300,7 @@ export default {
|
|
|
3300
3300
|
]
|
|
3301
3301
|
},
|
|
3302
3302
|
/**
|
|
3303
|
-
*
|
|
3303
|
+
* Lookup348: pallet_file_system::types::StorageRequestMetadata<T>
|
|
3304
3304
|
**/
|
|
3305
3305
|
PalletFileSystemStorageRequestMetadata: {
|
|
3306
3306
|
_alias: {
|
|
@@ -3321,13 +3321,13 @@ export default {
|
|
|
3321
3321
|
depositPaid: "u128"
|
|
3322
3322
|
},
|
|
3323
3323
|
/**
|
|
3324
|
-
*
|
|
3324
|
+
* Lookup351: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
3325
3325
|
**/
|
|
3326
3326
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
3327
3327
|
confirmed: "bool"
|
|
3328
3328
|
},
|
|
3329
3329
|
/**
|
|
3330
|
-
*
|
|
3330
|
+
* Lookup353: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
3331
3331
|
**/
|
|
3332
3332
|
PalletFileSystemPendingFileDeletionRequest: {
|
|
3333
3333
|
user: "AccountId20",
|
|
@@ -3338,7 +3338,7 @@ export default {
|
|
|
3338
3338
|
queuePriorityChallenge: "bool"
|
|
3339
3339
|
},
|
|
3340
3340
|
/**
|
|
3341
|
-
*
|
|
3341
|
+
* Lookup355: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
3342
3342
|
**/
|
|
3343
3343
|
PalletFileSystemPendingStopStoringRequest: {
|
|
3344
3344
|
tickWhenRequested: "u32",
|
|
@@ -3346,7 +3346,7 @@ export default {
|
|
|
3346
3346
|
fileSize: "u64"
|
|
3347
3347
|
},
|
|
3348
3348
|
/**
|
|
3349
|
-
*
|
|
3349
|
+
* Lookup356: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
3350
3350
|
**/
|
|
3351
3351
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
3352
3352
|
requester: "AccountId20",
|
|
@@ -3354,7 +3354,7 @@ export default {
|
|
|
3354
3354
|
newValuePropId: "H256"
|
|
3355
3355
|
},
|
|
3356
3356
|
/**
|
|
3357
|
-
*
|
|
3357
|
+
* Lookup357: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
3358
3358
|
**/
|
|
3359
3359
|
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
3360
3360
|
owner: "AccountId20",
|
|
@@ -3366,7 +3366,7 @@ export default {
|
|
|
3366
3366
|
pendingBucketRemoval: "bool"
|
|
3367
3367
|
},
|
|
3368
3368
|
/**
|
|
3369
|
-
*
|
|
3369
|
+
* Lookup359: pallet_file_system::pallet::Error<T>
|
|
3370
3370
|
**/
|
|
3371
3371
|
PalletFileSystemError: {
|
|
3372
3372
|
_enum: [
|
|
@@ -3412,6 +3412,12 @@ export default {
|
|
|
3412
3412
|
"ThresholdBelowAsymptote",
|
|
3413
3413
|
"NotFileOwner",
|
|
3414
3414
|
"FileKeyAlreadyPendingDeletion",
|
|
3415
|
+
"BatchFileDeletionMustContainSingleBucket",
|
|
3416
|
+
"DuplicateFileKeyInBatchFileDeletion",
|
|
3417
|
+
"NoFileKeysToDelete",
|
|
3418
|
+
"FailedToPushFileKeyToBucketDeletionVector",
|
|
3419
|
+
"FailedToPushUserToBspDeletionVector",
|
|
3420
|
+
"FailedToPushFileKeyToBspDeletionVector",
|
|
3415
3421
|
"MaxUserPendingDeletionRequestsReached",
|
|
3416
3422
|
"MspNotStoringBucket",
|
|
3417
3423
|
"FileKeyNotPendingDeletion",
|
|
@@ -3461,14 +3467,14 @@ export default {
|
|
|
3461
3467
|
]
|
|
3462
3468
|
},
|
|
3463
3469
|
/**
|
|
3464
|
-
*
|
|
3470
|
+
* Lookup361: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
3465
3471
|
**/
|
|
3466
3472
|
PalletProofsDealerProofSubmissionRecord: {
|
|
3467
3473
|
lastTickProven: "u32",
|
|
3468
3474
|
nextTickToSubmitProofFor: "u32"
|
|
3469
3475
|
},
|
|
3470
3476
|
/**
|
|
3471
|
-
*
|
|
3477
|
+
* Lookup368: pallet_proofs_dealer::pallet::Error<T>
|
|
3472
3478
|
**/
|
|
3473
3479
|
PalletProofsDealerError: {
|
|
3474
3480
|
_enum: [
|
|
@@ -3499,7 +3505,7 @@ export default {
|
|
|
3499
3505
|
]
|
|
3500
3506
|
},
|
|
3501
3507
|
/**
|
|
3502
|
-
*
|
|
3508
|
+
* Lookup370: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
3503
3509
|
**/
|
|
3504
3510
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
3505
3511
|
rate: "u128",
|
|
@@ -3508,7 +3514,7 @@ export default {
|
|
|
3508
3514
|
outOfFundsTick: "Option<u32>"
|
|
3509
3515
|
},
|
|
3510
3516
|
/**
|
|
3511
|
-
*
|
|
3517
|
+
* Lookup371: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
3512
3518
|
**/
|
|
3513
3519
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
3514
3520
|
amountProvided: "u64",
|
|
@@ -3517,14 +3523,14 @@ export default {
|
|
|
3517
3523
|
outOfFundsTick: "Option<u32>"
|
|
3518
3524
|
},
|
|
3519
3525
|
/**
|
|
3520
|
-
*
|
|
3526
|
+
* Lookup372: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
3521
3527
|
**/
|
|
3522
3528
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
3523
3529
|
lastChargeableTick: "u32",
|
|
3524
3530
|
priceIndex: "u128"
|
|
3525
3531
|
},
|
|
3526
3532
|
/**
|
|
3527
|
-
*
|
|
3533
|
+
* Lookup373: pallet_payment_streams::pallet::Error<T>
|
|
3528
3534
|
**/
|
|
3529
3535
|
PalletPaymentStreamsError: {
|
|
3530
3536
|
_enum: [
|
|
@@ -3549,7 +3555,7 @@ export default {
|
|
|
3549
3555
|
]
|
|
3550
3556
|
},
|
|
3551
3557
|
/**
|
|
3552
|
-
*
|
|
3558
|
+
* Lookup374: pallet_bucket_nfts::pallet::Error<T>
|
|
3553
3559
|
**/
|
|
3554
3560
|
PalletBucketNftsError: {
|
|
3555
3561
|
_enum: [
|
|
@@ -3560,7 +3566,7 @@ export default {
|
|
|
3560
3566
|
]
|
|
3561
3567
|
},
|
|
3562
3568
|
/**
|
|
3563
|
-
*
|
|
3569
|
+
* Lookup375: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
|
|
3564
3570
|
**/
|
|
3565
3571
|
PalletNftsCollectionDetails: {
|
|
3566
3572
|
owner: "AccountId20",
|
|
@@ -3571,13 +3577,13 @@ export default {
|
|
|
3571
3577
|
attributes: "u32"
|
|
3572
3578
|
},
|
|
3573
3579
|
/**
|
|
3574
|
-
*
|
|
3580
|
+
* Lookup380: pallet_nfts::types::CollectionRole
|
|
3575
3581
|
**/
|
|
3576
3582
|
PalletNftsCollectionRole: {
|
|
3577
3583
|
_enum: ["__Unused0", "Issuer", "Freezer", "__Unused3", "Admin"]
|
|
3578
3584
|
},
|
|
3579
3585
|
/**
|
|
3580
|
-
*
|
|
3586
|
+
* Lookup381: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
|
|
3581
3587
|
**/
|
|
3582
3588
|
PalletNftsItemDetails: {
|
|
3583
3589
|
owner: "AccountId20",
|
|
@@ -3585,42 +3591,42 @@ export default {
|
|
|
3585
3591
|
deposit: "PalletNftsItemDeposit"
|
|
3586
3592
|
},
|
|
3587
3593
|
/**
|
|
3588
|
-
*
|
|
3594
|
+
* Lookup382: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
|
|
3589
3595
|
**/
|
|
3590
3596
|
PalletNftsItemDeposit: {
|
|
3591
3597
|
account: "AccountId20",
|
|
3592
3598
|
amount: "u128"
|
|
3593
3599
|
},
|
|
3594
3600
|
/**
|
|
3595
|
-
*
|
|
3601
|
+
* Lookup387: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
3596
3602
|
**/
|
|
3597
3603
|
PalletNftsCollectionMetadata: {
|
|
3598
3604
|
deposit: "u128",
|
|
3599
3605
|
data: "Bytes"
|
|
3600
3606
|
},
|
|
3601
3607
|
/**
|
|
3602
|
-
*
|
|
3608
|
+
* Lookup388: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
|
|
3603
3609
|
**/
|
|
3604
3610
|
PalletNftsItemMetadata: {
|
|
3605
3611
|
deposit: "PalletNftsItemMetadataDeposit",
|
|
3606
3612
|
data: "Bytes"
|
|
3607
3613
|
},
|
|
3608
3614
|
/**
|
|
3609
|
-
*
|
|
3615
|
+
* Lookup389: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
|
|
3610
3616
|
**/
|
|
3611
3617
|
PalletNftsItemMetadataDeposit: {
|
|
3612
3618
|
account: "Option<AccountId20>",
|
|
3613
3619
|
amount: "u128"
|
|
3614
3620
|
},
|
|
3615
3621
|
/**
|
|
3616
|
-
*
|
|
3622
|
+
* Lookup392: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
|
|
3617
3623
|
**/
|
|
3618
3624
|
PalletNftsAttributeDeposit: {
|
|
3619
3625
|
account: "Option<AccountId20>",
|
|
3620
3626
|
amount: "u128"
|
|
3621
3627
|
},
|
|
3622
3628
|
/**
|
|
3623
|
-
*
|
|
3629
|
+
* Lookup396: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
3624
3630
|
**/
|
|
3625
3631
|
PalletNftsPendingSwap: {
|
|
3626
3632
|
desiredCollection: "u32",
|
|
@@ -3629,7 +3635,7 @@ export default {
|
|
|
3629
3635
|
deadline: "u32"
|
|
3630
3636
|
},
|
|
3631
3637
|
/**
|
|
3632
|
-
*
|
|
3638
|
+
* Lookup398: pallet_nfts::types::PalletFeature
|
|
3633
3639
|
**/
|
|
3634
3640
|
PalletNftsPalletFeature: {
|
|
3635
3641
|
_enum: [
|
|
@@ -3645,7 +3651,7 @@ export default {
|
|
|
3645
3651
|
]
|
|
3646
3652
|
},
|
|
3647
3653
|
/**
|
|
3648
|
-
*
|
|
3654
|
+
* Lookup399: pallet_nfts::pallet::Error<T, I>
|
|
3649
3655
|
**/
|
|
3650
3656
|
PalletNftsError: {
|
|
3651
3657
|
_enum: [
|
|
@@ -3697,47 +3703,47 @@ export default {
|
|
|
3697
3703
|
]
|
|
3698
3704
|
},
|
|
3699
3705
|
/**
|
|
3700
|
-
*
|
|
3706
|
+
* Lookup402: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
3701
3707
|
**/
|
|
3702
3708
|
FrameSystemExtensionsCheckNonZeroSender: "Null",
|
|
3703
3709
|
/**
|
|
3704
|
-
*
|
|
3710
|
+
* Lookup403: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
3705
3711
|
**/
|
|
3706
3712
|
FrameSystemExtensionsCheckSpecVersion: "Null",
|
|
3707
3713
|
/**
|
|
3708
|
-
*
|
|
3714
|
+
* Lookup404: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
3709
3715
|
**/
|
|
3710
3716
|
FrameSystemExtensionsCheckTxVersion: "Null",
|
|
3711
3717
|
/**
|
|
3712
|
-
*
|
|
3718
|
+
* Lookup405: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
3713
3719
|
**/
|
|
3714
3720
|
FrameSystemExtensionsCheckGenesis: "Null",
|
|
3715
3721
|
/**
|
|
3716
|
-
*
|
|
3722
|
+
* Lookup408: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
3717
3723
|
**/
|
|
3718
3724
|
FrameSystemExtensionsCheckNonce: "Compact<u32>",
|
|
3719
3725
|
/**
|
|
3720
|
-
*
|
|
3726
|
+
* Lookup409: frame_system::extensions::check_weight::CheckWeight<T>
|
|
3721
3727
|
**/
|
|
3722
3728
|
FrameSystemExtensionsCheckWeight: "Null",
|
|
3723
3729
|
/**
|
|
3724
|
-
*
|
|
3730
|
+
* Lookup410: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
3725
3731
|
**/
|
|
3726
3732
|
PalletTransactionPaymentChargeTransactionPayment: "Compact<u128>",
|
|
3727
3733
|
/**
|
|
3728
|
-
*
|
|
3734
|
+
* Lookup411: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
3729
3735
|
**/
|
|
3730
3736
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
3731
3737
|
mode: "FrameMetadataHashExtensionMode"
|
|
3732
3738
|
},
|
|
3733
3739
|
/**
|
|
3734
|
-
*
|
|
3740
|
+
* Lookup412: frame_metadata_hash_extension::Mode
|
|
3735
3741
|
**/
|
|
3736
3742
|
FrameMetadataHashExtensionMode: {
|
|
3737
3743
|
_enum: ["Disabled", "Enabled"]
|
|
3738
3744
|
},
|
|
3739
3745
|
/**
|
|
3740
|
-
*
|
|
3746
|
+
* Lookup414: sh_solochain_evm_runtime::Runtime
|
|
3741
3747
|
**/
|
|
3742
3748
|
ShSolochainEvmRuntimeRuntime: "Null"
|
|
3743
3749
|
};
|