@polymeshassociation/polymesh-sdk 23.0.0-alpha.9 → 23.0.0-beta.1
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/CHANGELOG.md +74 -1
- package/README.md +49 -7
- package/api/client/Assets.d.ts +10 -2
- package/api/client/Assets.d.ts.map +1 -1
- package/api/client/Assets.js +27 -9
- package/api/client/Assets.js.map +1 -1
- package/api/client/Claims.d.ts +13 -1
- package/api/client/Claims.d.ts.map +1 -1
- package/api/client/Claims.js +32 -2
- package/api/client/Claims.js.map +1 -1
- package/api/client/Network.d.ts +1 -1
- package/api/client/Network.d.ts.map +1 -1
- package/api/client/Network.js.map +1 -1
- package/api/entities/Account/MultiSig/index.d.ts.map +1 -1
- package/api/entities/Account/MultiSig/index.js +2 -5
- package/api/entities/Account/MultiSig/index.js.map +1 -1
- package/api/entities/Account/index.d.ts.map +1 -1
- package/api/entities/Account/index.js +1 -1
- package/api/entities/Account/index.js.map +1 -1
- package/api/entities/Account/types.d.ts +1 -1
- package/api/entities/Asset/Base/Settlements/index.d.ts +85 -0
- package/api/entities/Asset/Base/Settlements/index.d.ts.map +1 -0
- package/api/entities/Asset/Base/Settlements/index.js +141 -0
- package/api/entities/Asset/Base/Settlements/index.js.map +1 -0
- package/api/entities/Asset/Fungible/index.d.ts +2 -2
- package/api/entities/Asset/Fungible/index.d.ts.map +1 -1
- package/api/entities/Asset/Fungible/index.js +2 -2
- package/api/entities/Asset/Fungible/index.js.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.d.ts +76 -5
- package/api/entities/Asset/NonFungible/Nft.d.ts.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.js +162 -6
- package/api/entities/Asset/NonFungible/Nft.js.map +1 -1
- package/api/entities/Asset/NonFungible/NftCollection.d.ts +30 -16
- package/api/entities/Asset/NonFungible/NftCollection.d.ts.map +1 -1
- package/api/entities/Asset/NonFungible/NftCollection.js +72 -27
- package/api/entities/Asset/NonFungible/NftCollection.js.map +1 -1
- package/api/entities/Asset/types.d.ts +23 -3
- package/api/entities/Asset/types.d.ts.map +1 -1
- package/api/entities/Asset/types.js.map +1 -1
- package/api/entities/Identity/AssetPermissions.d.ts +3 -3
- package/api/entities/Identity/AssetPermissions.d.ts.map +1 -1
- package/api/entities/Identity/AssetPermissions.js.map +1 -1
- package/api/entities/Identity/index.d.ts +17 -2
- package/api/entities/Identity/index.d.ts.map +1 -1
- package/api/entities/Identity/index.js +37 -0
- package/api/entities/Identity/index.js.map +1 -1
- package/api/entities/Instruction/index.d.ts.map +1 -1
- package/api/entities/Instruction/index.js +29 -20
- package/api/entities/Instruction/index.js.map +1 -1
- package/api/entities/Instruction/types.d.ts +10 -3
- package/api/entities/Instruction/types.d.ts.map +1 -1
- package/api/entities/Instruction/types.js.map +1 -1
- package/api/entities/MetadataEntry/index.d.ts +2 -2
- package/api/entities/MetadataEntry/index.d.ts.map +1 -1
- package/api/entities/MetadataEntry/index.js +1 -1
- package/api/entities/MetadataEntry/index.js.map +1 -1
- package/api/entities/MultiSigProposal/index.d.ts +36 -2
- package/api/entities/MultiSigProposal/index.d.ts.map +1 -1
- package/api/entities/MultiSigProposal/index.js +91 -10
- package/api/entities/MultiSigProposal/index.js.map +1 -1
- package/api/entities/MultiSigProposal/types.d.ts +15 -2
- package/api/entities/MultiSigProposal/types.d.ts.map +1 -1
- package/api/entities/MultiSigProposal/types.js +6 -1
- package/api/entities/MultiSigProposal/types.js.map +1 -1
- package/api/entities/Portfolio/index.d.ts +12 -4
- package/api/entities/Portfolio/index.d.ts.map +1 -1
- package/api/entities/Portfolio/index.js +66 -6
- package/api/entities/Portfolio/index.js.map +1 -1
- package/api/entities/Portfolio/types.d.ts +20 -5
- package/api/entities/Portfolio/types.d.ts.map +1 -1
- package/api/entities/Venue/types.d.ts +1 -1
- package/api/entities/common/namespaces/Authorizations.d.ts +2 -1
- package/api/entities/common/namespaces/Authorizations.d.ts.map +1 -1
- package/api/entities/common/namespaces/Authorizations.js.map +1 -1
- package/api/entities/types.d.ts +3 -1
- package/api/entities/types.d.ts.map +1 -1
- package/api/entities/types.js.map +1 -1
- package/api/procedures/addInstruction.d.ts.map +1 -1
- package/api/procedures/addInstruction.js +76 -17
- package/api/procedures/addInstruction.js.map +1 -1
- package/api/procedures/createNftCollection.d.ts.map +1 -1
- package/api/procedures/createNftCollection.js +1 -1
- package/api/procedures/createNftCollection.js.map +1 -1
- package/api/procedures/evaluateMultiSigProposal.d.ts +19 -0
- package/api/procedures/evaluateMultiSigProposal.d.ts.map +1 -0
- package/api/procedures/evaluateMultiSigProposal.js +92 -0
- package/api/procedures/evaluateMultiSigProposal.js.map +1 -0
- package/api/procedures/issueNft.js +1 -1
- package/api/procedures/issueNft.js.map +1 -1
- package/api/procedures/modifyClaims.d.ts.map +1 -1
- package/api/procedures/modifyClaims.js +7 -21
- package/api/procedures/modifyClaims.js.map +1 -1
- package/api/procedures/moveFunds.d.ts.map +1 -1
- package/api/procedures/moveFunds.js +82 -16
- package/api/procedures/moveFunds.js.map +1 -1
- package/api/procedures/redeemNft.d.ts +31 -0
- package/api/procedures/redeemNft.d.ts.map +1 -0
- package/api/procedures/redeemNft.js +87 -0
- package/api/procedures/redeemNft.js.map +1 -0
- package/api/procedures/setPermissionGroup.js +1 -1
- package/api/procedures/setPermissionGroup.js.map +1 -1
- package/api/procedures/types.d.ts +26 -9
- package/api/procedures/types.d.ts.map +1 -1
- package/api/procedures/types.js.map +1 -1
- package/api/procedures/waivePermissions.js +1 -1
- package/api/procedures/waivePermissions.js.map +1 -1
- package/base/Context.d.ts.map +1 -1
- package/base/Context.js +24 -24
- package/base/Context.js.map +1 -1
- package/generated/types.d.ts +5 -1
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +4 -0
- package/generated/types.js.map +1 -1
- package/internal.d.ts +2 -0
- package/internal.d.ts.map +1 -1
- package/internal.js +7 -3
- package/internal.js.map +1 -1
- package/middleware/queries.d.ts +19 -2
- package/middleware/queries.d.ts.map +1 -1
- package/middleware/queries.js +103 -6
- package/middleware/queries.js.map +1 -1
- package/middleware/types.d.ts +68950 -15292
- package/middleware/types.d.ts.map +1 -1
- package/middleware/types.js +36222 -999
- package/middleware/types.js.map +1 -1
- package/middleware/typesV1.d.ts +1 -1
- package/middleware/typesV1.d.ts.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-beta.1.tgz +0 -0
- package/package.json +2 -2
- package/polkadot/augment-api-errors.d.ts +4 -18
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +0 -6
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +33 -26
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +123 -51
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +246 -248
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +248 -253
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/registry.d.ts +3 -5
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/types-lookup.d.ts +251 -248
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/types/index.d.ts +44 -7
- package/types/index.d.ts.map +1 -1
- package/types/index.js +18 -2
- package/types/index.js.map +1 -1
- package/types/internal.d.ts +1 -1
- package/utils/constants.d.ts +17 -1
- package/utils/constants.d.ts.map +1 -1
- package/utils/constants.js +18 -2
- package/utils/constants.js.map +1 -1
- package/utils/conversion.d.ts +34 -13
- package/utils/conversion.d.ts.map +1 -1
- package/utils/conversion.js +437 -364
- package/utils/conversion.js.map +1 -1
- package/utils/internal.d.ts +20 -3
- package/utils/internal.d.ts.map +1 -1
- package/utils/internal.js +119 -42
- package/utils/internal.js.map +1 -1
- package/utils/typeguards.d.ts +26 -2
- package/utils/typeguards.d.ts.map +1 -1
- package/utils/typeguards.js +39 -2
- package/utils/typeguards.js.map +1 -1
- package/api/entities/Asset/Fungible/Settlements/index.d.ts +0 -29
- package/api/entities/Asset/Fungible/Settlements/index.d.ts.map +0 -1
- package/api/entities/Asset/Fungible/Settlements/index.js +0 -70
- package/api/entities/Asset/Fungible/Settlements/index.js.map +0 -1
- package/middleware/enums.d.ts +0 -3
- package/middleware/enums.d.ts.map +0 -1
- package/middleware/enums.js +0 -38
- package/middleware/enums.js.map +0 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-alpha.9.tgz +0 -0
package/polkadot/lookup.d.ts
CHANGED
|
@@ -1533,15 +1533,7 @@ declare const _default: {
|
|
|
1533
1533
|
};
|
|
1534
1534
|
};
|
|
1535
1535
|
/**
|
|
1536
|
-
* Lookup289:
|
|
1537
|
-
**/
|
|
1538
|
-
PalletRewardsRawEvent: {
|
|
1539
|
-
_enum: {
|
|
1540
|
-
ItnRewardClaimed: string;
|
|
1541
|
-
};
|
|
1542
|
-
};
|
|
1543
|
-
/**
|
|
1544
|
-
* Lookup290: pallet_contracts::pallet::Event<T>
|
|
1536
|
+
* Lookup289: pallet_contracts::pallet::Event<T>
|
|
1545
1537
|
**/
|
|
1546
1538
|
PalletContractsEvent: {
|
|
1547
1539
|
_enum: {
|
|
@@ -1579,11 +1571,11 @@ declare const _default: {
|
|
|
1579
1571
|
};
|
|
1580
1572
|
};
|
|
1581
1573
|
/**
|
|
1582
|
-
*
|
|
1574
|
+
* Lookup290: polymesh_contracts::Event
|
|
1583
1575
|
**/
|
|
1584
1576
|
PolymeshContractsEvent: string;
|
|
1585
1577
|
/**
|
|
1586
|
-
*
|
|
1578
|
+
* Lookup291: pallet_preimage::pallet::Event<T>
|
|
1587
1579
|
**/
|
|
1588
1580
|
PalletPreimageEvent: {
|
|
1589
1581
|
_enum: {
|
|
@@ -1608,7 +1600,7 @@ declare const _default: {
|
|
|
1608
1600
|
};
|
|
1609
1601
|
};
|
|
1610
1602
|
/**
|
|
1611
|
-
*
|
|
1603
|
+
* Lookup292: polymesh_common_utilities::traits::nft::Event
|
|
1612
1604
|
**/
|
|
1613
1605
|
PolymeshCommonUtilitiesNftEvent: {
|
|
1614
1606
|
_enum: {
|
|
@@ -1617,7 +1609,7 @@ declare const _default: {
|
|
|
1617
1609
|
};
|
|
1618
1610
|
};
|
|
1619
1611
|
/**
|
|
1620
|
-
*
|
|
1612
|
+
* Lookup294: pallet_test_utils::RawEvent<sp_core::crypto::AccountId32>
|
|
1621
1613
|
**/
|
|
1622
1614
|
PalletTestUtilsRawEvent: {
|
|
1623
1615
|
_enum: {
|
|
@@ -1626,7 +1618,7 @@ declare const _default: {
|
|
|
1626
1618
|
};
|
|
1627
1619
|
};
|
|
1628
1620
|
/**
|
|
1629
|
-
*
|
|
1621
|
+
* Lookup295: frame_system::Phase
|
|
1630
1622
|
**/
|
|
1631
1623
|
FrameSystemPhase: {
|
|
1632
1624
|
_enum: {
|
|
@@ -1636,14 +1628,14 @@ declare const _default: {
|
|
|
1636
1628
|
};
|
|
1637
1629
|
};
|
|
1638
1630
|
/**
|
|
1639
|
-
*
|
|
1631
|
+
* Lookup298: frame_system::LastRuntimeUpgradeInfo
|
|
1640
1632
|
**/
|
|
1641
1633
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1642
1634
|
specVersion: string;
|
|
1643
1635
|
specName: string;
|
|
1644
1636
|
};
|
|
1645
1637
|
/**
|
|
1646
|
-
*
|
|
1638
|
+
* Lookup301: frame_system::pallet::Call<T>
|
|
1647
1639
|
**/
|
|
1648
1640
|
FrameSystemCall: {
|
|
1649
1641
|
_enum: {
|
|
@@ -1678,7 +1670,7 @@ declare const _default: {
|
|
|
1678
1670
|
};
|
|
1679
1671
|
};
|
|
1680
1672
|
/**
|
|
1681
|
-
*
|
|
1673
|
+
* Lookup305: frame_system::limits::BlockWeights
|
|
1682
1674
|
**/
|
|
1683
1675
|
FrameSystemLimitsBlockWeights: {
|
|
1684
1676
|
baseBlock: string;
|
|
@@ -1686,7 +1678,7 @@ declare const _default: {
|
|
|
1686
1678
|
perClass: string;
|
|
1687
1679
|
};
|
|
1688
1680
|
/**
|
|
1689
|
-
*
|
|
1681
|
+
* Lookup306: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1690
1682
|
**/
|
|
1691
1683
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1692
1684
|
normal: string;
|
|
@@ -1694,7 +1686,7 @@ declare const _default: {
|
|
|
1694
1686
|
mandatory: string;
|
|
1695
1687
|
};
|
|
1696
1688
|
/**
|
|
1697
|
-
*
|
|
1689
|
+
* Lookup307: frame_system::limits::WeightsPerClass
|
|
1698
1690
|
**/
|
|
1699
1691
|
FrameSystemLimitsWeightsPerClass: {
|
|
1700
1692
|
baseExtrinsic: string;
|
|
@@ -1703,13 +1695,13 @@ declare const _default: {
|
|
|
1703
1695
|
reserved: string;
|
|
1704
1696
|
};
|
|
1705
1697
|
/**
|
|
1706
|
-
*
|
|
1698
|
+
* Lookup309: frame_system::limits::BlockLength
|
|
1707
1699
|
**/
|
|
1708
1700
|
FrameSystemLimitsBlockLength: {
|
|
1709
1701
|
max: string;
|
|
1710
1702
|
};
|
|
1711
1703
|
/**
|
|
1712
|
-
*
|
|
1704
|
+
* Lookup310: frame_support::dispatch::PerDispatchClass<T>
|
|
1713
1705
|
**/
|
|
1714
1706
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1715
1707
|
normal: string;
|
|
@@ -1717,14 +1709,14 @@ declare const _default: {
|
|
|
1717
1709
|
mandatory: string;
|
|
1718
1710
|
};
|
|
1719
1711
|
/**
|
|
1720
|
-
*
|
|
1712
|
+
* Lookup311: sp_weights::RuntimeDbWeight
|
|
1721
1713
|
**/
|
|
1722
1714
|
SpWeightsRuntimeDbWeight: {
|
|
1723
1715
|
read: string;
|
|
1724
1716
|
write: string;
|
|
1725
1717
|
};
|
|
1726
1718
|
/**
|
|
1727
|
-
*
|
|
1719
|
+
* Lookup312: sp_version::RuntimeVersion
|
|
1728
1720
|
**/
|
|
1729
1721
|
SpVersionRuntimeVersion: {
|
|
1730
1722
|
specName: string;
|
|
@@ -1737,17 +1729,17 @@ declare const _default: {
|
|
|
1737
1729
|
stateVersion: string;
|
|
1738
1730
|
};
|
|
1739
1731
|
/**
|
|
1740
|
-
*
|
|
1732
|
+
* Lookup317: frame_system::pallet::Error<T>
|
|
1741
1733
|
**/
|
|
1742
1734
|
FrameSystemError: {
|
|
1743
1735
|
_enum: string[];
|
|
1744
1736
|
};
|
|
1745
1737
|
/**
|
|
1746
|
-
*
|
|
1738
|
+
* Lookup320: sp_consensus_babe::app::Public
|
|
1747
1739
|
**/
|
|
1748
1740
|
SpConsensusBabeAppPublic: string;
|
|
1749
1741
|
/**
|
|
1750
|
-
*
|
|
1742
|
+
* Lookup323: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1751
1743
|
**/
|
|
1752
1744
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1753
1745
|
_enum: {
|
|
@@ -1759,13 +1751,13 @@ declare const _default: {
|
|
|
1759
1751
|
};
|
|
1760
1752
|
};
|
|
1761
1753
|
/**
|
|
1762
|
-
*
|
|
1754
|
+
* Lookup325: sp_consensus_babe::AllowedSlots
|
|
1763
1755
|
**/
|
|
1764
1756
|
SpConsensusBabeAllowedSlots: {
|
|
1765
1757
|
_enum: string[];
|
|
1766
1758
|
};
|
|
1767
1759
|
/**
|
|
1768
|
-
*
|
|
1760
|
+
* Lookup329: sp_consensus_babe::digests::PreDigest
|
|
1769
1761
|
**/
|
|
1770
1762
|
SpConsensusBabeDigestsPreDigest: {
|
|
1771
1763
|
_enum: {
|
|
@@ -1776,7 +1768,7 @@ declare const _default: {
|
|
|
1776
1768
|
};
|
|
1777
1769
|
};
|
|
1778
1770
|
/**
|
|
1779
|
-
*
|
|
1771
|
+
* Lookup330: sp_consensus_babe::digests::PrimaryPreDigest
|
|
1780
1772
|
**/
|
|
1781
1773
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
1782
1774
|
authorityIndex: string;
|
|
@@ -1785,14 +1777,14 @@ declare const _default: {
|
|
|
1785
1777
|
vrfProof: string;
|
|
1786
1778
|
};
|
|
1787
1779
|
/**
|
|
1788
|
-
*
|
|
1780
|
+
* Lookup331: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
1789
1781
|
**/
|
|
1790
1782
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
1791
1783
|
authorityIndex: string;
|
|
1792
1784
|
slot: string;
|
|
1793
1785
|
};
|
|
1794
1786
|
/**
|
|
1795
|
-
*
|
|
1787
|
+
* Lookup332: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
1796
1788
|
**/
|
|
1797
1789
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
1798
1790
|
authorityIndex: string;
|
|
@@ -1801,14 +1793,14 @@ declare const _default: {
|
|
|
1801
1793
|
vrfProof: string;
|
|
1802
1794
|
};
|
|
1803
1795
|
/**
|
|
1804
|
-
*
|
|
1796
|
+
* Lookup333: sp_consensus_babe::BabeEpochConfiguration
|
|
1805
1797
|
**/
|
|
1806
1798
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
1807
1799
|
c: string;
|
|
1808
1800
|
allowedSlots: string;
|
|
1809
1801
|
};
|
|
1810
1802
|
/**
|
|
1811
|
-
*
|
|
1803
|
+
* Lookup337: pallet_babe::pallet::Call<T>
|
|
1812
1804
|
**/
|
|
1813
1805
|
PalletBabeCall: {
|
|
1814
1806
|
_enum: {
|
|
@@ -1826,7 +1818,7 @@ declare const _default: {
|
|
|
1826
1818
|
};
|
|
1827
1819
|
};
|
|
1828
1820
|
/**
|
|
1829
|
-
*
|
|
1821
|
+
* Lookup338: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>, sp_consensus_babe::app::Public>
|
|
1830
1822
|
**/
|
|
1831
1823
|
SpConsensusSlotsEquivocationProof: {
|
|
1832
1824
|
offender: string;
|
|
@@ -1835,7 +1827,7 @@ declare const _default: {
|
|
|
1835
1827
|
secondHeader: string;
|
|
1836
1828
|
};
|
|
1837
1829
|
/**
|
|
1838
|
-
*
|
|
1830
|
+
* Lookup339: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
|
|
1839
1831
|
**/
|
|
1840
1832
|
SpRuntimeHeader: {
|
|
1841
1833
|
parentHash: string;
|
|
@@ -1845,11 +1837,11 @@ declare const _default: {
|
|
|
1845
1837
|
digest: string;
|
|
1846
1838
|
};
|
|
1847
1839
|
/**
|
|
1848
|
-
*
|
|
1840
|
+
* Lookup340: sp_runtime::traits::BlakeTwo256
|
|
1849
1841
|
**/
|
|
1850
1842
|
SpRuntimeBlakeTwo256: string;
|
|
1851
1843
|
/**
|
|
1852
|
-
*
|
|
1844
|
+
* Lookup341: sp_session::MembershipProof
|
|
1853
1845
|
**/
|
|
1854
1846
|
SpSessionMembershipProof: {
|
|
1855
1847
|
session: string;
|
|
@@ -1857,13 +1849,13 @@ declare const _default: {
|
|
|
1857
1849
|
validatorCount: string;
|
|
1858
1850
|
};
|
|
1859
1851
|
/**
|
|
1860
|
-
*
|
|
1852
|
+
* Lookup342: pallet_babe::pallet::Error<T>
|
|
1861
1853
|
**/
|
|
1862
1854
|
PalletBabeError: {
|
|
1863
1855
|
_enum: string[];
|
|
1864
1856
|
};
|
|
1865
1857
|
/**
|
|
1866
|
-
*
|
|
1858
|
+
* Lookup343: pallet_timestamp::pallet::Call<T>
|
|
1867
1859
|
**/
|
|
1868
1860
|
PalletTimestampCall: {
|
|
1869
1861
|
_enum: {
|
|
@@ -1873,7 +1865,7 @@ declare const _default: {
|
|
|
1873
1865
|
};
|
|
1874
1866
|
};
|
|
1875
1867
|
/**
|
|
1876
|
-
*
|
|
1868
|
+
* Lookup345: pallet_indices::pallet::Call<T>
|
|
1877
1869
|
**/
|
|
1878
1870
|
PalletIndicesCall: {
|
|
1879
1871
|
_enum: {
|
|
@@ -1904,13 +1896,13 @@ declare const _default: {
|
|
|
1904
1896
|
};
|
|
1905
1897
|
};
|
|
1906
1898
|
/**
|
|
1907
|
-
*
|
|
1899
|
+
* Lookup347: pallet_indices::pallet::Error<T>
|
|
1908
1900
|
**/
|
|
1909
1901
|
PalletIndicesError: {
|
|
1910
1902
|
_enum: string[];
|
|
1911
1903
|
};
|
|
1912
1904
|
/**
|
|
1913
|
-
*
|
|
1905
|
+
* Lookup349: pallet_balances::BalanceLock<Balance>
|
|
1914
1906
|
**/
|
|
1915
1907
|
PalletBalancesBalanceLock: {
|
|
1916
1908
|
id: string;
|
|
@@ -1918,13 +1910,13 @@ declare const _default: {
|
|
|
1918
1910
|
reasons: string;
|
|
1919
1911
|
};
|
|
1920
1912
|
/**
|
|
1921
|
-
*
|
|
1913
|
+
* Lookup350: polymesh_common_utilities::traits::balances::Reasons
|
|
1922
1914
|
**/
|
|
1923
1915
|
PolymeshCommonUtilitiesBalancesReasons: {
|
|
1924
1916
|
_enum: string[];
|
|
1925
1917
|
};
|
|
1926
1918
|
/**
|
|
1927
|
-
*
|
|
1919
|
+
* Lookup351: pallet_balances::Call<T>
|
|
1928
1920
|
**/
|
|
1929
1921
|
PalletBalancesCall: {
|
|
1930
1922
|
_enum: {
|
|
@@ -1956,19 +1948,19 @@ declare const _default: {
|
|
|
1956
1948
|
};
|
|
1957
1949
|
};
|
|
1958
1950
|
/**
|
|
1959
|
-
*
|
|
1951
|
+
* Lookup352: pallet_balances::Error<T>
|
|
1960
1952
|
**/
|
|
1961
1953
|
PalletBalancesError: {
|
|
1962
1954
|
_enum: string[];
|
|
1963
1955
|
};
|
|
1964
1956
|
/**
|
|
1965
|
-
*
|
|
1957
|
+
* Lookup354: pallet_transaction_payment::Releases
|
|
1966
1958
|
**/
|
|
1967
1959
|
PalletTransactionPaymentReleases: {
|
|
1968
1960
|
_enum: string[];
|
|
1969
1961
|
};
|
|
1970
1962
|
/**
|
|
1971
|
-
*
|
|
1963
|
+
* Lookup356: sp_weights::WeightToFeeCoefficient<Balance>
|
|
1972
1964
|
**/
|
|
1973
1965
|
SpWeightsWeightToFeeCoefficient: {
|
|
1974
1966
|
coeffInteger: string;
|
|
@@ -1977,27 +1969,27 @@ declare const _default: {
|
|
|
1977
1969
|
degree: string;
|
|
1978
1970
|
};
|
|
1979
1971
|
/**
|
|
1980
|
-
*
|
|
1972
|
+
* Lookup357: polymesh_primitives::identity::DidRecord<sp_core::crypto::AccountId32>
|
|
1981
1973
|
**/
|
|
1982
1974
|
PolymeshPrimitivesIdentityDidRecord: {
|
|
1983
1975
|
primaryKey: string;
|
|
1984
1976
|
};
|
|
1985
1977
|
/**
|
|
1986
|
-
*
|
|
1978
|
+
* Lookup359: pallet_identity::types::Claim1stKey
|
|
1987
1979
|
**/
|
|
1988
1980
|
PalletIdentityClaim1stKey: {
|
|
1989
1981
|
target: string;
|
|
1990
1982
|
claimType: string;
|
|
1991
1983
|
};
|
|
1992
1984
|
/**
|
|
1993
|
-
*
|
|
1985
|
+
* Lookup360: pallet_identity::types::Claim2ndKey
|
|
1994
1986
|
**/
|
|
1995
1987
|
PalletIdentityClaim2ndKey: {
|
|
1996
1988
|
issuer: string;
|
|
1997
1989
|
scope: string;
|
|
1998
1990
|
};
|
|
1999
1991
|
/**
|
|
2000
|
-
*
|
|
1992
|
+
* Lookup361: polymesh_primitives::secondary_key::KeyRecord<sp_core::crypto::AccountId32>
|
|
2001
1993
|
**/
|
|
2002
1994
|
PolymeshPrimitivesSecondaryKeyKeyRecord: {
|
|
2003
1995
|
_enum: {
|
|
@@ -2007,7 +1999,7 @@ declare const _default: {
|
|
|
2007
1999
|
};
|
|
2008
2000
|
};
|
|
2009
2001
|
/**
|
|
2010
|
-
*
|
|
2002
|
+
* Lookup364: polymesh_primitives::authorization::Authorization<sp_core::crypto::AccountId32, Moment>
|
|
2011
2003
|
**/
|
|
2012
2004
|
PolymeshPrimitivesAuthorization: {
|
|
2013
2005
|
authorizationData: string;
|
|
@@ -2017,7 +2009,7 @@ declare const _default: {
|
|
|
2017
2009
|
count: string;
|
|
2018
2010
|
};
|
|
2019
2011
|
/**
|
|
2020
|
-
*
|
|
2012
|
+
* Lookup367: pallet_identity::Call<T>
|
|
2021
2013
|
**/
|
|
2022
2014
|
PalletIdentityCall: {
|
|
2023
2015
|
_enum: {
|
|
@@ -2109,27 +2101,27 @@ declare const _default: {
|
|
|
2109
2101
|
};
|
|
2110
2102
|
};
|
|
2111
2103
|
/**
|
|
2112
|
-
*
|
|
2104
|
+
* Lookup369: polymesh_common_utilities::traits::identity::SecondaryKeyWithAuth<sp_core::crypto::AccountId32>
|
|
2113
2105
|
**/
|
|
2114
2106
|
PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth: {
|
|
2115
2107
|
secondaryKey: string;
|
|
2116
2108
|
authSignature: string;
|
|
2117
2109
|
};
|
|
2118
2110
|
/**
|
|
2119
|
-
*
|
|
2111
|
+
* Lookup372: polymesh_common_utilities::traits::identity::CreateChildIdentityWithAuth<sp_core::crypto::AccountId32>
|
|
2120
2112
|
**/
|
|
2121
2113
|
PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth: {
|
|
2122
2114
|
key: string;
|
|
2123
2115
|
authSignature: string;
|
|
2124
2116
|
};
|
|
2125
2117
|
/**
|
|
2126
|
-
*
|
|
2118
|
+
* Lookup373: pallet_identity::Error<T>
|
|
2127
2119
|
**/
|
|
2128
2120
|
PalletIdentityError: {
|
|
2129
2121
|
_enum: string[];
|
|
2130
2122
|
};
|
|
2131
2123
|
/**
|
|
2132
|
-
*
|
|
2124
|
+
* Lookup375: polymesh_common_utilities::traits::group::InactiveMember<Moment>
|
|
2133
2125
|
**/
|
|
2134
2126
|
PolymeshCommonUtilitiesGroupInactiveMember: {
|
|
2135
2127
|
id: string;
|
|
@@ -2137,7 +2129,7 @@ declare const _default: {
|
|
|
2137
2129
|
expiry: string;
|
|
2138
2130
|
};
|
|
2139
2131
|
/**
|
|
2140
|
-
*
|
|
2132
|
+
* Lookup376: pallet_group::Call<T, I>
|
|
2141
2133
|
**/
|
|
2142
2134
|
PalletGroupCall: {
|
|
2143
2135
|
_enum: {
|
|
@@ -2166,13 +2158,13 @@ declare const _default: {
|
|
|
2166
2158
|
};
|
|
2167
2159
|
};
|
|
2168
2160
|
/**
|
|
2169
|
-
*
|
|
2161
|
+
* Lookup377: pallet_group::Error<T, I>
|
|
2170
2162
|
**/
|
|
2171
2163
|
PalletGroupError: {
|
|
2172
2164
|
_enum: string[];
|
|
2173
2165
|
};
|
|
2174
2166
|
/**
|
|
2175
|
-
*
|
|
2167
|
+
* Lookup379: pallet_committee::Call<T, I>
|
|
2176
2168
|
**/
|
|
2177
2169
|
PalletCommitteeCall: {
|
|
2178
2170
|
_enum: {
|
|
@@ -2198,7 +2190,7 @@ declare const _default: {
|
|
|
2198
2190
|
};
|
|
2199
2191
|
};
|
|
2200
2192
|
/**
|
|
2201
|
-
*
|
|
2193
|
+
* Lookup385: pallet_multisig::Call<T>
|
|
2202
2194
|
**/
|
|
2203
2195
|
PalletMultisigCall: {
|
|
2204
2196
|
_enum: {
|
|
@@ -2292,7 +2284,7 @@ declare const _default: {
|
|
|
2292
2284
|
};
|
|
2293
2285
|
};
|
|
2294
2286
|
/**
|
|
2295
|
-
*
|
|
2287
|
+
* Lookup386: pallet_bridge::Call<T>
|
|
2296
2288
|
**/
|
|
2297
2289
|
PalletBridgeCall: {
|
|
2298
2290
|
_enum: {
|
|
@@ -2347,7 +2339,7 @@ declare const _default: {
|
|
|
2347
2339
|
};
|
|
2348
2340
|
};
|
|
2349
2341
|
/**
|
|
2350
|
-
*
|
|
2342
|
+
* Lookup390: pallet_staking::Call<T>
|
|
2351
2343
|
**/
|
|
2352
2344
|
PalletStakingCall: {
|
|
2353
2345
|
_enum: {
|
|
@@ -2473,7 +2465,7 @@ declare const _default: {
|
|
|
2473
2465
|
};
|
|
2474
2466
|
};
|
|
2475
2467
|
/**
|
|
2476
|
-
*
|
|
2468
|
+
* Lookup391: pallet_staking::RewardDestination<sp_core::crypto::AccountId32>
|
|
2477
2469
|
**/
|
|
2478
2470
|
PalletStakingRewardDestination: {
|
|
2479
2471
|
_enum: {
|
|
@@ -2484,14 +2476,14 @@ declare const _default: {
|
|
|
2484
2476
|
};
|
|
2485
2477
|
};
|
|
2486
2478
|
/**
|
|
2487
|
-
*
|
|
2479
|
+
* Lookup392: pallet_staking::ValidatorPrefs
|
|
2488
2480
|
**/
|
|
2489
2481
|
PalletStakingValidatorPrefs: {
|
|
2490
2482
|
commission: string;
|
|
2491
2483
|
blocked: string;
|
|
2492
2484
|
};
|
|
2493
2485
|
/**
|
|
2494
|
-
*
|
|
2486
|
+
* Lookup398: pallet_staking::CompactAssignments
|
|
2495
2487
|
**/
|
|
2496
2488
|
PalletStakingCompactAssignments: {
|
|
2497
2489
|
votes1: string;
|
|
@@ -2512,7 +2504,7 @@ declare const _default: {
|
|
|
2512
2504
|
votes16: string;
|
|
2513
2505
|
};
|
|
2514
2506
|
/**
|
|
2515
|
-
*
|
|
2507
|
+
* Lookup449: sp_npos_elections::ElectionScore
|
|
2516
2508
|
**/
|
|
2517
2509
|
SpNposElectionsElectionScore: {
|
|
2518
2510
|
minimalStake: string;
|
|
@@ -2520,14 +2512,14 @@ declare const _default: {
|
|
|
2520
2512
|
sumStakeSquared: string;
|
|
2521
2513
|
};
|
|
2522
2514
|
/**
|
|
2523
|
-
*
|
|
2515
|
+
* Lookup450: pallet_staking::ElectionSize
|
|
2524
2516
|
**/
|
|
2525
2517
|
PalletStakingElectionSize: {
|
|
2526
2518
|
validators: string;
|
|
2527
2519
|
nominators: string;
|
|
2528
2520
|
};
|
|
2529
2521
|
/**
|
|
2530
|
-
*
|
|
2522
|
+
* Lookup451: pallet_session::pallet::Call<T>
|
|
2531
2523
|
**/
|
|
2532
2524
|
PalletSessionCall: {
|
|
2533
2525
|
_enum: {
|
|
@@ -2542,7 +2534,7 @@ declare const _default: {
|
|
|
2542
2534
|
};
|
|
2543
2535
|
};
|
|
2544
2536
|
/**
|
|
2545
|
-
*
|
|
2537
|
+
* Lookup452: polymesh_runtime_develop::runtime::SessionKeys
|
|
2546
2538
|
**/
|
|
2547
2539
|
PolymeshRuntimeDevelopRuntimeSessionKeys: {
|
|
2548
2540
|
grandpa: string;
|
|
@@ -2551,11 +2543,11 @@ declare const _default: {
|
|
|
2551
2543
|
authorityDiscovery: string;
|
|
2552
2544
|
};
|
|
2553
2545
|
/**
|
|
2554
|
-
*
|
|
2546
|
+
* Lookup453: sp_authority_discovery::app::Public
|
|
2555
2547
|
**/
|
|
2556
2548
|
SpAuthorityDiscoveryAppPublic: string;
|
|
2557
2549
|
/**
|
|
2558
|
-
*
|
|
2550
|
+
* Lookup454: pallet_grandpa::pallet::Call<T>
|
|
2559
2551
|
**/
|
|
2560
2552
|
PalletGrandpaCall: {
|
|
2561
2553
|
_enum: {
|
|
@@ -2574,14 +2566,14 @@ declare const _default: {
|
|
|
2574
2566
|
};
|
|
2575
2567
|
};
|
|
2576
2568
|
/**
|
|
2577
|
-
*
|
|
2569
|
+
* Lookup455: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2578
2570
|
**/
|
|
2579
2571
|
SpConsensusGrandpaEquivocationProof: {
|
|
2580
2572
|
setId: string;
|
|
2581
2573
|
equivocation: string;
|
|
2582
2574
|
};
|
|
2583
2575
|
/**
|
|
2584
|
-
*
|
|
2576
|
+
* Lookup456: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2585
2577
|
**/
|
|
2586
2578
|
SpConsensusGrandpaEquivocation: {
|
|
2587
2579
|
_enum: {
|
|
@@ -2590,7 +2582,7 @@ declare const _default: {
|
|
|
2590
2582
|
};
|
|
2591
2583
|
};
|
|
2592
2584
|
/**
|
|
2593
|
-
*
|
|
2585
|
+
* Lookup457: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2594
2586
|
**/
|
|
2595
2587
|
FinalityGrandpaEquivocationPrevote: {
|
|
2596
2588
|
roundNumber: string;
|
|
@@ -2599,22 +2591,22 @@ declare const _default: {
|
|
|
2599
2591
|
second: string;
|
|
2600
2592
|
};
|
|
2601
2593
|
/**
|
|
2602
|
-
*
|
|
2594
|
+
* Lookup458: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2603
2595
|
**/
|
|
2604
2596
|
FinalityGrandpaPrevote: {
|
|
2605
2597
|
targetHash: string;
|
|
2606
2598
|
targetNumber: string;
|
|
2607
2599
|
};
|
|
2608
2600
|
/**
|
|
2609
|
-
*
|
|
2601
|
+
* Lookup459: sp_consensus_grandpa::app::Signature
|
|
2610
2602
|
**/
|
|
2611
2603
|
SpConsensusGrandpaAppSignature: string;
|
|
2612
2604
|
/**
|
|
2613
|
-
*
|
|
2605
|
+
* Lookup460: sp_core::ed25519::Signature
|
|
2614
2606
|
**/
|
|
2615
2607
|
SpCoreEd25519Signature: string;
|
|
2616
2608
|
/**
|
|
2617
|
-
*
|
|
2609
|
+
* Lookup462: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2618
2610
|
**/
|
|
2619
2611
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2620
2612
|
roundNumber: string;
|
|
@@ -2623,14 +2615,14 @@ declare const _default: {
|
|
|
2623
2615
|
second: string;
|
|
2624
2616
|
};
|
|
2625
2617
|
/**
|
|
2626
|
-
*
|
|
2618
|
+
* Lookup463: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2627
2619
|
**/
|
|
2628
2620
|
FinalityGrandpaPrecommit: {
|
|
2629
2621
|
targetHash: string;
|
|
2630
2622
|
targetNumber: string;
|
|
2631
2623
|
};
|
|
2632
2624
|
/**
|
|
2633
|
-
*
|
|
2625
|
+
* Lookup465: pallet_im_online::pallet::Call<T>
|
|
2634
2626
|
**/
|
|
2635
2627
|
PalletImOnlineCall: {
|
|
2636
2628
|
_enum: {
|
|
@@ -2641,7 +2633,7 @@ declare const _default: {
|
|
|
2641
2633
|
};
|
|
2642
2634
|
};
|
|
2643
2635
|
/**
|
|
2644
|
-
*
|
|
2636
|
+
* Lookup466: pallet_im_online::Heartbeat<BlockNumber>
|
|
2645
2637
|
**/
|
|
2646
2638
|
PalletImOnlineHeartbeat: {
|
|
2647
2639
|
blockNumber: string;
|
|
@@ -2651,22 +2643,22 @@ declare const _default: {
|
|
|
2651
2643
|
validatorsLen: string;
|
|
2652
2644
|
};
|
|
2653
2645
|
/**
|
|
2654
|
-
*
|
|
2646
|
+
* Lookup467: sp_core::offchain::OpaqueNetworkState
|
|
2655
2647
|
**/
|
|
2656
2648
|
SpCoreOffchainOpaqueNetworkState: {
|
|
2657
2649
|
peerId: string;
|
|
2658
2650
|
externalAddresses: string;
|
|
2659
2651
|
};
|
|
2660
2652
|
/**
|
|
2661
|
-
*
|
|
2653
|
+
* Lookup471: pallet_im_online::sr25519::app_sr25519::Signature
|
|
2662
2654
|
**/
|
|
2663
2655
|
PalletImOnlineSr25519AppSr25519Signature: string;
|
|
2664
2656
|
/**
|
|
2665
|
-
*
|
|
2657
|
+
* Lookup472: sp_core::sr25519::Signature
|
|
2666
2658
|
**/
|
|
2667
2659
|
SpCoreSr25519Signature: string;
|
|
2668
2660
|
/**
|
|
2669
|
-
*
|
|
2661
|
+
* Lookup473: pallet_sudo::Call<T>
|
|
2670
2662
|
**/
|
|
2671
2663
|
PalletSudoCall: {
|
|
2672
2664
|
_enum: {
|
|
@@ -2690,7 +2682,7 @@ declare const _default: {
|
|
|
2690
2682
|
};
|
|
2691
2683
|
};
|
|
2692
2684
|
/**
|
|
2693
|
-
*
|
|
2685
|
+
* Lookup474: pallet_asset::Call<T>
|
|
2694
2686
|
**/
|
|
2695
2687
|
PalletAssetCall: {
|
|
2696
2688
|
_enum: {
|
|
@@ -2824,7 +2816,7 @@ declare const _default: {
|
|
|
2824
2816
|
};
|
|
2825
2817
|
};
|
|
2826
2818
|
/**
|
|
2827
|
-
*
|
|
2819
|
+
* Lookup476: pallet_corporate_actions::distribution::Call<T>
|
|
2828
2820
|
**/
|
|
2829
2821
|
PalletCorporateActionsDistributionCall: {
|
|
2830
2822
|
_enum: {
|
|
@@ -2853,7 +2845,7 @@ declare const _default: {
|
|
|
2853
2845
|
};
|
|
2854
2846
|
};
|
|
2855
2847
|
/**
|
|
2856
|
-
*
|
|
2848
|
+
* Lookup478: pallet_asset::checkpoint::Call<T>
|
|
2857
2849
|
**/
|
|
2858
2850
|
PalletAssetCheckpointCall: {
|
|
2859
2851
|
_enum: {
|
|
@@ -2874,7 +2866,7 @@ declare const _default: {
|
|
|
2874
2866
|
};
|
|
2875
2867
|
};
|
|
2876
2868
|
/**
|
|
2877
|
-
*
|
|
2869
|
+
* Lookup479: pallet_compliance_manager::Call<T>
|
|
2878
2870
|
**/
|
|
2879
2871
|
PalletComplianceManagerCall: {
|
|
2880
2872
|
_enum: {
|
|
@@ -2915,7 +2907,7 @@ declare const _default: {
|
|
|
2915
2907
|
};
|
|
2916
2908
|
};
|
|
2917
2909
|
/**
|
|
2918
|
-
*
|
|
2910
|
+
* Lookup480: pallet_corporate_actions::Call<T>
|
|
2919
2911
|
**/
|
|
2920
2912
|
PalletCorporateActionsCall: {
|
|
2921
2913
|
_enum: {
|
|
@@ -2968,7 +2960,7 @@ declare const _default: {
|
|
|
2968
2960
|
};
|
|
2969
2961
|
};
|
|
2970
2962
|
/**
|
|
2971
|
-
*
|
|
2963
|
+
* Lookup482: pallet_corporate_actions::RecordDateSpec
|
|
2972
2964
|
**/
|
|
2973
2965
|
PalletCorporateActionsRecordDateSpec: {
|
|
2974
2966
|
_enum: {
|
|
@@ -2978,7 +2970,7 @@ declare const _default: {
|
|
|
2978
2970
|
};
|
|
2979
2971
|
};
|
|
2980
2972
|
/**
|
|
2981
|
-
*
|
|
2973
|
+
* Lookup485: pallet_corporate_actions::InitiateCorporateActionArgs
|
|
2982
2974
|
**/
|
|
2983
2975
|
PalletCorporateActionsInitiateCorporateActionArgs: {
|
|
2984
2976
|
ticker: string;
|
|
@@ -2991,7 +2983,7 @@ declare const _default: {
|
|
|
2991
2983
|
withholdingTax: string;
|
|
2992
2984
|
};
|
|
2993
2985
|
/**
|
|
2994
|
-
*
|
|
2986
|
+
* Lookup486: pallet_corporate_actions::ballot::Call<T>
|
|
2995
2987
|
**/
|
|
2996
2988
|
PalletCorporateActionsBallotCall: {
|
|
2997
2989
|
_enum: {
|
|
@@ -3023,7 +3015,7 @@ declare const _default: {
|
|
|
3023
3015
|
};
|
|
3024
3016
|
};
|
|
3025
3017
|
/**
|
|
3026
|
-
*
|
|
3018
|
+
* Lookup487: pallet_pips::Call<T>
|
|
3027
3019
|
**/
|
|
3028
3020
|
PalletPipsCall: {
|
|
3029
3021
|
_enum: {
|
|
@@ -3084,13 +3076,13 @@ declare const _default: {
|
|
|
3084
3076
|
};
|
|
3085
3077
|
};
|
|
3086
3078
|
/**
|
|
3087
|
-
*
|
|
3079
|
+
* Lookup490: pallet_pips::SnapshotResult
|
|
3088
3080
|
**/
|
|
3089
3081
|
PalletPipsSnapshotResult: {
|
|
3090
3082
|
_enum: string[];
|
|
3091
3083
|
};
|
|
3092
3084
|
/**
|
|
3093
|
-
*
|
|
3085
|
+
* Lookup491: pallet_portfolio::Call<T>
|
|
3094
3086
|
**/
|
|
3095
3087
|
PalletPortfolioCall: {
|
|
3096
3088
|
_enum: {
|
|
@@ -3126,14 +3118,14 @@ declare const _default: {
|
|
|
3126
3118
|
};
|
|
3127
3119
|
};
|
|
3128
3120
|
/**
|
|
3129
|
-
*
|
|
3121
|
+
* Lookup493: polymesh_primitives::portfolio::Fund
|
|
3130
3122
|
**/
|
|
3131
3123
|
PolymeshPrimitivesPortfolioFund: {
|
|
3132
3124
|
description: string;
|
|
3133
3125
|
memo: string;
|
|
3134
3126
|
};
|
|
3135
3127
|
/**
|
|
3136
|
-
*
|
|
3128
|
+
* Lookup494: pallet_protocol_fee::Call<T>
|
|
3137
3129
|
**/
|
|
3138
3130
|
PalletProtocolFeeCall: {
|
|
3139
3131
|
_enum: {
|
|
@@ -3147,13 +3139,13 @@ declare const _default: {
|
|
|
3147
3139
|
};
|
|
3148
3140
|
};
|
|
3149
3141
|
/**
|
|
3150
|
-
*
|
|
3142
|
+
* Lookup495: polymesh_common_utilities::protocol_fee::ProtocolOp
|
|
3151
3143
|
**/
|
|
3152
3144
|
PolymeshCommonUtilitiesProtocolFeeProtocolOp: {
|
|
3153
3145
|
_enum: string[];
|
|
3154
3146
|
};
|
|
3155
3147
|
/**
|
|
3156
|
-
*
|
|
3148
|
+
* Lookup496: pallet_scheduler::pallet::Call<T>
|
|
3157
3149
|
**/
|
|
3158
3150
|
PalletSchedulerCall: {
|
|
3159
3151
|
_enum: {
|
|
@@ -3193,7 +3185,7 @@ declare const _default: {
|
|
|
3193
3185
|
};
|
|
3194
3186
|
};
|
|
3195
3187
|
/**
|
|
3196
|
-
*
|
|
3188
|
+
* Lookup498: pallet_settlement::Call<T>
|
|
3197
3189
|
**/
|
|
3198
3190
|
PalletSettlementCall: {
|
|
3199
3191
|
_enum: {
|
|
@@ -3273,10 +3265,31 @@ declare const _default: {
|
|
|
3273
3265
|
id: string;
|
|
3274
3266
|
weightLimit: string;
|
|
3275
3267
|
};
|
|
3268
|
+
affirm_with_receipts_with_count: {
|
|
3269
|
+
id: string;
|
|
3270
|
+
receiptDetails: string;
|
|
3271
|
+
portfolios: string;
|
|
3272
|
+
numberOfAssets: string;
|
|
3273
|
+
};
|
|
3274
|
+
affirm_instruction_with_count: {
|
|
3275
|
+
id: string;
|
|
3276
|
+
portfolios: string;
|
|
3277
|
+
numberOfAssets: string;
|
|
3278
|
+
};
|
|
3279
|
+
reject_instruction_with_count: {
|
|
3280
|
+
id: string;
|
|
3281
|
+
portfolio: string;
|
|
3282
|
+
numberOfAssets: string;
|
|
3283
|
+
};
|
|
3284
|
+
withdraw_affirmation_with_count: {
|
|
3285
|
+
id: string;
|
|
3286
|
+
portfolios: string;
|
|
3287
|
+
numberOfAssets: string;
|
|
3288
|
+
};
|
|
3276
3289
|
};
|
|
3277
3290
|
};
|
|
3278
3291
|
/**
|
|
3279
|
-
*
|
|
3292
|
+
* Lookup500: polymesh_primitives::settlement::ReceiptDetails<sp_core::crypto::AccountId32, sp_runtime::MultiSignature>
|
|
3280
3293
|
**/
|
|
3281
3294
|
PolymeshPrimitivesSettlementReceiptDetails: {
|
|
3282
3295
|
uid: string;
|
|
@@ -3287,7 +3300,7 @@ declare const _default: {
|
|
|
3287
3300
|
metadata: string;
|
|
3288
3301
|
};
|
|
3289
3302
|
/**
|
|
3290
|
-
*
|
|
3303
|
+
* Lookup501: sp_runtime::MultiSignature
|
|
3291
3304
|
**/
|
|
3292
3305
|
SpRuntimeMultiSignature: {
|
|
3293
3306
|
_enum: {
|
|
@@ -3297,11 +3310,27 @@ declare const _default: {
|
|
|
3297
3310
|
};
|
|
3298
3311
|
};
|
|
3299
3312
|
/**
|
|
3300
|
-
*
|
|
3313
|
+
* Lookup502: sp_core::ecdsa::Signature
|
|
3301
3314
|
**/
|
|
3302
3315
|
SpCoreEcdsaSignature: string;
|
|
3303
3316
|
/**
|
|
3304
|
-
* Lookup505:
|
|
3317
|
+
* Lookup505: polymesh_primitives::settlement::AffirmationCount
|
|
3318
|
+
**/
|
|
3319
|
+
PolymeshPrimitivesSettlementAffirmationCount: {
|
|
3320
|
+
senderAssetCount: string;
|
|
3321
|
+
receiverAssetCount: string;
|
|
3322
|
+
offchainCount: string;
|
|
3323
|
+
};
|
|
3324
|
+
/**
|
|
3325
|
+
* Lookup506: polymesh_primitives::settlement::AssetCount
|
|
3326
|
+
**/
|
|
3327
|
+
PolymeshPrimitivesSettlementAssetCount: {
|
|
3328
|
+
fungible: string;
|
|
3329
|
+
nonFungible: string;
|
|
3330
|
+
offChain: string;
|
|
3331
|
+
};
|
|
3332
|
+
/**
|
|
3333
|
+
* Lookup508: pallet_statistics::Call<T>
|
|
3305
3334
|
**/
|
|
3306
3335
|
PalletStatisticsCall: {
|
|
3307
3336
|
_enum: {
|
|
@@ -3326,7 +3355,7 @@ declare const _default: {
|
|
|
3326
3355
|
};
|
|
3327
3356
|
};
|
|
3328
3357
|
/**
|
|
3329
|
-
*
|
|
3358
|
+
* Lookup513: pallet_sto::Call<T>
|
|
3330
3359
|
**/
|
|
3331
3360
|
PalletStoCall: {
|
|
3332
3361
|
_enum: {
|
|
@@ -3372,14 +3401,14 @@ declare const _default: {
|
|
|
3372
3401
|
};
|
|
3373
3402
|
};
|
|
3374
3403
|
/**
|
|
3375
|
-
*
|
|
3404
|
+
* Lookup515: pallet_sto::PriceTier
|
|
3376
3405
|
**/
|
|
3377
3406
|
PalletStoPriceTier: {
|
|
3378
3407
|
total: string;
|
|
3379
3408
|
price: string;
|
|
3380
3409
|
};
|
|
3381
3410
|
/**
|
|
3382
|
-
*
|
|
3411
|
+
* Lookup517: pallet_treasury::Call<T>
|
|
3383
3412
|
**/
|
|
3384
3413
|
PalletTreasuryCall: {
|
|
3385
3414
|
_enum: {
|
|
@@ -3392,14 +3421,14 @@ declare const _default: {
|
|
|
3392
3421
|
};
|
|
3393
3422
|
};
|
|
3394
3423
|
/**
|
|
3395
|
-
*
|
|
3424
|
+
* Lookup519: polymesh_primitives::Beneficiary<Balance>
|
|
3396
3425
|
**/
|
|
3397
3426
|
PolymeshPrimitivesBeneficiary: {
|
|
3398
3427
|
id: string;
|
|
3399
3428
|
amount: string;
|
|
3400
3429
|
};
|
|
3401
3430
|
/**
|
|
3402
|
-
*
|
|
3431
|
+
* Lookup520: pallet_utility::pallet::Call<T>
|
|
3403
3432
|
**/
|
|
3404
3433
|
PalletUtilityCall: {
|
|
3405
3434
|
_enum: {
|
|
@@ -3437,14 +3466,14 @@ declare const _default: {
|
|
|
3437
3466
|
};
|
|
3438
3467
|
};
|
|
3439
3468
|
/**
|
|
3440
|
-
*
|
|
3469
|
+
* Lookup522: pallet_utility::UniqueCall<polymesh_runtime_develop::runtime::RuntimeCall>
|
|
3441
3470
|
**/
|
|
3442
3471
|
PalletUtilityUniqueCall: {
|
|
3443
3472
|
nonce: string;
|
|
3444
3473
|
call: string;
|
|
3445
3474
|
};
|
|
3446
3475
|
/**
|
|
3447
|
-
*
|
|
3476
|
+
* Lookup523: polymesh_runtime_develop::runtime::OriginCaller
|
|
3448
3477
|
**/
|
|
3449
3478
|
PolymeshRuntimeDevelopRuntimeOriginCaller: {
|
|
3450
3479
|
_enum: {
|
|
@@ -3465,7 +3494,7 @@ declare const _default: {
|
|
|
3465
3494
|
};
|
|
3466
3495
|
};
|
|
3467
3496
|
/**
|
|
3468
|
-
*
|
|
3497
|
+
* Lookup524: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
3469
3498
|
**/
|
|
3470
3499
|
FrameSupportDispatchRawOrigin: {
|
|
3471
3500
|
_enum: {
|
|
@@ -3475,33 +3504,33 @@ declare const _default: {
|
|
|
3475
3504
|
};
|
|
3476
3505
|
};
|
|
3477
3506
|
/**
|
|
3478
|
-
*
|
|
3507
|
+
* Lookup525: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance1>
|
|
3479
3508
|
**/
|
|
3480
3509
|
PalletCommitteeRawOriginInstance1: {
|
|
3481
3510
|
_enum: string[];
|
|
3482
3511
|
};
|
|
3483
3512
|
/**
|
|
3484
|
-
*
|
|
3513
|
+
* Lookup526: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance3>
|
|
3485
3514
|
**/
|
|
3486
3515
|
PalletCommitteeRawOriginInstance3: {
|
|
3487
3516
|
_enum: string[];
|
|
3488
3517
|
};
|
|
3489
3518
|
/**
|
|
3490
|
-
*
|
|
3519
|
+
* Lookup527: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance4>
|
|
3491
3520
|
**/
|
|
3492
3521
|
PalletCommitteeRawOriginInstance4: {
|
|
3493
3522
|
_enum: string[];
|
|
3494
3523
|
};
|
|
3495
3524
|
/**
|
|
3496
|
-
*
|
|
3525
|
+
* Lookup528: sp_core::Void
|
|
3497
3526
|
**/
|
|
3498
3527
|
SpCoreVoid: string;
|
|
3499
3528
|
/**
|
|
3500
|
-
*
|
|
3529
|
+
* Lookup529: pallet_base::Call<T>
|
|
3501
3530
|
**/
|
|
3502
3531
|
PalletBaseCall: string;
|
|
3503
3532
|
/**
|
|
3504
|
-
*
|
|
3533
|
+
* Lookup530: pallet_external_agents::Call<T>
|
|
3505
3534
|
**/
|
|
3506
3535
|
PalletExternalAgentsCall: {
|
|
3507
3536
|
_enum: {
|
|
@@ -3543,7 +3572,7 @@ declare const _default: {
|
|
|
3543
3572
|
};
|
|
3544
3573
|
};
|
|
3545
3574
|
/**
|
|
3546
|
-
*
|
|
3575
|
+
* Lookup531: pallet_relayer::Call<T>
|
|
3547
3576
|
**/
|
|
3548
3577
|
PalletRelayerCall: {
|
|
3549
3578
|
_enum: {
|
|
@@ -3573,32 +3602,7 @@ declare const _default: {
|
|
|
3573
3602
|
};
|
|
3574
3603
|
};
|
|
3575
3604
|
/**
|
|
3576
|
-
*
|
|
3577
|
-
**/
|
|
3578
|
-
PalletRewardsCall: {
|
|
3579
|
-
_enum: {
|
|
3580
|
-
claim_itn_reward: {
|
|
3581
|
-
rewardAddress: string;
|
|
3582
|
-
itnAddress: string;
|
|
3583
|
-
signature: string;
|
|
3584
|
-
};
|
|
3585
|
-
set_itn_reward_status: {
|
|
3586
|
-
itnAddress: string;
|
|
3587
|
-
status: string;
|
|
3588
|
-
};
|
|
3589
|
-
};
|
|
3590
|
-
};
|
|
3591
|
-
/**
|
|
3592
|
-
* Lookup530: pallet_rewards::ItnRewardStatus
|
|
3593
|
-
**/
|
|
3594
|
-
PalletRewardsItnRewardStatus: {
|
|
3595
|
-
_enum: {
|
|
3596
|
-
Unclaimed: string;
|
|
3597
|
-
Claimed: string;
|
|
3598
|
-
};
|
|
3599
|
-
};
|
|
3600
|
-
/**
|
|
3601
|
-
* Lookup531: pallet_contracts::pallet::Call<T>
|
|
3605
|
+
* Lookup532: pallet_contracts::pallet::Call<T>
|
|
3602
3606
|
**/
|
|
3603
3607
|
PalletContractsCall: {
|
|
3604
3608
|
_enum: {
|
|
@@ -3663,13 +3667,13 @@ declare const _default: {
|
|
|
3663
3667
|
};
|
|
3664
3668
|
};
|
|
3665
3669
|
/**
|
|
3666
|
-
*
|
|
3670
|
+
* Lookup536: pallet_contracts::wasm::Determinism
|
|
3667
3671
|
**/
|
|
3668
3672
|
PalletContractsWasmDeterminism: {
|
|
3669
3673
|
_enum: string[];
|
|
3670
3674
|
};
|
|
3671
3675
|
/**
|
|
3672
|
-
*
|
|
3676
|
+
* Lookup537: polymesh_contracts::Call<T>
|
|
3673
3677
|
**/
|
|
3674
3678
|
PolymeshContractsCall: {
|
|
3675
3679
|
_enum: {
|
|
@@ -3697,11 +3701,11 @@ declare const _default: {
|
|
|
3697
3701
|
};
|
|
3698
3702
|
};
|
|
3699
3703
|
/**
|
|
3700
|
-
*
|
|
3704
|
+
* Lookup540: polymesh_contracts::chain_extension::ExtrinsicId
|
|
3701
3705
|
**/
|
|
3702
3706
|
PolymeshContractsChainExtensionExtrinsicId: string;
|
|
3703
3707
|
/**
|
|
3704
|
-
*
|
|
3708
|
+
* Lookup541: pallet_preimage::pallet::Call<T>
|
|
3705
3709
|
**/
|
|
3706
3710
|
PalletPreimageCall: {
|
|
3707
3711
|
_enum: {
|
|
@@ -3729,7 +3733,7 @@ declare const _default: {
|
|
|
3729
3733
|
};
|
|
3730
3734
|
};
|
|
3731
3735
|
/**
|
|
3732
|
-
*
|
|
3736
|
+
* Lookup542: pallet_nft::Call<T>
|
|
3733
3737
|
**/
|
|
3734
3738
|
PalletNftCall: {
|
|
3735
3739
|
_enum: {
|
|
@@ -3751,18 +3755,18 @@ declare const _default: {
|
|
|
3751
3755
|
};
|
|
3752
3756
|
};
|
|
3753
3757
|
/**
|
|
3754
|
-
*
|
|
3758
|
+
* Lookup544: polymesh_primitives::nft::NFTCollectionKeys
|
|
3755
3759
|
**/
|
|
3756
3760
|
PolymeshPrimitivesNftNftCollectionKeys: string;
|
|
3757
3761
|
/**
|
|
3758
|
-
*
|
|
3762
|
+
* Lookup547: polymesh_primitives::nft::NFTMetadataAttribute
|
|
3759
3763
|
**/
|
|
3760
3764
|
PolymeshPrimitivesNftNftMetadataAttribute: {
|
|
3761
3765
|
key: string;
|
|
3762
3766
|
value: string;
|
|
3763
3767
|
};
|
|
3764
3768
|
/**
|
|
3765
|
-
*
|
|
3769
|
+
* Lookup548: pallet_test_utils::Call<T>
|
|
3766
3770
|
**/
|
|
3767
3771
|
PalletTestUtilsCall: {
|
|
3768
3772
|
_enum: {
|
|
@@ -3779,7 +3783,7 @@ declare const _default: {
|
|
|
3779
3783
|
};
|
|
3780
3784
|
};
|
|
3781
3785
|
/**
|
|
3782
|
-
*
|
|
3786
|
+
* Lookup549: pallet_committee::PolymeshVotes<BlockNumber>
|
|
3783
3787
|
**/
|
|
3784
3788
|
PalletCommitteePolymeshVotes: {
|
|
3785
3789
|
index: string;
|
|
@@ -3788,13 +3792,13 @@ declare const _default: {
|
|
|
3788
3792
|
expiry: string;
|
|
3789
3793
|
};
|
|
3790
3794
|
/**
|
|
3791
|
-
*
|
|
3795
|
+
* Lookup551: pallet_committee::Error<T, I>
|
|
3792
3796
|
**/
|
|
3793
3797
|
PalletCommitteeError: {
|
|
3794
3798
|
_enum: string[];
|
|
3795
3799
|
};
|
|
3796
3800
|
/**
|
|
3797
|
-
*
|
|
3801
|
+
* Lookup561: polymesh_primitives::multisig::ProposalDetails<T>
|
|
3798
3802
|
**/
|
|
3799
3803
|
PolymeshPrimitivesMultisigProposalDetails: {
|
|
3800
3804
|
approvals: string;
|
|
@@ -3804,19 +3808,19 @@ declare const _default: {
|
|
|
3804
3808
|
autoClose: string;
|
|
3805
3809
|
};
|
|
3806
3810
|
/**
|
|
3807
|
-
*
|
|
3811
|
+
* Lookup562: polymesh_primitives::multisig::ProposalStatus
|
|
3808
3812
|
**/
|
|
3809
3813
|
PolymeshPrimitivesMultisigProposalStatus: {
|
|
3810
3814
|
_enum: string[];
|
|
3811
3815
|
};
|
|
3812
3816
|
/**
|
|
3813
|
-
*
|
|
3817
|
+
* Lookup564: pallet_multisig::Error<T>
|
|
3814
3818
|
**/
|
|
3815
3819
|
PalletMultisigError: {
|
|
3816
3820
|
_enum: string[];
|
|
3817
3821
|
};
|
|
3818
3822
|
/**
|
|
3819
|
-
*
|
|
3823
|
+
* Lookup566: pallet_bridge::BridgeTxDetail<BlockNumber>
|
|
3820
3824
|
**/
|
|
3821
3825
|
PalletBridgeBridgeTxDetail: {
|
|
3822
3826
|
amount: string;
|
|
@@ -3825,7 +3829,7 @@ declare const _default: {
|
|
|
3825
3829
|
txHash: string;
|
|
3826
3830
|
};
|
|
3827
3831
|
/**
|
|
3828
|
-
*
|
|
3832
|
+
* Lookup567: pallet_bridge::BridgeTxStatus
|
|
3829
3833
|
**/
|
|
3830
3834
|
PalletBridgeBridgeTxStatus: {
|
|
3831
3835
|
_enum: {
|
|
@@ -3837,13 +3841,13 @@ declare const _default: {
|
|
|
3837
3841
|
};
|
|
3838
3842
|
};
|
|
3839
3843
|
/**
|
|
3840
|
-
*
|
|
3844
|
+
* Lookup570: pallet_bridge::Error<T>
|
|
3841
3845
|
**/
|
|
3842
3846
|
PalletBridgeError: {
|
|
3843
3847
|
_enum: string[];
|
|
3844
3848
|
};
|
|
3845
3849
|
/**
|
|
3846
|
-
*
|
|
3850
|
+
* Lookup571: pallet_staking::StakingLedger<sp_core::crypto::AccountId32, Balance>
|
|
3847
3851
|
**/
|
|
3848
3852
|
PalletStakingStakingLedger: {
|
|
3849
3853
|
stash: string;
|
|
@@ -3853,14 +3857,14 @@ declare const _default: {
|
|
|
3853
3857
|
claimedRewards: string;
|
|
3854
3858
|
};
|
|
3855
3859
|
/**
|
|
3856
|
-
*
|
|
3860
|
+
* Lookup573: pallet_staking::UnlockChunk<Balance>
|
|
3857
3861
|
**/
|
|
3858
3862
|
PalletStakingUnlockChunk: {
|
|
3859
3863
|
value: string;
|
|
3860
3864
|
era: string;
|
|
3861
3865
|
};
|
|
3862
3866
|
/**
|
|
3863
|
-
*
|
|
3867
|
+
* Lookup574: pallet_staking::Nominations<sp_core::crypto::AccountId32>
|
|
3864
3868
|
**/
|
|
3865
3869
|
PalletStakingNominations: {
|
|
3866
3870
|
targets: string;
|
|
@@ -3868,27 +3872,27 @@ declare const _default: {
|
|
|
3868
3872
|
suppressed: string;
|
|
3869
3873
|
};
|
|
3870
3874
|
/**
|
|
3871
|
-
*
|
|
3875
|
+
* Lookup575: pallet_staking::ActiveEraInfo
|
|
3872
3876
|
**/
|
|
3873
3877
|
PalletStakingActiveEraInfo: {
|
|
3874
3878
|
index: string;
|
|
3875
3879
|
start: string;
|
|
3876
3880
|
};
|
|
3877
3881
|
/**
|
|
3878
|
-
*
|
|
3882
|
+
* Lookup577: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
|
3879
3883
|
**/
|
|
3880
3884
|
PalletStakingEraRewardPoints: {
|
|
3881
3885
|
total: string;
|
|
3882
3886
|
individual: string;
|
|
3883
3887
|
};
|
|
3884
3888
|
/**
|
|
3885
|
-
*
|
|
3889
|
+
* Lookup580: pallet_staking::Forcing
|
|
3886
3890
|
**/
|
|
3887
3891
|
PalletStakingForcing: {
|
|
3888
3892
|
_enum: string[];
|
|
3889
3893
|
};
|
|
3890
3894
|
/**
|
|
3891
|
-
*
|
|
3895
|
+
* Lookup582: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
|
3892
3896
|
**/
|
|
3893
3897
|
PalletStakingUnappliedSlash: {
|
|
3894
3898
|
validator: string;
|
|
@@ -3898,7 +3902,7 @@ declare const _default: {
|
|
|
3898
3902
|
payout: string;
|
|
3899
3903
|
};
|
|
3900
3904
|
/**
|
|
3901
|
-
*
|
|
3905
|
+
* Lookup586: pallet_staking::slashing::SlashingSpans
|
|
3902
3906
|
**/
|
|
3903
3907
|
PalletStakingSlashingSlashingSpans: {
|
|
3904
3908
|
spanIndex: string;
|
|
@@ -3907,14 +3911,14 @@ declare const _default: {
|
|
|
3907
3911
|
prior: string;
|
|
3908
3912
|
};
|
|
3909
3913
|
/**
|
|
3910
|
-
*
|
|
3914
|
+
* Lookup587: pallet_staking::slashing::SpanRecord<Balance>
|
|
3911
3915
|
**/
|
|
3912
3916
|
PalletStakingSlashingSpanRecord: {
|
|
3913
3917
|
slashed: string;
|
|
3914
3918
|
paidOut: string;
|
|
3915
3919
|
};
|
|
3916
3920
|
/**
|
|
3917
|
-
*
|
|
3921
|
+
* Lookup590: pallet_staking::ElectionResult<sp_core::crypto::AccountId32, Balance>
|
|
3918
3922
|
**/
|
|
3919
3923
|
PalletStakingElectionResult: {
|
|
3920
3924
|
electedStashes: string;
|
|
@@ -3922,7 +3926,7 @@ declare const _default: {
|
|
|
3922
3926
|
compute: string;
|
|
3923
3927
|
};
|
|
3924
3928
|
/**
|
|
3925
|
-
*
|
|
3929
|
+
* Lookup591: pallet_staking::ElectionStatus<BlockNumber>
|
|
3926
3930
|
**/
|
|
3927
3931
|
PalletStakingElectionStatus: {
|
|
3928
3932
|
_enum: {
|
|
@@ -3931,43 +3935,43 @@ declare const _default: {
|
|
|
3931
3935
|
};
|
|
3932
3936
|
};
|
|
3933
3937
|
/**
|
|
3934
|
-
*
|
|
3938
|
+
* Lookup592: pallet_staking::PermissionedIdentityPrefs
|
|
3935
3939
|
**/
|
|
3936
3940
|
PalletStakingPermissionedIdentityPrefs: {
|
|
3937
3941
|
intendedCount: string;
|
|
3938
3942
|
runningCount: string;
|
|
3939
3943
|
};
|
|
3940
3944
|
/**
|
|
3941
|
-
*
|
|
3945
|
+
* Lookup593: pallet_staking::Releases
|
|
3942
3946
|
**/
|
|
3943
3947
|
PalletStakingReleases: {
|
|
3944
3948
|
_enum: string[];
|
|
3945
3949
|
};
|
|
3946
3950
|
/**
|
|
3947
|
-
*
|
|
3951
|
+
* Lookup595: pallet_staking::Error<T>
|
|
3948
3952
|
**/
|
|
3949
3953
|
PalletStakingError: {
|
|
3950
3954
|
_enum: string[];
|
|
3951
3955
|
};
|
|
3952
3956
|
/**
|
|
3953
|
-
*
|
|
3957
|
+
* Lookup596: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
3954
3958
|
**/
|
|
3955
3959
|
SpStakingOffenceOffenceDetails: {
|
|
3956
3960
|
offender: string;
|
|
3957
3961
|
reporters: string;
|
|
3958
3962
|
};
|
|
3959
3963
|
/**
|
|
3960
|
-
*
|
|
3964
|
+
* Lookup601: sp_core::crypto::KeyTypeId
|
|
3961
3965
|
**/
|
|
3962
3966
|
SpCoreCryptoKeyTypeId: string;
|
|
3963
3967
|
/**
|
|
3964
|
-
*
|
|
3968
|
+
* Lookup602: pallet_session::pallet::Error<T>
|
|
3965
3969
|
**/
|
|
3966
3970
|
PalletSessionError: {
|
|
3967
3971
|
_enum: string[];
|
|
3968
3972
|
};
|
|
3969
3973
|
/**
|
|
3970
|
-
*
|
|
3974
|
+
* Lookup603: pallet_grandpa::StoredState<N>
|
|
3971
3975
|
**/
|
|
3972
3976
|
PalletGrandpaStoredState: {
|
|
3973
3977
|
_enum: {
|
|
@@ -3984,7 +3988,7 @@ declare const _default: {
|
|
|
3984
3988
|
};
|
|
3985
3989
|
};
|
|
3986
3990
|
/**
|
|
3987
|
-
*
|
|
3991
|
+
* Lookup604: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
3988
3992
|
**/
|
|
3989
3993
|
PalletGrandpaStoredPendingChange: {
|
|
3990
3994
|
scheduledAt: string;
|
|
@@ -3993,46 +3997,46 @@ declare const _default: {
|
|
|
3993
3997
|
forced: string;
|
|
3994
3998
|
};
|
|
3995
3999
|
/**
|
|
3996
|
-
*
|
|
4000
|
+
* Lookup606: pallet_grandpa::pallet::Error<T>
|
|
3997
4001
|
**/
|
|
3998
4002
|
PalletGrandpaError: {
|
|
3999
4003
|
_enum: string[];
|
|
4000
4004
|
};
|
|
4001
4005
|
/**
|
|
4002
|
-
*
|
|
4006
|
+
* Lookup610: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
|
|
4003
4007
|
**/
|
|
4004
4008
|
PalletImOnlineBoundedOpaqueNetworkState: {
|
|
4005
4009
|
peerId: string;
|
|
4006
4010
|
externalAddresses: string;
|
|
4007
4011
|
};
|
|
4008
4012
|
/**
|
|
4009
|
-
*
|
|
4013
|
+
* Lookup614: pallet_im_online::pallet::Error<T>
|
|
4010
4014
|
**/
|
|
4011
4015
|
PalletImOnlineError: {
|
|
4012
4016
|
_enum: string[];
|
|
4013
4017
|
};
|
|
4014
4018
|
/**
|
|
4015
|
-
*
|
|
4019
|
+
* Lookup616: pallet_sudo::Error<T>
|
|
4016
4020
|
**/
|
|
4017
4021
|
PalletSudoError: {
|
|
4018
4022
|
_enum: string[];
|
|
4019
4023
|
};
|
|
4020
4024
|
/**
|
|
4021
|
-
*
|
|
4025
|
+
* Lookup617: pallet_asset::TickerRegistration<U>
|
|
4022
4026
|
**/
|
|
4023
4027
|
PalletAssetTickerRegistration: {
|
|
4024
4028
|
owner: string;
|
|
4025
4029
|
expiry: string;
|
|
4026
4030
|
};
|
|
4027
4031
|
/**
|
|
4028
|
-
*
|
|
4032
|
+
* Lookup618: pallet_asset::TickerRegistrationConfig<U>
|
|
4029
4033
|
**/
|
|
4030
4034
|
PalletAssetTickerRegistrationConfig: {
|
|
4031
4035
|
maxTickerLength: string;
|
|
4032
4036
|
registrationLength: string;
|
|
4033
4037
|
};
|
|
4034
4038
|
/**
|
|
4035
|
-
*
|
|
4039
|
+
* Lookup619: pallet_asset::SecurityToken
|
|
4036
4040
|
**/
|
|
4037
4041
|
PalletAssetSecurityToken: {
|
|
4038
4042
|
totalSupply: string;
|
|
@@ -4041,25 +4045,25 @@ declare const _default: {
|
|
|
4041
4045
|
assetType: string;
|
|
4042
4046
|
};
|
|
4043
4047
|
/**
|
|
4044
|
-
*
|
|
4048
|
+
* Lookup623: pallet_asset::AssetOwnershipRelation
|
|
4045
4049
|
**/
|
|
4046
4050
|
PalletAssetAssetOwnershipRelation: {
|
|
4047
4051
|
_enum: string[];
|
|
4048
4052
|
};
|
|
4049
4053
|
/**
|
|
4050
|
-
*
|
|
4054
|
+
* Lookup629: pallet_asset::Error<T>
|
|
4051
4055
|
**/
|
|
4052
4056
|
PalletAssetError: {
|
|
4053
4057
|
_enum: string[];
|
|
4054
4058
|
};
|
|
4055
4059
|
/**
|
|
4056
|
-
*
|
|
4060
|
+
* Lookup632: pallet_corporate_actions::distribution::Error<T>
|
|
4057
4061
|
**/
|
|
4058
4062
|
PalletCorporateActionsDistributionError: {
|
|
4059
4063
|
_enum: string[];
|
|
4060
4064
|
};
|
|
4061
4065
|
/**
|
|
4062
|
-
*
|
|
4066
|
+
* Lookup636: polymesh_common_utilities::traits::checkpoint::NextCheckpoints
|
|
4063
4067
|
**/
|
|
4064
4068
|
PolymeshCommonUtilitiesCheckpointNextCheckpoints: {
|
|
4065
4069
|
nextAt: string;
|
|
@@ -4067,44 +4071,44 @@ declare const _default: {
|
|
|
4067
4071
|
schedules: string;
|
|
4068
4072
|
};
|
|
4069
4073
|
/**
|
|
4070
|
-
*
|
|
4074
|
+
* Lookup642: pallet_asset::checkpoint::Error<T>
|
|
4071
4075
|
**/
|
|
4072
4076
|
PalletAssetCheckpointError: {
|
|
4073
4077
|
_enum: string[];
|
|
4074
4078
|
};
|
|
4075
4079
|
/**
|
|
4076
|
-
*
|
|
4080
|
+
* Lookup643: polymesh_primitives::compliance_manager::AssetCompliance
|
|
4077
4081
|
**/
|
|
4078
4082
|
PolymeshPrimitivesComplianceManagerAssetCompliance: {
|
|
4079
4083
|
paused: string;
|
|
4080
4084
|
requirements: string;
|
|
4081
4085
|
};
|
|
4082
4086
|
/**
|
|
4083
|
-
*
|
|
4087
|
+
* Lookup645: pallet_compliance_manager::Error<T>
|
|
4084
4088
|
**/
|
|
4085
4089
|
PalletComplianceManagerError: {
|
|
4086
4090
|
_enum: string[];
|
|
4087
4091
|
};
|
|
4088
4092
|
/**
|
|
4089
|
-
*
|
|
4093
|
+
* Lookup648: pallet_corporate_actions::Error<T>
|
|
4090
4094
|
**/
|
|
4091
4095
|
PalletCorporateActionsError: {
|
|
4092
4096
|
_enum: string[];
|
|
4093
4097
|
};
|
|
4094
4098
|
/**
|
|
4095
|
-
*
|
|
4099
|
+
* Lookup650: pallet_corporate_actions::ballot::Error<T>
|
|
4096
4100
|
**/
|
|
4097
4101
|
PalletCorporateActionsBallotError: {
|
|
4098
4102
|
_enum: string[];
|
|
4099
4103
|
};
|
|
4100
4104
|
/**
|
|
4101
|
-
*
|
|
4105
|
+
* Lookup651: pallet_permissions::Error<T>
|
|
4102
4106
|
**/
|
|
4103
4107
|
PalletPermissionsError: {
|
|
4104
4108
|
_enum: string[];
|
|
4105
4109
|
};
|
|
4106
4110
|
/**
|
|
4107
|
-
*
|
|
4111
|
+
* Lookup652: pallet_pips::PipsMetadata<BlockNumber>
|
|
4108
4112
|
**/
|
|
4109
4113
|
PalletPipsPipsMetadata: {
|
|
4110
4114
|
id: string;
|
|
@@ -4115,14 +4119,14 @@ declare const _default: {
|
|
|
4115
4119
|
expiry: string;
|
|
4116
4120
|
};
|
|
4117
4121
|
/**
|
|
4118
|
-
*
|
|
4122
|
+
* Lookup654: pallet_pips::DepositInfo<sp_core::crypto::AccountId32>
|
|
4119
4123
|
**/
|
|
4120
4124
|
PalletPipsDepositInfo: {
|
|
4121
4125
|
owner: string;
|
|
4122
4126
|
amount: string;
|
|
4123
4127
|
};
|
|
4124
4128
|
/**
|
|
4125
|
-
*
|
|
4129
|
+
* Lookup655: pallet_pips::Pip<polymesh_runtime_develop::runtime::RuntimeCall, sp_core::crypto::AccountId32>
|
|
4126
4130
|
**/
|
|
4127
4131
|
PalletPipsPip: {
|
|
4128
4132
|
id: string;
|
|
@@ -4130,7 +4134,7 @@ declare const _default: {
|
|
|
4130
4134
|
proposer: string;
|
|
4131
4135
|
};
|
|
4132
4136
|
/**
|
|
4133
|
-
*
|
|
4137
|
+
* Lookup656: pallet_pips::VotingResult
|
|
4134
4138
|
**/
|
|
4135
4139
|
PalletPipsVotingResult: {
|
|
4136
4140
|
ayesCount: string;
|
|
@@ -4139,11 +4143,11 @@ declare const _default: {
|
|
|
4139
4143
|
naysStake: string;
|
|
4140
4144
|
};
|
|
4141
4145
|
/**
|
|
4142
|
-
*
|
|
4146
|
+
* Lookup657: pallet_pips::Vote
|
|
4143
4147
|
**/
|
|
4144
4148
|
PalletPipsVote: string;
|
|
4145
4149
|
/**
|
|
4146
|
-
*
|
|
4150
|
+
* Lookup658: pallet_pips::SnapshotMetadata<BlockNumber, sp_core::crypto::AccountId32>
|
|
4147
4151
|
**/
|
|
4148
4152
|
PalletPipsSnapshotMetadata: {
|
|
4149
4153
|
createdAt: string;
|
|
@@ -4151,25 +4155,25 @@ declare const _default: {
|
|
|
4151
4155
|
id: string;
|
|
4152
4156
|
};
|
|
4153
4157
|
/**
|
|
4154
|
-
*
|
|
4158
|
+
* Lookup660: pallet_pips::Error<T>
|
|
4155
4159
|
**/
|
|
4156
4160
|
PalletPipsError: {
|
|
4157
4161
|
_enum: string[];
|
|
4158
4162
|
};
|
|
4159
4163
|
/**
|
|
4160
|
-
*
|
|
4164
|
+
* Lookup668: pallet_portfolio::Error<T>
|
|
4161
4165
|
**/
|
|
4162
4166
|
PalletPortfolioError: {
|
|
4163
4167
|
_enum: string[];
|
|
4164
4168
|
};
|
|
4165
4169
|
/**
|
|
4166
|
-
*
|
|
4170
|
+
* Lookup669: pallet_protocol_fee::Error<T>
|
|
4167
4171
|
**/
|
|
4168
4172
|
PalletProtocolFeeError: {
|
|
4169
4173
|
_enum: string[];
|
|
4170
4174
|
};
|
|
4171
4175
|
/**
|
|
4172
|
-
*
|
|
4176
|
+
* Lookup672: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<polymesh_runtime_develop::runtime::RuntimeCall>, BlockNumber, polymesh_runtime_develop::runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
4173
4177
|
**/
|
|
4174
4178
|
PalletSchedulerScheduled: {
|
|
4175
4179
|
maybeId: string;
|
|
@@ -4179,7 +4183,7 @@ declare const _default: {
|
|
|
4179
4183
|
origin: string;
|
|
4180
4184
|
};
|
|
4181
4185
|
/**
|
|
4182
|
-
*
|
|
4186
|
+
* Lookup673: frame_support::traits::preimages::Bounded<polymesh_runtime_develop::runtime::RuntimeCall>
|
|
4183
4187
|
**/
|
|
4184
4188
|
FrameSupportPreimagesBounded: {
|
|
4185
4189
|
_enum: {
|
|
@@ -4200,20 +4204,20 @@ declare const _default: {
|
|
|
4200
4204
|
};
|
|
4201
4205
|
};
|
|
4202
4206
|
/**
|
|
4203
|
-
*
|
|
4207
|
+
* Lookup676: pallet_scheduler::pallet::Error<T>
|
|
4204
4208
|
**/
|
|
4205
4209
|
PalletSchedulerError: {
|
|
4206
4210
|
_enum: string[];
|
|
4207
4211
|
};
|
|
4208
4212
|
/**
|
|
4209
|
-
*
|
|
4213
|
+
* Lookup677: polymesh_primitives::settlement::Venue
|
|
4210
4214
|
**/
|
|
4211
4215
|
PolymeshPrimitivesSettlementVenue: {
|
|
4212
4216
|
creator: string;
|
|
4213
4217
|
venueType: string;
|
|
4214
4218
|
};
|
|
4215
4219
|
/**
|
|
4216
|
-
*
|
|
4220
|
+
* Lookup681: polymesh_primitives::settlement::Instruction<Moment, BlockNumber>
|
|
4217
4221
|
**/
|
|
4218
4222
|
PolymeshPrimitivesSettlementInstruction: {
|
|
4219
4223
|
instructionId: string;
|
|
@@ -4224,7 +4228,7 @@ declare const _default: {
|
|
|
4224
4228
|
valueDate: string;
|
|
4225
4229
|
};
|
|
4226
4230
|
/**
|
|
4227
|
-
*
|
|
4231
|
+
* Lookup683: polymesh_primitives::settlement::LegStatus<sp_core::crypto::AccountId32>
|
|
4228
4232
|
**/
|
|
4229
4233
|
PolymeshPrimitivesSettlementLegStatus: {
|
|
4230
4234
|
_enum: {
|
|
@@ -4234,13 +4238,13 @@ declare const _default: {
|
|
|
4234
4238
|
};
|
|
4235
4239
|
};
|
|
4236
4240
|
/**
|
|
4237
|
-
*
|
|
4241
|
+
* Lookup685: polymesh_primitives::settlement::AffirmationStatus
|
|
4238
4242
|
**/
|
|
4239
4243
|
PolymeshPrimitivesSettlementAffirmationStatus: {
|
|
4240
4244
|
_enum: string[];
|
|
4241
4245
|
};
|
|
4242
4246
|
/**
|
|
4243
|
-
*
|
|
4247
|
+
* Lookup689: polymesh_primitives::settlement::InstructionStatus<BlockNumber>
|
|
4244
4248
|
**/
|
|
4245
4249
|
PolymeshPrimitivesSettlementInstructionStatus: {
|
|
4246
4250
|
_enum: {
|
|
@@ -4252,80 +4256,74 @@ declare const _default: {
|
|
|
4252
4256
|
};
|
|
4253
4257
|
};
|
|
4254
4258
|
/**
|
|
4255
|
-
*
|
|
4259
|
+
* Lookup690: pallet_settlement::Error<T>
|
|
4256
4260
|
**/
|
|
4257
4261
|
PalletSettlementError: {
|
|
4258
4262
|
_enum: string[];
|
|
4259
4263
|
};
|
|
4260
4264
|
/**
|
|
4261
|
-
*
|
|
4265
|
+
* Lookup693: polymesh_primitives::statistics::Stat1stKey
|
|
4262
4266
|
**/
|
|
4263
4267
|
PolymeshPrimitivesStatisticsStat1stKey: {
|
|
4264
4268
|
asset: string;
|
|
4265
4269
|
statType: string;
|
|
4266
4270
|
};
|
|
4267
4271
|
/**
|
|
4268
|
-
*
|
|
4272
|
+
* Lookup694: polymesh_primitives::transfer_compliance::AssetTransferCompliance<S>
|
|
4269
4273
|
**/
|
|
4270
4274
|
PolymeshPrimitivesTransferComplianceAssetTransferCompliance: {
|
|
4271
4275
|
paused: string;
|
|
4272
4276
|
requirements: string;
|
|
4273
4277
|
};
|
|
4274
4278
|
/**
|
|
4275
|
-
*
|
|
4279
|
+
* Lookup698: pallet_statistics::Error<T>
|
|
4276
4280
|
**/
|
|
4277
4281
|
PalletStatisticsError: {
|
|
4278
4282
|
_enum: string[];
|
|
4279
4283
|
};
|
|
4280
4284
|
/**
|
|
4281
|
-
*
|
|
4285
|
+
* Lookup700: pallet_sto::Error<T>
|
|
4282
4286
|
**/
|
|
4283
4287
|
PalletStoError: {
|
|
4284
4288
|
_enum: string[];
|
|
4285
4289
|
};
|
|
4286
4290
|
/**
|
|
4287
|
-
*
|
|
4291
|
+
* Lookup701: pallet_treasury::Error<T>
|
|
4288
4292
|
**/
|
|
4289
4293
|
PalletTreasuryError: {
|
|
4290
4294
|
_enum: string[];
|
|
4291
4295
|
};
|
|
4292
4296
|
/**
|
|
4293
|
-
*
|
|
4297
|
+
* Lookup702: pallet_utility::pallet::Error<T>
|
|
4294
4298
|
**/
|
|
4295
4299
|
PalletUtilityError: {
|
|
4296
4300
|
_enum: string[];
|
|
4297
4301
|
};
|
|
4298
4302
|
/**
|
|
4299
|
-
*
|
|
4303
|
+
* Lookup703: pallet_base::Error<T>
|
|
4300
4304
|
**/
|
|
4301
4305
|
PalletBaseError: {
|
|
4302
4306
|
_enum: string[];
|
|
4303
4307
|
};
|
|
4304
4308
|
/**
|
|
4305
|
-
*
|
|
4309
|
+
* Lookup705: pallet_external_agents::Error<T>
|
|
4306
4310
|
**/
|
|
4307
4311
|
PalletExternalAgentsError: {
|
|
4308
4312
|
_enum: string[];
|
|
4309
4313
|
};
|
|
4310
4314
|
/**
|
|
4311
|
-
*
|
|
4315
|
+
* Lookup706: pallet_relayer::Subsidy<sp_core::crypto::AccountId32>
|
|
4312
4316
|
**/
|
|
4313
4317
|
PalletRelayerSubsidy: {
|
|
4314
4318
|
payingKey: string;
|
|
4315
4319
|
remaining: string;
|
|
4316
4320
|
};
|
|
4317
4321
|
/**
|
|
4318
|
-
*
|
|
4322
|
+
* Lookup707: pallet_relayer::Error<T>
|
|
4319
4323
|
**/
|
|
4320
4324
|
PalletRelayerError: {
|
|
4321
4325
|
_enum: string[];
|
|
4322
4326
|
};
|
|
4323
|
-
/**
|
|
4324
|
-
* Lookup707: pallet_rewards::Error<T>
|
|
4325
|
-
**/
|
|
4326
|
-
PalletRewardsError: {
|
|
4327
|
-
_enum: string[];
|
|
4328
|
-
};
|
|
4329
4327
|
/**
|
|
4330
4328
|
* Lookup709: pallet_contracts::wasm::PrefabWasmModule<T>
|
|
4331
4329
|
**/
|
|
@@ -4521,13 +4519,13 @@ declare const _default: {
|
|
|
4521
4519
|
_enum: string[];
|
|
4522
4520
|
};
|
|
4523
4521
|
/**
|
|
4524
|
-
*
|
|
4522
|
+
* Lookup723: polymesh_contracts::Error<T>
|
|
4525
4523
|
**/
|
|
4526
4524
|
PolymeshContractsError: {
|
|
4527
4525
|
_enum: string[];
|
|
4528
4526
|
};
|
|
4529
4527
|
/**
|
|
4530
|
-
*
|
|
4528
|
+
* Lookup724: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
|
|
4531
4529
|
**/
|
|
4532
4530
|
PalletPreimageRequestStatus: {
|
|
4533
4531
|
_enum: {
|
|
@@ -4543,62 +4541,62 @@ declare const _default: {
|
|
|
4543
4541
|
};
|
|
4544
4542
|
};
|
|
4545
4543
|
/**
|
|
4546
|
-
*
|
|
4544
|
+
* Lookup728: pallet_preimage::pallet::Error<T>
|
|
4547
4545
|
**/
|
|
4548
4546
|
PalletPreimageError: {
|
|
4549
4547
|
_enum: string[];
|
|
4550
4548
|
};
|
|
4551
4549
|
/**
|
|
4552
|
-
*
|
|
4550
|
+
* Lookup729: polymesh_primitives::nft::NFTCollection
|
|
4553
4551
|
**/
|
|
4554
4552
|
PolymeshPrimitivesNftNftCollection: {
|
|
4555
4553
|
id: string;
|
|
4556
4554
|
ticker: string;
|
|
4557
4555
|
};
|
|
4558
4556
|
/**
|
|
4559
|
-
*
|
|
4557
|
+
* Lookup733: pallet_nft::Error<T>
|
|
4560
4558
|
**/
|
|
4561
4559
|
PalletNftError: {
|
|
4562
4560
|
_enum: string[];
|
|
4563
4561
|
};
|
|
4564
4562
|
/**
|
|
4565
|
-
*
|
|
4563
|
+
* Lookup734: pallet_test_utils::Error<T>
|
|
4566
4564
|
**/
|
|
4567
4565
|
PalletTestUtilsError: string;
|
|
4568
4566
|
/**
|
|
4569
|
-
*
|
|
4567
|
+
* Lookup737: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4570
4568
|
**/
|
|
4571
4569
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
4572
4570
|
/**
|
|
4573
|
-
*
|
|
4571
|
+
* Lookup738: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4574
4572
|
**/
|
|
4575
4573
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
4576
4574
|
/**
|
|
4577
|
-
*
|
|
4575
|
+
* Lookup739: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4578
4576
|
**/
|
|
4579
4577
|
FrameSystemExtensionsCheckGenesis: string;
|
|
4580
4578
|
/**
|
|
4581
|
-
*
|
|
4579
|
+
* Lookup742: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4582
4580
|
**/
|
|
4583
4581
|
FrameSystemExtensionsCheckNonce: string;
|
|
4584
4582
|
/**
|
|
4585
|
-
*
|
|
4583
|
+
* Lookup743: polymesh_extensions::check_weight::CheckWeight<T>
|
|
4586
4584
|
**/
|
|
4587
4585
|
PolymeshExtensionsCheckWeight: string;
|
|
4588
4586
|
/**
|
|
4589
|
-
*
|
|
4587
|
+
* Lookup744: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4590
4588
|
**/
|
|
4591
4589
|
FrameSystemExtensionsCheckWeight: string;
|
|
4592
4590
|
/**
|
|
4593
|
-
*
|
|
4591
|
+
* Lookup745: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4594
4592
|
**/
|
|
4595
4593
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
4596
4594
|
/**
|
|
4597
|
-
*
|
|
4595
|
+
* Lookup746: pallet_permissions::StoreCallMetadata<T>
|
|
4598
4596
|
**/
|
|
4599
4597
|
PalletPermissionsStoreCallMetadata: string;
|
|
4600
4598
|
/**
|
|
4601
|
-
*
|
|
4599
|
+
* Lookup747: polymesh_runtime_develop::runtime::Runtime
|
|
4602
4600
|
**/
|
|
4603
4601
|
PolymeshRuntimeDevelopRuntime: string;
|
|
4604
4602
|
};
|