@webb-tools/tangle-substrate-types 0.5.4 → 0.5.5
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/build/interfaces/augment-api-consts.d.ts +44 -1
- package/build/interfaces/augment-api-errors.d.ts +38 -0
- package/build/interfaces/augment-api-events.d.ts +50 -2
- package/build/interfaces/augment-api-query.d.ts +20 -1
- package/build/interfaces/augment-api-tx.d.ts +137 -1
- package/build/interfaces/lookup.d.ts +378 -260
- package/build/interfaces/lookup.js +381 -263
- package/build/interfaces/registry.d.ts +7 -1
- package/build/interfaces/types-lookup.d.ts +390 -260
- package/build/metadata/static-latest.d.ts +1 -1
- package/build/metadata/static-latest.js +1 -1
- package/build/package.json +1 -1
- package/package.json +1 -1
- package/playground.ts +86 -0
- package/src/interfaces/augment-api-consts.ts +44 -8
- package/src/interfaces/augment-api-errors.ts +38 -0
- package/src/interfaces/augment-api-events.ts +29 -30
- package/src/interfaces/augment-api-query.ts +20 -86
- package/src/interfaces/augment-api-tx.ts +47 -54
- package/src/interfaces/lookup.ts +381 -263
- package/src/interfaces/registry.ts +7 -1
- package/src/interfaces/types-lookup.ts +396 -260
- package/src/metadata/metadata.json +1 -1
- package/src/metadata/static-latest.ts +1 -1
- package/ts-types/playground.d.ts +1 -0
- package/ts-types/src/interfaces/augment-api-consts.d.ts +44 -1
- package/ts-types/src/interfaces/augment-api-errors.d.ts +38 -0
- package/ts-types/src/interfaces/augment-api-events.d.ts +50 -2
- package/ts-types/src/interfaces/augment-api-query.d.ts +20 -1
- package/ts-types/src/interfaces/augment-api-tx.d.ts +137 -1
- package/ts-types/src/interfaces/lookup.d.ts +378 -260
- package/ts-types/src/interfaces/registry.d.ts +7 -1
- package/ts-types/src/interfaces/types-lookup.d.ts +390 -260
- package/ts-types/src/metadata/static-latest.d.ts +1 -1
- package/ts-types/tsconfig.tsbuildinfo +1 -1
package/src/interfaces/lookup.ts
CHANGED
@@ -1493,7 +1493,8 @@ export default {
|
|
1493
1493
|
participants: 'Vec<AccountId32>',
|
1494
1494
|
threshold: 'u8',
|
1495
1495
|
permittedCaller: 'Option<AccountId32>',
|
1496
|
-
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType'
|
1496
|
+
roleType: 'TanglePrimitivesRolesTssThresholdSignatureRoleType',
|
1497
|
+
hdWallet: 'bool'
|
1497
1498
|
},
|
1498
1499
|
/**
|
1499
1500
|
* Lookup137: tangle_primitives::jobs::tss::DKGTSSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
@@ -1652,7 +1653,46 @@ export default {
|
|
1652
1653
|
storageFeePerByte: 'u128'
|
1653
1654
|
},
|
1654
1655
|
/**
|
1655
|
-
* Lookup161:
|
1656
|
+
* Lookup161: pallet_proxy::pallet::Event<T>
|
1657
|
+
**/
|
1658
|
+
PalletProxyEvent: {
|
1659
|
+
_enum: {
|
1660
|
+
ProxyExecuted: {
|
1661
|
+
result: 'Result<Null, SpRuntimeDispatchError>',
|
1662
|
+
},
|
1663
|
+
PureCreated: {
|
1664
|
+
pure: 'AccountId32',
|
1665
|
+
who: 'AccountId32',
|
1666
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
1667
|
+
disambiguationIndex: 'u16',
|
1668
|
+
},
|
1669
|
+
Announced: {
|
1670
|
+
real: 'AccountId32',
|
1671
|
+
proxy: 'AccountId32',
|
1672
|
+
callHash: 'H256',
|
1673
|
+
},
|
1674
|
+
ProxyAdded: {
|
1675
|
+
delegator: 'AccountId32',
|
1676
|
+
delegatee: 'AccountId32',
|
1677
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
1678
|
+
delay: 'u64',
|
1679
|
+
},
|
1680
|
+
ProxyRemoved: {
|
1681
|
+
delegator: 'AccountId32',
|
1682
|
+
delegatee: 'AccountId32',
|
1683
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
1684
|
+
delay: 'u64'
|
1685
|
+
}
|
1686
|
+
}
|
1687
|
+
},
|
1688
|
+
/**
|
1689
|
+
* Lookup162: tangle_testnet_runtime::ProxyType
|
1690
|
+
**/
|
1691
|
+
TangleTestnetRuntimeProxyType: {
|
1692
|
+
_enum: ['Any', 'NonTransfer', 'Governance', 'Staking']
|
1693
|
+
},
|
1694
|
+
/**
|
1695
|
+
* Lookup164: frame_system::Phase
|
1656
1696
|
**/
|
1657
1697
|
FrameSystemPhase: {
|
1658
1698
|
_enum: {
|
@@ -1662,21 +1702,21 @@ export default {
|
|
1662
1702
|
}
|
1663
1703
|
},
|
1664
1704
|
/**
|
1665
|
-
*
|
1705
|
+
* Lookup166: frame_system::LastRuntimeUpgradeInfo
|
1666
1706
|
**/
|
1667
1707
|
FrameSystemLastRuntimeUpgradeInfo: {
|
1668
1708
|
specVersion: 'Compact<u32>',
|
1669
1709
|
specName: 'Text'
|
1670
1710
|
},
|
1671
1711
|
/**
|
1672
|
-
*
|
1712
|
+
* Lookup168: frame_system::CodeUpgradeAuthorization<T>
|
1673
1713
|
**/
|
1674
1714
|
FrameSystemCodeUpgradeAuthorization: {
|
1675
1715
|
codeHash: 'H256',
|
1676
1716
|
checkVersion: 'bool'
|
1677
1717
|
},
|
1678
1718
|
/**
|
1679
|
-
*
|
1719
|
+
* Lookup169: frame_system::pallet::Call<T>
|
1680
1720
|
**/
|
1681
1721
|
FrameSystemCall: {
|
1682
1722
|
_enum: {
|
@@ -1721,7 +1761,7 @@ export default {
|
|
1721
1761
|
}
|
1722
1762
|
},
|
1723
1763
|
/**
|
1724
|
-
*
|
1764
|
+
* Lookup173: frame_system::limits::BlockWeights
|
1725
1765
|
**/
|
1726
1766
|
FrameSystemLimitsBlockWeights: {
|
1727
1767
|
baseBlock: 'SpWeightsWeightV2Weight',
|
@@ -1729,7 +1769,7 @@ export default {
|
|
1729
1769
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
1730
1770
|
},
|
1731
1771
|
/**
|
1732
|
-
*
|
1772
|
+
* Lookup174: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
1733
1773
|
**/
|
1734
1774
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
1735
1775
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
@@ -1737,7 +1777,7 @@ export default {
|
|
1737
1777
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
1738
1778
|
},
|
1739
1779
|
/**
|
1740
|
-
*
|
1780
|
+
* Lookup175: frame_system::limits::WeightsPerClass
|
1741
1781
|
**/
|
1742
1782
|
FrameSystemLimitsWeightsPerClass: {
|
1743
1783
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
@@ -1746,13 +1786,13 @@ export default {
|
|
1746
1786
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
1747
1787
|
},
|
1748
1788
|
/**
|
1749
|
-
*
|
1789
|
+
* Lookup177: frame_system::limits::BlockLength
|
1750
1790
|
**/
|
1751
1791
|
FrameSystemLimitsBlockLength: {
|
1752
1792
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
1753
1793
|
},
|
1754
1794
|
/**
|
1755
|
-
*
|
1795
|
+
* Lookup178: frame_support::dispatch::PerDispatchClass<T>
|
1756
1796
|
**/
|
1757
1797
|
FrameSupportDispatchPerDispatchClassU32: {
|
1758
1798
|
normal: 'u32',
|
@@ -1760,14 +1800,14 @@ export default {
|
|
1760
1800
|
mandatory: 'u32'
|
1761
1801
|
},
|
1762
1802
|
/**
|
1763
|
-
*
|
1803
|
+
* Lookup179: sp_weights::RuntimeDbWeight
|
1764
1804
|
**/
|
1765
1805
|
SpWeightsRuntimeDbWeight: {
|
1766
1806
|
read: 'u64',
|
1767
1807
|
write: 'u64'
|
1768
1808
|
},
|
1769
1809
|
/**
|
1770
|
-
*
|
1810
|
+
* Lookup180: sp_version::RuntimeVersion
|
1771
1811
|
**/
|
1772
1812
|
SpVersionRuntimeVersion: {
|
1773
1813
|
specName: 'Text',
|
@@ -1780,13 +1820,13 @@ export default {
|
|
1780
1820
|
stateVersion: 'u8'
|
1781
1821
|
},
|
1782
1822
|
/**
|
1783
|
-
*
|
1823
|
+
* Lookup185: frame_system::pallet::Error<T>
|
1784
1824
|
**/
|
1785
1825
|
FrameSystemError: {
|
1786
1826
|
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'NothingAuthorized', 'Unauthorized']
|
1787
1827
|
},
|
1788
1828
|
/**
|
1789
|
-
*
|
1829
|
+
* Lookup186: pallet_timestamp::pallet::Call<T>
|
1790
1830
|
**/
|
1791
1831
|
PalletTimestampCall: {
|
1792
1832
|
_enum: {
|
@@ -1796,7 +1836,7 @@ export default {
|
|
1796
1836
|
}
|
1797
1837
|
},
|
1798
1838
|
/**
|
1799
|
-
*
|
1839
|
+
* Lookup187: pallet_sudo::pallet::Call<T>
|
1800
1840
|
**/
|
1801
1841
|
PalletSudoCall: {
|
1802
1842
|
_enum: {
|
@@ -1821,7 +1861,7 @@ export default {
|
|
1821
1861
|
}
|
1822
1862
|
},
|
1823
1863
|
/**
|
1824
|
-
*
|
1864
|
+
* Lookup189: pallet_balances::pallet::Call<T, I>
|
1825
1865
|
**/
|
1826
1866
|
PalletBalancesCall: {
|
1827
1867
|
_enum: {
|
@@ -1862,13 +1902,13 @@ export default {
|
|
1862
1902
|
}
|
1863
1903
|
},
|
1864
1904
|
/**
|
1865
|
-
*
|
1905
|
+
* Lookup191: pallet_balances::types::AdjustmentDirection
|
1866
1906
|
**/
|
1867
1907
|
PalletBalancesAdjustmentDirection: {
|
1868
1908
|
_enum: ['Increase', 'Decrease']
|
1869
1909
|
},
|
1870
1910
|
/**
|
1871
|
-
*
|
1911
|
+
* Lookup192: pallet_babe::pallet::Call<T>
|
1872
1912
|
**/
|
1873
1913
|
PalletBabeCall: {
|
1874
1914
|
_enum: {
|
@@ -1886,7 +1926,7 @@ export default {
|
|
1886
1926
|
}
|
1887
1927
|
},
|
1888
1928
|
/**
|
1889
|
-
*
|
1929
|
+
* Lookup193: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
1890
1930
|
**/
|
1891
1931
|
SpConsensusSlotsEquivocationProof: {
|
1892
1932
|
offender: 'SpConsensusBabeAppPublic',
|
@@ -1895,7 +1935,7 @@ export default {
|
|
1895
1935
|
secondHeader: 'SpRuntimeHeader'
|
1896
1936
|
},
|
1897
1937
|
/**
|
1898
|
-
*
|
1938
|
+
* Lookup194: sp_runtime::generic::header::Header<Number, Hash>
|
1899
1939
|
**/
|
1900
1940
|
SpRuntimeHeader: {
|
1901
1941
|
parentHash: 'H256',
|
@@ -1905,11 +1945,11 @@ export default {
|
|
1905
1945
|
digest: 'SpRuntimeDigest'
|
1906
1946
|
},
|
1907
1947
|
/**
|
1908
|
-
*
|
1948
|
+
* Lookup195: sp_consensus_babe::app::Public
|
1909
1949
|
**/
|
1910
1950
|
SpConsensusBabeAppPublic: 'SpCoreSr25519Public',
|
1911
1951
|
/**
|
1912
|
-
*
|
1952
|
+
* Lookup197: sp_session::MembershipProof
|
1913
1953
|
**/
|
1914
1954
|
SpSessionMembershipProof: {
|
1915
1955
|
session: 'u32',
|
@@ -1917,7 +1957,7 @@ export default {
|
|
1917
1957
|
validatorCount: 'u32'
|
1918
1958
|
},
|
1919
1959
|
/**
|
1920
|
-
*
|
1960
|
+
* Lookup198: sp_consensus_babe::digests::NextConfigDescriptor
|
1921
1961
|
**/
|
1922
1962
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
1923
1963
|
_enum: {
|
@@ -1929,13 +1969,13 @@ export default {
|
|
1929
1969
|
}
|
1930
1970
|
},
|
1931
1971
|
/**
|
1932
|
-
*
|
1972
|
+
* Lookup200: sp_consensus_babe::AllowedSlots
|
1933
1973
|
**/
|
1934
1974
|
SpConsensusBabeAllowedSlots: {
|
1935
1975
|
_enum: ['PrimarySlots', 'PrimaryAndSecondaryPlainSlots', 'PrimaryAndSecondaryVRFSlots']
|
1936
1976
|
},
|
1937
1977
|
/**
|
1938
|
-
*
|
1978
|
+
* Lookup201: pallet_grandpa::pallet::Call<T>
|
1939
1979
|
**/
|
1940
1980
|
PalletGrandpaCall: {
|
1941
1981
|
_enum: {
|
@@ -1954,14 +1994,14 @@ export default {
|
|
1954
1994
|
}
|
1955
1995
|
},
|
1956
1996
|
/**
|
1957
|
-
*
|
1997
|
+
* Lookup202: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
1958
1998
|
**/
|
1959
1999
|
SpConsensusGrandpaEquivocationProof: {
|
1960
2000
|
setId: 'u64',
|
1961
2001
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
1962
2002
|
},
|
1963
2003
|
/**
|
1964
|
-
*
|
2004
|
+
* Lookup203: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
1965
2005
|
**/
|
1966
2006
|
SpConsensusGrandpaEquivocation: {
|
1967
2007
|
_enum: {
|
@@ -1970,7 +2010,7 @@ export default {
|
|
1970
2010
|
}
|
1971
2011
|
},
|
1972
2012
|
/**
|
1973
|
-
*
|
2013
|
+
* Lookup204: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
1974
2014
|
**/
|
1975
2015
|
FinalityGrandpaEquivocationPrevote: {
|
1976
2016
|
roundNumber: 'u64',
|
@@ -1979,22 +2019,22 @@ export default {
|
|
1979
2019
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
1980
2020
|
},
|
1981
2021
|
/**
|
1982
|
-
*
|
2022
|
+
* Lookup205: finality_grandpa::Prevote<primitive_types::H256, N>
|
1983
2023
|
**/
|
1984
2024
|
FinalityGrandpaPrevote: {
|
1985
2025
|
targetHash: 'H256',
|
1986
2026
|
targetNumber: 'u64'
|
1987
2027
|
},
|
1988
2028
|
/**
|
1989
|
-
*
|
2029
|
+
* Lookup206: sp_consensus_grandpa::app::Signature
|
1990
2030
|
**/
|
1991
2031
|
SpConsensusGrandpaAppSignature: 'SpCoreEd25519Signature',
|
1992
2032
|
/**
|
1993
|
-
*
|
2033
|
+
* Lookup207: sp_core::ed25519::Signature
|
1994
2034
|
**/
|
1995
2035
|
SpCoreEd25519Signature: '[u8;64]',
|
1996
2036
|
/**
|
1997
|
-
*
|
2037
|
+
* Lookup210: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
1998
2038
|
**/
|
1999
2039
|
FinalityGrandpaEquivocationPrecommit: {
|
2000
2040
|
roundNumber: 'u64',
|
@@ -2003,18 +2043,18 @@ export default {
|
|
2003
2043
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
2004
2044
|
},
|
2005
2045
|
/**
|
2006
|
-
*
|
2046
|
+
* Lookup211: finality_grandpa::Precommit<primitive_types::H256, N>
|
2007
2047
|
**/
|
2008
2048
|
FinalityGrandpaPrecommit: {
|
2009
2049
|
targetHash: 'H256',
|
2010
2050
|
targetNumber: 'u64'
|
2011
2051
|
},
|
2012
2052
|
/**
|
2013
|
-
*
|
2053
|
+
* Lookup213: sp_core::Void
|
2014
2054
|
**/
|
2015
2055
|
SpCoreVoid: 'Null',
|
2016
2056
|
/**
|
2017
|
-
*
|
2057
|
+
* Lookup214: pallet_indices::pallet::Call<T>
|
2018
2058
|
**/
|
2019
2059
|
PalletIndicesCall: {
|
2020
2060
|
_enum: {
|
@@ -2045,7 +2085,7 @@ export default {
|
|
2045
2085
|
}
|
2046
2086
|
},
|
2047
2087
|
/**
|
2048
|
-
*
|
2088
|
+
* Lookup215: pallet_democracy::pallet::Call<T>
|
2049
2089
|
**/
|
2050
2090
|
PalletDemocracyCall: {
|
2051
2091
|
_enum: {
|
@@ -2114,7 +2154,7 @@ export default {
|
|
2114
2154
|
}
|
2115
2155
|
},
|
2116
2156
|
/**
|
2117
|
-
*
|
2157
|
+
* Lookup216: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
|
2118
2158
|
**/
|
2119
2159
|
FrameSupportPreimagesBounded: {
|
2120
2160
|
_enum: {
|
@@ -2135,17 +2175,17 @@ export default {
|
|
2135
2175
|
}
|
2136
2176
|
},
|
2137
2177
|
/**
|
2138
|
-
*
|
2178
|
+
* Lookup217: sp_runtime::traits::BlakeTwo256
|
2139
2179
|
**/
|
2140
2180
|
SpRuntimeBlakeTwo256: 'Null',
|
2141
2181
|
/**
|
2142
|
-
*
|
2182
|
+
* Lookup219: pallet_democracy::conviction::Conviction
|
2143
2183
|
**/
|
2144
2184
|
PalletDemocracyConviction: {
|
2145
2185
|
_enum: ['None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x']
|
2146
2186
|
},
|
2147
2187
|
/**
|
2148
|
-
*
|
2188
|
+
* Lookup222: pallet_collective::pallet::Call<T, I>
|
2149
2189
|
**/
|
2150
2190
|
PalletCollectiveCall: {
|
2151
2191
|
_enum: {
|
@@ -2181,7 +2221,7 @@ export default {
|
|
2181
2221
|
}
|
2182
2222
|
},
|
2183
2223
|
/**
|
2184
|
-
*
|
2224
|
+
* Lookup223: pallet_vesting::pallet::Call<T>
|
2185
2225
|
**/
|
2186
2226
|
PalletVestingCall: {
|
2187
2227
|
_enum: {
|
@@ -2209,7 +2249,7 @@ export default {
|
|
2209
2249
|
}
|
2210
2250
|
},
|
2211
2251
|
/**
|
2212
|
-
*
|
2252
|
+
* Lookup224: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
|
2213
2253
|
**/
|
2214
2254
|
PalletVestingVestingInfo: {
|
2215
2255
|
locked: 'u128',
|
@@ -2217,7 +2257,7 @@ export default {
|
|
2217
2257
|
startingBlock: 'u64'
|
2218
2258
|
},
|
2219
2259
|
/**
|
2220
|
-
*
|
2260
|
+
* Lookup225: pallet_elections_phragmen::pallet::Call<T>
|
2221
2261
|
**/
|
2222
2262
|
PalletElectionsPhragmenCall: {
|
2223
2263
|
_enum: {
|
@@ -2244,7 +2284,7 @@ export default {
|
|
2244
2284
|
}
|
2245
2285
|
},
|
2246
2286
|
/**
|
2247
|
-
*
|
2287
|
+
* Lookup226: pallet_elections_phragmen::Renouncing
|
2248
2288
|
**/
|
2249
2289
|
PalletElectionsPhragmenRenouncing: {
|
2250
2290
|
_enum: {
|
@@ -2254,7 +2294,7 @@ export default {
|
|
2254
2294
|
}
|
2255
2295
|
},
|
2256
2296
|
/**
|
2257
|
-
*
|
2297
|
+
* Lookup227: pallet_election_provider_multi_phase::pallet::Call<T>
|
2258
2298
|
**/
|
2259
2299
|
PalletElectionProviderMultiPhaseCall: {
|
2260
2300
|
_enum: {
|
@@ -2278,7 +2318,7 @@ export default {
|
|
2278
2318
|
}
|
2279
2319
|
},
|
2280
2320
|
/**
|
2281
|
-
*
|
2321
|
+
* Lookup228: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
|
2282
2322
|
**/
|
2283
2323
|
PalletElectionProviderMultiPhaseRawSolution: {
|
2284
2324
|
solution: 'TangleTestnetRuntimeNposSolution16',
|
@@ -2286,7 +2326,7 @@ export default {
|
|
2286
2326
|
round: 'u32'
|
2287
2327
|
},
|
2288
2328
|
/**
|
2289
|
-
*
|
2329
|
+
* Lookup229: tangle_testnet_runtime::NposSolution16
|
2290
2330
|
**/
|
2291
2331
|
TangleTestnetRuntimeNposSolution16: {
|
2292
2332
|
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
@@ -2307,21 +2347,21 @@ export default {
|
|
2307
2347
|
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
|
2308
2348
|
},
|
2309
2349
|
/**
|
2310
|
-
*
|
2350
|
+
* Lookup280: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
|
2311
2351
|
**/
|
2312
2352
|
PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
|
2313
2353
|
voters: 'Compact<u32>',
|
2314
2354
|
targets: 'Compact<u32>'
|
2315
2355
|
},
|
2316
2356
|
/**
|
2317
|
-
*
|
2357
|
+
* Lookup284: sp_npos_elections::Support<sp_core::crypto::AccountId32>
|
2318
2358
|
**/
|
2319
2359
|
SpNposElectionsSupport: {
|
2320
2360
|
total: 'u128',
|
2321
2361
|
voters: 'Vec<(AccountId32,u128)>'
|
2322
2362
|
},
|
2323
2363
|
/**
|
2324
|
-
*
|
2364
|
+
* Lookup285: pallet_staking::pallet::pallet::Call<T>
|
2325
2365
|
**/
|
2326
2366
|
PalletStakingPalletCall: {
|
2327
2367
|
_enum: {
|
@@ -2423,7 +2463,7 @@ export default {
|
|
2423
2463
|
}
|
2424
2464
|
},
|
2425
2465
|
/**
|
2426
|
-
*
|
2466
|
+
* Lookup289: pallet_staking::pallet::pallet::ConfigOp<T>
|
2427
2467
|
**/
|
2428
2468
|
PalletStakingPalletConfigOpU128: {
|
2429
2469
|
_enum: {
|
@@ -2433,7 +2473,7 @@ export default {
|
|
2433
2473
|
}
|
2434
2474
|
},
|
2435
2475
|
/**
|
2436
|
-
*
|
2476
|
+
* Lookup290: pallet_staking::pallet::pallet::ConfigOp<T>
|
2437
2477
|
**/
|
2438
2478
|
PalletStakingPalletConfigOpU32: {
|
2439
2479
|
_enum: {
|
@@ -2443,7 +2483,7 @@ export default {
|
|
2443
2483
|
}
|
2444
2484
|
},
|
2445
2485
|
/**
|
2446
|
-
*
|
2486
|
+
* Lookup291: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
|
2447
2487
|
**/
|
2448
2488
|
PalletStakingPalletConfigOpPercent: {
|
2449
2489
|
_enum: {
|
@@ -2453,7 +2493,7 @@ export default {
|
|
2453
2493
|
}
|
2454
2494
|
},
|
2455
2495
|
/**
|
2456
|
-
*
|
2496
|
+
* Lookup292: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
|
2457
2497
|
**/
|
2458
2498
|
PalletStakingPalletConfigOpPerbill: {
|
2459
2499
|
_enum: {
|
@@ -2463,7 +2503,7 @@ export default {
|
|
2463
2503
|
}
|
2464
2504
|
},
|
2465
2505
|
/**
|
2466
|
-
*
|
2506
|
+
* Lookup294: pallet_session::pallet::Call<T>
|
2467
2507
|
**/
|
2468
2508
|
PalletSessionCall: {
|
2469
2509
|
_enum: {
|
@@ -2478,7 +2518,7 @@ export default {
|
|
2478
2518
|
}
|
2479
2519
|
},
|
2480
2520
|
/**
|
2481
|
-
*
|
2521
|
+
* Lookup295: tangle_testnet_runtime::opaque::SessionKeys
|
2482
2522
|
**/
|
2483
2523
|
TangleTestnetRuntimeOpaqueSessionKeys: {
|
2484
2524
|
babe: 'SpConsensusBabeAppPublic',
|
@@ -2487,15 +2527,15 @@ export default {
|
|
2487
2527
|
role: 'TangleCryptoPrimitivesCryptoPublic'
|
2488
2528
|
},
|
2489
2529
|
/**
|
2490
|
-
*
|
2530
|
+
* Lookup296: tangle_crypto_primitives::crypto::Public
|
2491
2531
|
**/
|
2492
2532
|
TangleCryptoPrimitivesCryptoPublic: 'SpCoreEcdsaPublic',
|
2493
2533
|
/**
|
2494
|
-
*
|
2534
|
+
* Lookup297: sp_core::ecdsa::Public
|
2495
2535
|
**/
|
2496
2536
|
SpCoreEcdsaPublic: '[u8;33]',
|
2497
2537
|
/**
|
2498
|
-
*
|
2538
|
+
* Lookup299: pallet_treasury::pallet::Call<T, I>
|
2499
2539
|
**/
|
2500
2540
|
PalletTreasuryCall: {
|
2501
2541
|
_enum: {
|
@@ -2534,7 +2574,7 @@ export default {
|
|
2534
2574
|
}
|
2535
2575
|
},
|
2536
2576
|
/**
|
2537
|
-
*
|
2577
|
+
* Lookup301: pallet_bounties::pallet::Call<T, I>
|
2538
2578
|
**/
|
2539
2579
|
PalletBountiesCall: {
|
2540
2580
|
_enum: {
|
@@ -2573,7 +2613,7 @@ export default {
|
|
2573
2613
|
}
|
2574
2614
|
},
|
2575
2615
|
/**
|
2576
|
-
*
|
2616
|
+
* Lookup302: pallet_child_bounties::pallet::Call<T>
|
2577
2617
|
**/
|
2578
2618
|
PalletChildBountiesCall: {
|
2579
2619
|
_enum: {
|
@@ -2612,7 +2652,7 @@ export default {
|
|
2612
2652
|
}
|
2613
2653
|
},
|
2614
2654
|
/**
|
2615
|
-
*
|
2655
|
+
* Lookup303: pallet_bags_list::pallet::Call<T, I>
|
2616
2656
|
**/
|
2617
2657
|
PalletBagsListCall: {
|
2618
2658
|
_enum: {
|
@@ -2629,7 +2669,7 @@ export default {
|
|
2629
2669
|
}
|
2630
2670
|
},
|
2631
2671
|
/**
|
2632
|
-
*
|
2672
|
+
* Lookup304: pallet_nomination_pools::pallet::Call<T>
|
2633
2673
|
**/
|
2634
2674
|
PalletNominationPoolsCall: {
|
2635
2675
|
_enum: {
|
@@ -2730,7 +2770,7 @@ export default {
|
|
2730
2770
|
}
|
2731
2771
|
},
|
2732
2772
|
/**
|
2733
|
-
*
|
2773
|
+
* Lookup305: pallet_nomination_pools::BondExtra<Balance>
|
2734
2774
|
**/
|
2735
2775
|
PalletNominationPoolsBondExtra: {
|
2736
2776
|
_enum: {
|
@@ -2739,7 +2779,7 @@ export default {
|
|
2739
2779
|
}
|
2740
2780
|
},
|
2741
2781
|
/**
|
2742
|
-
*
|
2782
|
+
* Lookup306: pallet_nomination_pools::ConfigOp<T>
|
2743
2783
|
**/
|
2744
2784
|
PalletNominationPoolsConfigOpU128: {
|
2745
2785
|
_enum: {
|
@@ -2749,7 +2789,7 @@ export default {
|
|
2749
2789
|
}
|
2750
2790
|
},
|
2751
2791
|
/**
|
2752
|
-
*
|
2792
|
+
* Lookup307: pallet_nomination_pools::ConfigOp<T>
|
2753
2793
|
**/
|
2754
2794
|
PalletNominationPoolsConfigOpU32: {
|
2755
2795
|
_enum: {
|
@@ -2759,7 +2799,7 @@ export default {
|
|
2759
2799
|
}
|
2760
2800
|
},
|
2761
2801
|
/**
|
2762
|
-
*
|
2802
|
+
* Lookup308: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
|
2763
2803
|
**/
|
2764
2804
|
PalletNominationPoolsConfigOpPerbill: {
|
2765
2805
|
_enum: {
|
@@ -2769,7 +2809,7 @@ export default {
|
|
2769
2809
|
}
|
2770
2810
|
},
|
2771
2811
|
/**
|
2772
|
-
*
|
2812
|
+
* Lookup309: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
|
2773
2813
|
**/
|
2774
2814
|
PalletNominationPoolsConfigOpAccountId32: {
|
2775
2815
|
_enum: {
|
@@ -2779,13 +2819,13 @@ export default {
|
|
2779
2819
|
}
|
2780
2820
|
},
|
2781
2821
|
/**
|
2782
|
-
*
|
2822
|
+
* Lookup310: pallet_nomination_pools::ClaimPermission
|
2783
2823
|
**/
|
2784
2824
|
PalletNominationPoolsClaimPermission: {
|
2785
2825
|
_enum: ['Permissioned', 'PermissionlessCompound', 'PermissionlessWithdraw', 'PermissionlessAll']
|
2786
2826
|
},
|
2787
2827
|
/**
|
2788
|
-
*
|
2828
|
+
* Lookup311: pallet_scheduler::pallet::Call<T>
|
2789
2829
|
**/
|
2790
2830
|
PalletSchedulerCall: {
|
2791
2831
|
_enum: {
|
@@ -2825,7 +2865,7 @@ export default {
|
|
2825
2865
|
}
|
2826
2866
|
},
|
2827
2867
|
/**
|
2828
|
-
*
|
2868
|
+
* Lookup313: pallet_preimage::pallet::Call<T>
|
2829
2869
|
**/
|
2830
2870
|
PalletPreimageCall: {
|
2831
2871
|
_enum: {
|
@@ -2856,7 +2896,7 @@ export default {
|
|
2856
2896
|
}
|
2857
2897
|
},
|
2858
2898
|
/**
|
2859
|
-
*
|
2899
|
+
* Lookup314: pallet_tx_pause::pallet::Call<T>
|
2860
2900
|
**/
|
2861
2901
|
PalletTxPauseCall: {
|
2862
2902
|
_enum: {
|
@@ -2869,7 +2909,7 @@ export default {
|
|
2869
2909
|
}
|
2870
2910
|
},
|
2871
2911
|
/**
|
2872
|
-
*
|
2912
|
+
* Lookup315: pallet_im_online::pallet::Call<T>
|
2873
2913
|
**/
|
2874
2914
|
PalletImOnlineCall: {
|
2875
2915
|
_enum: {
|
@@ -2880,7 +2920,7 @@ export default {
|
|
2880
2920
|
}
|
2881
2921
|
},
|
2882
2922
|
/**
|
2883
|
-
*
|
2923
|
+
* Lookup316: pallet_im_online::Heartbeat<BlockNumber>
|
2884
2924
|
**/
|
2885
2925
|
PalletImOnlineHeartbeat: {
|
2886
2926
|
blockNumber: 'u64',
|
@@ -2889,15 +2929,15 @@ export default {
|
|
2889
2929
|
validatorsLen: 'u32'
|
2890
2930
|
},
|
2891
2931
|
/**
|
2892
|
-
*
|
2932
|
+
* Lookup317: pallet_im_online::sr25519::app_sr25519::Signature
|
2893
2933
|
**/
|
2894
2934
|
PalletImOnlineSr25519AppSr25519Signature: 'SpCoreSr25519Signature',
|
2895
2935
|
/**
|
2896
|
-
*
|
2936
|
+
* Lookup318: sp_core::sr25519::Signature
|
2897
2937
|
**/
|
2898
2938
|
SpCoreSr25519Signature: '[u8;64]',
|
2899
2939
|
/**
|
2900
|
-
*
|
2940
|
+
* Lookup319: pallet_identity::pallet::Call<T>
|
2901
2941
|
**/
|
2902
2942
|
PalletIdentityCall: {
|
2903
2943
|
_enum: {
|
@@ -2982,7 +3022,7 @@ export default {
|
|
2982
3022
|
}
|
2983
3023
|
},
|
2984
3024
|
/**
|
2985
|
-
*
|
3025
|
+
* Lookup320: pallet_identity::legacy::IdentityInfo<FieldLimit>
|
2986
3026
|
**/
|
2987
3027
|
PalletIdentityLegacyIdentityInfo: {
|
2988
3028
|
additional: 'Vec<(Data,Data)>',
|
@@ -2996,7 +3036,7 @@ export default {
|
|
2996
3036
|
twitter: 'Data'
|
2997
3037
|
},
|
2998
3038
|
/**
|
2999
|
-
*
|
3039
|
+
* Lookup356: pallet_identity::types::Judgement<Balance>
|
3000
3040
|
**/
|
3001
3041
|
PalletIdentityJudgement: {
|
3002
3042
|
_enum: {
|
@@ -3010,7 +3050,7 @@ export default {
|
|
3010
3050
|
}
|
3011
3051
|
},
|
3012
3052
|
/**
|
3013
|
-
*
|
3053
|
+
* Lookup358: sp_runtime::MultiSignature
|
3014
3054
|
**/
|
3015
3055
|
SpRuntimeMultiSignature: {
|
3016
3056
|
_enum: {
|
@@ -3020,11 +3060,11 @@ export default {
|
|
3020
3060
|
}
|
3021
3061
|
},
|
3022
3062
|
/**
|
3023
|
-
*
|
3063
|
+
* Lookup359: sp_core::ecdsa::Signature
|
3024
3064
|
**/
|
3025
3065
|
SpCoreEcdsaSignature: '[u8;65]',
|
3026
3066
|
/**
|
3027
|
-
*
|
3067
|
+
* Lookup361: pallet_utility::pallet::Call<T>
|
3028
3068
|
**/
|
3029
3069
|
PalletUtilityCall: {
|
3030
3070
|
_enum: {
|
@@ -3052,7 +3092,7 @@ export default {
|
|
3052
3092
|
}
|
3053
3093
|
},
|
3054
3094
|
/**
|
3055
|
-
*
|
3095
|
+
* Lookup363: tangle_testnet_runtime::OriginCaller
|
3056
3096
|
**/
|
3057
3097
|
TangleTestnetRuntimeOriginCaller: {
|
3058
3098
|
_enum: {
|
@@ -3091,7 +3131,7 @@ export default {
|
|
3091
3131
|
}
|
3092
3132
|
},
|
3093
3133
|
/**
|
3094
|
-
*
|
3134
|
+
* Lookup364: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
3095
3135
|
**/
|
3096
3136
|
FrameSupportDispatchRawOrigin: {
|
3097
3137
|
_enum: {
|
@@ -3101,7 +3141,7 @@ export default {
|
|
3101
3141
|
}
|
3102
3142
|
},
|
3103
3143
|
/**
|
3104
|
-
*
|
3144
|
+
* Lookup365: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
3105
3145
|
**/
|
3106
3146
|
PalletCollectiveRawOrigin: {
|
3107
3147
|
_enum: {
|
@@ -3111,7 +3151,7 @@ export default {
|
|
3111
3151
|
}
|
3112
3152
|
},
|
3113
3153
|
/**
|
3114
|
-
*
|
3154
|
+
* Lookup366: pallet_ethereum::RawOrigin
|
3115
3155
|
**/
|
3116
3156
|
PalletEthereumRawOrigin: {
|
3117
3157
|
_enum: {
|
@@ -3119,7 +3159,7 @@ export default {
|
|
3119
3159
|
}
|
3120
3160
|
},
|
3121
3161
|
/**
|
3122
|
-
*
|
3162
|
+
* Lookup367: pallet_multisig::pallet::Call<T>
|
3123
3163
|
**/
|
3124
3164
|
PalletMultisigCall: {
|
3125
3165
|
_enum: {
|
@@ -3150,7 +3190,7 @@ export default {
|
|
3150
3190
|
}
|
3151
3191
|
},
|
3152
3192
|
/**
|
3153
|
-
*
|
3193
|
+
* Lookup369: pallet_ethereum::pallet::Call<T>
|
3154
3194
|
**/
|
3155
3195
|
PalletEthereumCall: {
|
3156
3196
|
_enum: {
|
@@ -3160,7 +3200,7 @@ export default {
|
|
3160
3200
|
}
|
3161
3201
|
},
|
3162
3202
|
/**
|
3163
|
-
*
|
3203
|
+
* Lookup370: ethereum::transaction::TransactionV2
|
3164
3204
|
**/
|
3165
3205
|
EthereumTransactionTransactionV2: {
|
3166
3206
|
_enum: {
|
@@ -3170,7 +3210,7 @@ export default {
|
|
3170
3210
|
}
|
3171
3211
|
},
|
3172
3212
|
/**
|
3173
|
-
*
|
3213
|
+
* Lookup371: ethereum::transaction::LegacyTransaction
|
3174
3214
|
**/
|
3175
3215
|
EthereumTransactionLegacyTransaction: {
|
3176
3216
|
nonce: 'U256',
|
@@ -3182,7 +3222,7 @@ export default {
|
|
3182
3222
|
signature: 'EthereumTransactionTransactionSignature'
|
3183
3223
|
},
|
3184
3224
|
/**
|
3185
|
-
*
|
3225
|
+
* Lookup372: ethereum::transaction::TransactionAction
|
3186
3226
|
**/
|
3187
3227
|
EthereumTransactionTransactionAction: {
|
3188
3228
|
_enum: {
|
@@ -3191,7 +3231,7 @@ export default {
|
|
3191
3231
|
}
|
3192
3232
|
},
|
3193
3233
|
/**
|
3194
|
-
*
|
3234
|
+
* Lookup373: ethereum::transaction::TransactionSignature
|
3195
3235
|
**/
|
3196
3236
|
EthereumTransactionTransactionSignature: {
|
3197
3237
|
v: 'u64',
|
@@ -3199,7 +3239,7 @@ export default {
|
|
3199
3239
|
s: 'H256'
|
3200
3240
|
},
|
3201
3241
|
/**
|
3202
|
-
*
|
3242
|
+
* Lookup375: ethereum::transaction::EIP2930Transaction
|
3203
3243
|
**/
|
3204
3244
|
EthereumTransactionEip2930Transaction: {
|
3205
3245
|
chainId: 'u64',
|
@@ -3215,14 +3255,14 @@ export default {
|
|
3215
3255
|
s: 'H256'
|
3216
3256
|
},
|
3217
3257
|
/**
|
3218
|
-
*
|
3258
|
+
* Lookup377: ethereum::transaction::AccessListItem
|
3219
3259
|
**/
|
3220
3260
|
EthereumTransactionAccessListItem: {
|
3221
3261
|
address: 'H160',
|
3222
3262
|
storageKeys: 'Vec<H256>'
|
3223
3263
|
},
|
3224
3264
|
/**
|
3225
|
-
*
|
3265
|
+
* Lookup378: ethereum::transaction::EIP1559Transaction
|
3226
3266
|
**/
|
3227
3267
|
EthereumTransactionEip1559Transaction: {
|
3228
3268
|
chainId: 'u64',
|
@@ -3239,7 +3279,7 @@ export default {
|
|
3239
3279
|
s: 'H256'
|
3240
3280
|
},
|
3241
3281
|
/**
|
3242
|
-
*
|
3282
|
+
* Lookup379: pallet_evm::pallet::Call<T>
|
3243
3283
|
**/
|
3244
3284
|
PalletEvmCall: {
|
3245
3285
|
_enum: {
|
@@ -3282,7 +3322,7 @@ export default {
|
|
3282
3322
|
}
|
3283
3323
|
},
|
3284
3324
|
/**
|
3285
|
-
*
|
3325
|
+
* Lookup383: pallet_dynamic_fee::pallet::Call<T>
|
3286
3326
|
**/
|
3287
3327
|
PalletDynamicFeeCall: {
|
3288
3328
|
_enum: {
|
@@ -3292,7 +3332,7 @@ export default {
|
|
3292
3332
|
}
|
3293
3333
|
},
|
3294
3334
|
/**
|
3295
|
-
*
|
3335
|
+
* Lookup384: pallet_base_fee::pallet::Call<T>
|
3296
3336
|
**/
|
3297
3337
|
PalletBaseFeeCall: {
|
3298
3338
|
_enum: {
|
@@ -3305,7 +3345,7 @@ export default {
|
|
3305
3345
|
}
|
3306
3346
|
},
|
3307
3347
|
/**
|
3308
|
-
*
|
3348
|
+
* Lookup385: pallet_hotfix_sufficients::pallet::Call<T>
|
3309
3349
|
**/
|
3310
3350
|
PalletHotfixSufficientsCall: {
|
3311
3351
|
_enum: {
|
@@ -3315,7 +3355,7 @@ export default {
|
|
3315
3355
|
}
|
3316
3356
|
},
|
3317
3357
|
/**
|
3318
|
-
*
|
3358
|
+
* Lookup387: pallet_airdrop_claims::pallet::Call<T>
|
3319
3359
|
**/
|
3320
3360
|
PalletAirdropClaimsCall: {
|
3321
3361
|
_enum: {
|
@@ -3351,7 +3391,7 @@ export default {
|
|
3351
3391
|
}
|
3352
3392
|
},
|
3353
3393
|
/**
|
3354
|
-
*
|
3394
|
+
* Lookup389: pallet_airdrop_claims::utils::MultiAddressSignature
|
3355
3395
|
**/
|
3356
3396
|
PalletAirdropClaimsUtilsMultiAddressSignature: {
|
3357
3397
|
_enum: {
|
@@ -3360,21 +3400,21 @@ export default {
|
|
3360
3400
|
}
|
3361
3401
|
},
|
3362
3402
|
/**
|
3363
|
-
*
|
3403
|
+
* Lookup390: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
|
3364
3404
|
**/
|
3365
3405
|
PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: '[u8;65]',
|
3366
3406
|
/**
|
3367
|
-
*
|
3407
|
+
* Lookup391: pallet_airdrop_claims::utils::Sr25519Signature
|
3368
3408
|
**/
|
3369
3409
|
PalletAirdropClaimsUtilsSr25519Signature: 'SpCoreSr25519Signature',
|
3370
3410
|
/**
|
3371
|
-
*
|
3411
|
+
* Lookup397: pallet_airdrop_claims::StatementKind
|
3372
3412
|
**/
|
3373
3413
|
PalletAirdropClaimsStatementKind: {
|
3374
3414
|
_enum: ['Regular', 'Safe']
|
3375
3415
|
},
|
3376
3416
|
/**
|
3377
|
-
*
|
3417
|
+
* Lookup398: pallet_roles::pallet::Call<T>
|
3378
3418
|
**/
|
3379
3419
|
PalletRolesCall: {
|
3380
3420
|
_enum: {
|
@@ -3401,7 +3441,7 @@ export default {
|
|
3401
3441
|
}
|
3402
3442
|
},
|
3403
3443
|
/**
|
3404
|
-
*
|
3444
|
+
* Lookup399: pallet_roles::profile::Profile<T>
|
3405
3445
|
**/
|
3406
3446
|
PalletRolesProfile: {
|
3407
3447
|
_enum: {
|
@@ -3410,27 +3450,27 @@ export default {
|
|
3410
3450
|
}
|
3411
3451
|
},
|
3412
3452
|
/**
|
3413
|
-
*
|
3453
|
+
* Lookup400: pallet_roles::profile::IndependentRestakeProfile<T>
|
3414
3454
|
**/
|
3415
3455
|
PalletRolesProfileIndependentRestakeProfile: {
|
3416
3456
|
records: 'Vec<PalletRolesProfileRecord>'
|
3417
3457
|
},
|
3418
3458
|
/**
|
3419
|
-
*
|
3459
|
+
* Lookup402: pallet_roles::profile::Record<T>
|
3420
3460
|
**/
|
3421
3461
|
PalletRolesProfileRecord: {
|
3422
3462
|
role: 'TanglePrimitivesRolesRoleType',
|
3423
3463
|
amount: 'Option<u128>'
|
3424
3464
|
},
|
3425
3465
|
/**
|
3426
|
-
*
|
3466
|
+
* Lookup405: pallet_roles::profile::SharedRestakeProfile<T>
|
3427
3467
|
**/
|
3428
3468
|
PalletRolesProfileSharedRestakeProfile: {
|
3429
3469
|
records: 'Vec<PalletRolesProfileRecord>',
|
3430
3470
|
amount: 'u128'
|
3431
3471
|
},
|
3432
3472
|
/**
|
3433
|
-
*
|
3473
|
+
* Lookup406: pallet_jobs::module::Call<T>
|
3434
3474
|
**/
|
3435
3475
|
PalletJobsModuleCall: {
|
3436
3476
|
_enum: {
|
@@ -3469,7 +3509,7 @@ export default {
|
|
3469
3509
|
}
|
3470
3510
|
},
|
3471
3511
|
/**
|
3472
|
-
*
|
3512
|
+
* Lookup407: tangle_primitives::jobs::JobResult<tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxProofLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
3473
3513
|
**/
|
3474
3514
|
TanglePrimitivesJobsJobResult: {
|
3475
3515
|
_enum: {
|
@@ -3482,55 +3522,57 @@ export default {
|
|
3482
3522
|
}
|
3483
3523
|
},
|
3484
3524
|
/**
|
3485
|
-
*
|
3525
|
+
* Lookup408: tangle_testnet_runtime::MaxKeyLen
|
3486
3526
|
**/
|
3487
3527
|
TangleTestnetRuntimeMaxKeyLen: 'Null',
|
3488
3528
|
/**
|
3489
|
-
*
|
3529
|
+
* Lookup409: tangle_testnet_runtime::MaxSignatureLen
|
3490
3530
|
**/
|
3491
3531
|
TangleTestnetRuntimeMaxSignatureLen: 'Null',
|
3492
3532
|
/**
|
3493
|
-
*
|
3533
|
+
* Lookup410: tangle_testnet_runtime::MaxDataLen
|
3494
3534
|
**/
|
3495
3535
|
TangleTestnetRuntimeMaxDataLen: 'Null',
|
3496
3536
|
/**
|
3497
|
-
*
|
3537
|
+
* Lookup411: tangle_testnet_runtime::MaxProofLen
|
3498
3538
|
**/
|
3499
3539
|
TangleTestnetRuntimeMaxProofLen: 'Null',
|
3500
3540
|
/**
|
3501
|
-
*
|
3541
|
+
* Lookup412: tangle_primitives::jobs::tss::DKGTSSKeySubmissionResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSignatureLen>
|
3502
3542
|
**/
|
3503
3543
|
TanglePrimitivesJobsTssDkgtssKeySubmissionResult: {
|
3504
3544
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
3505
3545
|
key: 'Bytes',
|
3546
|
+
chainCode: 'Option<[u8;32]>',
|
3506
3547
|
participants: 'Vec<Bytes>',
|
3507
3548
|
signatures: 'Vec<Bytes>',
|
3508
3549
|
threshold: 'u8'
|
3509
3550
|
},
|
3510
3551
|
/**
|
3511
|
-
*
|
3552
|
+
* Lookup413: tangle_primitives::jobs::tss::DigitalSignatureScheme
|
3512
3553
|
**/
|
3513
3554
|
TanglePrimitivesJobsTssDigitalSignatureScheme: {
|
3514
3555
|
_enum: ['EcdsaSecp256k1', 'EcdsaSecp256r1', 'EcdsaStark', 'SchnorrP256', 'SchnorrP384', 'SchnorrSecp256k1', 'SchnorrSr25519', 'SchnorrRistretto255', 'SchnorrRedJubJub', 'SchnorrEd25519', 'SchnorrEd448', 'Bls381']
|
3515
3556
|
},
|
3516
3557
|
/**
|
3517
|
-
*
|
3558
|
+
* Lookup420: tangle_primitives::jobs::tss::DKGTSSSignatureResult<tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
3518
3559
|
**/
|
3519
3560
|
TanglePrimitivesJobsTssDkgtssSignatureResult: {
|
3520
3561
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
3521
|
-
derivationPath: 'Option<Bytes>',
|
3522
3562
|
data: 'Bytes',
|
3523
3563
|
signature: 'Bytes',
|
3524
|
-
verifyingKey: 'Bytes'
|
3564
|
+
verifyingKey: 'Bytes',
|
3565
|
+
derivationPath: 'Option<Bytes>',
|
3566
|
+
chainCode: 'Option<[u8;32]>'
|
3525
3567
|
},
|
3526
3568
|
/**
|
3527
|
-
*
|
3569
|
+
* Lookup422: tangle_primitives::jobs::tss::DKGTSSKeyRefreshResult
|
3528
3570
|
**/
|
3529
3571
|
TanglePrimitivesJobsTssDkgtssKeyRefreshResult: {
|
3530
3572
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme'
|
3531
3573
|
},
|
3532
3574
|
/**
|
3533
|
-
*
|
3575
|
+
* Lookup423: tangle_primitives::jobs::tss::DKGTSSKeyRotationResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
3534
3576
|
**/
|
3535
3577
|
TanglePrimitivesJobsTssDkgtssKeyRotationResult: {
|
3536
3578
|
phaseOneId: 'u64',
|
@@ -3539,17 +3581,18 @@ export default {
|
|
3539
3581
|
key: 'Bytes',
|
3540
3582
|
signature: 'Bytes',
|
3541
3583
|
signatureScheme: 'TanglePrimitivesJobsTssDigitalSignatureScheme',
|
3542
|
-
derivationPath: 'Option<Bytes>'
|
3584
|
+
derivationPath: 'Option<Bytes>',
|
3585
|
+
chainCode: 'Option<[u8;32]>'
|
3543
3586
|
},
|
3544
3587
|
/**
|
3545
|
-
*
|
3588
|
+
* Lookup424: tangle_primitives::jobs::zksaas::ZkSaaSCircuitResult<tangle_testnet_runtime::MaxParticipants>
|
3546
3589
|
**/
|
3547
3590
|
TanglePrimitivesJobsZksaasZkSaaSCircuitResult: {
|
3548
3591
|
jobId: 'u64',
|
3549
3592
|
participants: 'Vec<SpCoreEcdsaPublic>'
|
3550
3593
|
},
|
3551
3594
|
/**
|
3552
|
-
*
|
3595
|
+
* Lookup427: tangle_primitives::jobs::zksaas::ZkSaaSProofResult<tangle_testnet_runtime::MaxProofLen>
|
3553
3596
|
**/
|
3554
3597
|
TanglePrimitivesJobsZksaasZkSaaSProofResult: {
|
3555
3598
|
_enum: {
|
@@ -3558,25 +3601,25 @@ export default {
|
|
3558
3601
|
}
|
3559
3602
|
},
|
3560
3603
|
/**
|
3561
|
-
*
|
3604
|
+
* Lookup428: tangle_primitives::jobs::zksaas::ArkworksProofResult<tangle_testnet_runtime::MaxProofLen>
|
3562
3605
|
**/
|
3563
3606
|
TanglePrimitivesJobsZksaasArkworksProofResult: {
|
3564
3607
|
proof: 'Bytes'
|
3565
3608
|
},
|
3566
3609
|
/**
|
3567
|
-
*
|
3610
|
+
* Lookup430: tangle_primitives::jobs::zksaas::CircomProofResult<tangle_testnet_runtime::MaxProofLen>
|
3568
3611
|
**/
|
3569
3612
|
TanglePrimitivesJobsZksaasCircomProofResult: {
|
3570
3613
|
proof: 'Bytes'
|
3571
3614
|
},
|
3572
3615
|
/**
|
3573
|
-
*
|
3616
|
+
* Lookup431: tangle_primitives::jobs::ValidatorOffenceType
|
3574
3617
|
**/
|
3575
3618
|
TanglePrimitivesJobsValidatorOffenceType: {
|
3576
3619
|
_enum: ['Inactivity', 'InvalidSignatureSubmitted', 'RejectedValidAction', 'ApprovedInvalidAction']
|
3577
3620
|
},
|
3578
3621
|
/**
|
3579
|
-
*
|
3622
|
+
* Lookup432: tangle_primitives::misbehavior::MisbehaviorSubmission
|
3580
3623
|
**/
|
3581
3624
|
TanglePrimitivesMisbehaviorMisbehaviorSubmission: {
|
3582
3625
|
roleType: 'TanglePrimitivesRolesRoleType',
|
@@ -3585,7 +3628,7 @@ export default {
|
|
3585
3628
|
justification: 'TanglePrimitivesMisbehaviorMisbehaviorJustification'
|
3586
3629
|
},
|
3587
3630
|
/**
|
3588
|
-
*
|
3631
|
+
* Lookup433: tangle_primitives::misbehavior::MisbehaviorJustification
|
3589
3632
|
**/
|
3590
3633
|
TanglePrimitivesMisbehaviorMisbehaviorJustification: {
|
3591
3634
|
_enum: {
|
@@ -3594,7 +3637,7 @@ export default {
|
|
3594
3637
|
}
|
3595
3638
|
},
|
3596
3639
|
/**
|
3597
|
-
*
|
3640
|
+
* Lookup434: tangle_primitives::misbehavior::DKGTSSJustification
|
3598
3641
|
**/
|
3599
3642
|
TanglePrimitivesMisbehaviorDkgtssJustification: {
|
3600
3643
|
_enum: {
|
@@ -3603,7 +3646,7 @@ export default {
|
|
3603
3646
|
}
|
3604
3647
|
},
|
3605
3648
|
/**
|
3606
|
-
*
|
3649
|
+
* Lookup435: tangle_primitives::misbehavior::dfns_cggmp21::DfnsCGGMP21Justification
|
3607
3650
|
**/
|
3608
3651
|
TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification: {
|
3609
3652
|
_enum: {
|
@@ -3625,7 +3668,7 @@ export default {
|
|
3625
3668
|
}
|
3626
3669
|
},
|
3627
3670
|
/**
|
3628
|
-
*
|
3671
|
+
* Lookup437: tangle_primitives::misbehavior::dfns_cggmp21::KeygenAborted
|
3629
3672
|
**/
|
3630
3673
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted: {
|
3631
3674
|
_enum: {
|
@@ -3647,7 +3690,7 @@ export default {
|
|
3647
3690
|
}
|
3648
3691
|
},
|
3649
3692
|
/**
|
3650
|
-
*
|
3693
|
+
* Lookup438: tangle_primitives::misbehavior::SignedRoundMessage
|
3651
3694
|
**/
|
3652
3695
|
TanglePrimitivesMisbehaviorSignedRoundMessage: {
|
3653
3696
|
sender: 'u16',
|
@@ -3655,7 +3698,7 @@ export default {
|
|
3655
3698
|
signature: 'Bytes'
|
3656
3699
|
},
|
3657
3700
|
/**
|
3658
|
-
*
|
3701
|
+
* Lookup440: tangle_primitives::misbehavior::dfns_cggmp21::KeyRefreshAborted
|
3659
3702
|
**/
|
3660
3703
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted: {
|
3661
3704
|
_enum: {
|
@@ -3680,7 +3723,7 @@ export default {
|
|
3680
3723
|
}
|
3681
3724
|
},
|
3682
3725
|
/**
|
3683
|
-
*
|
3726
|
+
* Lookup441: tangle_primitives::misbehavior::dfns_cggmp21::InvalidProofReason
|
3684
3727
|
**/
|
3685
3728
|
TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason: {
|
3686
3729
|
_enum: {
|
@@ -3697,13 +3740,13 @@ export default {
|
|
3697
3740
|
}
|
3698
3741
|
},
|
3699
3742
|
/**
|
3700
|
-
*
|
3743
|
+
* Lookup442: tangle_primitives::misbehavior::dfns_cggmp21::SigningAborted
|
3701
3744
|
**/
|
3702
3745
|
TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted: {
|
3703
3746
|
_enum: ['EncProofOfK', 'InvalidPsi', 'InvalidPsiPrimePrime', 'MismatchedDelta']
|
3704
3747
|
},
|
3705
3748
|
/**
|
3706
|
-
*
|
3749
|
+
* Lookup443: tangle_primitives::misbehavior::zcash_frost::ZCashFrostJustification
|
3707
3750
|
**/
|
3708
3751
|
TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification: {
|
3709
3752
|
_enum: {
|
@@ -3720,7 +3763,7 @@ export default {
|
|
3720
3763
|
}
|
3721
3764
|
},
|
3722
3765
|
/**
|
3723
|
-
*
|
3766
|
+
* Lookup444: tangle_primitives::misbehavior::zcash_frost::KeygenAborted
|
3724
3767
|
**/
|
3725
3768
|
TanglePrimitivesMisbehaviorZcashFrostKeygenAborted: {
|
3726
3769
|
_enum: {
|
@@ -3734,7 +3777,7 @@ export default {
|
|
3734
3777
|
}
|
3735
3778
|
},
|
3736
3779
|
/**
|
3737
|
-
*
|
3780
|
+
* Lookup445: tangle_primitives::misbehavior::zcash_frost::SigningAborted
|
3738
3781
|
**/
|
3739
3782
|
TanglePrimitivesMisbehaviorZcashFrostSigningAborted: {
|
3740
3783
|
_enum: {
|
@@ -3745,11 +3788,11 @@ export default {
|
|
3745
3788
|
}
|
3746
3789
|
},
|
3747
3790
|
/**
|
3748
|
-
*
|
3791
|
+
* Lookup446: tangle_primitives::misbehavior::ZkSaaSJustification
|
3749
3792
|
**/
|
3750
3793
|
TanglePrimitivesMisbehaviorZkSaaSJustification: 'Null',
|
3751
3794
|
/**
|
3752
|
-
*
|
3795
|
+
* Lookup447: pallet_dkg::pallet::Call<T>
|
3753
3796
|
**/
|
3754
3797
|
PalletDkgCall: {
|
3755
3798
|
_enum: {
|
@@ -3759,7 +3802,7 @@ export default {
|
|
3759
3802
|
}
|
3760
3803
|
},
|
3761
3804
|
/**
|
3762
|
-
*
|
3805
|
+
* Lookup448: pallet_zksaas::pallet::Call<T>
|
3763
3806
|
**/
|
3764
3807
|
PalletZksaasCall: {
|
3765
3808
|
_enum: {
|
@@ -3769,13 +3812,66 @@ export default {
|
|
3769
3812
|
}
|
3770
3813
|
},
|
3771
3814
|
/**
|
3772
|
-
*
|
3815
|
+
* Lookup449: pallet_proxy::pallet::Call<T>
|
3816
|
+
**/
|
3817
|
+
PalletProxyCall: {
|
3818
|
+
_enum: {
|
3819
|
+
proxy: {
|
3820
|
+
real: 'MultiAddress',
|
3821
|
+
forceProxyType: 'Option<TangleTestnetRuntimeProxyType>',
|
3822
|
+
call: 'Call',
|
3823
|
+
},
|
3824
|
+
add_proxy: {
|
3825
|
+
delegate: 'MultiAddress',
|
3826
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
3827
|
+
delay: 'u64',
|
3828
|
+
},
|
3829
|
+
remove_proxy: {
|
3830
|
+
delegate: 'MultiAddress',
|
3831
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
3832
|
+
delay: 'u64',
|
3833
|
+
},
|
3834
|
+
remove_proxies: 'Null',
|
3835
|
+
create_pure: {
|
3836
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
3837
|
+
delay: 'u64',
|
3838
|
+
index: 'u16',
|
3839
|
+
},
|
3840
|
+
kill_pure: {
|
3841
|
+
spawner: 'MultiAddress',
|
3842
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
3843
|
+
index: 'u16',
|
3844
|
+
height: 'Compact<u64>',
|
3845
|
+
extIndex: 'Compact<u32>',
|
3846
|
+
},
|
3847
|
+
announce: {
|
3848
|
+
real: 'MultiAddress',
|
3849
|
+
callHash: 'H256',
|
3850
|
+
},
|
3851
|
+
remove_announcement: {
|
3852
|
+
real: 'MultiAddress',
|
3853
|
+
callHash: 'H256',
|
3854
|
+
},
|
3855
|
+
reject_announcement: {
|
3856
|
+
delegate: 'MultiAddress',
|
3857
|
+
callHash: 'H256',
|
3858
|
+
},
|
3859
|
+
proxy_announced: {
|
3860
|
+
delegate: 'MultiAddress',
|
3861
|
+
real: 'MultiAddress',
|
3862
|
+
forceProxyType: 'Option<TangleTestnetRuntimeProxyType>',
|
3863
|
+
call: 'Call'
|
3864
|
+
}
|
3865
|
+
}
|
3866
|
+
},
|
3867
|
+
/**
|
3868
|
+
* Lookup451: pallet_sudo::pallet::Error<T>
|
3773
3869
|
**/
|
3774
3870
|
PalletSudoError: {
|
3775
3871
|
_enum: ['RequireSudo']
|
3776
3872
|
},
|
3777
3873
|
/**
|
3778
|
-
*
|
3874
|
+
* Lookup454: pallet_balances::types::BalanceLock<Balance>
|
3779
3875
|
**/
|
3780
3876
|
PalletBalancesBalanceLock: {
|
3781
3877
|
id: '[u8;8]',
|
@@ -3783,27 +3879,27 @@ export default {
|
|
3783
3879
|
reasons: 'PalletBalancesReasons'
|
3784
3880
|
},
|
3785
3881
|
/**
|
3786
|
-
*
|
3882
|
+
* Lookup455: pallet_balances::types::Reasons
|
3787
3883
|
**/
|
3788
3884
|
PalletBalancesReasons: {
|
3789
3885
|
_enum: ['Fee', 'Misc', 'All']
|
3790
3886
|
},
|
3791
3887
|
/**
|
3792
|
-
*
|
3888
|
+
* Lookup458: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
3793
3889
|
**/
|
3794
3890
|
PalletBalancesReserveData: {
|
3795
3891
|
id: '[u8;8]',
|
3796
3892
|
amount: 'u128'
|
3797
3893
|
},
|
3798
3894
|
/**
|
3799
|
-
*
|
3895
|
+
* Lookup461: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
|
3800
3896
|
**/
|
3801
3897
|
PalletBalancesIdAmountRuntimeHoldReason: {
|
3802
3898
|
id: 'TangleTestnetRuntimeRuntimeHoldReason',
|
3803
3899
|
amount: 'u128'
|
3804
3900
|
},
|
3805
3901
|
/**
|
3806
|
-
*
|
3902
|
+
* Lookup462: tangle_testnet_runtime::RuntimeHoldReason
|
3807
3903
|
**/
|
3808
3904
|
TangleTestnetRuntimeRuntimeHoldReason: {
|
3809
3905
|
_enum: {
|
@@ -3835,20 +3931,20 @@ export default {
|
|
3835
3931
|
}
|
3836
3932
|
},
|
3837
3933
|
/**
|
3838
|
-
*
|
3934
|
+
* Lookup463: pallet_preimage::pallet::HoldReason
|
3839
3935
|
**/
|
3840
3936
|
PalletPreimageHoldReason: {
|
3841
3937
|
_enum: ['Preimage']
|
3842
3938
|
},
|
3843
3939
|
/**
|
3844
|
-
*
|
3940
|
+
* Lookup466: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
|
3845
3941
|
**/
|
3846
3942
|
PalletBalancesIdAmountRuntimeFreezeReason: {
|
3847
3943
|
id: 'TangleTestnetRuntimeRuntimeFreezeReason',
|
3848
3944
|
amount: 'u128'
|
3849
3945
|
},
|
3850
3946
|
/**
|
3851
|
-
*
|
3947
|
+
* Lookup467: tangle_testnet_runtime::RuntimeFreezeReason
|
3852
3948
|
**/
|
3853
3949
|
TangleTestnetRuntimeRuntimeFreezeReason: {
|
3854
3950
|
_enum: {
|
@@ -3878,25 +3974,25 @@ export default {
|
|
3878
3974
|
}
|
3879
3975
|
},
|
3880
3976
|
/**
|
3881
|
-
*
|
3977
|
+
* Lookup468: pallet_nomination_pools::pallet::FreezeReason
|
3882
3978
|
**/
|
3883
3979
|
PalletNominationPoolsFreezeReason: {
|
3884
3980
|
_enum: ['PoolMinBalance']
|
3885
3981
|
},
|
3886
3982
|
/**
|
3887
|
-
*
|
3983
|
+
* Lookup470: pallet_balances::pallet::Error<T, I>
|
3888
3984
|
**/
|
3889
3985
|
PalletBalancesError: {
|
3890
3986
|
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes', 'IssuanceDeactivated', 'DeltaZero']
|
3891
3987
|
},
|
3892
3988
|
/**
|
3893
|
-
*
|
3989
|
+
* Lookup472: pallet_transaction_payment::Releases
|
3894
3990
|
**/
|
3895
3991
|
PalletTransactionPaymentReleases: {
|
3896
3992
|
_enum: ['V1Ancient', 'V2']
|
3897
3993
|
},
|
3898
3994
|
/**
|
3899
|
-
*
|
3995
|
+
* Lookup479: sp_consensus_babe::digests::PreDigest
|
3900
3996
|
**/
|
3901
3997
|
SpConsensusBabeDigestsPreDigest: {
|
3902
3998
|
_enum: {
|
@@ -3907,7 +4003,7 @@ export default {
|
|
3907
4003
|
}
|
3908
4004
|
},
|
3909
4005
|
/**
|
3910
|
-
*
|
4006
|
+
* Lookup480: sp_consensus_babe::digests::PrimaryPreDigest
|
3911
4007
|
**/
|
3912
4008
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
3913
4009
|
authorityIndex: 'u32',
|
@@ -3915,21 +4011,21 @@ export default {
|
|
3915
4011
|
vrfSignature: 'SpCoreSr25519VrfVrfSignature'
|
3916
4012
|
},
|
3917
4013
|
/**
|
3918
|
-
*
|
4014
|
+
* Lookup481: sp_core::sr25519::vrf::VrfSignature
|
3919
4015
|
**/
|
3920
4016
|
SpCoreSr25519VrfVrfSignature: {
|
3921
4017
|
preOutput: '[u8;32]',
|
3922
4018
|
proof: '[u8;64]'
|
3923
4019
|
},
|
3924
4020
|
/**
|
3925
|
-
*
|
4021
|
+
* Lookup482: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
3926
4022
|
**/
|
3927
4023
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
3928
4024
|
authorityIndex: 'u32',
|
3929
4025
|
slot: 'u64'
|
3930
4026
|
},
|
3931
4027
|
/**
|
3932
|
-
*
|
4028
|
+
* Lookup483: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
3933
4029
|
**/
|
3934
4030
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
3935
4031
|
authorityIndex: 'u32',
|
@@ -3937,20 +4033,20 @@ export default {
|
|
3937
4033
|
vrfSignature: 'SpCoreSr25519VrfVrfSignature'
|
3938
4034
|
},
|
3939
4035
|
/**
|
3940
|
-
*
|
4036
|
+
* Lookup484: sp_consensus_babe::BabeEpochConfiguration
|
3941
4037
|
**/
|
3942
4038
|
SpConsensusBabeBabeEpochConfiguration: {
|
3943
4039
|
c: '(u64,u64)',
|
3944
4040
|
allowedSlots: 'SpConsensusBabeAllowedSlots'
|
3945
4041
|
},
|
3946
4042
|
/**
|
3947
|
-
*
|
4043
|
+
* Lookup486: pallet_babe::pallet::Error<T>
|
3948
4044
|
**/
|
3949
4045
|
PalletBabeError: {
|
3950
4046
|
_enum: ['InvalidEquivocationProof', 'InvalidKeyOwnershipProof', 'DuplicateOffenceReport', 'InvalidConfiguration']
|
3951
4047
|
},
|
3952
4048
|
/**
|
3953
|
-
*
|
4049
|
+
* Lookup487: pallet_grandpa::StoredState<N>
|
3954
4050
|
**/
|
3955
4051
|
PalletGrandpaStoredState: {
|
3956
4052
|
_enum: {
|
@@ -3967,7 +4063,7 @@ export default {
|
|
3967
4063
|
}
|
3968
4064
|
},
|
3969
4065
|
/**
|
3970
|
-
*
|
4066
|
+
* Lookup488: pallet_grandpa::StoredPendingChange<N, Limit>
|
3971
4067
|
**/
|
3972
4068
|
PalletGrandpaStoredPendingChange: {
|
3973
4069
|
scheduledAt: 'u64',
|
@@ -3976,19 +4072,19 @@ export default {
|
|
3976
4072
|
forced: 'Option<u64>'
|
3977
4073
|
},
|
3978
4074
|
/**
|
3979
|
-
*
|
4075
|
+
* Lookup490: pallet_grandpa::pallet::Error<T>
|
3980
4076
|
**/
|
3981
4077
|
PalletGrandpaError: {
|
3982
4078
|
_enum: ['PauseFailed', 'ResumeFailed', 'ChangePending', 'TooSoon', 'InvalidKeyOwnershipProof', 'InvalidEquivocationProof', 'DuplicateOffenceReport']
|
3983
4079
|
},
|
3984
4080
|
/**
|
3985
|
-
*
|
4081
|
+
* Lookup492: pallet_indices::pallet::Error<T>
|
3986
4082
|
**/
|
3987
4083
|
PalletIndicesError: {
|
3988
4084
|
_enum: ['NotAssigned', 'NotOwner', 'InUse', 'NotTransfer', 'Permanent']
|
3989
4085
|
},
|
3990
4086
|
/**
|
3991
|
-
*
|
4087
|
+
* Lookup497: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
3992
4088
|
**/
|
3993
4089
|
PalletDemocracyReferendumInfo: {
|
3994
4090
|
_enum: {
|
@@ -4000,7 +4096,7 @@ export default {
|
|
4000
4096
|
}
|
4001
4097
|
},
|
4002
4098
|
/**
|
4003
|
-
*
|
4099
|
+
* Lookup498: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
4004
4100
|
**/
|
4005
4101
|
PalletDemocracyReferendumStatus: {
|
4006
4102
|
end: 'u64',
|
@@ -4010,7 +4106,7 @@ export default {
|
|
4010
4106
|
tally: 'PalletDemocracyTally'
|
4011
4107
|
},
|
4012
4108
|
/**
|
4013
|
-
*
|
4109
|
+
* Lookup499: pallet_democracy::types::Tally<Balance>
|
4014
4110
|
**/
|
4015
4111
|
PalletDemocracyTally: {
|
4016
4112
|
ayes: 'u128',
|
@@ -4018,7 +4114,7 @@ export default {
|
|
4018
4114
|
turnout: 'u128'
|
4019
4115
|
},
|
4020
4116
|
/**
|
4021
|
-
*
|
4117
|
+
* Lookup500: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
|
4022
4118
|
**/
|
4023
4119
|
PalletDemocracyVoteVoting: {
|
4024
4120
|
_enum: {
|
@@ -4037,24 +4133,24 @@ export default {
|
|
4037
4133
|
}
|
4038
4134
|
},
|
4039
4135
|
/**
|
4040
|
-
*
|
4136
|
+
* Lookup504: pallet_democracy::types::Delegations<Balance>
|
4041
4137
|
**/
|
4042
4138
|
PalletDemocracyDelegations: {
|
4043
4139
|
votes: 'u128',
|
4044
4140
|
capital: 'u128'
|
4045
4141
|
},
|
4046
4142
|
/**
|
4047
|
-
*
|
4143
|
+
* Lookup505: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
|
4048
4144
|
**/
|
4049
4145
|
PalletDemocracyVotePriorLock: '(u64,u128)',
|
4050
4146
|
/**
|
4051
|
-
*
|
4147
|
+
* Lookup508: pallet_democracy::pallet::Error<T>
|
4052
4148
|
**/
|
4053
4149
|
PalletDemocracyError: {
|
4054
4150
|
_enum: ['ValueLow', 'ProposalMissing', 'AlreadyCanceled', 'DuplicateProposal', 'ProposalBlacklisted', 'NotSimpleMajority', 'InvalidHash', 'NoProposal', 'AlreadyVetoed', 'ReferendumInvalid', 'NoneWaiting', 'NotVoter', 'NoPermission', 'AlreadyDelegating', 'InsufficientFunds', 'NotDelegating', 'VotesExist', 'InstantNotAllowed', 'Nonsense', 'WrongUpperBound', 'MaxVotesReached', 'TooMany', 'VotingPeriodLow', 'PreimageNotExist']
|
4055
4151
|
},
|
4056
4152
|
/**
|
4057
|
-
*
|
4153
|
+
* Lookup510: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
4058
4154
|
**/
|
4059
4155
|
PalletCollectiveVotes: {
|
4060
4156
|
index: 'u32',
|
@@ -4064,25 +4160,25 @@ export default {
|
|
4064
4160
|
end: 'u64'
|
4065
4161
|
},
|
4066
4162
|
/**
|
4067
|
-
*
|
4163
|
+
* Lookup511: pallet_collective::pallet::Error<T, I>
|
4068
4164
|
**/
|
4069
4165
|
PalletCollectiveError: {
|
4070
4166
|
_enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength', 'PrimeAccountNotMember']
|
4071
4167
|
},
|
4072
4168
|
/**
|
4073
|
-
*
|
4169
|
+
* Lookup514: pallet_vesting::Releases
|
4074
4170
|
**/
|
4075
4171
|
PalletVestingReleases: {
|
4076
4172
|
_enum: ['V0', 'V1']
|
4077
4173
|
},
|
4078
4174
|
/**
|
4079
|
-
*
|
4175
|
+
* Lookup515: pallet_vesting::pallet::Error<T>
|
4080
4176
|
**/
|
4081
4177
|
PalletVestingError: {
|
4082
4178
|
_enum: ['NotVesting', 'AtMaxVestingSchedules', 'AmountLow', 'ScheduleIndexOutOfBounds', 'InvalidScheduleParams']
|
4083
4179
|
},
|
4084
4180
|
/**
|
4085
|
-
*
|
4181
|
+
* Lookup517: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
|
4086
4182
|
**/
|
4087
4183
|
PalletElectionsPhragmenSeatHolder: {
|
4088
4184
|
who: 'AccountId32',
|
@@ -4090,7 +4186,7 @@ export default {
|
|
4090
4186
|
deposit: 'u128'
|
4091
4187
|
},
|
4092
4188
|
/**
|
4093
|
-
*
|
4189
|
+
* Lookup518: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
|
4094
4190
|
**/
|
4095
4191
|
PalletElectionsPhragmenVoter: {
|
4096
4192
|
votes: 'Vec<AccountId32>',
|
@@ -4098,13 +4194,13 @@ export default {
|
|
4098
4194
|
deposit: 'u128'
|
4099
4195
|
},
|
4100
4196
|
/**
|
4101
|
-
*
|
4197
|
+
* Lookup519: pallet_elections_phragmen::pallet::Error<T>
|
4102
4198
|
**/
|
4103
4199
|
PalletElectionsPhragmenError: {
|
4104
4200
|
_enum: ['UnableToVote', 'NoVotes', 'TooManyVotes', 'MaximumVotesExceeded', 'LowBalance', 'UnableToPayBond', 'MustBeVoter', 'DuplicatedCandidate', 'TooManyCandidates', 'MemberSubmit', 'RunnerUpSubmit', 'InsufficientCandidateFunds', 'NotMember', 'InvalidWitnessData', 'InvalidVoteCount', 'InvalidRenouncing', 'InvalidReplacement']
|
4105
4201
|
},
|
4106
4202
|
/**
|
4107
|
-
*
|
4203
|
+
* Lookup520: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
|
4108
4204
|
**/
|
4109
4205
|
PalletElectionProviderMultiPhaseReadySolution: {
|
4110
4206
|
supports: 'Vec<(AccountId32,SpNposElectionsSupport)>',
|
@@ -4112,14 +4208,14 @@ export default {
|
|
4112
4208
|
compute: 'PalletElectionProviderMultiPhaseElectionCompute'
|
4113
4209
|
},
|
4114
4210
|
/**
|
4115
|
-
*
|
4211
|
+
* Lookup522: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
|
4116
4212
|
**/
|
4117
4213
|
PalletElectionProviderMultiPhaseRoundSnapshot: {
|
4118
4214
|
voters: 'Vec<(AccountId32,u64,Vec<AccountId32>)>',
|
4119
4215
|
targets: 'Vec<AccountId32>'
|
4120
4216
|
},
|
4121
4217
|
/**
|
4122
|
-
*
|
4218
|
+
* Lookup529: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
|
4123
4219
|
**/
|
4124
4220
|
PalletElectionProviderMultiPhaseSignedSignedSubmission: {
|
4125
4221
|
who: 'AccountId32',
|
@@ -4128,13 +4224,13 @@ export default {
|
|
4128
4224
|
callFee: 'u128'
|
4129
4225
|
},
|
4130
4226
|
/**
|
4131
|
-
*
|
4227
|
+
* Lookup530: pallet_election_provider_multi_phase::pallet::Error<T>
|
4132
4228
|
**/
|
4133
4229
|
PalletElectionProviderMultiPhaseError: {
|
4134
4230
|
_enum: ['PreDispatchEarlySubmission', 'PreDispatchWrongWinnerCount', 'PreDispatchWeakSubmission', 'SignedQueueFull', 'SignedCannotPayDeposit', 'SignedInvalidWitness', 'SignedTooMuchWeight', 'OcwCallWrongEra', 'MissingSnapshotMetadata', 'InvalidSubmissionIndex', 'CallNotAllowed', 'FallbackFailed', 'BoundNotMet', 'TooManyWinners', 'PreDispatchDifferentRound']
|
4135
4231
|
},
|
4136
4232
|
/**
|
4137
|
-
*
|
4233
|
+
* Lookup531: pallet_staking::StakingLedger<T>
|
4138
4234
|
**/
|
4139
4235
|
PalletStakingStakingLedger: {
|
4140
4236
|
stash: 'AccountId32',
|
@@ -4144,14 +4240,14 @@ export default {
|
|
4144
4240
|
legacyClaimedRewards: 'Vec<u32>'
|
4145
4241
|
},
|
4146
4242
|
/**
|
4147
|
-
*
|
4243
|
+
* Lookup533: pallet_staking::UnlockChunk<Balance>
|
4148
4244
|
**/
|
4149
4245
|
PalletStakingUnlockChunk: {
|
4150
4246
|
value: 'Compact<u128>',
|
4151
4247
|
era: 'Compact<u32>'
|
4152
4248
|
},
|
4153
4249
|
/**
|
4154
|
-
*
|
4250
|
+
* Lookup536: pallet_staking::Nominations<T>
|
4155
4251
|
**/
|
4156
4252
|
PalletStakingNominations: {
|
4157
4253
|
targets: 'Vec<AccountId32>',
|
@@ -4159,14 +4255,14 @@ export default {
|
|
4159
4255
|
suppressed: 'bool'
|
4160
4256
|
},
|
4161
4257
|
/**
|
4162
|
-
*
|
4258
|
+
* Lookup537: pallet_staking::ActiveEraInfo
|
4163
4259
|
**/
|
4164
4260
|
PalletStakingActiveEraInfo: {
|
4165
4261
|
index: 'u32',
|
4166
4262
|
start: 'Option<u64>'
|
4167
4263
|
},
|
4168
4264
|
/**
|
4169
|
-
*
|
4265
|
+
* Lookup539: sp_staking::PagedExposureMetadata<Balance>
|
4170
4266
|
**/
|
4171
4267
|
SpStakingPagedExposureMetadata: {
|
4172
4268
|
total: 'Compact<u128>',
|
@@ -4175,21 +4271,21 @@ export default {
|
|
4175
4271
|
pageCount: 'u32'
|
4176
4272
|
},
|
4177
4273
|
/**
|
4178
|
-
*
|
4274
|
+
* Lookup541: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
|
4179
4275
|
**/
|
4180
4276
|
SpStakingExposurePage: {
|
4181
4277
|
pageTotal: 'Compact<u128>',
|
4182
4278
|
others: 'Vec<SpStakingIndividualExposure>'
|
4183
4279
|
},
|
4184
4280
|
/**
|
4185
|
-
*
|
4281
|
+
* Lookup542: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
4186
4282
|
**/
|
4187
4283
|
PalletStakingEraRewardPoints: {
|
4188
4284
|
total: 'u32',
|
4189
4285
|
individual: 'BTreeMap<AccountId32, u32>'
|
4190
4286
|
},
|
4191
4287
|
/**
|
4192
|
-
*
|
4288
|
+
* Lookup547: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
4193
4289
|
**/
|
4194
4290
|
PalletStakingUnappliedSlash: {
|
4195
4291
|
validator: 'AccountId32',
|
@@ -4199,7 +4295,7 @@ export default {
|
|
4199
4295
|
payout: 'u128'
|
4200
4296
|
},
|
4201
4297
|
/**
|
4202
|
-
*
|
4298
|
+
* Lookup551: pallet_staking::slashing::SlashingSpans
|
4203
4299
|
**/
|
4204
4300
|
PalletStakingSlashingSlashingSpans: {
|
4205
4301
|
spanIndex: 'u32',
|
@@ -4208,30 +4304,30 @@ export default {
|
|
4208
4304
|
prior: 'Vec<u32>'
|
4209
4305
|
},
|
4210
4306
|
/**
|
4211
|
-
*
|
4307
|
+
* Lookup552: pallet_staking::slashing::SpanRecord<Balance>
|
4212
4308
|
**/
|
4213
4309
|
PalletStakingSlashingSpanRecord: {
|
4214
4310
|
slashed: 'u128',
|
4215
4311
|
paidOut: 'u128'
|
4216
4312
|
},
|
4217
4313
|
/**
|
4218
|
-
*
|
4314
|
+
* Lookup555: pallet_staking::pallet::pallet::Error<T>
|
4219
4315
|
**/
|
4220
4316
|
PalletStakingPalletError: {
|
4221
4317
|
_enum: ['NotController', 'NotStash', 'AlreadyBonded', 'AlreadyPaired', 'EmptyTargets', 'DuplicateIndex', 'InvalidSlashIndex', 'InsufficientBond', 'NoMoreChunks', 'NoUnlockChunk', 'FundedTarget', 'InvalidEraToReward', 'InvalidNumberOfNominations', 'NotSortedAndUnique', 'AlreadyClaimed', 'InvalidPage', 'IncorrectHistoryDepth', 'IncorrectSlashingSpans', 'BadState', 'TooManyTargets', 'BadTarget', 'CannotChillOther', 'TooManyNominators', 'TooManyValidators', 'CommissionTooLow', 'BoundNotMet', 'ControllerDeprecated', 'RestakeActive']
|
4222
4318
|
},
|
4223
4319
|
/**
|
4224
|
-
*
|
4320
|
+
* Lookup559: sp_core::crypto::KeyTypeId
|
4225
4321
|
**/
|
4226
4322
|
SpCoreCryptoKeyTypeId: '[u8;4]',
|
4227
4323
|
/**
|
4228
|
-
*
|
4324
|
+
* Lookup560: pallet_session::pallet::Error<T>
|
4229
4325
|
**/
|
4230
4326
|
PalletSessionError: {
|
4231
4327
|
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
|
4232
4328
|
},
|
4233
4329
|
/**
|
4234
|
-
*
|
4330
|
+
* Lookup562: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
|
4235
4331
|
**/
|
4236
4332
|
PalletTreasuryProposal: {
|
4237
4333
|
proposer: 'AccountId32',
|
@@ -4240,7 +4336,7 @@ export default {
|
|
4240
4336
|
bond: 'u128'
|
4241
4337
|
},
|
4242
4338
|
/**
|
4243
|
-
*
|
4339
|
+
* Lookup564: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
|
4244
4340
|
**/
|
4245
4341
|
PalletTreasurySpendStatus: {
|
4246
4342
|
assetKind: 'Null',
|
@@ -4251,7 +4347,7 @@ export default {
|
|
4251
4347
|
status: 'PalletTreasuryPaymentState'
|
4252
4348
|
},
|
4253
4349
|
/**
|
4254
|
-
*
|
4350
|
+
* Lookup565: pallet_treasury::PaymentState<Id>
|
4255
4351
|
**/
|
4256
4352
|
PalletTreasuryPaymentState: {
|
4257
4353
|
_enum: {
|
@@ -4263,17 +4359,17 @@ export default {
|
|
4263
4359
|
}
|
4264
4360
|
},
|
4265
4361
|
/**
|
4266
|
-
*
|
4362
|
+
* Lookup566: frame_support::PalletId
|
4267
4363
|
**/
|
4268
4364
|
FrameSupportPalletId: '[u8;8]',
|
4269
4365
|
/**
|
4270
|
-
*
|
4366
|
+
* Lookup567: pallet_treasury::pallet::Error<T, I>
|
4271
4367
|
**/
|
4272
4368
|
PalletTreasuryError: {
|
4273
4369
|
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved', 'FailedToConvertBalance', 'SpendExpired', 'EarlyPayout', 'AlreadyAttempted', 'PayoutError', 'NotAttempted', 'Inconclusive']
|
4274
4370
|
},
|
4275
4371
|
/**
|
4276
|
-
*
|
4372
|
+
* Lookup568: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
4277
4373
|
**/
|
4278
4374
|
PalletBountiesBounty: {
|
4279
4375
|
proposer: 'AccountId32',
|
@@ -4284,7 +4380,7 @@ export default {
|
|
4284
4380
|
status: 'PalletBountiesBountyStatus'
|
4285
4381
|
},
|
4286
4382
|
/**
|
4287
|
-
*
|
4383
|
+
* Lookup569: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
4288
4384
|
**/
|
4289
4385
|
PalletBountiesBountyStatus: {
|
4290
4386
|
_enum: {
|
@@ -4306,13 +4402,13 @@ export default {
|
|
4306
4402
|
}
|
4307
4403
|
},
|
4308
4404
|
/**
|
4309
|
-
*
|
4405
|
+
* Lookup571: pallet_bounties::pallet::Error<T, I>
|
4310
4406
|
**/
|
4311
4407
|
PalletBountiesError: {
|
4312
4408
|
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'ReasonTooBig', 'UnexpectedStatus', 'RequireCurator', 'InvalidValue', 'InvalidFee', 'PendingPayout', 'Premature', 'HasActiveChildBounty', 'TooManyQueued']
|
4313
4409
|
},
|
4314
4410
|
/**
|
4315
|
-
*
|
4411
|
+
* Lookup572: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
4316
4412
|
**/
|
4317
4413
|
PalletChildBountiesChildBounty: {
|
4318
4414
|
parentBounty: 'u32',
|
@@ -4322,7 +4418,7 @@ export default {
|
|
4322
4418
|
status: 'PalletChildBountiesChildBountyStatus'
|
4323
4419
|
},
|
4324
4420
|
/**
|
4325
|
-
*
|
4421
|
+
* Lookup573: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
4326
4422
|
**/
|
4327
4423
|
PalletChildBountiesChildBountyStatus: {
|
4328
4424
|
_enum: {
|
@@ -4341,13 +4437,13 @@ export default {
|
|
4341
4437
|
}
|
4342
4438
|
},
|
4343
4439
|
/**
|
4344
|
-
*
|
4440
|
+
* Lookup574: pallet_child_bounties::pallet::Error<T>
|
4345
4441
|
**/
|
4346
4442
|
PalletChildBountiesError: {
|
4347
4443
|
_enum: ['ParentBountyNotActive', 'InsufficientBountyBalance', 'TooManyChildBounties']
|
4348
4444
|
},
|
4349
4445
|
/**
|
4350
|
-
*
|
4446
|
+
* Lookup575: pallet_bags_list::list::Node<T, I>
|
4351
4447
|
**/
|
4352
4448
|
PalletBagsListListNode: {
|
4353
4449
|
id: 'AccountId32',
|
@@ -4357,14 +4453,14 @@ export default {
|
|
4357
4453
|
score: 'u64'
|
4358
4454
|
},
|
4359
4455
|
/**
|
4360
|
-
*
|
4456
|
+
* Lookup576: pallet_bags_list::list::Bag<T, I>
|
4361
4457
|
**/
|
4362
4458
|
PalletBagsListListBag: {
|
4363
4459
|
head: 'Option<AccountId32>',
|
4364
4460
|
tail: 'Option<AccountId32>'
|
4365
4461
|
},
|
4366
4462
|
/**
|
4367
|
-
*
|
4463
|
+
* Lookup578: pallet_bags_list::pallet::Error<T, I>
|
4368
4464
|
**/
|
4369
4465
|
PalletBagsListError: {
|
4370
4466
|
_enum: {
|
@@ -4372,13 +4468,13 @@ export default {
|
|
4372
4468
|
}
|
4373
4469
|
},
|
4374
4470
|
/**
|
4375
|
-
*
|
4471
|
+
* Lookup579: pallet_bags_list::list::ListError
|
4376
4472
|
**/
|
4377
4473
|
PalletBagsListListListError: {
|
4378
4474
|
_enum: ['Duplicate', 'NotHeavier', 'NotInSameBag', 'NodeNotFound']
|
4379
4475
|
},
|
4380
4476
|
/**
|
4381
|
-
*
|
4477
|
+
* Lookup580: pallet_nomination_pools::PoolMember<T>
|
4382
4478
|
**/
|
4383
4479
|
PalletNominationPoolsPoolMember: {
|
4384
4480
|
poolId: 'u32',
|
@@ -4387,7 +4483,7 @@ export default {
|
|
4387
4483
|
unbondingEras: 'BTreeMap<u32, u128>'
|
4388
4484
|
},
|
4389
4485
|
/**
|
4390
|
-
*
|
4486
|
+
* Lookup585: pallet_nomination_pools::BondedPoolInner<T>
|
4391
4487
|
**/
|
4392
4488
|
PalletNominationPoolsBondedPoolInner: {
|
4393
4489
|
commission: 'PalletNominationPoolsCommission',
|
@@ -4397,7 +4493,7 @@ export default {
|
|
4397
4493
|
state: 'PalletNominationPoolsPoolState'
|
4398
4494
|
},
|
4399
4495
|
/**
|
4400
|
-
*
|
4496
|
+
* Lookup586: pallet_nomination_pools::Commission<T>
|
4401
4497
|
**/
|
4402
4498
|
PalletNominationPoolsCommission: {
|
4403
4499
|
current: 'Option<(Perbill,AccountId32)>',
|
@@ -4407,7 +4503,7 @@ export default {
|
|
4407
4503
|
claimPermission: 'Option<PalletNominationPoolsCommissionClaimPermission>'
|
4408
4504
|
},
|
4409
4505
|
/**
|
4410
|
-
*
|
4506
|
+
* Lookup589: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
|
4411
4507
|
**/
|
4412
4508
|
PalletNominationPoolsPoolRoles: {
|
4413
4509
|
depositor: 'AccountId32',
|
@@ -4416,7 +4512,7 @@ export default {
|
|
4416
4512
|
bouncer: 'Option<AccountId32>'
|
4417
4513
|
},
|
4418
4514
|
/**
|
4419
|
-
*
|
4515
|
+
* Lookup590: pallet_nomination_pools::RewardPool<T>
|
4420
4516
|
**/
|
4421
4517
|
PalletNominationPoolsRewardPool: {
|
4422
4518
|
lastRecordedRewardCounter: 'u128',
|
@@ -4426,21 +4522,21 @@ export default {
|
|
4426
4522
|
totalCommissionClaimed: 'u128'
|
4427
4523
|
},
|
4428
4524
|
/**
|
4429
|
-
*
|
4525
|
+
* Lookup591: pallet_nomination_pools::SubPools<T>
|
4430
4526
|
**/
|
4431
4527
|
PalletNominationPoolsSubPools: {
|
4432
4528
|
noEra: 'PalletNominationPoolsUnbondPool',
|
4433
4529
|
withEra: 'BTreeMap<u32, PalletNominationPoolsUnbondPool>'
|
4434
4530
|
},
|
4435
4531
|
/**
|
4436
|
-
*
|
4532
|
+
* Lookup592: pallet_nomination_pools::UnbondPool<T>
|
4437
4533
|
**/
|
4438
4534
|
PalletNominationPoolsUnbondPool: {
|
4439
4535
|
points: 'u128',
|
4440
4536
|
balance: 'u128'
|
4441
4537
|
},
|
4442
4538
|
/**
|
4443
|
-
*
|
4539
|
+
* Lookup597: pallet_nomination_pools::pallet::Error<T>
|
4444
4540
|
**/
|
4445
4541
|
PalletNominationPoolsError: {
|
4446
4542
|
_enum: {
|
@@ -4479,13 +4575,13 @@ export default {
|
|
4479
4575
|
}
|
4480
4576
|
},
|
4481
4577
|
/**
|
4482
|
-
*
|
4578
|
+
* Lookup598: pallet_nomination_pools::pallet::DefensiveError
|
4483
4579
|
**/
|
4484
4580
|
PalletNominationPoolsDefensiveError: {
|
4485
4581
|
_enum: ['NotEnoughSpaceInUnbondPool', 'PoolNotFound', 'RewardPoolNotFound', 'SubPoolsNotFound', 'BondedStashKilledPrematurely']
|
4486
4582
|
},
|
4487
4583
|
/**
|
4488
|
-
*
|
4584
|
+
* Lookup601: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, BlockNumber, tangle_testnet_runtime::OriginCaller, sp_core::crypto::AccountId32>
|
4489
4585
|
**/
|
4490
4586
|
PalletSchedulerScheduled: {
|
4491
4587
|
maybeId: 'Option<[u8;32]>',
|
@@ -4495,13 +4591,13 @@ export default {
|
|
4495
4591
|
origin: 'TangleTestnetRuntimeOriginCaller'
|
4496
4592
|
},
|
4497
4593
|
/**
|
4498
|
-
*
|
4594
|
+
* Lookup603: pallet_scheduler::pallet::Error<T>
|
4499
4595
|
**/
|
4500
4596
|
PalletSchedulerError: {
|
4501
4597
|
_enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']
|
4502
4598
|
},
|
4503
4599
|
/**
|
4504
|
-
*
|
4600
|
+
* Lookup604: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
|
4505
4601
|
**/
|
4506
4602
|
PalletPreimageOldRequestStatus: {
|
4507
4603
|
_enum: {
|
@@ -4517,7 +4613,7 @@ export default {
|
|
4517
4613
|
}
|
4518
4614
|
},
|
4519
4615
|
/**
|
4520
|
-
*
|
4616
|
+
* Lookup606: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
|
4521
4617
|
**/
|
4522
4618
|
PalletPreimageRequestStatus: {
|
4523
4619
|
_enum: {
|
@@ -4533,32 +4629,32 @@ export default {
|
|
4533
4629
|
}
|
4534
4630
|
},
|
4535
4631
|
/**
|
4536
|
-
*
|
4632
|
+
* Lookup610: pallet_preimage::pallet::Error<T>
|
4537
4633
|
**/
|
4538
4634
|
PalletPreimageError: {
|
4539
4635
|
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested', 'TooMany', 'TooFew']
|
4540
4636
|
},
|
4541
4637
|
/**
|
4542
|
-
*
|
4638
|
+
* Lookup611: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
4543
4639
|
**/
|
4544
4640
|
SpStakingOffenceOffenceDetails: {
|
4545
4641
|
offender: '(AccountId32,SpStakingExposure)',
|
4546
4642
|
reporters: 'Vec<AccountId32>'
|
4547
4643
|
},
|
4548
4644
|
/**
|
4549
|
-
*
|
4645
|
+
* Lookup613: pallet_tx_pause::pallet::Error<T>
|
4550
4646
|
**/
|
4551
4647
|
PalletTxPauseError: {
|
4552
4648
|
_enum: ['IsPaused', 'IsUnpaused', 'Unpausable', 'NotFound']
|
4553
4649
|
},
|
4554
4650
|
/**
|
4555
|
-
*
|
4651
|
+
* Lookup616: pallet_im_online::pallet::Error<T>
|
4556
4652
|
**/
|
4557
4653
|
PalletImOnlineError: {
|
4558
4654
|
_enum: ['InvalidKey', 'DuplicatedHeartbeat']
|
4559
4655
|
},
|
4560
4656
|
/**
|
4561
|
-
*
|
4657
|
+
* Lookup618: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
|
4562
4658
|
**/
|
4563
4659
|
PalletIdentityRegistration: {
|
4564
4660
|
judgements: 'Vec<(u32,PalletIdentityJudgement)>',
|
@@ -4566,7 +4662,7 @@ export default {
|
|
4566
4662
|
info: 'PalletIdentityLegacyIdentityInfo'
|
4567
4663
|
},
|
4568
4664
|
/**
|
4569
|
-
*
|
4665
|
+
* Lookup627: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
|
4570
4666
|
**/
|
4571
4667
|
PalletIdentityRegistrarInfo: {
|
4572
4668
|
account: 'AccountId32',
|
@@ -4574,26 +4670,26 @@ export default {
|
|
4574
4670
|
fields: 'u64'
|
4575
4671
|
},
|
4576
4672
|
/**
|
4577
|
-
*
|
4673
|
+
* Lookup629: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
4578
4674
|
**/
|
4579
4675
|
PalletIdentityAuthorityProperties: {
|
4580
4676
|
suffix: 'Bytes',
|
4581
4677
|
allocation: 'u32'
|
4582
4678
|
},
|
4583
4679
|
/**
|
4584
|
-
*
|
4680
|
+
* Lookup632: pallet_identity::pallet::Error<T>
|
4585
4681
|
**/
|
4586
4682
|
PalletIdentityError: {
|
4587
4683
|
_enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed', 'InvalidSuffix', 'NotUsernameAuthority', 'NoAllocation', 'InvalidSignature', 'RequiresSignature', 'InvalidUsername', 'UsernameTaken', 'NoUsername', 'NotExpired']
|
4588
4684
|
},
|
4589
4685
|
/**
|
4590
|
-
*
|
4686
|
+
* Lookup633: pallet_utility::pallet::Error<T>
|
4591
4687
|
**/
|
4592
4688
|
PalletUtilityError: {
|
4593
4689
|
_enum: ['TooManyCalls']
|
4594
4690
|
},
|
4595
4691
|
/**
|
4596
|
-
*
|
4692
|
+
* Lookup635: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
4597
4693
|
**/
|
4598
4694
|
PalletMultisigMultisig: {
|
4599
4695
|
when: 'PalletMultisigTimepoint',
|
@@ -4602,13 +4698,13 @@ export default {
|
|
4602
4698
|
approvals: 'Vec<AccountId32>'
|
4603
4699
|
},
|
4604
4700
|
/**
|
4605
|
-
*
|
4701
|
+
* Lookup636: pallet_multisig::pallet::Error<T>
|
4606
4702
|
**/
|
4607
4703
|
PalletMultisigError: {
|
4608
4704
|
_enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored']
|
4609
4705
|
},
|
4610
4706
|
/**
|
4611
|
-
*
|
4707
|
+
* Lookup639: fp_rpc::TransactionStatus
|
4612
4708
|
**/
|
4613
4709
|
FpRpcTransactionStatus: {
|
4614
4710
|
transactionHash: 'H256',
|
@@ -4620,11 +4716,11 @@ export default {
|
|
4620
4716
|
logsBloom: 'EthbloomBloom'
|
4621
4717
|
},
|
4622
4718
|
/**
|
4623
|
-
*
|
4719
|
+
* Lookup642: ethbloom::Bloom
|
4624
4720
|
**/
|
4625
4721
|
EthbloomBloom: '[u8;256]',
|
4626
4722
|
/**
|
4627
|
-
*
|
4723
|
+
* Lookup644: ethereum::receipt::ReceiptV3
|
4628
4724
|
**/
|
4629
4725
|
EthereumReceiptReceiptV3: {
|
4630
4726
|
_enum: {
|
@@ -4634,7 +4730,7 @@ export default {
|
|
4634
4730
|
}
|
4635
4731
|
},
|
4636
4732
|
/**
|
4637
|
-
*
|
4733
|
+
* Lookup645: ethereum::receipt::EIP658ReceiptData
|
4638
4734
|
**/
|
4639
4735
|
EthereumReceiptEip658ReceiptData: {
|
4640
4736
|
statusCode: 'u8',
|
@@ -4643,7 +4739,7 @@ export default {
|
|
4643
4739
|
logs: 'Vec<EthereumLog>'
|
4644
4740
|
},
|
4645
4741
|
/**
|
4646
|
-
*
|
4742
|
+
* Lookup646: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
4647
4743
|
**/
|
4648
4744
|
EthereumBlock: {
|
4649
4745
|
header: 'EthereumHeader',
|
@@ -4651,7 +4747,7 @@ export default {
|
|
4651
4747
|
ommers: 'Vec<EthereumHeader>'
|
4652
4748
|
},
|
4653
4749
|
/**
|
4654
|
-
*
|
4750
|
+
* Lookup647: ethereum::header::Header
|
4655
4751
|
**/
|
4656
4752
|
EthereumHeader: {
|
4657
4753
|
parentHash: 'H256',
|
@@ -4671,17 +4767,17 @@ export default {
|
|
4671
4767
|
nonce: 'EthereumTypesHashH64'
|
4672
4768
|
},
|
4673
4769
|
/**
|
4674
|
-
*
|
4770
|
+
* Lookup648: ethereum_types::hash::H64
|
4675
4771
|
**/
|
4676
4772
|
EthereumTypesHashH64: '[u8;8]',
|
4677
4773
|
/**
|
4678
|
-
*
|
4774
|
+
* Lookup653: pallet_ethereum::pallet::Error<T>
|
4679
4775
|
**/
|
4680
4776
|
PalletEthereumError: {
|
4681
4777
|
_enum: ['InvalidSignature', 'PreLogExists']
|
4682
4778
|
},
|
4683
4779
|
/**
|
4684
|
-
*
|
4780
|
+
* Lookup654: pallet_evm::CodeMetadata
|
4685
4781
|
**/
|
4686
4782
|
PalletEvmCodeMetadata: {
|
4687
4783
|
_alias: {
|
@@ -4692,25 +4788,25 @@ export default {
|
|
4692
4788
|
hash_: 'H256'
|
4693
4789
|
},
|
4694
4790
|
/**
|
4695
|
-
*
|
4791
|
+
* Lookup656: pallet_evm::pallet::Error<T>
|
4696
4792
|
**/
|
4697
4793
|
PalletEvmError: {
|
4698
4794
|
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'InvalidChainId', 'InvalidSignature', 'Reentrancy', 'TransactionMustComeFromEOA', 'Undefined']
|
4699
4795
|
},
|
4700
4796
|
/**
|
4701
|
-
*
|
4797
|
+
* Lookup657: pallet_hotfix_sufficients::pallet::Error<T>
|
4702
4798
|
**/
|
4703
4799
|
PalletHotfixSufficientsError: {
|
4704
4800
|
_enum: ['MaxAddressCountExceeded']
|
4705
4801
|
},
|
4706
4802
|
/**
|
4707
|
-
*
|
4803
|
+
* Lookup659: pallet_airdrop_claims::pallet::Error<T>
|
4708
4804
|
**/
|
4709
4805
|
PalletAirdropClaimsError: {
|
4710
4806
|
_enum: ['InvalidEthereumSignature', 'InvalidNativeSignature', 'InvalidNativeAccount', 'SignerHasNoClaim', 'SenderHasNoClaim', 'PotUnderflow', 'InvalidStatement', 'VestedBalanceExists']
|
4711
4807
|
},
|
4712
4808
|
/**
|
4713
|
-
*
|
4809
|
+
* Lookup660: pallet_roles::types::RestakingLedger<T>
|
4714
4810
|
**/
|
4715
4811
|
PalletRolesRestakingLedger: {
|
4716
4812
|
stash: 'AccountId32',
|
@@ -4723,20 +4819,20 @@ export default {
|
|
4723
4819
|
maxActiveServices: 'u32'
|
4724
4820
|
},
|
4725
4821
|
/**
|
4726
|
-
*
|
4822
|
+
* Lookup666: pallet_roles::types::UnlockChunk<Balance>
|
4727
4823
|
**/
|
4728
4824
|
PalletRolesUnlockChunk: {
|
4729
4825
|
value: 'Compact<u128>',
|
4730
4826
|
era: 'Compact<u32>'
|
4731
4827
|
},
|
4732
4828
|
/**
|
4733
|
-
*
|
4829
|
+
* Lookup670: pallet_roles::pallet::Error<T>
|
4734
4830
|
**/
|
4735
4831
|
PalletRolesError: {
|
4736
4832
|
_enum: ['NotValidator', 'HasRoleAssigned', 'RoleNotAssigned', 'MaxRoles', 'RoleCannotBeRemoved', 'RestakingAmountCannotBeUpdated', 'ExceedsMaxRestakeValue', 'InsufficientRestakingBond', 'ProfileUpdateFailed', 'ProfileAlreadyExists', 'NoProfileFound', 'ProfileDeleteRequestFailed', 'SessionKeysNotProvided', 'KeySizeExceeded', 'CannotGetCurrentEra', 'InvalidEraToReward', 'BoundNotMet', 'AlreadyClaimed', 'NoMoreChunks']
|
4737
4833
|
},
|
4738
4834
|
/**
|
4739
|
-
*
|
4835
|
+
* Lookup671: tangle_primitives::jobs::PhaseResult<sp_core::crypto::AccountId32, BlockNumber, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxProofLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
4740
4836
|
**/
|
4741
4837
|
TanglePrimitivesJobsPhaseResult: {
|
4742
4838
|
owner: 'AccountId32',
|
@@ -4746,53 +4842,75 @@ export default {
|
|
4746
4842
|
jobType: 'TanglePrimitivesJobsJobType'
|
4747
4843
|
},
|
4748
4844
|
/**
|
4749
|
-
*
|
4845
|
+
* Lookup673: pallet_jobs::module::Error<T>
|
4750
4846
|
**/
|
4751
4847
|
PalletJobsModuleError: {
|
4752
4848
|
_enum: ['InvalidJobPhase', 'InvalidValidator', 'InvalidJobParams', 'PreviousResultNotFound', 'ResultExpired', 'JobAlreadyExpired', 'JobNotFound', 'PhaseOneResultNotFound', 'NoRewards', 'NotEnoughValidators', 'EmptyResult', 'EmptyJob', 'ValidatorRoleKeyNotFound', 'ResultNotExpectedType', 'NoPermission', 'TooManyParticipants', 'ExceedsMaxKeySize', 'TooManyJobsForValidator']
|
4753
4849
|
},
|
4754
4850
|
/**
|
4755
|
-
*
|
4851
|
+
* Lookup674: pallet_dkg::pallet::Error<T>
|
4756
4852
|
**/
|
4757
4853
|
PalletDkgError: {
|
4758
4854
|
_enum: ['CannotRetreiveSigner', 'NotEnoughSigners', 'InvalidSignatureData', 'NoParticipantsFound', 'NoSignaturesFound', 'InvalidJobType', 'DuplicateSignature', 'InvalidSignature', 'InvalidSignatureScheme', 'InvalidSignatureDeserialization', 'InvalidVerifyingKey', 'InvalidVerifyingKeyDeserialization', 'SigningKeyMismatch', 'InvalidParticipantPublicKey', 'InvalidBlsPublicKey', 'InvalidRoleType', 'InvalidJustification', 'MalformedRoundMessage', 'NotSignedByOffender', 'ValidDecommitment', 'ValidDataSize', 'ValidFeldmanVerification', 'ValidSchnorrProof', 'ValidRingPedersenParameters', 'ValidModProof', 'ValidFrostSignatureShare', 'InvalidFrostMessageSerialization', 'InvalidFrostMessageDeserialization', 'InvalidIdentifierDeserialization', 'ValidFrostSignature', 'UnknownIdentifier', 'DuplicateIdentifier', 'IncorrectNumberOfIdentifiers', 'IdentifierDerivationNotSupported', 'MalformedFrostSignature', 'InvalidFrostSignature', 'InvalidFrostSignatureShare', 'InvalidFrostSignatureScheme', 'MalformedFrostVerifyingKey', 'MalformedFrostSigningKey', 'MissingFrostCommitment', 'IdentityCommitment', 'FrostFieldError', 'FrostGroupError', 'FieldElementError', 'InvalidPublicKey', 'InvalidMessage', 'MalformedStarkSignature']
|
4759
4855
|
},
|
4760
4856
|
/**
|
4761
|
-
*
|
4857
|
+
* Lookup675: pallet_zksaas::pallet::Error<T>
|
4762
4858
|
**/
|
4763
4859
|
PalletZksaasError: {
|
4764
4860
|
_enum: ['InvalidJobType', 'InvalidProof', 'MalformedProof']
|
4765
4861
|
},
|
4766
4862
|
/**
|
4767
|
-
*
|
4863
|
+
* Lookup678: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
|
4864
|
+
**/
|
4865
|
+
PalletProxyProxyDefinition: {
|
4866
|
+
delegate: 'AccountId32',
|
4867
|
+
proxyType: 'TangleTestnetRuntimeProxyType',
|
4868
|
+
delay: 'u64'
|
4869
|
+
},
|
4870
|
+
/**
|
4871
|
+
* Lookup682: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
4872
|
+
**/
|
4873
|
+
PalletProxyAnnouncement: {
|
4874
|
+
real: 'AccountId32',
|
4875
|
+
callHash: 'H256',
|
4876
|
+
height: 'u64'
|
4877
|
+
},
|
4878
|
+
/**
|
4879
|
+
* Lookup684: pallet_proxy::pallet::Error<T>
|
4880
|
+
**/
|
4881
|
+
PalletProxyError: {
|
4882
|
+
_enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy']
|
4883
|
+
},
|
4884
|
+
/**
|
4885
|
+
* Lookup687: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
4768
4886
|
**/
|
4769
4887
|
FrameSystemExtensionsCheckNonZeroSender: 'Null',
|
4770
4888
|
/**
|
4771
|
-
*
|
4889
|
+
* Lookup688: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
4772
4890
|
**/
|
4773
4891
|
FrameSystemExtensionsCheckSpecVersion: 'Null',
|
4774
4892
|
/**
|
4775
|
-
*
|
4893
|
+
* Lookup689: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
4776
4894
|
**/
|
4777
4895
|
FrameSystemExtensionsCheckTxVersion: 'Null',
|
4778
4896
|
/**
|
4779
|
-
*
|
4897
|
+
* Lookup690: frame_system::extensions::check_genesis::CheckGenesis<T>
|
4780
4898
|
**/
|
4781
4899
|
FrameSystemExtensionsCheckGenesis: 'Null',
|
4782
4900
|
/**
|
4783
|
-
*
|
4901
|
+
* Lookup693: frame_system::extensions::check_nonce::CheckNonce<T>
|
4784
4902
|
**/
|
4785
4903
|
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
|
4786
4904
|
/**
|
4787
|
-
*
|
4905
|
+
* Lookup694: frame_system::extensions::check_weight::CheckWeight<T>
|
4788
4906
|
**/
|
4789
4907
|
FrameSystemExtensionsCheckWeight: 'Null',
|
4790
4908
|
/**
|
4791
|
-
*
|
4909
|
+
* Lookup695: pallet_transaction_payment::ChargeTransactionPayment<T>
|
4792
4910
|
**/
|
4793
4911
|
PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
|
4794
4912
|
/**
|
4795
|
-
*
|
4913
|
+
* Lookup697: tangle_testnet_runtime::Runtime
|
4796
4914
|
**/
|
4797
4915
|
TangleTestnetRuntimeRuntime: 'Null'
|
4798
4916
|
};
|