@polymeshassociation/polymesh-sdk 23.0.0-beta.1 → 23.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/api/client/Claims.d.ts +14 -1
- package/api/client/Claims.d.ts.map +1 -1
- package/api/client/Claims.js +29 -0
- package/api/client/Claims.js.map +1 -1
- package/api/client/Polymesh.d.ts.map +1 -1
- package/api/client/Polymesh.js +2 -1
- package/api/client/Polymesh.js.map +1 -1
- package/api/entities/Portfolio/index.d.ts.map +1 -1
- package/api/entities/Portfolio/index.js +7 -4
- package/api/entities/Portfolio/index.js.map +1 -1
- package/generated/types.d.ts +10 -3
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +7 -0
- package/generated/types.js.map +1 -1
- package/middleware/queries.d.ts +16 -0
- package/middleware/queries.d.ts.map +1 -1
- package/middleware/queries.js +51 -1
- package/middleware/queries.js.map +1 -1
- package/middleware/types.d.ts +1861 -69
- package/middleware/types.d.ts.map +1 -1
- package/middleware/types.js +774 -12
- package/middleware/types.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0.tgz +0 -0
- package/package.json +1 -1
- package/polkadot/augment-api-errors.d.ts +28 -0
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +81 -2
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +43 -1
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-rpc.d.ts +9 -2
- package/polkadot/augment-api-rpc.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +128 -3
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/augment-types.d.ts +3 -1
- package/polkadot/augment-types.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +300 -221
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +307 -221
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/polymesh/definitions.d.ts +11 -1
- package/polkadot/polymesh/definitions.d.ts.map +1 -1
- package/polkadot/polymesh/definitions.js +14 -1
- package/polkadot/polymesh/definitions.js.map +1 -1
- package/polkadot/polymesh/types.d.ts +17 -2
- package/polkadot/polymesh/types.d.ts.map +1 -1
- package/polkadot/registry.d.ts +6 -2
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/schema.d.ts +29 -2
- package/polkadot/schema.d.ts.map +1 -1
- package/polkadot/schema.js +51 -3
- package/polkadot/schema.js.map +1 -1
- package/polkadot/settlement/definitions.d.ts +9 -0
- package/polkadot/settlement/definitions.d.ts.map +1 -1
- package/polkadot/settlement/definitions.js +21 -0
- package/polkadot/settlement/definitions.js.map +1 -1
- package/polkadot/types-lookup.d.ts +336 -231
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/types/index.d.ts +9 -0
- package/types/index.d.ts.map +1 -1
- package/utils/constants.d.ts +1 -1
- package/utils/constants.js +1 -1
- package/utils/conversion.d.ts +6 -2
- package/utils/conversion.d.ts.map +1 -1
- package/utils/conversion.js +16 -5
- package/utils/conversion.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-beta.1.tgz +0 -0
package/polkadot/lookup.js
CHANGED
|
@@ -1033,6 +1033,10 @@ exports.default = {
|
|
|
1033
1033
|
LocalMetadataKeyDeleted: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesTicker,u64)',
|
|
1034
1034
|
MetadataValueDeleted: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesTicker,PolymeshPrimitivesAssetMetadataAssetMetadataKey)',
|
|
1035
1035
|
AssetBalanceUpdated: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesTicker,u128,Option<PolymeshPrimitivesIdentityIdPortfolioId>,Option<PolymeshPrimitivesIdentityIdPortfolioId>,PolymeshPrimitivesPortfolioPortfolioUpdateReason)',
|
|
1036
|
+
AssetAffirmationExemption: 'PolymeshPrimitivesTicker',
|
|
1037
|
+
RemoveAssetAffirmationExemption: 'PolymeshPrimitivesTicker',
|
|
1038
|
+
PreApprovedAsset: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesTicker)',
|
|
1039
|
+
RemovePreApprovedAsset: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesTicker)',
|
|
1036
1040
|
},
|
|
1037
1041
|
},
|
|
1038
1042
|
/**
|
|
@@ -1150,6 +1154,7 @@ exports.default = {
|
|
|
1150
1154
|
instructionId: 'Option<u64>',
|
|
1151
1155
|
instructionMemo: 'Option<PolymeshPrimitivesMemo>',
|
|
1152
1156
|
},
|
|
1157
|
+
ControllerTransfer: 'Null',
|
|
1153
1158
|
},
|
|
1154
1159
|
},
|
|
1155
1160
|
/**
|
|
@@ -1473,6 +1478,8 @@ exports.default = {
|
|
|
1473
1478
|
UserPortfolios: '(PolymeshPrimitivesIdentityId,Vec<(u64,Bytes)>)',
|
|
1474
1479
|
PortfolioCustodianChanged: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesIdentityIdPortfolioId,PolymeshPrimitivesIdentityId)',
|
|
1475
1480
|
FundsMovedBetweenPortfolios: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesIdentityIdPortfolioId,PolymeshPrimitivesIdentityIdPortfolioId,PolymeshPrimitivesPortfolioFundDescription,Option<PolymeshPrimitivesMemo>)',
|
|
1481
|
+
PreApprovedPortfolio: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesIdentityIdPortfolioId,PolymeshPrimitivesTicker)',
|
|
1482
|
+
RevokePreApprovedPortfolio: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesIdentityIdPortfolioId,PolymeshPrimitivesTicker)',
|
|
1476
1483
|
},
|
|
1477
1484
|
},
|
|
1478
1485
|
/**
|
|
@@ -1565,6 +1572,7 @@ exports.default = {
|
|
|
1565
1572
|
SettlementManuallyExecuted: '(PolymeshPrimitivesIdentityId,u64)',
|
|
1566
1573
|
InstructionCreated: '(PolymeshPrimitivesIdentityId,u64,u64,PolymeshPrimitivesSettlementSettlementType,Option<u64>,Option<u64>,Vec<PolymeshPrimitivesSettlementLeg>,Option<PolymeshPrimitivesMemo>)',
|
|
1567
1574
|
FailedToExecuteInstruction: '(u64,SpRuntimeDispatchError)',
|
|
1575
|
+
InstructionAutomaticallyAffirmed: '(PolymeshPrimitivesIdentityId,PolymeshPrimitivesIdentityIdPortfolioId,u64)',
|
|
1568
1576
|
},
|
|
1569
1577
|
},
|
|
1570
1578
|
/**
|
|
@@ -1841,11 +1849,34 @@ exports.default = {
|
|
|
1841
1849
|
},
|
|
1842
1850
|
},
|
|
1843
1851
|
/**
|
|
1844
|
-
* Lookup290: polymesh_contracts::
|
|
1852
|
+
* Lookup290: polymesh_contracts::RawEvent<primitive_types::H256, sp_core::crypto::AccountId32>
|
|
1845
1853
|
**/
|
|
1846
|
-
|
|
1854
|
+
PolymeshContractsRawEvent: {
|
|
1855
|
+
_enum: {
|
|
1856
|
+
ApiHashUpdated: '(PolymeshContractsApi,PolymeshContractsChainVersion,H256)',
|
|
1857
|
+
SCRuntimeCall: '(AccountId32,PolymeshContractsChainExtensionExtrinsicId)',
|
|
1858
|
+
},
|
|
1859
|
+
},
|
|
1860
|
+
/**
|
|
1861
|
+
* Lookup291: polymesh_contracts::Api
|
|
1862
|
+
**/
|
|
1863
|
+
PolymeshContractsApi: {
|
|
1864
|
+
desc: '[u8;4]',
|
|
1865
|
+
major: 'u32',
|
|
1866
|
+
},
|
|
1867
|
+
/**
|
|
1868
|
+
* Lookup292: polymesh_contracts::ChainVersion
|
|
1869
|
+
**/
|
|
1870
|
+
PolymeshContractsChainVersion: {
|
|
1871
|
+
specVersion: 'u32',
|
|
1872
|
+
txVersion: 'u32',
|
|
1873
|
+
},
|
|
1874
|
+
/**
|
|
1875
|
+
* Lookup293: polymesh_contracts::chain_extension::ExtrinsicId
|
|
1876
|
+
**/
|
|
1877
|
+
PolymeshContractsChainExtensionExtrinsicId: '(u8,u8)',
|
|
1847
1878
|
/**
|
|
1848
|
-
*
|
|
1879
|
+
* Lookup294: pallet_preimage::pallet::Event<T>
|
|
1849
1880
|
**/
|
|
1850
1881
|
PalletPreimageEvent: {
|
|
1851
1882
|
_enum: {
|
|
@@ -1870,7 +1901,7 @@ exports.default = {
|
|
|
1870
1901
|
},
|
|
1871
1902
|
},
|
|
1872
1903
|
/**
|
|
1873
|
-
*
|
|
1904
|
+
* Lookup295: polymesh_common_utilities::traits::nft::Event
|
|
1874
1905
|
**/
|
|
1875
1906
|
PolymeshCommonUtilitiesNftEvent: {
|
|
1876
1907
|
_enum: {
|
|
@@ -1879,7 +1910,7 @@ exports.default = {
|
|
|
1879
1910
|
},
|
|
1880
1911
|
},
|
|
1881
1912
|
/**
|
|
1882
|
-
*
|
|
1913
|
+
* Lookup297: pallet_test_utils::RawEvent<sp_core::crypto::AccountId32>
|
|
1883
1914
|
**/
|
|
1884
1915
|
PalletTestUtilsRawEvent: {
|
|
1885
1916
|
_enum: {
|
|
@@ -1888,7 +1919,7 @@ exports.default = {
|
|
|
1888
1919
|
},
|
|
1889
1920
|
},
|
|
1890
1921
|
/**
|
|
1891
|
-
*
|
|
1922
|
+
* Lookup298: frame_system::Phase
|
|
1892
1923
|
**/
|
|
1893
1924
|
FrameSystemPhase: {
|
|
1894
1925
|
_enum: {
|
|
@@ -1898,14 +1929,14 @@ exports.default = {
|
|
|
1898
1929
|
},
|
|
1899
1930
|
},
|
|
1900
1931
|
/**
|
|
1901
|
-
*
|
|
1932
|
+
* Lookup301: frame_system::LastRuntimeUpgradeInfo
|
|
1902
1933
|
**/
|
|
1903
1934
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1904
1935
|
specVersion: 'Compact<u32>',
|
|
1905
1936
|
specName: 'Text',
|
|
1906
1937
|
},
|
|
1907
1938
|
/**
|
|
1908
|
-
*
|
|
1939
|
+
* Lookup304: frame_system::pallet::Call<T>
|
|
1909
1940
|
**/
|
|
1910
1941
|
FrameSystemCall: {
|
|
1911
1942
|
_enum: {
|
|
@@ -1940,7 +1971,7 @@ exports.default = {
|
|
|
1940
1971
|
},
|
|
1941
1972
|
},
|
|
1942
1973
|
/**
|
|
1943
|
-
*
|
|
1974
|
+
* Lookup308: frame_system::limits::BlockWeights
|
|
1944
1975
|
**/
|
|
1945
1976
|
FrameSystemLimitsBlockWeights: {
|
|
1946
1977
|
baseBlock: 'SpWeightsWeightV2Weight',
|
|
@@ -1948,7 +1979,7 @@ exports.default = {
|
|
|
1948
1979
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass',
|
|
1949
1980
|
},
|
|
1950
1981
|
/**
|
|
1951
|
-
*
|
|
1982
|
+
* Lookup309: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1952
1983
|
**/
|
|
1953
1984
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1954
1985
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
|
@@ -1956,7 +1987,7 @@ exports.default = {
|
|
|
1956
1987
|
mandatory: 'FrameSystemLimitsWeightsPerClass',
|
|
1957
1988
|
},
|
|
1958
1989
|
/**
|
|
1959
|
-
*
|
|
1990
|
+
* Lookup310: frame_system::limits::WeightsPerClass
|
|
1960
1991
|
**/
|
|
1961
1992
|
FrameSystemLimitsWeightsPerClass: {
|
|
1962
1993
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
|
@@ -1965,13 +1996,13 @@ exports.default = {
|
|
|
1965
1996
|
reserved: 'Option<SpWeightsWeightV2Weight>',
|
|
1966
1997
|
},
|
|
1967
1998
|
/**
|
|
1968
|
-
*
|
|
1999
|
+
* Lookup312: frame_system::limits::BlockLength
|
|
1969
2000
|
**/
|
|
1970
2001
|
FrameSystemLimitsBlockLength: {
|
|
1971
2002
|
max: 'FrameSupportDispatchPerDispatchClassU32',
|
|
1972
2003
|
},
|
|
1973
2004
|
/**
|
|
1974
|
-
*
|
|
2005
|
+
* Lookup313: frame_support::dispatch::PerDispatchClass<T>
|
|
1975
2006
|
**/
|
|
1976
2007
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
1977
2008
|
normal: 'u32',
|
|
@@ -1979,14 +2010,14 @@ exports.default = {
|
|
|
1979
2010
|
mandatory: 'u32',
|
|
1980
2011
|
},
|
|
1981
2012
|
/**
|
|
1982
|
-
*
|
|
2013
|
+
* Lookup314: sp_weights::RuntimeDbWeight
|
|
1983
2014
|
**/
|
|
1984
2015
|
SpWeightsRuntimeDbWeight: {
|
|
1985
2016
|
read: 'u64',
|
|
1986
2017
|
write: 'u64',
|
|
1987
2018
|
},
|
|
1988
2019
|
/**
|
|
1989
|
-
*
|
|
2020
|
+
* Lookup315: sp_version::RuntimeVersion
|
|
1990
2021
|
**/
|
|
1991
2022
|
SpVersionRuntimeVersion: {
|
|
1992
2023
|
specName: 'Text',
|
|
@@ -1999,7 +2030,7 @@ exports.default = {
|
|
|
1999
2030
|
stateVersion: 'u8',
|
|
2000
2031
|
},
|
|
2001
2032
|
/**
|
|
2002
|
-
*
|
|
2033
|
+
* Lookup320: frame_system::pallet::Error<T>
|
|
2003
2034
|
**/
|
|
2004
2035
|
FrameSystemError: {
|
|
2005
2036
|
_enum: [
|
|
@@ -2012,11 +2043,11 @@ exports.default = {
|
|
|
2012
2043
|
],
|
|
2013
2044
|
},
|
|
2014
2045
|
/**
|
|
2015
|
-
*
|
|
2046
|
+
* Lookup323: sp_consensus_babe::app::Public
|
|
2016
2047
|
**/
|
|
2017
2048
|
SpConsensusBabeAppPublic: 'SpCoreSr25519Public',
|
|
2018
2049
|
/**
|
|
2019
|
-
*
|
|
2050
|
+
* Lookup326: sp_consensus_babe::digests::NextConfigDescriptor
|
|
2020
2051
|
**/
|
|
2021
2052
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
2022
2053
|
_enum: {
|
|
@@ -2028,13 +2059,13 @@ exports.default = {
|
|
|
2028
2059
|
},
|
|
2029
2060
|
},
|
|
2030
2061
|
/**
|
|
2031
|
-
*
|
|
2062
|
+
* Lookup328: sp_consensus_babe::AllowedSlots
|
|
2032
2063
|
**/
|
|
2033
2064
|
SpConsensusBabeAllowedSlots: {
|
|
2034
2065
|
_enum: ['PrimarySlots', 'PrimaryAndSecondaryPlainSlots', 'PrimaryAndSecondaryVRFSlots'],
|
|
2035
2066
|
},
|
|
2036
2067
|
/**
|
|
2037
|
-
*
|
|
2068
|
+
* Lookup332: sp_consensus_babe::digests::PreDigest
|
|
2038
2069
|
**/
|
|
2039
2070
|
SpConsensusBabeDigestsPreDigest: {
|
|
2040
2071
|
_enum: {
|
|
@@ -2045,7 +2076,7 @@ exports.default = {
|
|
|
2045
2076
|
},
|
|
2046
2077
|
},
|
|
2047
2078
|
/**
|
|
2048
|
-
*
|
|
2079
|
+
* Lookup333: sp_consensus_babe::digests::PrimaryPreDigest
|
|
2049
2080
|
**/
|
|
2050
2081
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
2051
2082
|
authorityIndex: 'u32',
|
|
@@ -2054,14 +2085,14 @@ exports.default = {
|
|
|
2054
2085
|
vrfProof: '[u8;64]',
|
|
2055
2086
|
},
|
|
2056
2087
|
/**
|
|
2057
|
-
*
|
|
2088
|
+
* Lookup334: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
2058
2089
|
**/
|
|
2059
2090
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
2060
2091
|
authorityIndex: 'u32',
|
|
2061
2092
|
slot: 'u64',
|
|
2062
2093
|
},
|
|
2063
2094
|
/**
|
|
2064
|
-
*
|
|
2095
|
+
* Lookup335: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
2065
2096
|
**/
|
|
2066
2097
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
2067
2098
|
authorityIndex: 'u32',
|
|
@@ -2070,14 +2101,14 @@ exports.default = {
|
|
|
2070
2101
|
vrfProof: '[u8;64]',
|
|
2071
2102
|
},
|
|
2072
2103
|
/**
|
|
2073
|
-
*
|
|
2104
|
+
* Lookup336: sp_consensus_babe::BabeEpochConfiguration
|
|
2074
2105
|
**/
|
|
2075
2106
|
SpConsensusBabeBabeEpochConfiguration: {
|
|
2076
2107
|
c: '(u64,u64)',
|
|
2077
2108
|
allowedSlots: 'SpConsensusBabeAllowedSlots',
|
|
2078
2109
|
},
|
|
2079
2110
|
/**
|
|
2080
|
-
*
|
|
2111
|
+
* Lookup340: pallet_babe::pallet::Call<T>
|
|
2081
2112
|
**/
|
|
2082
2113
|
PalletBabeCall: {
|
|
2083
2114
|
_enum: {
|
|
@@ -2095,7 +2126,7 @@ exports.default = {
|
|
|
2095
2126
|
},
|
|
2096
2127
|
},
|
|
2097
2128
|
/**
|
|
2098
|
-
*
|
|
2129
|
+
* Lookup341: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>, sp_consensus_babe::app::Public>
|
|
2099
2130
|
**/
|
|
2100
2131
|
SpConsensusSlotsEquivocationProof: {
|
|
2101
2132
|
offender: 'SpConsensusBabeAppPublic',
|
|
@@ -2104,7 +2135,7 @@ exports.default = {
|
|
|
2104
2135
|
secondHeader: 'SpRuntimeHeader',
|
|
2105
2136
|
},
|
|
2106
2137
|
/**
|
|
2107
|
-
*
|
|
2138
|
+
* Lookup342: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
|
|
2108
2139
|
**/
|
|
2109
2140
|
SpRuntimeHeader: {
|
|
2110
2141
|
parentHash: 'H256',
|
|
@@ -2114,11 +2145,11 @@ exports.default = {
|
|
|
2114
2145
|
digest: 'SpRuntimeDigest',
|
|
2115
2146
|
},
|
|
2116
2147
|
/**
|
|
2117
|
-
*
|
|
2148
|
+
* Lookup343: sp_runtime::traits::BlakeTwo256
|
|
2118
2149
|
**/
|
|
2119
2150
|
SpRuntimeBlakeTwo256: 'Null',
|
|
2120
2151
|
/**
|
|
2121
|
-
*
|
|
2152
|
+
* Lookup344: sp_session::MembershipProof
|
|
2122
2153
|
**/
|
|
2123
2154
|
SpSessionMembershipProof: {
|
|
2124
2155
|
session: 'u32',
|
|
@@ -2126,7 +2157,7 @@ exports.default = {
|
|
|
2126
2157
|
validatorCount: 'u32',
|
|
2127
2158
|
},
|
|
2128
2159
|
/**
|
|
2129
|
-
*
|
|
2160
|
+
* Lookup345: pallet_babe::pallet::Error<T>
|
|
2130
2161
|
**/
|
|
2131
2162
|
PalletBabeError: {
|
|
2132
2163
|
_enum: [
|
|
@@ -2137,7 +2168,7 @@ exports.default = {
|
|
|
2137
2168
|
],
|
|
2138
2169
|
},
|
|
2139
2170
|
/**
|
|
2140
|
-
*
|
|
2171
|
+
* Lookup346: pallet_timestamp::pallet::Call<T>
|
|
2141
2172
|
**/
|
|
2142
2173
|
PalletTimestampCall: {
|
|
2143
2174
|
_enum: {
|
|
@@ -2147,7 +2178,7 @@ exports.default = {
|
|
|
2147
2178
|
},
|
|
2148
2179
|
},
|
|
2149
2180
|
/**
|
|
2150
|
-
*
|
|
2181
|
+
* Lookup348: pallet_indices::pallet::Call<T>
|
|
2151
2182
|
**/
|
|
2152
2183
|
PalletIndicesCall: {
|
|
2153
2184
|
_enum: {
|
|
@@ -2178,13 +2209,13 @@ exports.default = {
|
|
|
2178
2209
|
},
|
|
2179
2210
|
},
|
|
2180
2211
|
/**
|
|
2181
|
-
*
|
|
2212
|
+
* Lookup350: pallet_indices::pallet::Error<T>
|
|
2182
2213
|
**/
|
|
2183
2214
|
PalletIndicesError: {
|
|
2184
2215
|
_enum: ['NotAssigned', 'NotOwner', 'InUse', 'NotTransfer', 'Permanent'],
|
|
2185
2216
|
},
|
|
2186
2217
|
/**
|
|
2187
|
-
*
|
|
2218
|
+
* Lookup352: pallet_balances::BalanceLock<Balance>
|
|
2188
2219
|
**/
|
|
2189
2220
|
PalletBalancesBalanceLock: {
|
|
2190
2221
|
id: '[u8;8]',
|
|
@@ -2192,13 +2223,13 @@ exports.default = {
|
|
|
2192
2223
|
reasons: 'PolymeshCommonUtilitiesBalancesReasons',
|
|
2193
2224
|
},
|
|
2194
2225
|
/**
|
|
2195
|
-
*
|
|
2226
|
+
* Lookup353: polymesh_common_utilities::traits::balances::Reasons
|
|
2196
2227
|
**/
|
|
2197
2228
|
PolymeshCommonUtilitiesBalancesReasons: {
|
|
2198
2229
|
_enum: ['Fee', 'Misc', 'All'],
|
|
2199
2230
|
},
|
|
2200
2231
|
/**
|
|
2201
|
-
*
|
|
2232
|
+
* Lookup354: pallet_balances::Call<T>
|
|
2202
2233
|
**/
|
|
2203
2234
|
PalletBalancesCall: {
|
|
2204
2235
|
_enum: {
|
|
@@ -2230,7 +2261,7 @@ exports.default = {
|
|
|
2230
2261
|
},
|
|
2231
2262
|
},
|
|
2232
2263
|
/**
|
|
2233
|
-
*
|
|
2264
|
+
* Lookup355: pallet_balances::Error<T>
|
|
2234
2265
|
**/
|
|
2235
2266
|
PalletBalancesError: {
|
|
2236
2267
|
_enum: [
|
|
@@ -2242,13 +2273,13 @@ exports.default = {
|
|
|
2242
2273
|
],
|
|
2243
2274
|
},
|
|
2244
2275
|
/**
|
|
2245
|
-
*
|
|
2276
|
+
* Lookup357: pallet_transaction_payment::Releases
|
|
2246
2277
|
**/
|
|
2247
2278
|
PalletTransactionPaymentReleases: {
|
|
2248
2279
|
_enum: ['V1Ancient', 'V2'],
|
|
2249
2280
|
},
|
|
2250
2281
|
/**
|
|
2251
|
-
*
|
|
2282
|
+
* Lookup359: sp_weights::WeightToFeeCoefficient<Balance>
|
|
2252
2283
|
**/
|
|
2253
2284
|
SpWeightsWeightToFeeCoefficient: {
|
|
2254
2285
|
coeffInteger: 'u128',
|
|
@@ -2257,27 +2288,27 @@ exports.default = {
|
|
|
2257
2288
|
degree: 'u8',
|
|
2258
2289
|
},
|
|
2259
2290
|
/**
|
|
2260
|
-
*
|
|
2291
|
+
* Lookup360: polymesh_primitives::identity::DidRecord<sp_core::crypto::AccountId32>
|
|
2261
2292
|
**/
|
|
2262
2293
|
PolymeshPrimitivesIdentityDidRecord: {
|
|
2263
2294
|
primaryKey: 'Option<AccountId32>',
|
|
2264
2295
|
},
|
|
2265
2296
|
/**
|
|
2266
|
-
*
|
|
2297
|
+
* Lookup362: pallet_identity::types::Claim1stKey
|
|
2267
2298
|
**/
|
|
2268
2299
|
PalletIdentityClaim1stKey: {
|
|
2269
2300
|
target: 'PolymeshPrimitivesIdentityId',
|
|
2270
2301
|
claimType: 'PolymeshPrimitivesIdentityClaimClaimType',
|
|
2271
2302
|
},
|
|
2272
2303
|
/**
|
|
2273
|
-
*
|
|
2304
|
+
* Lookup363: pallet_identity::types::Claim2ndKey
|
|
2274
2305
|
**/
|
|
2275
2306
|
PalletIdentityClaim2ndKey: {
|
|
2276
2307
|
issuer: 'PolymeshPrimitivesIdentityId',
|
|
2277
2308
|
scope: 'Option<PolymeshPrimitivesIdentityClaimScope>',
|
|
2278
2309
|
},
|
|
2279
2310
|
/**
|
|
2280
|
-
*
|
|
2311
|
+
* Lookup364: polymesh_primitives::secondary_key::KeyRecord<sp_core::crypto::AccountId32>
|
|
2281
2312
|
**/
|
|
2282
2313
|
PolymeshPrimitivesSecondaryKeyKeyRecord: {
|
|
2283
2314
|
_enum: {
|
|
@@ -2287,7 +2318,7 @@ exports.default = {
|
|
|
2287
2318
|
},
|
|
2288
2319
|
},
|
|
2289
2320
|
/**
|
|
2290
|
-
*
|
|
2321
|
+
* Lookup367: polymesh_primitives::authorization::Authorization<sp_core::crypto::AccountId32, Moment>
|
|
2291
2322
|
**/
|
|
2292
2323
|
PolymeshPrimitivesAuthorization: {
|
|
2293
2324
|
authorizationData: 'PolymeshPrimitivesAuthorizationAuthorizationData',
|
|
@@ -2297,7 +2328,7 @@ exports.default = {
|
|
|
2297
2328
|
count: 'u32',
|
|
2298
2329
|
},
|
|
2299
2330
|
/**
|
|
2300
|
-
*
|
|
2331
|
+
* Lookup370: pallet_identity::Call<T>
|
|
2301
2332
|
**/
|
|
2302
2333
|
PalletIdentityCall: {
|
|
2303
2334
|
_enum: {
|
|
@@ -2389,21 +2420,21 @@ exports.default = {
|
|
|
2389
2420
|
},
|
|
2390
2421
|
},
|
|
2391
2422
|
/**
|
|
2392
|
-
*
|
|
2423
|
+
* Lookup372: polymesh_common_utilities::traits::identity::SecondaryKeyWithAuth<sp_core::crypto::AccountId32>
|
|
2393
2424
|
**/
|
|
2394
2425
|
PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth: {
|
|
2395
2426
|
secondaryKey: 'PolymeshPrimitivesSecondaryKey',
|
|
2396
2427
|
authSignature: 'H512',
|
|
2397
2428
|
},
|
|
2398
2429
|
/**
|
|
2399
|
-
*
|
|
2430
|
+
* Lookup375: polymesh_common_utilities::traits::identity::CreateChildIdentityWithAuth<sp_core::crypto::AccountId32>
|
|
2400
2431
|
**/
|
|
2401
2432
|
PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth: {
|
|
2402
2433
|
key: 'AccountId32',
|
|
2403
2434
|
authSignature: 'H512',
|
|
2404
2435
|
},
|
|
2405
2436
|
/**
|
|
2406
|
-
*
|
|
2437
|
+
* Lookup376: pallet_identity::Error<T>
|
|
2407
2438
|
**/
|
|
2408
2439
|
PalletIdentityError: {
|
|
2409
2440
|
_enum: [
|
|
@@ -2443,7 +2474,7 @@ exports.default = {
|
|
|
2443
2474
|
],
|
|
2444
2475
|
},
|
|
2445
2476
|
/**
|
|
2446
|
-
*
|
|
2477
|
+
* Lookup378: polymesh_common_utilities::traits::group::InactiveMember<Moment>
|
|
2447
2478
|
**/
|
|
2448
2479
|
PolymeshCommonUtilitiesGroupInactiveMember: {
|
|
2449
2480
|
id: 'PolymeshPrimitivesIdentityId',
|
|
@@ -2451,7 +2482,7 @@ exports.default = {
|
|
|
2451
2482
|
expiry: 'Option<u64>',
|
|
2452
2483
|
},
|
|
2453
2484
|
/**
|
|
2454
|
-
*
|
|
2485
|
+
* Lookup379: pallet_group::Call<T, I>
|
|
2455
2486
|
**/
|
|
2456
2487
|
PalletGroupCall: {
|
|
2457
2488
|
_enum: {
|
|
@@ -2480,7 +2511,7 @@ exports.default = {
|
|
|
2480
2511
|
},
|
|
2481
2512
|
},
|
|
2482
2513
|
/**
|
|
2483
|
-
*
|
|
2514
|
+
* Lookup380: pallet_group::Error<T, I>
|
|
2484
2515
|
**/
|
|
2485
2516
|
PalletGroupError: {
|
|
2486
2517
|
_enum: [
|
|
@@ -2494,7 +2525,7 @@ exports.default = {
|
|
|
2494
2525
|
],
|
|
2495
2526
|
},
|
|
2496
2527
|
/**
|
|
2497
|
-
*
|
|
2528
|
+
* Lookup382: pallet_committee::Call<T, I>
|
|
2498
2529
|
**/
|
|
2499
2530
|
PalletCommitteeCall: {
|
|
2500
2531
|
_enum: {
|
|
@@ -2520,7 +2551,7 @@ exports.default = {
|
|
|
2520
2551
|
},
|
|
2521
2552
|
},
|
|
2522
2553
|
/**
|
|
2523
|
-
*
|
|
2554
|
+
* Lookup388: pallet_multisig::Call<T>
|
|
2524
2555
|
**/
|
|
2525
2556
|
PalletMultisigCall: {
|
|
2526
2557
|
_enum: {
|
|
@@ -2614,7 +2645,7 @@ exports.default = {
|
|
|
2614
2645
|
},
|
|
2615
2646
|
},
|
|
2616
2647
|
/**
|
|
2617
|
-
*
|
|
2648
|
+
* Lookup389: pallet_bridge::Call<T>
|
|
2618
2649
|
**/
|
|
2619
2650
|
PalletBridgeCall: {
|
|
2620
2651
|
_enum: {
|
|
@@ -2669,7 +2700,7 @@ exports.default = {
|
|
|
2669
2700
|
},
|
|
2670
2701
|
},
|
|
2671
2702
|
/**
|
|
2672
|
-
*
|
|
2703
|
+
* Lookup393: pallet_staking::Call<T>
|
|
2673
2704
|
**/
|
|
2674
2705
|
PalletStakingCall: {
|
|
2675
2706
|
_enum: {
|
|
@@ -2795,7 +2826,7 @@ exports.default = {
|
|
|
2795
2826
|
},
|
|
2796
2827
|
},
|
|
2797
2828
|
/**
|
|
2798
|
-
*
|
|
2829
|
+
* Lookup394: pallet_staking::RewardDestination<sp_core::crypto::AccountId32>
|
|
2799
2830
|
**/
|
|
2800
2831
|
PalletStakingRewardDestination: {
|
|
2801
2832
|
_enum: {
|
|
@@ -2806,14 +2837,14 @@ exports.default = {
|
|
|
2806
2837
|
},
|
|
2807
2838
|
},
|
|
2808
2839
|
/**
|
|
2809
|
-
*
|
|
2840
|
+
* Lookup395: pallet_staking::ValidatorPrefs
|
|
2810
2841
|
**/
|
|
2811
2842
|
PalletStakingValidatorPrefs: {
|
|
2812
2843
|
commission: 'Compact<Perbill>',
|
|
2813
2844
|
blocked: 'bool',
|
|
2814
2845
|
},
|
|
2815
2846
|
/**
|
|
2816
|
-
*
|
|
2847
|
+
* Lookup401: pallet_staking::CompactAssignments
|
|
2817
2848
|
**/
|
|
2818
2849
|
PalletStakingCompactAssignments: {
|
|
2819
2850
|
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
|
@@ -2834,7 +2865,7 @@ exports.default = {
|
|
|
2834
2865
|
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>',
|
|
2835
2866
|
},
|
|
2836
2867
|
/**
|
|
2837
|
-
*
|
|
2868
|
+
* Lookup452: sp_npos_elections::ElectionScore
|
|
2838
2869
|
**/
|
|
2839
2870
|
SpNposElectionsElectionScore: {
|
|
2840
2871
|
minimalStake: 'u128',
|
|
@@ -2842,14 +2873,14 @@ exports.default = {
|
|
|
2842
2873
|
sumStakeSquared: 'u128',
|
|
2843
2874
|
},
|
|
2844
2875
|
/**
|
|
2845
|
-
*
|
|
2876
|
+
* Lookup453: pallet_staking::ElectionSize
|
|
2846
2877
|
**/
|
|
2847
2878
|
PalletStakingElectionSize: {
|
|
2848
2879
|
validators: 'Compact<u16>',
|
|
2849
2880
|
nominators: 'Compact<u32>',
|
|
2850
2881
|
},
|
|
2851
2882
|
/**
|
|
2852
|
-
*
|
|
2883
|
+
* Lookup454: pallet_session::pallet::Call<T>
|
|
2853
2884
|
**/
|
|
2854
2885
|
PalletSessionCall: {
|
|
2855
2886
|
_enum: {
|
|
@@ -2864,7 +2895,7 @@ exports.default = {
|
|
|
2864
2895
|
},
|
|
2865
2896
|
},
|
|
2866
2897
|
/**
|
|
2867
|
-
*
|
|
2898
|
+
* Lookup455: polymesh_runtime_develop::runtime::SessionKeys
|
|
2868
2899
|
**/
|
|
2869
2900
|
PolymeshRuntimeDevelopRuntimeSessionKeys: {
|
|
2870
2901
|
grandpa: 'SpConsensusGrandpaAppPublic',
|
|
@@ -2873,11 +2904,11 @@ exports.default = {
|
|
|
2873
2904
|
authorityDiscovery: 'SpAuthorityDiscoveryAppPublic',
|
|
2874
2905
|
},
|
|
2875
2906
|
/**
|
|
2876
|
-
*
|
|
2907
|
+
* Lookup456: sp_authority_discovery::app::Public
|
|
2877
2908
|
**/
|
|
2878
2909
|
SpAuthorityDiscoveryAppPublic: 'SpCoreSr25519Public',
|
|
2879
2910
|
/**
|
|
2880
|
-
*
|
|
2911
|
+
* Lookup457: pallet_grandpa::pallet::Call<T>
|
|
2881
2912
|
**/
|
|
2882
2913
|
PalletGrandpaCall: {
|
|
2883
2914
|
_enum: {
|
|
@@ -2896,14 +2927,14 @@ exports.default = {
|
|
|
2896
2927
|
},
|
|
2897
2928
|
},
|
|
2898
2929
|
/**
|
|
2899
|
-
*
|
|
2930
|
+
* Lookup458: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2900
2931
|
**/
|
|
2901
2932
|
SpConsensusGrandpaEquivocationProof: {
|
|
2902
2933
|
setId: 'u64',
|
|
2903
2934
|
equivocation: 'SpConsensusGrandpaEquivocation',
|
|
2904
2935
|
},
|
|
2905
2936
|
/**
|
|
2906
|
-
*
|
|
2937
|
+
* Lookup459: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2907
2938
|
**/
|
|
2908
2939
|
SpConsensusGrandpaEquivocation: {
|
|
2909
2940
|
_enum: {
|
|
@@ -2912,7 +2943,7 @@ exports.default = {
|
|
|
2912
2943
|
},
|
|
2913
2944
|
},
|
|
2914
2945
|
/**
|
|
2915
|
-
*
|
|
2946
|
+
* Lookup460: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2916
2947
|
**/
|
|
2917
2948
|
FinalityGrandpaEquivocationPrevote: {
|
|
2918
2949
|
roundNumber: 'u64',
|
|
@@ -2921,22 +2952,22 @@ exports.default = {
|
|
|
2921
2952
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)',
|
|
2922
2953
|
},
|
|
2923
2954
|
/**
|
|
2924
|
-
*
|
|
2955
|
+
* Lookup461: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2925
2956
|
**/
|
|
2926
2957
|
FinalityGrandpaPrevote: {
|
|
2927
2958
|
targetHash: 'H256',
|
|
2928
2959
|
targetNumber: 'u32',
|
|
2929
2960
|
},
|
|
2930
2961
|
/**
|
|
2931
|
-
*
|
|
2962
|
+
* Lookup462: sp_consensus_grandpa::app::Signature
|
|
2932
2963
|
**/
|
|
2933
2964
|
SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
|
|
2934
2965
|
/**
|
|
2935
|
-
*
|
|
2966
|
+
* Lookup463: sp_core::ed25519::Signature
|
|
2936
2967
|
**/
|
|
2937
2968
|
SpCoreEd25519Signature: '[u8;64]',
|
|
2938
2969
|
/**
|
|
2939
|
-
*
|
|
2970
|
+
* Lookup465: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2940
2971
|
**/
|
|
2941
2972
|
FinalityGrandpaEquivocationPrecommit: {
|
|
2942
2973
|
roundNumber: 'u64',
|
|
@@ -2945,14 +2976,14 @@ exports.default = {
|
|
|
2945
2976
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)',
|
|
2946
2977
|
},
|
|
2947
2978
|
/**
|
|
2948
|
-
*
|
|
2979
|
+
* Lookup466: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2949
2980
|
**/
|
|
2950
2981
|
FinalityGrandpaPrecommit: {
|
|
2951
2982
|
targetHash: 'H256',
|
|
2952
2983
|
targetNumber: 'u32',
|
|
2953
2984
|
},
|
|
2954
2985
|
/**
|
|
2955
|
-
*
|
|
2986
|
+
* Lookup468: pallet_im_online::pallet::Call<T>
|
|
2956
2987
|
**/
|
|
2957
2988
|
PalletImOnlineCall: {
|
|
2958
2989
|
_enum: {
|
|
@@ -2963,7 +2994,7 @@ exports.default = {
|
|
|
2963
2994
|
},
|
|
2964
2995
|
},
|
|
2965
2996
|
/**
|
|
2966
|
-
*
|
|
2997
|
+
* Lookup469: pallet_im_online::Heartbeat<BlockNumber>
|
|
2967
2998
|
**/
|
|
2968
2999
|
PalletImOnlineHeartbeat: {
|
|
2969
3000
|
blockNumber: 'u32',
|
|
@@ -2973,22 +3004,22 @@ exports.default = {
|
|
|
2973
3004
|
validatorsLen: 'u32',
|
|
2974
3005
|
},
|
|
2975
3006
|
/**
|
|
2976
|
-
*
|
|
3007
|
+
* Lookup470: sp_core::offchain::OpaqueNetworkState
|
|
2977
3008
|
**/
|
|
2978
3009
|
SpCoreOffchainOpaqueNetworkState: {
|
|
2979
3010
|
peerId: 'OpaquePeerId',
|
|
2980
3011
|
externalAddresses: 'Vec<OpaqueMultiaddr>',
|
|
2981
3012
|
},
|
|
2982
3013
|
/**
|
|
2983
|
-
*
|
|
3014
|
+
* Lookup474: pallet_im_online::sr25519::app_sr25519::Signature
|
|
2984
3015
|
**/
|
|
2985
3016
|
PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
|
|
2986
3017
|
/**
|
|
2987
|
-
*
|
|
3018
|
+
* Lookup475: sp_core::sr25519::Signature
|
|
2988
3019
|
**/
|
|
2989
3020
|
SpCoreSr25519Signature: '[u8;64]',
|
|
2990
3021
|
/**
|
|
2991
|
-
*
|
|
3022
|
+
* Lookup476: pallet_sudo::Call<T>
|
|
2992
3023
|
**/
|
|
2993
3024
|
PalletSudoCall: {
|
|
2994
3025
|
_enum: {
|
|
@@ -3012,7 +3043,7 @@ exports.default = {
|
|
|
3012
3043
|
},
|
|
3013
3044
|
},
|
|
3014
3045
|
/**
|
|
3015
|
-
*
|
|
3046
|
+
* Lookup477: pallet_asset::Call<T>
|
|
3016
3047
|
**/
|
|
3017
3048
|
PalletAssetCall: {
|
|
3018
3049
|
_enum: {
|
|
@@ -3146,7 +3177,7 @@ exports.default = {
|
|
|
3146
3177
|
},
|
|
3147
3178
|
},
|
|
3148
3179
|
/**
|
|
3149
|
-
*
|
|
3180
|
+
* Lookup479: pallet_corporate_actions::distribution::Call<T>
|
|
3150
3181
|
**/
|
|
3151
3182
|
PalletCorporateActionsDistributionCall: {
|
|
3152
3183
|
_enum: {
|
|
@@ -3175,7 +3206,7 @@ exports.default = {
|
|
|
3175
3206
|
},
|
|
3176
3207
|
},
|
|
3177
3208
|
/**
|
|
3178
|
-
*
|
|
3209
|
+
* Lookup481: pallet_asset::checkpoint::Call<T>
|
|
3179
3210
|
**/
|
|
3180
3211
|
PalletAssetCheckpointCall: {
|
|
3181
3212
|
_enum: {
|
|
@@ -3196,7 +3227,7 @@ exports.default = {
|
|
|
3196
3227
|
},
|
|
3197
3228
|
},
|
|
3198
3229
|
/**
|
|
3199
|
-
*
|
|
3230
|
+
* Lookup482: pallet_compliance_manager::Call<T>
|
|
3200
3231
|
**/
|
|
3201
3232
|
PalletComplianceManagerCall: {
|
|
3202
3233
|
_enum: {
|
|
@@ -3237,7 +3268,7 @@ exports.default = {
|
|
|
3237
3268
|
},
|
|
3238
3269
|
},
|
|
3239
3270
|
/**
|
|
3240
|
-
*
|
|
3271
|
+
* Lookup483: pallet_corporate_actions::Call<T>
|
|
3241
3272
|
**/
|
|
3242
3273
|
PalletCorporateActionsCall: {
|
|
3243
3274
|
_enum: {
|
|
@@ -3290,7 +3321,7 @@ exports.default = {
|
|
|
3290
3321
|
},
|
|
3291
3322
|
},
|
|
3292
3323
|
/**
|
|
3293
|
-
*
|
|
3324
|
+
* Lookup485: pallet_corporate_actions::RecordDateSpec
|
|
3294
3325
|
**/
|
|
3295
3326
|
PalletCorporateActionsRecordDateSpec: {
|
|
3296
3327
|
_enum: {
|
|
@@ -3300,7 +3331,7 @@ exports.default = {
|
|
|
3300
3331
|
},
|
|
3301
3332
|
},
|
|
3302
3333
|
/**
|
|
3303
|
-
*
|
|
3334
|
+
* Lookup488: pallet_corporate_actions::InitiateCorporateActionArgs
|
|
3304
3335
|
**/
|
|
3305
3336
|
PalletCorporateActionsInitiateCorporateActionArgs: {
|
|
3306
3337
|
ticker: 'PolymeshPrimitivesTicker',
|
|
@@ -3313,7 +3344,7 @@ exports.default = {
|
|
|
3313
3344
|
withholdingTax: 'Option<Vec<(PolymeshPrimitivesIdentityId,Permill)>>',
|
|
3314
3345
|
},
|
|
3315
3346
|
/**
|
|
3316
|
-
*
|
|
3347
|
+
* Lookup489: pallet_corporate_actions::ballot::Call<T>
|
|
3317
3348
|
**/
|
|
3318
3349
|
PalletCorporateActionsBallotCall: {
|
|
3319
3350
|
_enum: {
|
|
@@ -3345,7 +3376,7 @@ exports.default = {
|
|
|
3345
3376
|
},
|
|
3346
3377
|
},
|
|
3347
3378
|
/**
|
|
3348
|
-
*
|
|
3379
|
+
* Lookup490: pallet_pips::Call<T>
|
|
3349
3380
|
**/
|
|
3350
3381
|
PalletPipsCall: {
|
|
3351
3382
|
_enum: {
|
|
@@ -3406,13 +3437,13 @@ exports.default = {
|
|
|
3406
3437
|
},
|
|
3407
3438
|
},
|
|
3408
3439
|
/**
|
|
3409
|
-
*
|
|
3440
|
+
* Lookup493: pallet_pips::SnapshotResult
|
|
3410
3441
|
**/
|
|
3411
3442
|
PalletPipsSnapshotResult: {
|
|
3412
3443
|
_enum: ['Approve', 'Reject', 'Skip'],
|
|
3413
3444
|
},
|
|
3414
3445
|
/**
|
|
3415
|
-
*
|
|
3446
|
+
* Lookup494: pallet_portfolio::Call<T>
|
|
3416
3447
|
**/
|
|
3417
3448
|
PalletPortfolioCall: {
|
|
3418
3449
|
_enum: {
|
|
@@ -3445,17 +3476,27 @@ exports.default = {
|
|
|
3445
3476
|
ticker: 'PolymeshPrimitivesTicker',
|
|
3446
3477
|
portfolioId: 'PolymeshPrimitivesIdentityIdPortfolioId',
|
|
3447
3478
|
},
|
|
3479
|
+
allow_identity_to_create_portfolios: {
|
|
3480
|
+
trustedIdentity: 'PolymeshPrimitivesIdentityId',
|
|
3481
|
+
},
|
|
3482
|
+
revoke_create_portfolios_permission: {
|
|
3483
|
+
identity: 'PolymeshPrimitivesIdentityId',
|
|
3484
|
+
},
|
|
3485
|
+
create_custody_portfolio: {
|
|
3486
|
+
portfolioOwnerId: 'PolymeshPrimitivesIdentityId',
|
|
3487
|
+
portfolioName: 'Bytes',
|
|
3488
|
+
},
|
|
3448
3489
|
},
|
|
3449
3490
|
},
|
|
3450
3491
|
/**
|
|
3451
|
-
*
|
|
3492
|
+
* Lookup496: polymesh_primitives::portfolio::Fund
|
|
3452
3493
|
**/
|
|
3453
3494
|
PolymeshPrimitivesPortfolioFund: {
|
|
3454
3495
|
description: 'PolymeshPrimitivesPortfolioFundDescription',
|
|
3455
3496
|
memo: 'Option<PolymeshPrimitivesMemo>',
|
|
3456
3497
|
},
|
|
3457
3498
|
/**
|
|
3458
|
-
*
|
|
3499
|
+
* Lookup497: pallet_protocol_fee::Call<T>
|
|
3459
3500
|
**/
|
|
3460
3501
|
PalletProtocolFeeCall: {
|
|
3461
3502
|
_enum: {
|
|
@@ -3469,7 +3510,7 @@ exports.default = {
|
|
|
3469
3510
|
},
|
|
3470
3511
|
},
|
|
3471
3512
|
/**
|
|
3472
|
-
*
|
|
3513
|
+
* Lookup498: polymesh_common_utilities::protocol_fee::ProtocolOp
|
|
3473
3514
|
**/
|
|
3474
3515
|
PolymeshCommonUtilitiesProtocolFeeProtocolOp: {
|
|
3475
3516
|
_enum: [
|
|
@@ -3492,7 +3533,7 @@ exports.default = {
|
|
|
3492
3533
|
],
|
|
3493
3534
|
},
|
|
3494
3535
|
/**
|
|
3495
|
-
*
|
|
3536
|
+
* Lookup499: pallet_scheduler::pallet::Call<T>
|
|
3496
3537
|
**/
|
|
3497
3538
|
PalletSchedulerCall: {
|
|
3498
3539
|
_enum: {
|
|
@@ -3532,7 +3573,7 @@ exports.default = {
|
|
|
3532
3573
|
},
|
|
3533
3574
|
},
|
|
3534
3575
|
/**
|
|
3535
|
-
*
|
|
3576
|
+
* Lookup501: pallet_settlement::Call<T>
|
|
3536
3577
|
**/
|
|
3537
3578
|
PalletSettlementCall: {
|
|
3538
3579
|
_enum: {
|
|
@@ -3636,7 +3677,7 @@ exports.default = {
|
|
|
3636
3677
|
},
|
|
3637
3678
|
},
|
|
3638
3679
|
/**
|
|
3639
|
-
*
|
|
3680
|
+
* Lookup503: polymesh_primitives::settlement::ReceiptDetails<sp_core::crypto::AccountId32, sp_runtime::MultiSignature>
|
|
3640
3681
|
**/
|
|
3641
3682
|
PolymeshPrimitivesSettlementReceiptDetails: {
|
|
3642
3683
|
uid: 'u64',
|
|
@@ -3647,7 +3688,7 @@ exports.default = {
|
|
|
3647
3688
|
metadata: 'Option<PolymeshPrimitivesSettlementReceiptMetadata>',
|
|
3648
3689
|
},
|
|
3649
3690
|
/**
|
|
3650
|
-
*
|
|
3691
|
+
* Lookup504: sp_runtime::MultiSignature
|
|
3651
3692
|
**/
|
|
3652
3693
|
SpRuntimeMultiSignature: {
|
|
3653
3694
|
_enum: {
|
|
@@ -3657,11 +3698,11 @@ exports.default = {
|
|
|
3657
3698
|
},
|
|
3658
3699
|
},
|
|
3659
3700
|
/**
|
|
3660
|
-
*
|
|
3701
|
+
* Lookup505: sp_core::ecdsa::Signature
|
|
3661
3702
|
**/
|
|
3662
3703
|
SpCoreEcdsaSignature: '[u8;65]',
|
|
3663
3704
|
/**
|
|
3664
|
-
*
|
|
3705
|
+
* Lookup508: polymesh_primitives::settlement::AffirmationCount
|
|
3665
3706
|
**/
|
|
3666
3707
|
PolymeshPrimitivesSettlementAffirmationCount: {
|
|
3667
3708
|
senderAssetCount: 'PolymeshPrimitivesSettlementAssetCount',
|
|
@@ -3669,7 +3710,7 @@ exports.default = {
|
|
|
3669
3710
|
offchainCount: 'u32',
|
|
3670
3711
|
},
|
|
3671
3712
|
/**
|
|
3672
|
-
*
|
|
3713
|
+
* Lookup509: polymesh_primitives::settlement::AssetCount
|
|
3673
3714
|
**/
|
|
3674
3715
|
PolymeshPrimitivesSettlementAssetCount: {
|
|
3675
3716
|
fungible: 'u32',
|
|
@@ -3677,7 +3718,7 @@ exports.default = {
|
|
|
3677
3718
|
offChain: 'u32',
|
|
3678
3719
|
},
|
|
3679
3720
|
/**
|
|
3680
|
-
*
|
|
3721
|
+
* Lookup511: pallet_statistics::Call<T>
|
|
3681
3722
|
**/
|
|
3682
3723
|
PalletStatisticsCall: {
|
|
3683
3724
|
_enum: {
|
|
@@ -3702,7 +3743,7 @@ exports.default = {
|
|
|
3702
3743
|
},
|
|
3703
3744
|
},
|
|
3704
3745
|
/**
|
|
3705
|
-
*
|
|
3746
|
+
* Lookup516: pallet_sto::Call<T>
|
|
3706
3747
|
**/
|
|
3707
3748
|
PalletStoCall: {
|
|
3708
3749
|
_enum: {
|
|
@@ -3748,14 +3789,14 @@ exports.default = {
|
|
|
3748
3789
|
},
|
|
3749
3790
|
},
|
|
3750
3791
|
/**
|
|
3751
|
-
*
|
|
3792
|
+
* Lookup518: pallet_sto::PriceTier
|
|
3752
3793
|
**/
|
|
3753
3794
|
PalletStoPriceTier: {
|
|
3754
3795
|
total: 'u128',
|
|
3755
3796
|
price: 'u128',
|
|
3756
3797
|
},
|
|
3757
3798
|
/**
|
|
3758
|
-
*
|
|
3799
|
+
* Lookup520: pallet_treasury::Call<T>
|
|
3759
3800
|
**/
|
|
3760
3801
|
PalletTreasuryCall: {
|
|
3761
3802
|
_enum: {
|
|
@@ -3768,14 +3809,14 @@ exports.default = {
|
|
|
3768
3809
|
},
|
|
3769
3810
|
},
|
|
3770
3811
|
/**
|
|
3771
|
-
*
|
|
3812
|
+
* Lookup522: polymesh_primitives::Beneficiary<Balance>
|
|
3772
3813
|
**/
|
|
3773
3814
|
PolymeshPrimitivesBeneficiary: {
|
|
3774
3815
|
id: 'PolymeshPrimitivesIdentityId',
|
|
3775
3816
|
amount: 'u128',
|
|
3776
3817
|
},
|
|
3777
3818
|
/**
|
|
3778
|
-
*
|
|
3819
|
+
* Lookup523: pallet_utility::pallet::Call<T>
|
|
3779
3820
|
**/
|
|
3780
3821
|
PalletUtilityCall: {
|
|
3781
3822
|
_enum: {
|
|
@@ -3813,14 +3854,14 @@ exports.default = {
|
|
|
3813
3854
|
},
|
|
3814
3855
|
},
|
|
3815
3856
|
/**
|
|
3816
|
-
*
|
|
3857
|
+
* Lookup525: pallet_utility::UniqueCall<polymesh_runtime_develop::runtime::RuntimeCall>
|
|
3817
3858
|
**/
|
|
3818
3859
|
PalletUtilityUniqueCall: {
|
|
3819
3860
|
nonce: 'u64',
|
|
3820
3861
|
call: 'Call',
|
|
3821
3862
|
},
|
|
3822
3863
|
/**
|
|
3823
|
-
*
|
|
3864
|
+
* Lookup526: polymesh_runtime_develop::runtime::OriginCaller
|
|
3824
3865
|
**/
|
|
3825
3866
|
PolymeshRuntimeDevelopRuntimeOriginCaller: {
|
|
3826
3867
|
_enum: {
|
|
@@ -3841,7 +3882,7 @@ exports.default = {
|
|
|
3841
3882
|
},
|
|
3842
3883
|
},
|
|
3843
3884
|
/**
|
|
3844
|
-
*
|
|
3885
|
+
* Lookup527: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
|
3845
3886
|
**/
|
|
3846
3887
|
FrameSupportDispatchRawOrigin: {
|
|
3847
3888
|
_enum: {
|
|
@@ -3851,33 +3892,33 @@ exports.default = {
|
|
|
3851
3892
|
},
|
|
3852
3893
|
},
|
|
3853
3894
|
/**
|
|
3854
|
-
*
|
|
3895
|
+
* Lookup528: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance1>
|
|
3855
3896
|
**/
|
|
3856
3897
|
PalletCommitteeRawOriginInstance1: {
|
|
3857
3898
|
_enum: ['Endorsed'],
|
|
3858
3899
|
},
|
|
3859
3900
|
/**
|
|
3860
|
-
*
|
|
3901
|
+
* Lookup529: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance3>
|
|
3861
3902
|
**/
|
|
3862
3903
|
PalletCommitteeRawOriginInstance3: {
|
|
3863
3904
|
_enum: ['Endorsed'],
|
|
3864
3905
|
},
|
|
3865
3906
|
/**
|
|
3866
|
-
*
|
|
3907
|
+
* Lookup530: pallet_committee::RawOrigin<sp_core::crypto::AccountId32, pallet_committee::Instance4>
|
|
3867
3908
|
**/
|
|
3868
3909
|
PalletCommitteeRawOriginInstance4: {
|
|
3869
3910
|
_enum: ['Endorsed'],
|
|
3870
3911
|
},
|
|
3871
3912
|
/**
|
|
3872
|
-
*
|
|
3913
|
+
* Lookup531: sp_core::Void
|
|
3873
3914
|
**/
|
|
3874
3915
|
SpCoreVoid: 'Null',
|
|
3875
3916
|
/**
|
|
3876
|
-
*
|
|
3917
|
+
* Lookup532: pallet_base::Call<T>
|
|
3877
3918
|
**/
|
|
3878
3919
|
PalletBaseCall: 'Null',
|
|
3879
3920
|
/**
|
|
3880
|
-
*
|
|
3921
|
+
* Lookup533: pallet_external_agents::Call<T>
|
|
3881
3922
|
**/
|
|
3882
3923
|
PalletExternalAgentsCall: {
|
|
3883
3924
|
_enum: {
|
|
@@ -3919,7 +3960,7 @@ exports.default = {
|
|
|
3919
3960
|
},
|
|
3920
3961
|
},
|
|
3921
3962
|
/**
|
|
3922
|
-
*
|
|
3963
|
+
* Lookup534: pallet_relayer::Call<T>
|
|
3923
3964
|
**/
|
|
3924
3965
|
PalletRelayerCall: {
|
|
3925
3966
|
_enum: {
|
|
@@ -3949,7 +3990,7 @@ exports.default = {
|
|
|
3949
3990
|
},
|
|
3950
3991
|
},
|
|
3951
3992
|
/**
|
|
3952
|
-
*
|
|
3993
|
+
* Lookup535: pallet_contracts::pallet::Call<T>
|
|
3953
3994
|
**/
|
|
3954
3995
|
PalletContractsCall: {
|
|
3955
3996
|
_enum: {
|
|
@@ -4014,13 +4055,13 @@ exports.default = {
|
|
|
4014
4055
|
},
|
|
4015
4056
|
},
|
|
4016
4057
|
/**
|
|
4017
|
-
*
|
|
4058
|
+
* Lookup539: pallet_contracts::wasm::Determinism
|
|
4018
4059
|
**/
|
|
4019
4060
|
PalletContractsWasmDeterminism: {
|
|
4020
4061
|
_enum: ['Deterministic', 'AllowIndeterminism'],
|
|
4021
4062
|
},
|
|
4022
4063
|
/**
|
|
4023
|
-
*
|
|
4064
|
+
* Lookup540: polymesh_contracts::Call<T>
|
|
4024
4065
|
**/
|
|
4025
4066
|
PolymeshContractsCall: {
|
|
4026
4067
|
_enum: {
|
|
@@ -4045,14 +4086,46 @@ exports.default = {
|
|
|
4045
4086
|
update_call_runtime_whitelist: {
|
|
4046
4087
|
updates: 'Vec<(PolymeshContractsChainExtensionExtrinsicId,bool)>',
|
|
4047
4088
|
},
|
|
4089
|
+
instantiate_with_code_as_primary_key: {
|
|
4090
|
+
endowment: 'u128',
|
|
4091
|
+
gasLimit: 'SpWeightsWeightV2Weight',
|
|
4092
|
+
storageDepositLimit: 'Option<u128>',
|
|
4093
|
+
code: 'Bytes',
|
|
4094
|
+
data: 'Bytes',
|
|
4095
|
+
salt: 'Bytes',
|
|
4096
|
+
},
|
|
4097
|
+
instantiate_with_hash_as_primary_key: {
|
|
4098
|
+
endowment: 'u128',
|
|
4099
|
+
gasLimit: 'SpWeightsWeightV2Weight',
|
|
4100
|
+
storageDepositLimit: 'Option<u128>',
|
|
4101
|
+
codeHash: 'H256',
|
|
4102
|
+
data: 'Bytes',
|
|
4103
|
+
salt: 'Bytes',
|
|
4104
|
+
},
|
|
4105
|
+
upgrade_api: {
|
|
4106
|
+
api: 'PolymeshContractsApi',
|
|
4107
|
+
nextUpgrade: 'PolymeshContractsNextUpgrade',
|
|
4108
|
+
},
|
|
4048
4109
|
},
|
|
4049
4110
|
},
|
|
4050
4111
|
/**
|
|
4051
|
-
*
|
|
4112
|
+
* Lookup543: polymesh_contracts::NextUpgrade<T>
|
|
4052
4113
|
**/
|
|
4053
|
-
|
|
4114
|
+
PolymeshContractsNextUpgrade: {
|
|
4115
|
+
chainVersion: 'PolymeshContractsChainVersion',
|
|
4116
|
+
apiHash: 'PolymeshContractsApiCodeHash',
|
|
4117
|
+
},
|
|
4118
|
+
/**
|
|
4119
|
+
* Lookup544: polymesh_contracts::ApiCodeHash<T>
|
|
4120
|
+
**/
|
|
4121
|
+
PolymeshContractsApiCodeHash: {
|
|
4122
|
+
_alias: {
|
|
4123
|
+
hash_: 'hash',
|
|
4124
|
+
},
|
|
4125
|
+
hash_: 'H256',
|
|
4126
|
+
},
|
|
4054
4127
|
/**
|
|
4055
|
-
*
|
|
4128
|
+
* Lookup545: pallet_preimage::pallet::Call<T>
|
|
4056
4129
|
**/
|
|
4057
4130
|
PalletPreimageCall: {
|
|
4058
4131
|
_enum: {
|
|
@@ -4080,7 +4153,7 @@ exports.default = {
|
|
|
4080
4153
|
},
|
|
4081
4154
|
},
|
|
4082
4155
|
/**
|
|
4083
|
-
*
|
|
4156
|
+
* Lookup546: pallet_nft::Call<T>
|
|
4084
4157
|
**/
|
|
4085
4158
|
PalletNftCall: {
|
|
4086
4159
|
_enum: {
|
|
@@ -4099,21 +4172,27 @@ exports.default = {
|
|
|
4099
4172
|
nftId: 'u64',
|
|
4100
4173
|
portfolioKind: 'PolymeshPrimitivesIdentityIdPortfolioKind',
|
|
4101
4174
|
},
|
|
4175
|
+
controller_transfer: {
|
|
4176
|
+
ticker: 'PolymeshPrimitivesTicker',
|
|
4177
|
+
nfts: 'PolymeshPrimitivesNftNfTs',
|
|
4178
|
+
sourcePortfolio: 'PolymeshPrimitivesIdentityIdPortfolioId',
|
|
4179
|
+
callersPortfolioKind: 'PolymeshPrimitivesIdentityIdPortfolioKind',
|
|
4180
|
+
},
|
|
4102
4181
|
},
|
|
4103
4182
|
},
|
|
4104
4183
|
/**
|
|
4105
|
-
*
|
|
4184
|
+
* Lookup548: polymesh_primitives::nft::NFTCollectionKeys
|
|
4106
4185
|
**/
|
|
4107
4186
|
PolymeshPrimitivesNftNftCollectionKeys: 'Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey>',
|
|
4108
4187
|
/**
|
|
4109
|
-
*
|
|
4188
|
+
* Lookup551: polymesh_primitives::nft::NFTMetadataAttribute
|
|
4110
4189
|
**/
|
|
4111
4190
|
PolymeshPrimitivesNftNftMetadataAttribute: {
|
|
4112
4191
|
key: 'PolymeshPrimitivesAssetMetadataAssetMetadataKey',
|
|
4113
4192
|
value: 'Bytes',
|
|
4114
4193
|
},
|
|
4115
4194
|
/**
|
|
4116
|
-
*
|
|
4195
|
+
* Lookup552: pallet_test_utils::Call<T>
|
|
4117
4196
|
**/
|
|
4118
4197
|
PalletTestUtilsCall: {
|
|
4119
4198
|
_enum: {
|
|
@@ -4130,7 +4209,7 @@ exports.default = {
|
|
|
4130
4209
|
},
|
|
4131
4210
|
},
|
|
4132
4211
|
/**
|
|
4133
|
-
*
|
|
4212
|
+
* Lookup553: pallet_committee::PolymeshVotes<BlockNumber>
|
|
4134
4213
|
**/
|
|
4135
4214
|
PalletCommitteePolymeshVotes: {
|
|
4136
4215
|
index: 'u32',
|
|
@@ -4139,7 +4218,7 @@ exports.default = {
|
|
|
4139
4218
|
expiry: 'PolymeshCommonUtilitiesMaybeBlock',
|
|
4140
4219
|
},
|
|
4141
4220
|
/**
|
|
4142
|
-
*
|
|
4221
|
+
* Lookup555: pallet_committee::Error<T, I>
|
|
4143
4222
|
**/
|
|
4144
4223
|
PalletCommitteeError: {
|
|
4145
4224
|
_enum: [
|
|
@@ -4155,7 +4234,7 @@ exports.default = {
|
|
|
4155
4234
|
],
|
|
4156
4235
|
},
|
|
4157
4236
|
/**
|
|
4158
|
-
*
|
|
4237
|
+
* Lookup565: polymesh_primitives::multisig::ProposalDetails<T>
|
|
4159
4238
|
**/
|
|
4160
4239
|
PolymeshPrimitivesMultisigProposalDetails: {
|
|
4161
4240
|
approvals: 'u64',
|
|
@@ -4165,13 +4244,13 @@ exports.default = {
|
|
|
4165
4244
|
autoClose: 'bool',
|
|
4166
4245
|
},
|
|
4167
4246
|
/**
|
|
4168
|
-
*
|
|
4247
|
+
* Lookup566: polymesh_primitives::multisig::ProposalStatus
|
|
4169
4248
|
**/
|
|
4170
4249
|
PolymeshPrimitivesMultisigProposalStatus: {
|
|
4171
4250
|
_enum: ['Invalid', 'ActiveOrExpired', 'ExecutionSuccessful', 'ExecutionFailed', 'Rejected'],
|
|
4172
4251
|
},
|
|
4173
4252
|
/**
|
|
4174
|
-
*
|
|
4253
|
+
* Lookup568: pallet_multisig::Error<T>
|
|
4175
4254
|
**/
|
|
4176
4255
|
PalletMultisigError: {
|
|
4177
4256
|
_enum: [
|
|
@@ -4204,7 +4283,7 @@ exports.default = {
|
|
|
4204
4283
|
],
|
|
4205
4284
|
},
|
|
4206
4285
|
/**
|
|
4207
|
-
*
|
|
4286
|
+
* Lookup570: pallet_bridge::BridgeTxDetail<BlockNumber>
|
|
4208
4287
|
**/
|
|
4209
4288
|
PalletBridgeBridgeTxDetail: {
|
|
4210
4289
|
amount: 'u128',
|
|
@@ -4213,7 +4292,7 @@ exports.default = {
|
|
|
4213
4292
|
txHash: 'H256',
|
|
4214
4293
|
},
|
|
4215
4294
|
/**
|
|
4216
|
-
*
|
|
4295
|
+
* Lookup571: pallet_bridge::BridgeTxStatus
|
|
4217
4296
|
**/
|
|
4218
4297
|
PalletBridgeBridgeTxStatus: {
|
|
4219
4298
|
_enum: {
|
|
@@ -4225,7 +4304,7 @@ exports.default = {
|
|
|
4225
4304
|
},
|
|
4226
4305
|
},
|
|
4227
4306
|
/**
|
|
4228
|
-
*
|
|
4307
|
+
* Lookup574: pallet_bridge::Error<T>
|
|
4229
4308
|
**/
|
|
4230
4309
|
PalletBridgeError: {
|
|
4231
4310
|
_enum: [
|
|
@@ -4245,7 +4324,7 @@ exports.default = {
|
|
|
4245
4324
|
],
|
|
4246
4325
|
},
|
|
4247
4326
|
/**
|
|
4248
|
-
*
|
|
4327
|
+
* Lookup575: pallet_staking::StakingLedger<sp_core::crypto::AccountId32, Balance>
|
|
4249
4328
|
**/
|
|
4250
4329
|
PalletStakingStakingLedger: {
|
|
4251
4330
|
stash: 'AccountId32',
|
|
@@ -4255,14 +4334,14 @@ exports.default = {
|
|
|
4255
4334
|
claimedRewards: 'Vec<u32>',
|
|
4256
4335
|
},
|
|
4257
4336
|
/**
|
|
4258
|
-
*
|
|
4337
|
+
* Lookup577: pallet_staking::UnlockChunk<Balance>
|
|
4259
4338
|
**/
|
|
4260
4339
|
PalletStakingUnlockChunk: {
|
|
4261
4340
|
value: 'Compact<u128>',
|
|
4262
4341
|
era: 'Compact<u32>',
|
|
4263
4342
|
},
|
|
4264
4343
|
/**
|
|
4265
|
-
*
|
|
4344
|
+
* Lookup578: pallet_staking::Nominations<sp_core::crypto::AccountId32>
|
|
4266
4345
|
**/
|
|
4267
4346
|
PalletStakingNominations: {
|
|
4268
4347
|
targets: 'Vec<AccountId32>',
|
|
@@ -4270,27 +4349,27 @@ exports.default = {
|
|
|
4270
4349
|
suppressed: 'bool',
|
|
4271
4350
|
},
|
|
4272
4351
|
/**
|
|
4273
|
-
*
|
|
4352
|
+
* Lookup579: pallet_staking::ActiveEraInfo
|
|
4274
4353
|
**/
|
|
4275
4354
|
PalletStakingActiveEraInfo: {
|
|
4276
4355
|
index: 'u32',
|
|
4277
4356
|
start: 'Option<u64>',
|
|
4278
4357
|
},
|
|
4279
4358
|
/**
|
|
4280
|
-
*
|
|
4359
|
+
* Lookup581: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
|
4281
4360
|
**/
|
|
4282
4361
|
PalletStakingEraRewardPoints: {
|
|
4283
4362
|
total: 'u32',
|
|
4284
4363
|
individual: 'BTreeMap<AccountId32, u32>',
|
|
4285
4364
|
},
|
|
4286
4365
|
/**
|
|
4287
|
-
*
|
|
4366
|
+
* Lookup584: pallet_staking::Forcing
|
|
4288
4367
|
**/
|
|
4289
4368
|
PalletStakingForcing: {
|
|
4290
4369
|
_enum: ['NotForcing', 'ForceNew', 'ForceNone', 'ForceAlways'],
|
|
4291
4370
|
},
|
|
4292
4371
|
/**
|
|
4293
|
-
*
|
|
4372
|
+
* Lookup586: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
|
4294
4373
|
**/
|
|
4295
4374
|
PalletStakingUnappliedSlash: {
|
|
4296
4375
|
validator: 'AccountId32',
|
|
@@ -4300,7 +4379,7 @@ exports.default = {
|
|
|
4300
4379
|
payout: 'u128',
|
|
4301
4380
|
},
|
|
4302
4381
|
/**
|
|
4303
|
-
*
|
|
4382
|
+
* Lookup590: pallet_staking::slashing::SlashingSpans
|
|
4304
4383
|
**/
|
|
4305
4384
|
PalletStakingSlashingSlashingSpans: {
|
|
4306
4385
|
spanIndex: 'u32',
|
|
@@ -4309,14 +4388,14 @@ exports.default = {
|
|
|
4309
4388
|
prior: 'Vec<u32>',
|
|
4310
4389
|
},
|
|
4311
4390
|
/**
|
|
4312
|
-
*
|
|
4391
|
+
* Lookup591: pallet_staking::slashing::SpanRecord<Balance>
|
|
4313
4392
|
**/
|
|
4314
4393
|
PalletStakingSlashingSpanRecord: {
|
|
4315
4394
|
slashed: 'u128',
|
|
4316
4395
|
paidOut: 'u128',
|
|
4317
4396
|
},
|
|
4318
4397
|
/**
|
|
4319
|
-
*
|
|
4398
|
+
* Lookup594: pallet_staking::ElectionResult<sp_core::crypto::AccountId32, Balance>
|
|
4320
4399
|
**/
|
|
4321
4400
|
PalletStakingElectionResult: {
|
|
4322
4401
|
electedStashes: 'Vec<AccountId32>',
|
|
@@ -4324,7 +4403,7 @@ exports.default = {
|
|
|
4324
4403
|
compute: 'PalletStakingElectionCompute',
|
|
4325
4404
|
},
|
|
4326
4405
|
/**
|
|
4327
|
-
*
|
|
4406
|
+
* Lookup595: pallet_staking::ElectionStatus<BlockNumber>
|
|
4328
4407
|
**/
|
|
4329
4408
|
PalletStakingElectionStatus: {
|
|
4330
4409
|
_enum: {
|
|
@@ -4333,20 +4412,20 @@ exports.default = {
|
|
|
4333
4412
|
},
|
|
4334
4413
|
},
|
|
4335
4414
|
/**
|
|
4336
|
-
*
|
|
4415
|
+
* Lookup596: pallet_staking::PermissionedIdentityPrefs
|
|
4337
4416
|
**/
|
|
4338
4417
|
PalletStakingPermissionedIdentityPrefs: {
|
|
4339
4418
|
intendedCount: 'u32',
|
|
4340
4419
|
runningCount: 'u32',
|
|
4341
4420
|
},
|
|
4342
4421
|
/**
|
|
4343
|
-
*
|
|
4422
|
+
* Lookup597: pallet_staking::Releases
|
|
4344
4423
|
**/
|
|
4345
4424
|
PalletStakingReleases: {
|
|
4346
4425
|
_enum: ['V1_0_0Ancient', 'V2_0_0', 'V3_0_0', 'V4_0_0', 'V5_0_0', 'V6_0_0', 'V6_0_1', 'V7_0_0'],
|
|
4347
4426
|
},
|
|
4348
4427
|
/**
|
|
4349
|
-
*
|
|
4428
|
+
* Lookup599: pallet_staking::Error<T>
|
|
4350
4429
|
**/
|
|
4351
4430
|
PalletStakingError: {
|
|
4352
4431
|
_enum: [
|
|
@@ -4396,24 +4475,24 @@ exports.default = {
|
|
|
4396
4475
|
],
|
|
4397
4476
|
},
|
|
4398
4477
|
/**
|
|
4399
|
-
*
|
|
4478
|
+
* Lookup600: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
|
4400
4479
|
**/
|
|
4401
4480
|
SpStakingOffenceOffenceDetails: {
|
|
4402
4481
|
offender: '(AccountId32,PalletStakingExposure)',
|
|
4403
4482
|
reporters: 'Vec<AccountId32>',
|
|
4404
4483
|
},
|
|
4405
4484
|
/**
|
|
4406
|
-
*
|
|
4485
|
+
* Lookup605: sp_core::crypto::KeyTypeId
|
|
4407
4486
|
**/
|
|
4408
4487
|
SpCoreCryptoKeyTypeId: '[u8;4]',
|
|
4409
4488
|
/**
|
|
4410
|
-
*
|
|
4489
|
+
* Lookup606: pallet_session::pallet::Error<T>
|
|
4411
4490
|
**/
|
|
4412
4491
|
PalletSessionError: {
|
|
4413
4492
|
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount'],
|
|
4414
4493
|
},
|
|
4415
4494
|
/**
|
|
4416
|
-
*
|
|
4495
|
+
* Lookup607: pallet_grandpa::StoredState<N>
|
|
4417
4496
|
**/
|
|
4418
4497
|
PalletGrandpaStoredState: {
|
|
4419
4498
|
_enum: {
|
|
@@ -4430,7 +4509,7 @@ exports.default = {
|
|
|
4430
4509
|
},
|
|
4431
4510
|
},
|
|
4432
4511
|
/**
|
|
4433
|
-
*
|
|
4512
|
+
* Lookup608: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
4434
4513
|
**/
|
|
4435
4514
|
PalletGrandpaStoredPendingChange: {
|
|
4436
4515
|
scheduledAt: 'u32',
|
|
@@ -4439,7 +4518,7 @@ exports.default = {
|
|
|
4439
4518
|
forced: 'Option<u32>',
|
|
4440
4519
|
},
|
|
4441
4520
|
/**
|
|
4442
|
-
*
|
|
4521
|
+
* Lookup610: pallet_grandpa::pallet::Error<T>
|
|
4443
4522
|
**/
|
|
4444
4523
|
PalletGrandpaError: {
|
|
4445
4524
|
_enum: [
|
|
@@ -4453,40 +4532,40 @@ exports.default = {
|
|
|
4453
4532
|
],
|
|
4454
4533
|
},
|
|
4455
4534
|
/**
|
|
4456
|
-
*
|
|
4535
|
+
* Lookup614: pallet_im_online::BoundedOpaqueNetworkState<PeerIdEncodingLimit, MultiAddrEncodingLimit, AddressesLimit>
|
|
4457
4536
|
**/
|
|
4458
4537
|
PalletImOnlineBoundedOpaqueNetworkState: {
|
|
4459
4538
|
peerId: 'Bytes',
|
|
4460
4539
|
externalAddresses: 'Vec<Bytes>',
|
|
4461
4540
|
},
|
|
4462
4541
|
/**
|
|
4463
|
-
*
|
|
4542
|
+
* Lookup618: pallet_im_online::pallet::Error<T>
|
|
4464
4543
|
**/
|
|
4465
4544
|
PalletImOnlineError: {
|
|
4466
4545
|
_enum: ['InvalidKey', 'DuplicatedHeartbeat'],
|
|
4467
4546
|
},
|
|
4468
4547
|
/**
|
|
4469
|
-
*
|
|
4548
|
+
* Lookup620: pallet_sudo::Error<T>
|
|
4470
4549
|
**/
|
|
4471
4550
|
PalletSudoError: {
|
|
4472
4551
|
_enum: ['RequireSudo'],
|
|
4473
4552
|
},
|
|
4474
4553
|
/**
|
|
4475
|
-
*
|
|
4554
|
+
* Lookup621: pallet_asset::TickerRegistration<U>
|
|
4476
4555
|
**/
|
|
4477
4556
|
PalletAssetTickerRegistration: {
|
|
4478
4557
|
owner: 'PolymeshPrimitivesIdentityId',
|
|
4479
4558
|
expiry: 'Option<u64>',
|
|
4480
4559
|
},
|
|
4481
4560
|
/**
|
|
4482
|
-
*
|
|
4561
|
+
* Lookup622: pallet_asset::TickerRegistrationConfig<U>
|
|
4483
4562
|
**/
|
|
4484
4563
|
PalletAssetTickerRegistrationConfig: {
|
|
4485
4564
|
maxTickerLength: 'u8',
|
|
4486
4565
|
registrationLength: 'Option<u64>',
|
|
4487
4566
|
},
|
|
4488
4567
|
/**
|
|
4489
|
-
*
|
|
4568
|
+
* Lookup623: pallet_asset::SecurityToken
|
|
4490
4569
|
**/
|
|
4491
4570
|
PalletAssetSecurityToken: {
|
|
4492
4571
|
totalSupply: 'u128',
|
|
@@ -4495,13 +4574,13 @@ exports.default = {
|
|
|
4495
4574
|
assetType: 'PolymeshPrimitivesAssetAssetType',
|
|
4496
4575
|
},
|
|
4497
4576
|
/**
|
|
4498
|
-
*
|
|
4577
|
+
* Lookup627: pallet_asset::AssetOwnershipRelation
|
|
4499
4578
|
**/
|
|
4500
4579
|
PalletAssetAssetOwnershipRelation: {
|
|
4501
4580
|
_enum: ['NotOwned', 'TickerOwned', 'AssetOwned'],
|
|
4502
4581
|
},
|
|
4503
4582
|
/**
|
|
4504
|
-
*
|
|
4583
|
+
* Lookup633: pallet_asset::Error<T>
|
|
4505
4584
|
**/
|
|
4506
4585
|
PalletAssetError: {
|
|
4507
4586
|
_enum: [
|
|
@@ -4545,7 +4624,7 @@ exports.default = {
|
|
|
4545
4624
|
],
|
|
4546
4625
|
},
|
|
4547
4626
|
/**
|
|
4548
|
-
*
|
|
4627
|
+
* Lookup636: pallet_corporate_actions::distribution::Error<T>
|
|
4549
4628
|
**/
|
|
4550
4629
|
PalletCorporateActionsDistributionError: {
|
|
4551
4630
|
_enum: [
|
|
@@ -4567,7 +4646,7 @@ exports.default = {
|
|
|
4567
4646
|
],
|
|
4568
4647
|
},
|
|
4569
4648
|
/**
|
|
4570
|
-
*
|
|
4649
|
+
* Lookup640: polymesh_common_utilities::traits::checkpoint::NextCheckpoints
|
|
4571
4650
|
**/
|
|
4572
4651
|
PolymeshCommonUtilitiesCheckpointNextCheckpoints: {
|
|
4573
4652
|
nextAt: 'u64',
|
|
@@ -4575,7 +4654,7 @@ exports.default = {
|
|
|
4575
4654
|
schedules: 'BTreeMap<u64, u64>',
|
|
4576
4655
|
},
|
|
4577
4656
|
/**
|
|
4578
|
-
*
|
|
4657
|
+
* Lookup646: pallet_asset::checkpoint::Error<T>
|
|
4579
4658
|
**/
|
|
4580
4659
|
PalletAssetCheckpointError: {
|
|
4581
4660
|
_enum: [
|
|
@@ -4588,14 +4667,14 @@ exports.default = {
|
|
|
4588
4667
|
],
|
|
4589
4668
|
},
|
|
4590
4669
|
/**
|
|
4591
|
-
*
|
|
4670
|
+
* Lookup647: polymesh_primitives::compliance_manager::AssetCompliance
|
|
4592
4671
|
**/
|
|
4593
4672
|
PolymeshPrimitivesComplianceManagerAssetCompliance: {
|
|
4594
4673
|
paused: 'bool',
|
|
4595
4674
|
requirements: 'Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>',
|
|
4596
4675
|
},
|
|
4597
4676
|
/**
|
|
4598
|
-
*
|
|
4677
|
+
* Lookup649: pallet_compliance_manager::Error<T>
|
|
4599
4678
|
**/
|
|
4600
4679
|
PalletComplianceManagerError: {
|
|
4601
4680
|
_enum: [
|
|
@@ -4609,7 +4688,7 @@ exports.default = {
|
|
|
4609
4688
|
],
|
|
4610
4689
|
},
|
|
4611
4690
|
/**
|
|
4612
|
-
*
|
|
4691
|
+
* Lookup652: pallet_corporate_actions::Error<T>
|
|
4613
4692
|
**/
|
|
4614
4693
|
PalletCorporateActionsError: {
|
|
4615
4694
|
_enum: [
|
|
@@ -4627,7 +4706,7 @@ exports.default = {
|
|
|
4627
4706
|
],
|
|
4628
4707
|
},
|
|
4629
4708
|
/**
|
|
4630
|
-
*
|
|
4709
|
+
* Lookup654: pallet_corporate_actions::ballot::Error<T>
|
|
4631
4710
|
**/
|
|
4632
4711
|
PalletCorporateActionsBallotError: {
|
|
4633
4712
|
_enum: [
|
|
@@ -4648,13 +4727,13 @@ exports.default = {
|
|
|
4648
4727
|
],
|
|
4649
4728
|
},
|
|
4650
4729
|
/**
|
|
4651
|
-
*
|
|
4730
|
+
* Lookup655: pallet_permissions::Error<T>
|
|
4652
4731
|
**/
|
|
4653
4732
|
PalletPermissionsError: {
|
|
4654
4733
|
_enum: ['UnauthorizedCaller'],
|
|
4655
4734
|
},
|
|
4656
4735
|
/**
|
|
4657
|
-
*
|
|
4736
|
+
* Lookup656: pallet_pips::PipsMetadata<BlockNumber>
|
|
4658
4737
|
**/
|
|
4659
4738
|
PalletPipsPipsMetadata: {
|
|
4660
4739
|
id: 'u32',
|
|
@@ -4665,14 +4744,14 @@ exports.default = {
|
|
|
4665
4744
|
expiry: 'PolymeshCommonUtilitiesMaybeBlock',
|
|
4666
4745
|
},
|
|
4667
4746
|
/**
|
|
4668
|
-
*
|
|
4747
|
+
* Lookup658: pallet_pips::DepositInfo<sp_core::crypto::AccountId32>
|
|
4669
4748
|
**/
|
|
4670
4749
|
PalletPipsDepositInfo: {
|
|
4671
4750
|
owner: 'AccountId32',
|
|
4672
4751
|
amount: 'u128',
|
|
4673
4752
|
},
|
|
4674
4753
|
/**
|
|
4675
|
-
*
|
|
4754
|
+
* Lookup659: pallet_pips::Pip<polymesh_runtime_develop::runtime::RuntimeCall, sp_core::crypto::AccountId32>
|
|
4676
4755
|
**/
|
|
4677
4756
|
PalletPipsPip: {
|
|
4678
4757
|
id: 'u32',
|
|
@@ -4680,7 +4759,7 @@ exports.default = {
|
|
|
4680
4759
|
proposer: 'PalletPipsProposer',
|
|
4681
4760
|
},
|
|
4682
4761
|
/**
|
|
4683
|
-
*
|
|
4762
|
+
* Lookup660: pallet_pips::VotingResult
|
|
4684
4763
|
**/
|
|
4685
4764
|
PalletPipsVotingResult: {
|
|
4686
4765
|
ayesCount: 'u32',
|
|
@@ -4689,11 +4768,11 @@ exports.default = {
|
|
|
4689
4768
|
naysStake: 'u128',
|
|
4690
4769
|
},
|
|
4691
4770
|
/**
|
|
4692
|
-
*
|
|
4771
|
+
* Lookup661: pallet_pips::Vote
|
|
4693
4772
|
**/
|
|
4694
4773
|
PalletPipsVote: '(bool,u128)',
|
|
4695
4774
|
/**
|
|
4696
|
-
*
|
|
4775
|
+
* Lookup662: pallet_pips::SnapshotMetadata<BlockNumber, sp_core::crypto::AccountId32>
|
|
4697
4776
|
**/
|
|
4698
4777
|
PalletPipsSnapshotMetadata: {
|
|
4699
4778
|
createdAt: 'u32',
|
|
@@ -4701,7 +4780,7 @@ exports.default = {
|
|
|
4701
4780
|
id: 'u32',
|
|
4702
4781
|
},
|
|
4703
4782
|
/**
|
|
4704
|
-
*
|
|
4783
|
+
* Lookup664: pallet_pips::Error<T>
|
|
4705
4784
|
**/
|
|
4706
4785
|
PalletPipsError: {
|
|
4707
4786
|
_enum: [
|
|
@@ -4726,7 +4805,7 @@ exports.default = {
|
|
|
4726
4805
|
],
|
|
4727
4806
|
},
|
|
4728
4807
|
/**
|
|
4729
|
-
*
|
|
4808
|
+
* Lookup673: pallet_portfolio::Error<T>
|
|
4730
4809
|
**/
|
|
4731
4810
|
PalletPortfolioError: {
|
|
4732
4811
|
_enum: [
|
|
@@ -4746,16 +4825,17 @@ exports.default = {
|
|
|
4746
4825
|
'InvalidTransferNFTNotOwned',
|
|
4747
4826
|
'InvalidTransferNFTIsLocked',
|
|
4748
4827
|
'EmptyTransfer',
|
|
4828
|
+
'MissingOwnersPermission',
|
|
4749
4829
|
],
|
|
4750
4830
|
},
|
|
4751
4831
|
/**
|
|
4752
|
-
*
|
|
4832
|
+
* Lookup674: pallet_protocol_fee::Error<T>
|
|
4753
4833
|
**/
|
|
4754
4834
|
PalletProtocolFeeError: {
|
|
4755
4835
|
_enum: ['InsufficientAccountBalance', 'UnHandledImbalances', 'InsufficientSubsidyBalance'],
|
|
4756
4836
|
},
|
|
4757
4837
|
/**
|
|
4758
|
-
*
|
|
4838
|
+
* Lookup677: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<polymesh_runtime_develop::runtime::RuntimeCall>, BlockNumber, polymesh_runtime_develop::runtime::OriginCaller, sp_core::crypto::AccountId32>
|
|
4759
4839
|
**/
|
|
4760
4840
|
PalletSchedulerScheduled: {
|
|
4761
4841
|
maybeId: 'Option<[u8;32]>',
|
|
@@ -4765,7 +4845,7 @@ exports.default = {
|
|
|
4765
4845
|
origin: 'PolymeshRuntimeDevelopRuntimeOriginCaller',
|
|
4766
4846
|
},
|
|
4767
4847
|
/**
|
|
4768
|
-
*
|
|
4848
|
+
* Lookup678: frame_support::traits::preimages::Bounded<polymesh_runtime_develop::runtime::RuntimeCall>
|
|
4769
4849
|
**/
|
|
4770
4850
|
FrameSupportPreimagesBounded: {
|
|
4771
4851
|
_enum: {
|
|
@@ -4786,7 +4866,7 @@ exports.default = {
|
|
|
4786
4866
|
},
|
|
4787
4867
|
},
|
|
4788
4868
|
/**
|
|
4789
|
-
*
|
|
4869
|
+
* Lookup681: pallet_scheduler::pallet::Error<T>
|
|
4790
4870
|
**/
|
|
4791
4871
|
PalletSchedulerError: {
|
|
4792
4872
|
_enum: [
|
|
@@ -4798,14 +4878,14 @@ exports.default = {
|
|
|
4798
4878
|
],
|
|
4799
4879
|
},
|
|
4800
4880
|
/**
|
|
4801
|
-
*
|
|
4881
|
+
* Lookup682: polymesh_primitives::settlement::Venue
|
|
4802
4882
|
**/
|
|
4803
4883
|
PolymeshPrimitivesSettlementVenue: {
|
|
4804
4884
|
creator: 'PolymeshPrimitivesIdentityId',
|
|
4805
4885
|
venueType: 'PolymeshPrimitivesSettlementVenueType',
|
|
4806
4886
|
},
|
|
4807
4887
|
/**
|
|
4808
|
-
*
|
|
4888
|
+
* Lookup686: polymesh_primitives::settlement::Instruction<Moment, BlockNumber>
|
|
4809
4889
|
**/
|
|
4810
4890
|
PolymeshPrimitivesSettlementInstruction: {
|
|
4811
4891
|
instructionId: 'u64',
|
|
@@ -4816,7 +4896,7 @@ exports.default = {
|
|
|
4816
4896
|
valueDate: 'Option<u64>',
|
|
4817
4897
|
},
|
|
4818
4898
|
/**
|
|
4819
|
-
*
|
|
4899
|
+
* Lookup688: polymesh_primitives::settlement::LegStatus<sp_core::crypto::AccountId32>
|
|
4820
4900
|
**/
|
|
4821
4901
|
PolymeshPrimitivesSettlementLegStatus: {
|
|
4822
4902
|
_enum: {
|
|
@@ -4826,13 +4906,13 @@ exports.default = {
|
|
|
4826
4906
|
},
|
|
4827
4907
|
},
|
|
4828
4908
|
/**
|
|
4829
|
-
*
|
|
4909
|
+
* Lookup690: polymesh_primitives::settlement::AffirmationStatus
|
|
4830
4910
|
**/
|
|
4831
4911
|
PolymeshPrimitivesSettlementAffirmationStatus: {
|
|
4832
4912
|
_enum: ['Unknown', 'Pending', 'Affirmed'],
|
|
4833
4913
|
},
|
|
4834
4914
|
/**
|
|
4835
|
-
*
|
|
4915
|
+
* Lookup694: polymesh_primitives::settlement::InstructionStatus<BlockNumber>
|
|
4836
4916
|
**/
|
|
4837
4917
|
PolymeshPrimitivesSettlementInstructionStatus: {
|
|
4838
4918
|
_enum: {
|
|
@@ -4844,7 +4924,7 @@ exports.default = {
|
|
|
4844
4924
|
},
|
|
4845
4925
|
},
|
|
4846
4926
|
/**
|
|
4847
|
-
*
|
|
4927
|
+
* Lookup695: pallet_settlement::Error<T>
|
|
4848
4928
|
**/
|
|
4849
4929
|
PalletSettlementError: {
|
|
4850
4930
|
_enum: [
|
|
@@ -4891,21 +4971,21 @@ exports.default = {
|
|
|
4891
4971
|
],
|
|
4892
4972
|
},
|
|
4893
4973
|
/**
|
|
4894
|
-
*
|
|
4974
|
+
* Lookup698: polymesh_primitives::statistics::Stat1stKey
|
|
4895
4975
|
**/
|
|
4896
4976
|
PolymeshPrimitivesStatisticsStat1stKey: {
|
|
4897
4977
|
asset: 'PolymeshPrimitivesStatisticsAssetScope',
|
|
4898
4978
|
statType: 'PolymeshPrimitivesStatisticsStatType',
|
|
4899
4979
|
},
|
|
4900
4980
|
/**
|
|
4901
|
-
*
|
|
4981
|
+
* Lookup699: polymesh_primitives::transfer_compliance::AssetTransferCompliance<S>
|
|
4902
4982
|
**/
|
|
4903
4983
|
PolymeshPrimitivesTransferComplianceAssetTransferCompliance: {
|
|
4904
4984
|
paused: 'bool',
|
|
4905
4985
|
requirements: 'BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>',
|
|
4906
4986
|
},
|
|
4907
4987
|
/**
|
|
4908
|
-
*
|
|
4988
|
+
* Lookup703: pallet_statistics::Error<T>
|
|
4909
4989
|
**/
|
|
4910
4990
|
PalletStatisticsError: {
|
|
4911
4991
|
_enum: [
|
|
@@ -4919,7 +4999,7 @@ exports.default = {
|
|
|
4919
4999
|
],
|
|
4920
5000
|
},
|
|
4921
5001
|
/**
|
|
4922
|
-
*
|
|
5002
|
+
* Lookup705: pallet_sto::Error<T>
|
|
4923
5003
|
**/
|
|
4924
5004
|
PalletStoError: {
|
|
4925
5005
|
_enum: [
|
|
@@ -4938,25 +5018,25 @@ exports.default = {
|
|
|
4938
5018
|
],
|
|
4939
5019
|
},
|
|
4940
5020
|
/**
|
|
4941
|
-
*
|
|
5021
|
+
* Lookup706: pallet_treasury::Error<T>
|
|
4942
5022
|
**/
|
|
4943
5023
|
PalletTreasuryError: {
|
|
4944
5024
|
_enum: ['InsufficientBalance', 'InvalidIdentity'],
|
|
4945
5025
|
},
|
|
4946
5026
|
/**
|
|
4947
|
-
*
|
|
5027
|
+
* Lookup707: pallet_utility::pallet::Error<T>
|
|
4948
5028
|
**/
|
|
4949
5029
|
PalletUtilityError: {
|
|
4950
5030
|
_enum: ['TooManyCalls', 'InvalidSignature', 'TargetCddMissing', 'InvalidNonce'],
|
|
4951
5031
|
},
|
|
4952
5032
|
/**
|
|
4953
|
-
*
|
|
5033
|
+
* Lookup708: pallet_base::Error<T>
|
|
4954
5034
|
**/
|
|
4955
5035
|
PalletBaseError: {
|
|
4956
5036
|
_enum: ['TooLong', 'CounterOverflow'],
|
|
4957
5037
|
},
|
|
4958
5038
|
/**
|
|
4959
|
-
*
|
|
5039
|
+
* Lookup710: pallet_external_agents::Error<T>
|
|
4960
5040
|
**/
|
|
4961
5041
|
PalletExternalAgentsError: {
|
|
4962
5042
|
_enum: [
|
|
@@ -4969,14 +5049,14 @@ exports.default = {
|
|
|
4969
5049
|
],
|
|
4970
5050
|
},
|
|
4971
5051
|
/**
|
|
4972
|
-
*
|
|
5052
|
+
* Lookup711: pallet_relayer::Subsidy<sp_core::crypto::AccountId32>
|
|
4973
5053
|
**/
|
|
4974
5054
|
PalletRelayerSubsidy: {
|
|
4975
5055
|
payingKey: 'AccountId32',
|
|
4976
5056
|
remaining: 'u128',
|
|
4977
5057
|
},
|
|
4978
5058
|
/**
|
|
4979
|
-
*
|
|
5059
|
+
* Lookup712: pallet_relayer::Error<T>
|
|
4980
5060
|
**/
|
|
4981
5061
|
PalletRelayerError: {
|
|
4982
5062
|
_enum: [
|
|
@@ -4990,7 +5070,7 @@ exports.default = {
|
|
|
4990
5070
|
],
|
|
4991
5071
|
},
|
|
4992
5072
|
/**
|
|
4993
|
-
*
|
|
5073
|
+
* Lookup714: pallet_contracts::wasm::PrefabWasmModule<T>
|
|
4994
5074
|
**/
|
|
4995
5075
|
PalletContractsWasmPrefabWasmModule: {
|
|
4996
5076
|
instructionWeightsVersion: 'Compact<u32>',
|
|
@@ -5000,7 +5080,7 @@ exports.default = {
|
|
|
5000
5080
|
determinism: 'PalletContractsWasmDeterminism',
|
|
5001
5081
|
},
|
|
5002
5082
|
/**
|
|
5003
|
-
*
|
|
5083
|
+
* Lookup716: pallet_contracts::wasm::OwnerInfo<T>
|
|
5004
5084
|
**/
|
|
5005
5085
|
PalletContractsWasmOwnerInfo: {
|
|
5006
5086
|
owner: 'AccountId32',
|
|
@@ -5008,7 +5088,7 @@ exports.default = {
|
|
|
5008
5088
|
refcount: 'Compact<u64>',
|
|
5009
5089
|
},
|
|
5010
5090
|
/**
|
|
5011
|
-
*
|
|
5091
|
+
* Lookup717: pallet_contracts::storage::ContractInfo<T>
|
|
5012
5092
|
**/
|
|
5013
5093
|
PalletContractsStorageContractInfo: {
|
|
5014
5094
|
trieId: 'Bytes',
|
|
@@ -5021,13 +5101,13 @@ exports.default = {
|
|
|
5021
5101
|
storageBaseDeposit: 'u128',
|
|
5022
5102
|
},
|
|
5023
5103
|
/**
|
|
5024
|
-
*
|
|
5104
|
+
* Lookup720: pallet_contracts::storage::DeletedContract
|
|
5025
5105
|
**/
|
|
5026
5106
|
PalletContractsStorageDeletedContract: {
|
|
5027
5107
|
trieId: 'Bytes',
|
|
5028
5108
|
},
|
|
5029
5109
|
/**
|
|
5030
|
-
*
|
|
5110
|
+
* Lookup722: pallet_contracts::schedule::Schedule<T>
|
|
5031
5111
|
**/
|
|
5032
5112
|
PalletContractsSchedule: {
|
|
5033
5113
|
limits: 'PalletContractsScheduleLimits',
|
|
@@ -5035,7 +5115,7 @@ exports.default = {
|
|
|
5035
5115
|
hostFnWeights: 'PalletContractsScheduleHostFnWeights',
|
|
5036
5116
|
},
|
|
5037
5117
|
/**
|
|
5038
|
-
*
|
|
5118
|
+
* Lookup723: pallet_contracts::schedule::Limits
|
|
5039
5119
|
**/
|
|
5040
5120
|
PalletContractsScheduleLimits: {
|
|
5041
5121
|
eventTopics: 'u32',
|
|
@@ -5049,7 +5129,7 @@ exports.default = {
|
|
|
5049
5129
|
payloadLen: 'u32',
|
|
5050
5130
|
},
|
|
5051
5131
|
/**
|
|
5052
|
-
*
|
|
5132
|
+
* Lookup724: pallet_contracts::schedule::InstructionWeights<T>
|
|
5053
5133
|
**/
|
|
5054
5134
|
PalletContractsScheduleInstructionWeights: {
|
|
5055
5135
|
_alias: {
|
|
@@ -5111,7 +5191,7 @@ exports.default = {
|
|
|
5111
5191
|
i64rotr: 'u32',
|
|
5112
5192
|
},
|
|
5113
5193
|
/**
|
|
5114
|
-
*
|
|
5194
|
+
* Lookup725: pallet_contracts::schedule::HostFnWeights<T>
|
|
5115
5195
|
**/
|
|
5116
5196
|
PalletContractsScheduleHostFnWeights: {
|
|
5117
5197
|
_alias: {
|
|
@@ -5178,7 +5258,7 @@ exports.default = {
|
|
|
5178
5258
|
instantiationNonce: 'SpWeightsWeightV2Weight',
|
|
5179
5259
|
},
|
|
5180
5260
|
/**
|
|
5181
|
-
*
|
|
5261
|
+
* Lookup726: pallet_contracts::pallet::Error<T>
|
|
5182
5262
|
**/
|
|
5183
5263
|
PalletContractsError: {
|
|
5184
5264
|
_enum: [
|
|
@@ -5213,7 +5293,7 @@ exports.default = {
|
|
|
5213
5293
|
],
|
|
5214
5294
|
},
|
|
5215
5295
|
/**
|
|
5216
|
-
*
|
|
5296
|
+
* Lookup728: polymesh_contracts::Error<T>
|
|
5217
5297
|
**/
|
|
5218
5298
|
PolymeshContractsError: {
|
|
5219
5299
|
_enum: [
|
|
@@ -5225,10 +5305,14 @@ exports.default = {
|
|
|
5225
5305
|
'OutLenTooLarge',
|
|
5226
5306
|
'InstantiatorWithNoIdentity',
|
|
5227
5307
|
'RuntimeCallDenied',
|
|
5308
|
+
'CallerNotAPrimaryKey',
|
|
5309
|
+
'MissingKeyPermissions',
|
|
5310
|
+
'InvalidChainVersion',
|
|
5311
|
+
'NoUpgradesSupported',
|
|
5228
5312
|
],
|
|
5229
5313
|
},
|
|
5230
5314
|
/**
|
|
5231
|
-
*
|
|
5315
|
+
* Lookup729: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
|
|
5232
5316
|
**/
|
|
5233
5317
|
PalletPreimageRequestStatus: {
|
|
5234
5318
|
_enum: {
|
|
@@ -5244,20 +5328,20 @@ exports.default = {
|
|
|
5244
5328
|
},
|
|
5245
5329
|
},
|
|
5246
5330
|
/**
|
|
5247
|
-
*
|
|
5331
|
+
* Lookup733: pallet_preimage::pallet::Error<T>
|
|
5248
5332
|
**/
|
|
5249
5333
|
PalletPreimageError: {
|
|
5250
5334
|
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested'],
|
|
5251
5335
|
},
|
|
5252
5336
|
/**
|
|
5253
|
-
*
|
|
5337
|
+
* Lookup734: polymesh_primitives::nft::NFTCollection
|
|
5254
5338
|
**/
|
|
5255
5339
|
PolymeshPrimitivesNftNftCollection: {
|
|
5256
5340
|
id: 'u64',
|
|
5257
5341
|
ticker: 'PolymeshPrimitivesTicker',
|
|
5258
5342
|
},
|
|
5259
5343
|
/**
|
|
5260
|
-
*
|
|
5344
|
+
* Lookup739: pallet_nft::Error<T>
|
|
5261
5345
|
**/
|
|
5262
5346
|
PalletNftError: {
|
|
5263
5347
|
_enum: [
|
|
@@ -5281,46 +5365,48 @@ exports.default = {
|
|
|
5281
5365
|
'NFTNotFound',
|
|
5282
5366
|
'UnregisteredMetadataKey',
|
|
5283
5367
|
'ZeroCount',
|
|
5368
|
+
'SupplyOverflow',
|
|
5369
|
+
'SupplyUnderflow',
|
|
5284
5370
|
],
|
|
5285
5371
|
},
|
|
5286
5372
|
/**
|
|
5287
|
-
*
|
|
5373
|
+
* Lookup740: pallet_test_utils::Error<T>
|
|
5288
5374
|
**/
|
|
5289
5375
|
PalletTestUtilsError: 'Null',
|
|
5290
5376
|
/**
|
|
5291
|
-
*
|
|
5377
|
+
* Lookup743: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
5292
5378
|
**/
|
|
5293
5379
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
|
5294
5380
|
/**
|
|
5295
|
-
*
|
|
5381
|
+
* Lookup744: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
5296
5382
|
**/
|
|
5297
5383
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
|
5298
5384
|
/**
|
|
5299
|
-
*
|
|
5385
|
+
* Lookup745: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
5300
5386
|
**/
|
|
5301
5387
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
|
5302
5388
|
/**
|
|
5303
|
-
*
|
|
5389
|
+
* Lookup748: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
5304
5390
|
**/
|
|
5305
5391
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
|
5306
5392
|
/**
|
|
5307
|
-
*
|
|
5393
|
+
* Lookup749: polymesh_extensions::check_weight::CheckWeight<T>
|
|
5308
5394
|
**/
|
|
5309
5395
|
PolymeshExtensionsCheckWeight: 'FrameSystemExtensionsCheckWeight',
|
|
5310
5396
|
/**
|
|
5311
|
-
*
|
|
5397
|
+
* Lookup750: frame_system::extensions::check_weight::CheckWeight<T>
|
|
5312
5398
|
**/
|
|
5313
5399
|
FrameSystemExtensionsCheckWeight: 'Null',
|
|
5314
5400
|
/**
|
|
5315
|
-
*
|
|
5401
|
+
* Lookup751: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
5316
5402
|
**/
|
|
5317
5403
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
|
5318
5404
|
/**
|
|
5319
|
-
*
|
|
5405
|
+
* Lookup752: pallet_permissions::StoreCallMetadata<T>
|
|
5320
5406
|
**/
|
|
5321
5407
|
PalletPermissionsStoreCallMetadata: 'Null',
|
|
5322
5408
|
/**
|
|
5323
|
-
*
|
|
5409
|
+
* Lookup753: polymesh_runtime_develop::runtime::Runtime
|
|
5324
5410
|
**/
|
|
5325
5411
|
PolymeshRuntimeDevelopRuntime: 'Null',
|
|
5326
5412
|
};
|