@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
@@ -1489,6 +1489,7 @@ declare const _default: {
|
|
1489
1489
|
threshold: string;
|
1490
1490
|
permittedCaller: string;
|
1491
1491
|
roleType: string;
|
1492
|
+
hdWallet: string;
|
1492
1493
|
};
|
1493
1494
|
/**
|
1494
1495
|
* Lookup137: tangle_primitives::jobs::tss::DKGTSSPhaseTwoJobType<tangle_testnet_runtime::MaxSubmissionLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
@@ -1647,7 +1648,46 @@ declare const _default: {
|
|
1647
1648
|
storageFeePerByte: string;
|
1648
1649
|
};
|
1649
1650
|
/**
|
1650
|
-
* Lookup161:
|
1651
|
+
* Lookup161: pallet_proxy::pallet::Event<T>
|
1652
|
+
**/
|
1653
|
+
PalletProxyEvent: {
|
1654
|
+
_enum: {
|
1655
|
+
ProxyExecuted: {
|
1656
|
+
result: string;
|
1657
|
+
};
|
1658
|
+
PureCreated: {
|
1659
|
+
pure: string;
|
1660
|
+
who: string;
|
1661
|
+
proxyType: string;
|
1662
|
+
disambiguationIndex: string;
|
1663
|
+
};
|
1664
|
+
Announced: {
|
1665
|
+
real: string;
|
1666
|
+
proxy: string;
|
1667
|
+
callHash: string;
|
1668
|
+
};
|
1669
|
+
ProxyAdded: {
|
1670
|
+
delegator: string;
|
1671
|
+
delegatee: string;
|
1672
|
+
proxyType: string;
|
1673
|
+
delay: string;
|
1674
|
+
};
|
1675
|
+
ProxyRemoved: {
|
1676
|
+
delegator: string;
|
1677
|
+
delegatee: string;
|
1678
|
+
proxyType: string;
|
1679
|
+
delay: string;
|
1680
|
+
};
|
1681
|
+
};
|
1682
|
+
};
|
1683
|
+
/**
|
1684
|
+
* Lookup162: tangle_testnet_runtime::ProxyType
|
1685
|
+
**/
|
1686
|
+
TangleTestnetRuntimeProxyType: {
|
1687
|
+
_enum: string[];
|
1688
|
+
};
|
1689
|
+
/**
|
1690
|
+
* Lookup164: frame_system::Phase
|
1651
1691
|
**/
|
1652
1692
|
FrameSystemPhase: {
|
1653
1693
|
_enum: {
|
@@ -1657,21 +1697,21 @@ declare const _default: {
|
|
1657
1697
|
};
|
1658
1698
|
};
|
1659
1699
|
/**
|
1660
|
-
*
|
1700
|
+
* Lookup166: frame_system::LastRuntimeUpgradeInfo
|
1661
1701
|
**/
|
1662
1702
|
FrameSystemLastRuntimeUpgradeInfo: {
|
1663
1703
|
specVersion: string;
|
1664
1704
|
specName: string;
|
1665
1705
|
};
|
1666
1706
|
/**
|
1667
|
-
*
|
1707
|
+
* Lookup168: frame_system::CodeUpgradeAuthorization<T>
|
1668
1708
|
**/
|
1669
1709
|
FrameSystemCodeUpgradeAuthorization: {
|
1670
1710
|
codeHash: string;
|
1671
1711
|
checkVersion: string;
|
1672
1712
|
};
|
1673
1713
|
/**
|
1674
|
-
*
|
1714
|
+
* Lookup169: frame_system::pallet::Call<T>
|
1675
1715
|
**/
|
1676
1716
|
FrameSystemCall: {
|
1677
1717
|
_enum: {
|
@@ -1716,7 +1756,7 @@ declare const _default: {
|
|
1716
1756
|
};
|
1717
1757
|
};
|
1718
1758
|
/**
|
1719
|
-
*
|
1759
|
+
* Lookup173: frame_system::limits::BlockWeights
|
1720
1760
|
**/
|
1721
1761
|
FrameSystemLimitsBlockWeights: {
|
1722
1762
|
baseBlock: string;
|
@@ -1724,7 +1764,7 @@ declare const _default: {
|
|
1724
1764
|
perClass: string;
|
1725
1765
|
};
|
1726
1766
|
/**
|
1727
|
-
*
|
1767
|
+
* Lookup174: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
1728
1768
|
**/
|
1729
1769
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
1730
1770
|
normal: string;
|
@@ -1732,7 +1772,7 @@ declare const _default: {
|
|
1732
1772
|
mandatory: string;
|
1733
1773
|
};
|
1734
1774
|
/**
|
1735
|
-
*
|
1775
|
+
* Lookup175: frame_system::limits::WeightsPerClass
|
1736
1776
|
**/
|
1737
1777
|
FrameSystemLimitsWeightsPerClass: {
|
1738
1778
|
baseExtrinsic: string;
|
@@ -1741,13 +1781,13 @@ declare const _default: {
|
|
1741
1781
|
reserved: string;
|
1742
1782
|
};
|
1743
1783
|
/**
|
1744
|
-
*
|
1784
|
+
* Lookup177: frame_system::limits::BlockLength
|
1745
1785
|
**/
|
1746
1786
|
FrameSystemLimitsBlockLength: {
|
1747
1787
|
max: string;
|
1748
1788
|
};
|
1749
1789
|
/**
|
1750
|
-
*
|
1790
|
+
* Lookup178: frame_support::dispatch::PerDispatchClass<T>
|
1751
1791
|
**/
|
1752
1792
|
FrameSupportDispatchPerDispatchClassU32: {
|
1753
1793
|
normal: string;
|
@@ -1755,14 +1795,14 @@ declare const _default: {
|
|
1755
1795
|
mandatory: string;
|
1756
1796
|
};
|
1757
1797
|
/**
|
1758
|
-
*
|
1798
|
+
* Lookup179: sp_weights::RuntimeDbWeight
|
1759
1799
|
**/
|
1760
1800
|
SpWeightsRuntimeDbWeight: {
|
1761
1801
|
read: string;
|
1762
1802
|
write: string;
|
1763
1803
|
};
|
1764
1804
|
/**
|
1765
|
-
*
|
1805
|
+
* Lookup180: sp_version::RuntimeVersion
|
1766
1806
|
**/
|
1767
1807
|
SpVersionRuntimeVersion: {
|
1768
1808
|
specName: string;
|
@@ -1775,13 +1815,13 @@ declare const _default: {
|
|
1775
1815
|
stateVersion: string;
|
1776
1816
|
};
|
1777
1817
|
/**
|
1778
|
-
*
|
1818
|
+
* Lookup185: frame_system::pallet::Error<T>
|
1779
1819
|
**/
|
1780
1820
|
FrameSystemError: {
|
1781
1821
|
_enum: string[];
|
1782
1822
|
};
|
1783
1823
|
/**
|
1784
|
-
*
|
1824
|
+
* Lookup186: pallet_timestamp::pallet::Call<T>
|
1785
1825
|
**/
|
1786
1826
|
PalletTimestampCall: {
|
1787
1827
|
_enum: {
|
@@ -1791,7 +1831,7 @@ declare const _default: {
|
|
1791
1831
|
};
|
1792
1832
|
};
|
1793
1833
|
/**
|
1794
|
-
*
|
1834
|
+
* Lookup187: pallet_sudo::pallet::Call<T>
|
1795
1835
|
**/
|
1796
1836
|
PalletSudoCall: {
|
1797
1837
|
_enum: {
|
@@ -1816,7 +1856,7 @@ declare const _default: {
|
|
1816
1856
|
};
|
1817
1857
|
};
|
1818
1858
|
/**
|
1819
|
-
*
|
1859
|
+
* Lookup189: pallet_balances::pallet::Call<T, I>
|
1820
1860
|
**/
|
1821
1861
|
PalletBalancesCall: {
|
1822
1862
|
_enum: {
|
@@ -1857,13 +1897,13 @@ declare const _default: {
|
|
1857
1897
|
};
|
1858
1898
|
};
|
1859
1899
|
/**
|
1860
|
-
*
|
1900
|
+
* Lookup191: pallet_balances::types::AdjustmentDirection
|
1861
1901
|
**/
|
1862
1902
|
PalletBalancesAdjustmentDirection: {
|
1863
1903
|
_enum: string[];
|
1864
1904
|
};
|
1865
1905
|
/**
|
1866
|
-
*
|
1906
|
+
* Lookup192: pallet_babe::pallet::Call<T>
|
1867
1907
|
**/
|
1868
1908
|
PalletBabeCall: {
|
1869
1909
|
_enum: {
|
@@ -1881,7 +1921,7 @@ declare const _default: {
|
|
1881
1921
|
};
|
1882
1922
|
};
|
1883
1923
|
/**
|
1884
|
-
*
|
1924
|
+
* Lookup193: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
1885
1925
|
**/
|
1886
1926
|
SpConsensusSlotsEquivocationProof: {
|
1887
1927
|
offender: string;
|
@@ -1890,7 +1930,7 @@ declare const _default: {
|
|
1890
1930
|
secondHeader: string;
|
1891
1931
|
};
|
1892
1932
|
/**
|
1893
|
-
*
|
1933
|
+
* Lookup194: sp_runtime::generic::header::Header<Number, Hash>
|
1894
1934
|
**/
|
1895
1935
|
SpRuntimeHeader: {
|
1896
1936
|
parentHash: string;
|
@@ -1900,11 +1940,11 @@ declare const _default: {
|
|
1900
1940
|
digest: string;
|
1901
1941
|
};
|
1902
1942
|
/**
|
1903
|
-
*
|
1943
|
+
* Lookup195: sp_consensus_babe::app::Public
|
1904
1944
|
**/
|
1905
1945
|
SpConsensusBabeAppPublic: string;
|
1906
1946
|
/**
|
1907
|
-
*
|
1947
|
+
* Lookup197: sp_session::MembershipProof
|
1908
1948
|
**/
|
1909
1949
|
SpSessionMembershipProof: {
|
1910
1950
|
session: string;
|
@@ -1912,7 +1952,7 @@ declare const _default: {
|
|
1912
1952
|
validatorCount: string;
|
1913
1953
|
};
|
1914
1954
|
/**
|
1915
|
-
*
|
1955
|
+
* Lookup198: sp_consensus_babe::digests::NextConfigDescriptor
|
1916
1956
|
**/
|
1917
1957
|
SpConsensusBabeDigestsNextConfigDescriptor: {
|
1918
1958
|
_enum: {
|
@@ -1924,13 +1964,13 @@ declare const _default: {
|
|
1924
1964
|
};
|
1925
1965
|
};
|
1926
1966
|
/**
|
1927
|
-
*
|
1967
|
+
* Lookup200: sp_consensus_babe::AllowedSlots
|
1928
1968
|
**/
|
1929
1969
|
SpConsensusBabeAllowedSlots: {
|
1930
1970
|
_enum: string[];
|
1931
1971
|
};
|
1932
1972
|
/**
|
1933
|
-
*
|
1973
|
+
* Lookup201: pallet_grandpa::pallet::Call<T>
|
1934
1974
|
**/
|
1935
1975
|
PalletGrandpaCall: {
|
1936
1976
|
_enum: {
|
@@ -1949,14 +1989,14 @@ declare const _default: {
|
|
1949
1989
|
};
|
1950
1990
|
};
|
1951
1991
|
/**
|
1952
|
-
*
|
1992
|
+
* Lookup202: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
1953
1993
|
**/
|
1954
1994
|
SpConsensusGrandpaEquivocationProof: {
|
1955
1995
|
setId: string;
|
1956
1996
|
equivocation: string;
|
1957
1997
|
};
|
1958
1998
|
/**
|
1959
|
-
*
|
1999
|
+
* Lookup203: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
1960
2000
|
**/
|
1961
2001
|
SpConsensusGrandpaEquivocation: {
|
1962
2002
|
_enum: {
|
@@ -1965,7 +2005,7 @@ declare const _default: {
|
|
1965
2005
|
};
|
1966
2006
|
};
|
1967
2007
|
/**
|
1968
|
-
*
|
2008
|
+
* Lookup204: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
1969
2009
|
**/
|
1970
2010
|
FinalityGrandpaEquivocationPrevote: {
|
1971
2011
|
roundNumber: string;
|
@@ -1974,22 +2014,22 @@ declare const _default: {
|
|
1974
2014
|
second: string;
|
1975
2015
|
};
|
1976
2016
|
/**
|
1977
|
-
*
|
2017
|
+
* Lookup205: finality_grandpa::Prevote<primitive_types::H256, N>
|
1978
2018
|
**/
|
1979
2019
|
FinalityGrandpaPrevote: {
|
1980
2020
|
targetHash: string;
|
1981
2021
|
targetNumber: string;
|
1982
2022
|
};
|
1983
2023
|
/**
|
1984
|
-
*
|
2024
|
+
* Lookup206: sp_consensus_grandpa::app::Signature
|
1985
2025
|
**/
|
1986
2026
|
SpConsensusGrandpaAppSignature: string;
|
1987
2027
|
/**
|
1988
|
-
*
|
2028
|
+
* Lookup207: sp_core::ed25519::Signature
|
1989
2029
|
**/
|
1990
2030
|
SpCoreEd25519Signature: string;
|
1991
2031
|
/**
|
1992
|
-
*
|
2032
|
+
* Lookup210: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
1993
2033
|
**/
|
1994
2034
|
FinalityGrandpaEquivocationPrecommit: {
|
1995
2035
|
roundNumber: string;
|
@@ -1998,18 +2038,18 @@ declare const _default: {
|
|
1998
2038
|
second: string;
|
1999
2039
|
};
|
2000
2040
|
/**
|
2001
|
-
*
|
2041
|
+
* Lookup211: finality_grandpa::Precommit<primitive_types::H256, N>
|
2002
2042
|
**/
|
2003
2043
|
FinalityGrandpaPrecommit: {
|
2004
2044
|
targetHash: string;
|
2005
2045
|
targetNumber: string;
|
2006
2046
|
};
|
2007
2047
|
/**
|
2008
|
-
*
|
2048
|
+
* Lookup213: sp_core::Void
|
2009
2049
|
**/
|
2010
2050
|
SpCoreVoid: string;
|
2011
2051
|
/**
|
2012
|
-
*
|
2052
|
+
* Lookup214: pallet_indices::pallet::Call<T>
|
2013
2053
|
**/
|
2014
2054
|
PalletIndicesCall: {
|
2015
2055
|
_enum: {
|
@@ -2040,7 +2080,7 @@ declare const _default: {
|
|
2040
2080
|
};
|
2041
2081
|
};
|
2042
2082
|
/**
|
2043
|
-
*
|
2083
|
+
* Lookup215: pallet_democracy::pallet::Call<T>
|
2044
2084
|
**/
|
2045
2085
|
PalletDemocracyCall: {
|
2046
2086
|
_enum: {
|
@@ -2109,7 +2149,7 @@ declare const _default: {
|
|
2109
2149
|
};
|
2110
2150
|
};
|
2111
2151
|
/**
|
2112
|
-
*
|
2152
|
+
* Lookup216: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
|
2113
2153
|
**/
|
2114
2154
|
FrameSupportPreimagesBounded: {
|
2115
2155
|
_enum: {
|
@@ -2130,17 +2170,17 @@ declare const _default: {
|
|
2130
2170
|
};
|
2131
2171
|
};
|
2132
2172
|
/**
|
2133
|
-
*
|
2173
|
+
* Lookup217: sp_runtime::traits::BlakeTwo256
|
2134
2174
|
**/
|
2135
2175
|
SpRuntimeBlakeTwo256: string;
|
2136
2176
|
/**
|
2137
|
-
*
|
2177
|
+
* Lookup219: pallet_democracy::conviction::Conviction
|
2138
2178
|
**/
|
2139
2179
|
PalletDemocracyConviction: {
|
2140
2180
|
_enum: string[];
|
2141
2181
|
};
|
2142
2182
|
/**
|
2143
|
-
*
|
2183
|
+
* Lookup222: pallet_collective::pallet::Call<T, I>
|
2144
2184
|
**/
|
2145
2185
|
PalletCollectiveCall: {
|
2146
2186
|
_enum: {
|
@@ -2176,7 +2216,7 @@ declare const _default: {
|
|
2176
2216
|
};
|
2177
2217
|
};
|
2178
2218
|
/**
|
2179
|
-
*
|
2219
|
+
* Lookup223: pallet_vesting::pallet::Call<T>
|
2180
2220
|
**/
|
2181
2221
|
PalletVestingCall: {
|
2182
2222
|
_enum: {
|
@@ -2204,7 +2244,7 @@ declare const _default: {
|
|
2204
2244
|
};
|
2205
2245
|
};
|
2206
2246
|
/**
|
2207
|
-
*
|
2247
|
+
* Lookup224: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
|
2208
2248
|
**/
|
2209
2249
|
PalletVestingVestingInfo: {
|
2210
2250
|
locked: string;
|
@@ -2212,7 +2252,7 @@ declare const _default: {
|
|
2212
2252
|
startingBlock: string;
|
2213
2253
|
};
|
2214
2254
|
/**
|
2215
|
-
*
|
2255
|
+
* Lookup225: pallet_elections_phragmen::pallet::Call<T>
|
2216
2256
|
**/
|
2217
2257
|
PalletElectionsPhragmenCall: {
|
2218
2258
|
_enum: {
|
@@ -2239,7 +2279,7 @@ declare const _default: {
|
|
2239
2279
|
};
|
2240
2280
|
};
|
2241
2281
|
/**
|
2242
|
-
*
|
2282
|
+
* Lookup226: pallet_elections_phragmen::Renouncing
|
2243
2283
|
**/
|
2244
2284
|
PalletElectionsPhragmenRenouncing: {
|
2245
2285
|
_enum: {
|
@@ -2249,7 +2289,7 @@ declare const _default: {
|
|
2249
2289
|
};
|
2250
2290
|
};
|
2251
2291
|
/**
|
2252
|
-
*
|
2292
|
+
* Lookup227: pallet_election_provider_multi_phase::pallet::Call<T>
|
2253
2293
|
**/
|
2254
2294
|
PalletElectionProviderMultiPhaseCall: {
|
2255
2295
|
_enum: {
|
@@ -2273,7 +2313,7 @@ declare const _default: {
|
|
2273
2313
|
};
|
2274
2314
|
};
|
2275
2315
|
/**
|
2276
|
-
*
|
2316
|
+
* Lookup228: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
|
2277
2317
|
**/
|
2278
2318
|
PalletElectionProviderMultiPhaseRawSolution: {
|
2279
2319
|
solution: string;
|
@@ -2281,7 +2321,7 @@ declare const _default: {
|
|
2281
2321
|
round: string;
|
2282
2322
|
};
|
2283
2323
|
/**
|
2284
|
-
*
|
2324
|
+
* Lookup229: tangle_testnet_runtime::NposSolution16
|
2285
2325
|
**/
|
2286
2326
|
TangleTestnetRuntimeNposSolution16: {
|
2287
2327
|
votes1: string;
|
@@ -2302,21 +2342,21 @@ declare const _default: {
|
|
2302
2342
|
votes16: string;
|
2303
2343
|
};
|
2304
2344
|
/**
|
2305
|
-
*
|
2345
|
+
* Lookup280: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
|
2306
2346
|
**/
|
2307
2347
|
PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
|
2308
2348
|
voters: string;
|
2309
2349
|
targets: string;
|
2310
2350
|
};
|
2311
2351
|
/**
|
2312
|
-
*
|
2352
|
+
* Lookup284: sp_npos_elections::Support<sp_core::crypto::AccountId32>
|
2313
2353
|
**/
|
2314
2354
|
SpNposElectionsSupport: {
|
2315
2355
|
total: string;
|
2316
2356
|
voters: string;
|
2317
2357
|
};
|
2318
2358
|
/**
|
2319
|
-
*
|
2359
|
+
* Lookup285: pallet_staking::pallet::pallet::Call<T>
|
2320
2360
|
**/
|
2321
2361
|
PalletStakingPalletCall: {
|
2322
2362
|
_enum: {
|
@@ -2418,7 +2458,7 @@ declare const _default: {
|
|
2418
2458
|
};
|
2419
2459
|
};
|
2420
2460
|
/**
|
2421
|
-
*
|
2461
|
+
* Lookup289: pallet_staking::pallet::pallet::ConfigOp<T>
|
2422
2462
|
**/
|
2423
2463
|
PalletStakingPalletConfigOpU128: {
|
2424
2464
|
_enum: {
|
@@ -2428,7 +2468,7 @@ declare const _default: {
|
|
2428
2468
|
};
|
2429
2469
|
};
|
2430
2470
|
/**
|
2431
|
-
*
|
2471
|
+
* Lookup290: pallet_staking::pallet::pallet::ConfigOp<T>
|
2432
2472
|
**/
|
2433
2473
|
PalletStakingPalletConfigOpU32: {
|
2434
2474
|
_enum: {
|
@@ -2438,7 +2478,7 @@ declare const _default: {
|
|
2438
2478
|
};
|
2439
2479
|
};
|
2440
2480
|
/**
|
2441
|
-
*
|
2481
|
+
* Lookup291: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
|
2442
2482
|
**/
|
2443
2483
|
PalletStakingPalletConfigOpPercent: {
|
2444
2484
|
_enum: {
|
@@ -2448,7 +2488,7 @@ declare const _default: {
|
|
2448
2488
|
};
|
2449
2489
|
};
|
2450
2490
|
/**
|
2451
|
-
*
|
2491
|
+
* Lookup292: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
|
2452
2492
|
**/
|
2453
2493
|
PalletStakingPalletConfigOpPerbill: {
|
2454
2494
|
_enum: {
|
@@ -2458,7 +2498,7 @@ declare const _default: {
|
|
2458
2498
|
};
|
2459
2499
|
};
|
2460
2500
|
/**
|
2461
|
-
*
|
2501
|
+
* Lookup294: pallet_session::pallet::Call<T>
|
2462
2502
|
**/
|
2463
2503
|
PalletSessionCall: {
|
2464
2504
|
_enum: {
|
@@ -2473,7 +2513,7 @@ declare const _default: {
|
|
2473
2513
|
};
|
2474
2514
|
};
|
2475
2515
|
/**
|
2476
|
-
*
|
2516
|
+
* Lookup295: tangle_testnet_runtime::opaque::SessionKeys
|
2477
2517
|
**/
|
2478
2518
|
TangleTestnetRuntimeOpaqueSessionKeys: {
|
2479
2519
|
babe: string;
|
@@ -2482,15 +2522,15 @@ declare const _default: {
|
|
2482
2522
|
role: string;
|
2483
2523
|
};
|
2484
2524
|
/**
|
2485
|
-
*
|
2525
|
+
* Lookup296: tangle_crypto_primitives::crypto::Public
|
2486
2526
|
**/
|
2487
2527
|
TangleCryptoPrimitivesCryptoPublic: string;
|
2488
2528
|
/**
|
2489
|
-
*
|
2529
|
+
* Lookup297: sp_core::ecdsa::Public
|
2490
2530
|
**/
|
2491
2531
|
SpCoreEcdsaPublic: string;
|
2492
2532
|
/**
|
2493
|
-
*
|
2533
|
+
* Lookup299: pallet_treasury::pallet::Call<T, I>
|
2494
2534
|
**/
|
2495
2535
|
PalletTreasuryCall: {
|
2496
2536
|
_enum: {
|
@@ -2529,7 +2569,7 @@ declare const _default: {
|
|
2529
2569
|
};
|
2530
2570
|
};
|
2531
2571
|
/**
|
2532
|
-
*
|
2572
|
+
* Lookup301: pallet_bounties::pallet::Call<T, I>
|
2533
2573
|
**/
|
2534
2574
|
PalletBountiesCall: {
|
2535
2575
|
_enum: {
|
@@ -2568,7 +2608,7 @@ declare const _default: {
|
|
2568
2608
|
};
|
2569
2609
|
};
|
2570
2610
|
/**
|
2571
|
-
*
|
2611
|
+
* Lookup302: pallet_child_bounties::pallet::Call<T>
|
2572
2612
|
**/
|
2573
2613
|
PalletChildBountiesCall: {
|
2574
2614
|
_enum: {
|
@@ -2607,7 +2647,7 @@ declare const _default: {
|
|
2607
2647
|
};
|
2608
2648
|
};
|
2609
2649
|
/**
|
2610
|
-
*
|
2650
|
+
* Lookup303: pallet_bags_list::pallet::Call<T, I>
|
2611
2651
|
**/
|
2612
2652
|
PalletBagsListCall: {
|
2613
2653
|
_enum: {
|
@@ -2624,7 +2664,7 @@ declare const _default: {
|
|
2624
2664
|
};
|
2625
2665
|
};
|
2626
2666
|
/**
|
2627
|
-
*
|
2667
|
+
* Lookup304: pallet_nomination_pools::pallet::Call<T>
|
2628
2668
|
**/
|
2629
2669
|
PalletNominationPoolsCall: {
|
2630
2670
|
_enum: {
|
@@ -2725,7 +2765,7 @@ declare const _default: {
|
|
2725
2765
|
};
|
2726
2766
|
};
|
2727
2767
|
/**
|
2728
|
-
*
|
2768
|
+
* Lookup305: pallet_nomination_pools::BondExtra<Balance>
|
2729
2769
|
**/
|
2730
2770
|
PalletNominationPoolsBondExtra: {
|
2731
2771
|
_enum: {
|
@@ -2734,7 +2774,7 @@ declare const _default: {
|
|
2734
2774
|
};
|
2735
2775
|
};
|
2736
2776
|
/**
|
2737
|
-
*
|
2777
|
+
* Lookup306: pallet_nomination_pools::ConfigOp<T>
|
2738
2778
|
**/
|
2739
2779
|
PalletNominationPoolsConfigOpU128: {
|
2740
2780
|
_enum: {
|
@@ -2744,7 +2784,7 @@ declare const _default: {
|
|
2744
2784
|
};
|
2745
2785
|
};
|
2746
2786
|
/**
|
2747
|
-
*
|
2787
|
+
* Lookup307: pallet_nomination_pools::ConfigOp<T>
|
2748
2788
|
**/
|
2749
2789
|
PalletNominationPoolsConfigOpU32: {
|
2750
2790
|
_enum: {
|
@@ -2754,7 +2794,7 @@ declare const _default: {
|
|
2754
2794
|
};
|
2755
2795
|
};
|
2756
2796
|
/**
|
2757
|
-
*
|
2797
|
+
* Lookup308: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
|
2758
2798
|
**/
|
2759
2799
|
PalletNominationPoolsConfigOpPerbill: {
|
2760
2800
|
_enum: {
|
@@ -2764,7 +2804,7 @@ declare const _default: {
|
|
2764
2804
|
};
|
2765
2805
|
};
|
2766
2806
|
/**
|
2767
|
-
*
|
2807
|
+
* Lookup309: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
|
2768
2808
|
**/
|
2769
2809
|
PalletNominationPoolsConfigOpAccountId32: {
|
2770
2810
|
_enum: {
|
@@ -2774,13 +2814,13 @@ declare const _default: {
|
|
2774
2814
|
};
|
2775
2815
|
};
|
2776
2816
|
/**
|
2777
|
-
*
|
2817
|
+
* Lookup310: pallet_nomination_pools::ClaimPermission
|
2778
2818
|
**/
|
2779
2819
|
PalletNominationPoolsClaimPermission: {
|
2780
2820
|
_enum: string[];
|
2781
2821
|
};
|
2782
2822
|
/**
|
2783
|
-
*
|
2823
|
+
* Lookup311: pallet_scheduler::pallet::Call<T>
|
2784
2824
|
**/
|
2785
2825
|
PalletSchedulerCall: {
|
2786
2826
|
_enum: {
|
@@ -2820,7 +2860,7 @@ declare const _default: {
|
|
2820
2860
|
};
|
2821
2861
|
};
|
2822
2862
|
/**
|
2823
|
-
*
|
2863
|
+
* Lookup313: pallet_preimage::pallet::Call<T>
|
2824
2864
|
**/
|
2825
2865
|
PalletPreimageCall: {
|
2826
2866
|
_enum: {
|
@@ -2851,7 +2891,7 @@ declare const _default: {
|
|
2851
2891
|
};
|
2852
2892
|
};
|
2853
2893
|
/**
|
2854
|
-
*
|
2894
|
+
* Lookup314: pallet_tx_pause::pallet::Call<T>
|
2855
2895
|
**/
|
2856
2896
|
PalletTxPauseCall: {
|
2857
2897
|
_enum: {
|
@@ -2864,7 +2904,7 @@ declare const _default: {
|
|
2864
2904
|
};
|
2865
2905
|
};
|
2866
2906
|
/**
|
2867
|
-
*
|
2907
|
+
* Lookup315: pallet_im_online::pallet::Call<T>
|
2868
2908
|
**/
|
2869
2909
|
PalletImOnlineCall: {
|
2870
2910
|
_enum: {
|
@@ -2875,7 +2915,7 @@ declare const _default: {
|
|
2875
2915
|
};
|
2876
2916
|
};
|
2877
2917
|
/**
|
2878
|
-
*
|
2918
|
+
* Lookup316: pallet_im_online::Heartbeat<BlockNumber>
|
2879
2919
|
**/
|
2880
2920
|
PalletImOnlineHeartbeat: {
|
2881
2921
|
blockNumber: string;
|
@@ -2884,15 +2924,15 @@ declare const _default: {
|
|
2884
2924
|
validatorsLen: string;
|
2885
2925
|
};
|
2886
2926
|
/**
|
2887
|
-
*
|
2927
|
+
* Lookup317: pallet_im_online::sr25519::app_sr25519::Signature
|
2888
2928
|
**/
|
2889
2929
|
PalletImOnlineSr25519AppSr25519Signature: string;
|
2890
2930
|
/**
|
2891
|
-
*
|
2931
|
+
* Lookup318: sp_core::sr25519::Signature
|
2892
2932
|
**/
|
2893
2933
|
SpCoreSr25519Signature: string;
|
2894
2934
|
/**
|
2895
|
-
*
|
2935
|
+
* Lookup319: pallet_identity::pallet::Call<T>
|
2896
2936
|
**/
|
2897
2937
|
PalletIdentityCall: {
|
2898
2938
|
_enum: {
|
@@ -2977,7 +3017,7 @@ declare const _default: {
|
|
2977
3017
|
};
|
2978
3018
|
};
|
2979
3019
|
/**
|
2980
|
-
*
|
3020
|
+
* Lookup320: pallet_identity::legacy::IdentityInfo<FieldLimit>
|
2981
3021
|
**/
|
2982
3022
|
PalletIdentityLegacyIdentityInfo: {
|
2983
3023
|
additional: string;
|
@@ -2991,7 +3031,7 @@ declare const _default: {
|
|
2991
3031
|
twitter: string;
|
2992
3032
|
};
|
2993
3033
|
/**
|
2994
|
-
*
|
3034
|
+
* Lookup356: pallet_identity::types::Judgement<Balance>
|
2995
3035
|
**/
|
2996
3036
|
PalletIdentityJudgement: {
|
2997
3037
|
_enum: {
|
@@ -3005,7 +3045,7 @@ declare const _default: {
|
|
3005
3045
|
};
|
3006
3046
|
};
|
3007
3047
|
/**
|
3008
|
-
*
|
3048
|
+
* Lookup358: sp_runtime::MultiSignature
|
3009
3049
|
**/
|
3010
3050
|
SpRuntimeMultiSignature: {
|
3011
3051
|
_enum: {
|
@@ -3015,11 +3055,11 @@ declare const _default: {
|
|
3015
3055
|
};
|
3016
3056
|
};
|
3017
3057
|
/**
|
3018
|
-
*
|
3058
|
+
* Lookup359: sp_core::ecdsa::Signature
|
3019
3059
|
**/
|
3020
3060
|
SpCoreEcdsaSignature: string;
|
3021
3061
|
/**
|
3022
|
-
*
|
3062
|
+
* Lookup361: pallet_utility::pallet::Call<T>
|
3023
3063
|
**/
|
3024
3064
|
PalletUtilityCall: {
|
3025
3065
|
_enum: {
|
@@ -3047,7 +3087,7 @@ declare const _default: {
|
|
3047
3087
|
};
|
3048
3088
|
};
|
3049
3089
|
/**
|
3050
|
-
*
|
3090
|
+
* Lookup363: tangle_testnet_runtime::OriginCaller
|
3051
3091
|
**/
|
3052
3092
|
TangleTestnetRuntimeOriginCaller: {
|
3053
3093
|
_enum: {
|
@@ -3086,7 +3126,7 @@ declare const _default: {
|
|
3086
3126
|
};
|
3087
3127
|
};
|
3088
3128
|
/**
|
3089
|
-
*
|
3129
|
+
* Lookup364: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
3090
3130
|
**/
|
3091
3131
|
FrameSupportDispatchRawOrigin: {
|
3092
3132
|
_enum: {
|
@@ -3096,7 +3136,7 @@ declare const _default: {
|
|
3096
3136
|
};
|
3097
3137
|
};
|
3098
3138
|
/**
|
3099
|
-
*
|
3139
|
+
* Lookup365: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
3100
3140
|
**/
|
3101
3141
|
PalletCollectiveRawOrigin: {
|
3102
3142
|
_enum: {
|
@@ -3106,7 +3146,7 @@ declare const _default: {
|
|
3106
3146
|
};
|
3107
3147
|
};
|
3108
3148
|
/**
|
3109
|
-
*
|
3149
|
+
* Lookup366: pallet_ethereum::RawOrigin
|
3110
3150
|
**/
|
3111
3151
|
PalletEthereumRawOrigin: {
|
3112
3152
|
_enum: {
|
@@ -3114,7 +3154,7 @@ declare const _default: {
|
|
3114
3154
|
};
|
3115
3155
|
};
|
3116
3156
|
/**
|
3117
|
-
*
|
3157
|
+
* Lookup367: pallet_multisig::pallet::Call<T>
|
3118
3158
|
**/
|
3119
3159
|
PalletMultisigCall: {
|
3120
3160
|
_enum: {
|
@@ -3145,7 +3185,7 @@ declare const _default: {
|
|
3145
3185
|
};
|
3146
3186
|
};
|
3147
3187
|
/**
|
3148
|
-
*
|
3188
|
+
* Lookup369: pallet_ethereum::pallet::Call<T>
|
3149
3189
|
**/
|
3150
3190
|
PalletEthereumCall: {
|
3151
3191
|
_enum: {
|
@@ -3155,7 +3195,7 @@ declare const _default: {
|
|
3155
3195
|
};
|
3156
3196
|
};
|
3157
3197
|
/**
|
3158
|
-
*
|
3198
|
+
* Lookup370: ethereum::transaction::TransactionV2
|
3159
3199
|
**/
|
3160
3200
|
EthereumTransactionTransactionV2: {
|
3161
3201
|
_enum: {
|
@@ -3165,7 +3205,7 @@ declare const _default: {
|
|
3165
3205
|
};
|
3166
3206
|
};
|
3167
3207
|
/**
|
3168
|
-
*
|
3208
|
+
* Lookup371: ethereum::transaction::LegacyTransaction
|
3169
3209
|
**/
|
3170
3210
|
EthereumTransactionLegacyTransaction: {
|
3171
3211
|
nonce: string;
|
@@ -3177,7 +3217,7 @@ declare const _default: {
|
|
3177
3217
|
signature: string;
|
3178
3218
|
};
|
3179
3219
|
/**
|
3180
|
-
*
|
3220
|
+
* Lookup372: ethereum::transaction::TransactionAction
|
3181
3221
|
**/
|
3182
3222
|
EthereumTransactionTransactionAction: {
|
3183
3223
|
_enum: {
|
@@ -3186,7 +3226,7 @@ declare const _default: {
|
|
3186
3226
|
};
|
3187
3227
|
};
|
3188
3228
|
/**
|
3189
|
-
*
|
3229
|
+
* Lookup373: ethereum::transaction::TransactionSignature
|
3190
3230
|
**/
|
3191
3231
|
EthereumTransactionTransactionSignature: {
|
3192
3232
|
v: string;
|
@@ -3194,7 +3234,7 @@ declare const _default: {
|
|
3194
3234
|
s: string;
|
3195
3235
|
};
|
3196
3236
|
/**
|
3197
|
-
*
|
3237
|
+
* Lookup375: ethereum::transaction::EIP2930Transaction
|
3198
3238
|
**/
|
3199
3239
|
EthereumTransactionEip2930Transaction: {
|
3200
3240
|
chainId: string;
|
@@ -3210,14 +3250,14 @@ declare const _default: {
|
|
3210
3250
|
s: string;
|
3211
3251
|
};
|
3212
3252
|
/**
|
3213
|
-
*
|
3253
|
+
* Lookup377: ethereum::transaction::AccessListItem
|
3214
3254
|
**/
|
3215
3255
|
EthereumTransactionAccessListItem: {
|
3216
3256
|
address: string;
|
3217
3257
|
storageKeys: string;
|
3218
3258
|
};
|
3219
3259
|
/**
|
3220
|
-
*
|
3260
|
+
* Lookup378: ethereum::transaction::EIP1559Transaction
|
3221
3261
|
**/
|
3222
3262
|
EthereumTransactionEip1559Transaction: {
|
3223
3263
|
chainId: string;
|
@@ -3234,7 +3274,7 @@ declare const _default: {
|
|
3234
3274
|
s: string;
|
3235
3275
|
};
|
3236
3276
|
/**
|
3237
|
-
*
|
3277
|
+
* Lookup379: pallet_evm::pallet::Call<T>
|
3238
3278
|
**/
|
3239
3279
|
PalletEvmCall: {
|
3240
3280
|
_enum: {
|
@@ -3277,7 +3317,7 @@ declare const _default: {
|
|
3277
3317
|
};
|
3278
3318
|
};
|
3279
3319
|
/**
|
3280
|
-
*
|
3320
|
+
* Lookup383: pallet_dynamic_fee::pallet::Call<T>
|
3281
3321
|
**/
|
3282
3322
|
PalletDynamicFeeCall: {
|
3283
3323
|
_enum: {
|
@@ -3287,7 +3327,7 @@ declare const _default: {
|
|
3287
3327
|
};
|
3288
3328
|
};
|
3289
3329
|
/**
|
3290
|
-
*
|
3330
|
+
* Lookup384: pallet_base_fee::pallet::Call<T>
|
3291
3331
|
**/
|
3292
3332
|
PalletBaseFeeCall: {
|
3293
3333
|
_enum: {
|
@@ -3300,7 +3340,7 @@ declare const _default: {
|
|
3300
3340
|
};
|
3301
3341
|
};
|
3302
3342
|
/**
|
3303
|
-
*
|
3343
|
+
* Lookup385: pallet_hotfix_sufficients::pallet::Call<T>
|
3304
3344
|
**/
|
3305
3345
|
PalletHotfixSufficientsCall: {
|
3306
3346
|
_enum: {
|
@@ -3310,7 +3350,7 @@ declare const _default: {
|
|
3310
3350
|
};
|
3311
3351
|
};
|
3312
3352
|
/**
|
3313
|
-
*
|
3353
|
+
* Lookup387: pallet_airdrop_claims::pallet::Call<T>
|
3314
3354
|
**/
|
3315
3355
|
PalletAirdropClaimsCall: {
|
3316
3356
|
_enum: {
|
@@ -3346,7 +3386,7 @@ declare const _default: {
|
|
3346
3386
|
};
|
3347
3387
|
};
|
3348
3388
|
/**
|
3349
|
-
*
|
3389
|
+
* Lookup389: pallet_airdrop_claims::utils::MultiAddressSignature
|
3350
3390
|
**/
|
3351
3391
|
PalletAirdropClaimsUtilsMultiAddressSignature: {
|
3352
3392
|
_enum: {
|
@@ -3355,21 +3395,21 @@ declare const _default: {
|
|
3355
3395
|
};
|
3356
3396
|
};
|
3357
3397
|
/**
|
3358
|
-
*
|
3398
|
+
* Lookup390: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
|
3359
3399
|
**/
|
3360
3400
|
PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: string;
|
3361
3401
|
/**
|
3362
|
-
*
|
3402
|
+
* Lookup391: pallet_airdrop_claims::utils::Sr25519Signature
|
3363
3403
|
**/
|
3364
3404
|
PalletAirdropClaimsUtilsSr25519Signature: string;
|
3365
3405
|
/**
|
3366
|
-
*
|
3406
|
+
* Lookup397: pallet_airdrop_claims::StatementKind
|
3367
3407
|
**/
|
3368
3408
|
PalletAirdropClaimsStatementKind: {
|
3369
3409
|
_enum: string[];
|
3370
3410
|
};
|
3371
3411
|
/**
|
3372
|
-
*
|
3412
|
+
* Lookup398: pallet_roles::pallet::Call<T>
|
3373
3413
|
**/
|
3374
3414
|
PalletRolesCall: {
|
3375
3415
|
_enum: {
|
@@ -3396,7 +3436,7 @@ declare const _default: {
|
|
3396
3436
|
};
|
3397
3437
|
};
|
3398
3438
|
/**
|
3399
|
-
*
|
3439
|
+
* Lookup399: pallet_roles::profile::Profile<T>
|
3400
3440
|
**/
|
3401
3441
|
PalletRolesProfile: {
|
3402
3442
|
_enum: {
|
@@ -3405,27 +3445,27 @@ declare const _default: {
|
|
3405
3445
|
};
|
3406
3446
|
};
|
3407
3447
|
/**
|
3408
|
-
*
|
3448
|
+
* Lookup400: pallet_roles::profile::IndependentRestakeProfile<T>
|
3409
3449
|
**/
|
3410
3450
|
PalletRolesProfileIndependentRestakeProfile: {
|
3411
3451
|
records: string;
|
3412
3452
|
};
|
3413
3453
|
/**
|
3414
|
-
*
|
3454
|
+
* Lookup402: pallet_roles::profile::Record<T>
|
3415
3455
|
**/
|
3416
3456
|
PalletRolesProfileRecord: {
|
3417
3457
|
role: string;
|
3418
3458
|
amount: string;
|
3419
3459
|
};
|
3420
3460
|
/**
|
3421
|
-
*
|
3461
|
+
* Lookup405: pallet_roles::profile::SharedRestakeProfile<T>
|
3422
3462
|
**/
|
3423
3463
|
PalletRolesProfileSharedRestakeProfile: {
|
3424
3464
|
records: string;
|
3425
3465
|
amount: string;
|
3426
3466
|
};
|
3427
3467
|
/**
|
3428
|
-
*
|
3468
|
+
* Lookup406: pallet_jobs::module::Call<T>
|
3429
3469
|
**/
|
3430
3470
|
PalletJobsModuleCall: {
|
3431
3471
|
_enum: {
|
@@ -3464,7 +3504,7 @@ declare const _default: {
|
|
3464
3504
|
};
|
3465
3505
|
};
|
3466
3506
|
/**
|
3467
|
-
*
|
3507
|
+
* 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>
|
3468
3508
|
**/
|
3469
3509
|
TanglePrimitivesJobsJobResult: {
|
3470
3510
|
_enum: {
|
@@ -3477,55 +3517,57 @@ declare const _default: {
|
|
3477
3517
|
};
|
3478
3518
|
};
|
3479
3519
|
/**
|
3480
|
-
*
|
3520
|
+
* Lookup408: tangle_testnet_runtime::MaxKeyLen
|
3481
3521
|
**/
|
3482
3522
|
TangleTestnetRuntimeMaxKeyLen: string;
|
3483
3523
|
/**
|
3484
|
-
*
|
3524
|
+
* Lookup409: tangle_testnet_runtime::MaxSignatureLen
|
3485
3525
|
**/
|
3486
3526
|
TangleTestnetRuntimeMaxSignatureLen: string;
|
3487
3527
|
/**
|
3488
|
-
*
|
3528
|
+
* Lookup410: tangle_testnet_runtime::MaxDataLen
|
3489
3529
|
**/
|
3490
3530
|
TangleTestnetRuntimeMaxDataLen: string;
|
3491
3531
|
/**
|
3492
|
-
*
|
3532
|
+
* Lookup411: tangle_testnet_runtime::MaxProofLen
|
3493
3533
|
**/
|
3494
3534
|
TangleTestnetRuntimeMaxProofLen: string;
|
3495
3535
|
/**
|
3496
|
-
*
|
3536
|
+
* Lookup412: tangle_primitives::jobs::tss::DKGTSSKeySubmissionResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxParticipants, tangle_testnet_runtime::MaxSignatureLen>
|
3497
3537
|
**/
|
3498
3538
|
TanglePrimitivesJobsTssDkgtssKeySubmissionResult: {
|
3499
3539
|
signatureScheme: string;
|
3500
3540
|
key: string;
|
3541
|
+
chainCode: string;
|
3501
3542
|
participants: string;
|
3502
3543
|
signatures: string;
|
3503
3544
|
threshold: string;
|
3504
3545
|
};
|
3505
3546
|
/**
|
3506
|
-
*
|
3547
|
+
* Lookup413: tangle_primitives::jobs::tss::DigitalSignatureScheme
|
3507
3548
|
**/
|
3508
3549
|
TanglePrimitivesJobsTssDigitalSignatureScheme: {
|
3509
3550
|
_enum: string[];
|
3510
3551
|
};
|
3511
3552
|
/**
|
3512
|
-
*
|
3553
|
+
* Lookup420: tangle_primitives::jobs::tss::DKGTSSSignatureResult<tangle_testnet_runtime::MaxDataLen, tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
3513
3554
|
**/
|
3514
3555
|
TanglePrimitivesJobsTssDkgtssSignatureResult: {
|
3515
3556
|
signatureScheme: string;
|
3516
|
-
derivationPath: string;
|
3517
3557
|
data: string;
|
3518
3558
|
signature: string;
|
3519
3559
|
verifyingKey: string;
|
3560
|
+
derivationPath: string;
|
3561
|
+
chainCode: string;
|
3520
3562
|
};
|
3521
3563
|
/**
|
3522
|
-
*
|
3564
|
+
* Lookup422: tangle_primitives::jobs::tss::DKGTSSKeyRefreshResult
|
3523
3565
|
**/
|
3524
3566
|
TanglePrimitivesJobsTssDkgtssKeyRefreshResult: {
|
3525
3567
|
signatureScheme: string;
|
3526
3568
|
};
|
3527
3569
|
/**
|
3528
|
-
*
|
3570
|
+
* Lookup423: tangle_primitives::jobs::tss::DKGTSSKeyRotationResult<tangle_testnet_runtime::MaxKeyLen, tangle_testnet_runtime::MaxSignatureLen, tangle_testnet_runtime::MaxAdditionalParamsLen>
|
3529
3571
|
**/
|
3530
3572
|
TanglePrimitivesJobsTssDkgtssKeyRotationResult: {
|
3531
3573
|
phaseOneId: string;
|
@@ -3535,16 +3577,17 @@ declare const _default: {
|
|
3535
3577
|
signature: string;
|
3536
3578
|
signatureScheme: string;
|
3537
3579
|
derivationPath: string;
|
3580
|
+
chainCode: string;
|
3538
3581
|
};
|
3539
3582
|
/**
|
3540
|
-
*
|
3583
|
+
* Lookup424: tangle_primitives::jobs::zksaas::ZkSaaSCircuitResult<tangle_testnet_runtime::MaxParticipants>
|
3541
3584
|
**/
|
3542
3585
|
TanglePrimitivesJobsZksaasZkSaaSCircuitResult: {
|
3543
3586
|
jobId: string;
|
3544
3587
|
participants: string;
|
3545
3588
|
};
|
3546
3589
|
/**
|
3547
|
-
*
|
3590
|
+
* Lookup427: tangle_primitives::jobs::zksaas::ZkSaaSProofResult<tangle_testnet_runtime::MaxProofLen>
|
3548
3591
|
**/
|
3549
3592
|
TanglePrimitivesJobsZksaasZkSaaSProofResult: {
|
3550
3593
|
_enum: {
|
@@ -3553,25 +3596,25 @@ declare const _default: {
|
|
3553
3596
|
};
|
3554
3597
|
};
|
3555
3598
|
/**
|
3556
|
-
*
|
3599
|
+
* Lookup428: tangle_primitives::jobs::zksaas::ArkworksProofResult<tangle_testnet_runtime::MaxProofLen>
|
3557
3600
|
**/
|
3558
3601
|
TanglePrimitivesJobsZksaasArkworksProofResult: {
|
3559
3602
|
proof: string;
|
3560
3603
|
};
|
3561
3604
|
/**
|
3562
|
-
*
|
3605
|
+
* Lookup430: tangle_primitives::jobs::zksaas::CircomProofResult<tangle_testnet_runtime::MaxProofLen>
|
3563
3606
|
**/
|
3564
3607
|
TanglePrimitivesJobsZksaasCircomProofResult: {
|
3565
3608
|
proof: string;
|
3566
3609
|
};
|
3567
3610
|
/**
|
3568
|
-
*
|
3611
|
+
* Lookup431: tangle_primitives::jobs::ValidatorOffenceType
|
3569
3612
|
**/
|
3570
3613
|
TanglePrimitivesJobsValidatorOffenceType: {
|
3571
3614
|
_enum: string[];
|
3572
3615
|
};
|
3573
3616
|
/**
|
3574
|
-
*
|
3617
|
+
* Lookup432: tangle_primitives::misbehavior::MisbehaviorSubmission
|
3575
3618
|
**/
|
3576
3619
|
TanglePrimitivesMisbehaviorMisbehaviorSubmission: {
|
3577
3620
|
roleType: string;
|
@@ -3580,7 +3623,7 @@ declare const _default: {
|
|
3580
3623
|
justification: string;
|
3581
3624
|
};
|
3582
3625
|
/**
|
3583
|
-
*
|
3626
|
+
* Lookup433: tangle_primitives::misbehavior::MisbehaviorJustification
|
3584
3627
|
**/
|
3585
3628
|
TanglePrimitivesMisbehaviorMisbehaviorJustification: {
|
3586
3629
|
_enum: {
|
@@ -3589,7 +3632,7 @@ declare const _default: {
|
|
3589
3632
|
};
|
3590
3633
|
};
|
3591
3634
|
/**
|
3592
|
-
*
|
3635
|
+
* Lookup434: tangle_primitives::misbehavior::DKGTSSJustification
|
3593
3636
|
**/
|
3594
3637
|
TanglePrimitivesMisbehaviorDkgtssJustification: {
|
3595
3638
|
_enum: {
|
@@ -3598,7 +3641,7 @@ declare const _default: {
|
|
3598
3641
|
};
|
3599
3642
|
};
|
3600
3643
|
/**
|
3601
|
-
*
|
3644
|
+
* Lookup435: tangle_primitives::misbehavior::dfns_cggmp21::DfnsCGGMP21Justification
|
3602
3645
|
**/
|
3603
3646
|
TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification: {
|
3604
3647
|
_enum: {
|
@@ -3620,7 +3663,7 @@ declare const _default: {
|
|
3620
3663
|
};
|
3621
3664
|
};
|
3622
3665
|
/**
|
3623
|
-
*
|
3666
|
+
* Lookup437: tangle_primitives::misbehavior::dfns_cggmp21::KeygenAborted
|
3624
3667
|
**/
|
3625
3668
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted: {
|
3626
3669
|
_enum: {
|
@@ -3642,7 +3685,7 @@ declare const _default: {
|
|
3642
3685
|
};
|
3643
3686
|
};
|
3644
3687
|
/**
|
3645
|
-
*
|
3688
|
+
* Lookup438: tangle_primitives::misbehavior::SignedRoundMessage
|
3646
3689
|
**/
|
3647
3690
|
TanglePrimitivesMisbehaviorSignedRoundMessage: {
|
3648
3691
|
sender: string;
|
@@ -3650,7 +3693,7 @@ declare const _default: {
|
|
3650
3693
|
signature: string;
|
3651
3694
|
};
|
3652
3695
|
/**
|
3653
|
-
*
|
3696
|
+
* Lookup440: tangle_primitives::misbehavior::dfns_cggmp21::KeyRefreshAborted
|
3654
3697
|
**/
|
3655
3698
|
TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted: {
|
3656
3699
|
_enum: {
|
@@ -3675,7 +3718,7 @@ declare const _default: {
|
|
3675
3718
|
};
|
3676
3719
|
};
|
3677
3720
|
/**
|
3678
|
-
*
|
3721
|
+
* Lookup441: tangle_primitives::misbehavior::dfns_cggmp21::InvalidProofReason
|
3679
3722
|
**/
|
3680
3723
|
TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason: {
|
3681
3724
|
_enum: {
|
@@ -3692,13 +3735,13 @@ declare const _default: {
|
|
3692
3735
|
};
|
3693
3736
|
};
|
3694
3737
|
/**
|
3695
|
-
*
|
3738
|
+
* Lookup442: tangle_primitives::misbehavior::dfns_cggmp21::SigningAborted
|
3696
3739
|
**/
|
3697
3740
|
TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted: {
|
3698
3741
|
_enum: string[];
|
3699
3742
|
};
|
3700
3743
|
/**
|
3701
|
-
*
|
3744
|
+
* Lookup443: tangle_primitives::misbehavior::zcash_frost::ZCashFrostJustification
|
3702
3745
|
**/
|
3703
3746
|
TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification: {
|
3704
3747
|
_enum: {
|
@@ -3715,7 +3758,7 @@ declare const _default: {
|
|
3715
3758
|
};
|
3716
3759
|
};
|
3717
3760
|
/**
|
3718
|
-
*
|
3761
|
+
* Lookup444: tangle_primitives::misbehavior::zcash_frost::KeygenAborted
|
3719
3762
|
**/
|
3720
3763
|
TanglePrimitivesMisbehaviorZcashFrostKeygenAborted: {
|
3721
3764
|
_enum: {
|
@@ -3729,7 +3772,7 @@ declare const _default: {
|
|
3729
3772
|
};
|
3730
3773
|
};
|
3731
3774
|
/**
|
3732
|
-
*
|
3775
|
+
* Lookup445: tangle_primitives::misbehavior::zcash_frost::SigningAborted
|
3733
3776
|
**/
|
3734
3777
|
TanglePrimitivesMisbehaviorZcashFrostSigningAborted: {
|
3735
3778
|
_enum: {
|
@@ -3740,11 +3783,11 @@ declare const _default: {
|
|
3740
3783
|
};
|
3741
3784
|
};
|
3742
3785
|
/**
|
3743
|
-
*
|
3786
|
+
* Lookup446: tangle_primitives::misbehavior::ZkSaaSJustification
|
3744
3787
|
**/
|
3745
3788
|
TanglePrimitivesMisbehaviorZkSaaSJustification: string;
|
3746
3789
|
/**
|
3747
|
-
*
|
3790
|
+
* Lookup447: pallet_dkg::pallet::Call<T>
|
3748
3791
|
**/
|
3749
3792
|
PalletDkgCall: {
|
3750
3793
|
_enum: {
|
@@ -3754,7 +3797,7 @@ declare const _default: {
|
|
3754
3797
|
};
|
3755
3798
|
};
|
3756
3799
|
/**
|
3757
|
-
*
|
3800
|
+
* Lookup448: pallet_zksaas::pallet::Call<T>
|
3758
3801
|
**/
|
3759
3802
|
PalletZksaasCall: {
|
3760
3803
|
_enum: {
|
@@ -3764,13 +3807,66 @@ declare const _default: {
|
|
3764
3807
|
};
|
3765
3808
|
};
|
3766
3809
|
/**
|
3767
|
-
*
|
3810
|
+
* Lookup449: pallet_proxy::pallet::Call<T>
|
3811
|
+
**/
|
3812
|
+
PalletProxyCall: {
|
3813
|
+
_enum: {
|
3814
|
+
proxy: {
|
3815
|
+
real: string;
|
3816
|
+
forceProxyType: string;
|
3817
|
+
call: string;
|
3818
|
+
};
|
3819
|
+
add_proxy: {
|
3820
|
+
delegate: string;
|
3821
|
+
proxyType: string;
|
3822
|
+
delay: string;
|
3823
|
+
};
|
3824
|
+
remove_proxy: {
|
3825
|
+
delegate: string;
|
3826
|
+
proxyType: string;
|
3827
|
+
delay: string;
|
3828
|
+
};
|
3829
|
+
remove_proxies: string;
|
3830
|
+
create_pure: {
|
3831
|
+
proxyType: string;
|
3832
|
+
delay: string;
|
3833
|
+
index: string;
|
3834
|
+
};
|
3835
|
+
kill_pure: {
|
3836
|
+
spawner: string;
|
3837
|
+
proxyType: string;
|
3838
|
+
index: string;
|
3839
|
+
height: string;
|
3840
|
+
extIndex: string;
|
3841
|
+
};
|
3842
|
+
announce: {
|
3843
|
+
real: string;
|
3844
|
+
callHash: string;
|
3845
|
+
};
|
3846
|
+
remove_announcement: {
|
3847
|
+
real: string;
|
3848
|
+
callHash: string;
|
3849
|
+
};
|
3850
|
+
reject_announcement: {
|
3851
|
+
delegate: string;
|
3852
|
+
callHash: string;
|
3853
|
+
};
|
3854
|
+
proxy_announced: {
|
3855
|
+
delegate: string;
|
3856
|
+
real: string;
|
3857
|
+
forceProxyType: string;
|
3858
|
+
call: string;
|
3859
|
+
};
|
3860
|
+
};
|
3861
|
+
};
|
3862
|
+
/**
|
3863
|
+
* Lookup451: pallet_sudo::pallet::Error<T>
|
3768
3864
|
**/
|
3769
3865
|
PalletSudoError: {
|
3770
3866
|
_enum: string[];
|
3771
3867
|
};
|
3772
3868
|
/**
|
3773
|
-
*
|
3869
|
+
* Lookup454: pallet_balances::types::BalanceLock<Balance>
|
3774
3870
|
**/
|
3775
3871
|
PalletBalancesBalanceLock: {
|
3776
3872
|
id: string;
|
@@ -3778,27 +3874,27 @@ declare const _default: {
|
|
3778
3874
|
reasons: string;
|
3779
3875
|
};
|
3780
3876
|
/**
|
3781
|
-
*
|
3877
|
+
* Lookup455: pallet_balances::types::Reasons
|
3782
3878
|
**/
|
3783
3879
|
PalletBalancesReasons: {
|
3784
3880
|
_enum: string[];
|
3785
3881
|
};
|
3786
3882
|
/**
|
3787
|
-
*
|
3883
|
+
* Lookup458: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
3788
3884
|
**/
|
3789
3885
|
PalletBalancesReserveData: {
|
3790
3886
|
id: string;
|
3791
3887
|
amount: string;
|
3792
3888
|
};
|
3793
3889
|
/**
|
3794
|
-
*
|
3890
|
+
* Lookup461: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
|
3795
3891
|
**/
|
3796
3892
|
PalletBalancesIdAmountRuntimeHoldReason: {
|
3797
3893
|
id: string;
|
3798
3894
|
amount: string;
|
3799
3895
|
};
|
3800
3896
|
/**
|
3801
|
-
*
|
3897
|
+
* Lookup462: tangle_testnet_runtime::RuntimeHoldReason
|
3802
3898
|
**/
|
3803
3899
|
TangleTestnetRuntimeRuntimeHoldReason: {
|
3804
3900
|
_enum: {
|
@@ -3830,20 +3926,20 @@ declare const _default: {
|
|
3830
3926
|
};
|
3831
3927
|
};
|
3832
3928
|
/**
|
3833
|
-
*
|
3929
|
+
* Lookup463: pallet_preimage::pallet::HoldReason
|
3834
3930
|
**/
|
3835
3931
|
PalletPreimageHoldReason: {
|
3836
3932
|
_enum: string[];
|
3837
3933
|
};
|
3838
3934
|
/**
|
3839
|
-
*
|
3935
|
+
* Lookup466: pallet_balances::types::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
|
3840
3936
|
**/
|
3841
3937
|
PalletBalancesIdAmountRuntimeFreezeReason: {
|
3842
3938
|
id: string;
|
3843
3939
|
amount: string;
|
3844
3940
|
};
|
3845
3941
|
/**
|
3846
|
-
*
|
3942
|
+
* Lookup467: tangle_testnet_runtime::RuntimeFreezeReason
|
3847
3943
|
**/
|
3848
3944
|
TangleTestnetRuntimeRuntimeFreezeReason: {
|
3849
3945
|
_enum: {
|
@@ -3873,25 +3969,25 @@ declare const _default: {
|
|
3873
3969
|
};
|
3874
3970
|
};
|
3875
3971
|
/**
|
3876
|
-
*
|
3972
|
+
* Lookup468: pallet_nomination_pools::pallet::FreezeReason
|
3877
3973
|
**/
|
3878
3974
|
PalletNominationPoolsFreezeReason: {
|
3879
3975
|
_enum: string[];
|
3880
3976
|
};
|
3881
3977
|
/**
|
3882
|
-
*
|
3978
|
+
* Lookup470: pallet_balances::pallet::Error<T, I>
|
3883
3979
|
**/
|
3884
3980
|
PalletBalancesError: {
|
3885
3981
|
_enum: string[];
|
3886
3982
|
};
|
3887
3983
|
/**
|
3888
|
-
*
|
3984
|
+
* Lookup472: pallet_transaction_payment::Releases
|
3889
3985
|
**/
|
3890
3986
|
PalletTransactionPaymentReleases: {
|
3891
3987
|
_enum: string[];
|
3892
3988
|
};
|
3893
3989
|
/**
|
3894
|
-
*
|
3990
|
+
* Lookup479: sp_consensus_babe::digests::PreDigest
|
3895
3991
|
**/
|
3896
3992
|
SpConsensusBabeDigestsPreDigest: {
|
3897
3993
|
_enum: {
|
@@ -3902,7 +3998,7 @@ declare const _default: {
|
|
3902
3998
|
};
|
3903
3999
|
};
|
3904
4000
|
/**
|
3905
|
-
*
|
4001
|
+
* Lookup480: sp_consensus_babe::digests::PrimaryPreDigest
|
3906
4002
|
**/
|
3907
4003
|
SpConsensusBabeDigestsPrimaryPreDigest: {
|
3908
4004
|
authorityIndex: string;
|
@@ -3910,21 +4006,21 @@ declare const _default: {
|
|
3910
4006
|
vrfSignature: string;
|
3911
4007
|
};
|
3912
4008
|
/**
|
3913
|
-
*
|
4009
|
+
* Lookup481: sp_core::sr25519::vrf::VrfSignature
|
3914
4010
|
**/
|
3915
4011
|
SpCoreSr25519VrfVrfSignature: {
|
3916
4012
|
preOutput: string;
|
3917
4013
|
proof: string;
|
3918
4014
|
};
|
3919
4015
|
/**
|
3920
|
-
*
|
4016
|
+
* Lookup482: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
3921
4017
|
**/
|
3922
4018
|
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
3923
4019
|
authorityIndex: string;
|
3924
4020
|
slot: string;
|
3925
4021
|
};
|
3926
4022
|
/**
|
3927
|
-
*
|
4023
|
+
* Lookup483: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
3928
4024
|
**/
|
3929
4025
|
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
3930
4026
|
authorityIndex: string;
|
@@ -3932,20 +4028,20 @@ declare const _default: {
|
|
3932
4028
|
vrfSignature: string;
|
3933
4029
|
};
|
3934
4030
|
/**
|
3935
|
-
*
|
4031
|
+
* Lookup484: sp_consensus_babe::BabeEpochConfiguration
|
3936
4032
|
**/
|
3937
4033
|
SpConsensusBabeBabeEpochConfiguration: {
|
3938
4034
|
c: string;
|
3939
4035
|
allowedSlots: string;
|
3940
4036
|
};
|
3941
4037
|
/**
|
3942
|
-
*
|
4038
|
+
* Lookup486: pallet_babe::pallet::Error<T>
|
3943
4039
|
**/
|
3944
4040
|
PalletBabeError: {
|
3945
4041
|
_enum: string[];
|
3946
4042
|
};
|
3947
4043
|
/**
|
3948
|
-
*
|
4044
|
+
* Lookup487: pallet_grandpa::StoredState<N>
|
3949
4045
|
**/
|
3950
4046
|
PalletGrandpaStoredState: {
|
3951
4047
|
_enum: {
|
@@ -3962,7 +4058,7 @@ declare const _default: {
|
|
3962
4058
|
};
|
3963
4059
|
};
|
3964
4060
|
/**
|
3965
|
-
*
|
4061
|
+
* Lookup488: pallet_grandpa::StoredPendingChange<N, Limit>
|
3966
4062
|
**/
|
3967
4063
|
PalletGrandpaStoredPendingChange: {
|
3968
4064
|
scheduledAt: string;
|
@@ -3971,19 +4067,19 @@ declare const _default: {
|
|
3971
4067
|
forced: string;
|
3972
4068
|
};
|
3973
4069
|
/**
|
3974
|
-
*
|
4070
|
+
* Lookup490: pallet_grandpa::pallet::Error<T>
|
3975
4071
|
**/
|
3976
4072
|
PalletGrandpaError: {
|
3977
4073
|
_enum: string[];
|
3978
4074
|
};
|
3979
4075
|
/**
|
3980
|
-
*
|
4076
|
+
* Lookup492: pallet_indices::pallet::Error<T>
|
3981
4077
|
**/
|
3982
4078
|
PalletIndicesError: {
|
3983
4079
|
_enum: string[];
|
3984
4080
|
};
|
3985
4081
|
/**
|
3986
|
-
*
|
4082
|
+
* Lookup497: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
3987
4083
|
**/
|
3988
4084
|
PalletDemocracyReferendumInfo: {
|
3989
4085
|
_enum: {
|
@@ -3995,7 +4091,7 @@ declare const _default: {
|
|
3995
4091
|
};
|
3996
4092
|
};
|
3997
4093
|
/**
|
3998
|
-
*
|
4094
|
+
* Lookup498: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
|
3999
4095
|
**/
|
4000
4096
|
PalletDemocracyReferendumStatus: {
|
4001
4097
|
end: string;
|
@@ -4005,7 +4101,7 @@ declare const _default: {
|
|
4005
4101
|
tally: string;
|
4006
4102
|
};
|
4007
4103
|
/**
|
4008
|
-
*
|
4104
|
+
* Lookup499: pallet_democracy::types::Tally<Balance>
|
4009
4105
|
**/
|
4010
4106
|
PalletDemocracyTally: {
|
4011
4107
|
ayes: string;
|
@@ -4013,7 +4109,7 @@ declare const _default: {
|
|
4013
4109
|
turnout: string;
|
4014
4110
|
};
|
4015
4111
|
/**
|
4016
|
-
*
|
4112
|
+
* Lookup500: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
|
4017
4113
|
**/
|
4018
4114
|
PalletDemocracyVoteVoting: {
|
4019
4115
|
_enum: {
|
@@ -4032,24 +4128,24 @@ declare const _default: {
|
|
4032
4128
|
};
|
4033
4129
|
};
|
4034
4130
|
/**
|
4035
|
-
*
|
4131
|
+
* Lookup504: pallet_democracy::types::Delegations<Balance>
|
4036
4132
|
**/
|
4037
4133
|
PalletDemocracyDelegations: {
|
4038
4134
|
votes: string;
|
4039
4135
|
capital: string;
|
4040
4136
|
};
|
4041
4137
|
/**
|
4042
|
-
*
|
4138
|
+
* Lookup505: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
|
4043
4139
|
**/
|
4044
4140
|
PalletDemocracyVotePriorLock: string;
|
4045
4141
|
/**
|
4046
|
-
*
|
4142
|
+
* Lookup508: pallet_democracy::pallet::Error<T>
|
4047
4143
|
**/
|
4048
4144
|
PalletDemocracyError: {
|
4049
4145
|
_enum: string[];
|
4050
4146
|
};
|
4051
4147
|
/**
|
4052
|
-
*
|
4148
|
+
* Lookup510: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
|
4053
4149
|
**/
|
4054
4150
|
PalletCollectiveVotes: {
|
4055
4151
|
index: string;
|
@@ -4059,25 +4155,25 @@ declare const _default: {
|
|
4059
4155
|
end: string;
|
4060
4156
|
};
|
4061
4157
|
/**
|
4062
|
-
*
|
4158
|
+
* Lookup511: pallet_collective::pallet::Error<T, I>
|
4063
4159
|
**/
|
4064
4160
|
PalletCollectiveError: {
|
4065
4161
|
_enum: string[];
|
4066
4162
|
};
|
4067
4163
|
/**
|
4068
|
-
*
|
4164
|
+
* Lookup514: pallet_vesting::Releases
|
4069
4165
|
**/
|
4070
4166
|
PalletVestingReleases: {
|
4071
4167
|
_enum: string[];
|
4072
4168
|
};
|
4073
4169
|
/**
|
4074
|
-
*
|
4170
|
+
* Lookup515: pallet_vesting::pallet::Error<T>
|
4075
4171
|
**/
|
4076
4172
|
PalletVestingError: {
|
4077
4173
|
_enum: string[];
|
4078
4174
|
};
|
4079
4175
|
/**
|
4080
|
-
*
|
4176
|
+
* Lookup517: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
|
4081
4177
|
**/
|
4082
4178
|
PalletElectionsPhragmenSeatHolder: {
|
4083
4179
|
who: string;
|
@@ -4085,7 +4181,7 @@ declare const _default: {
|
|
4085
4181
|
deposit: string;
|
4086
4182
|
};
|
4087
4183
|
/**
|
4088
|
-
*
|
4184
|
+
* Lookup518: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
|
4089
4185
|
**/
|
4090
4186
|
PalletElectionsPhragmenVoter: {
|
4091
4187
|
votes: string;
|
@@ -4093,13 +4189,13 @@ declare const _default: {
|
|
4093
4189
|
deposit: string;
|
4094
4190
|
};
|
4095
4191
|
/**
|
4096
|
-
*
|
4192
|
+
* Lookup519: pallet_elections_phragmen::pallet::Error<T>
|
4097
4193
|
**/
|
4098
4194
|
PalletElectionsPhragmenError: {
|
4099
4195
|
_enum: string[];
|
4100
4196
|
};
|
4101
4197
|
/**
|
4102
|
-
*
|
4198
|
+
* Lookup520: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
|
4103
4199
|
**/
|
4104
4200
|
PalletElectionProviderMultiPhaseReadySolution: {
|
4105
4201
|
supports: string;
|
@@ -4107,14 +4203,14 @@ declare const _default: {
|
|
4107
4203
|
compute: string;
|
4108
4204
|
};
|
4109
4205
|
/**
|
4110
|
-
*
|
4206
|
+
* Lookup522: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
|
4111
4207
|
**/
|
4112
4208
|
PalletElectionProviderMultiPhaseRoundSnapshot: {
|
4113
4209
|
voters: string;
|
4114
4210
|
targets: string;
|
4115
4211
|
};
|
4116
4212
|
/**
|
4117
|
-
*
|
4213
|
+
* Lookup529: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
|
4118
4214
|
**/
|
4119
4215
|
PalletElectionProviderMultiPhaseSignedSignedSubmission: {
|
4120
4216
|
who: string;
|
@@ -4123,13 +4219,13 @@ declare const _default: {
|
|
4123
4219
|
callFee: string;
|
4124
4220
|
};
|
4125
4221
|
/**
|
4126
|
-
*
|
4222
|
+
* Lookup530: pallet_election_provider_multi_phase::pallet::Error<T>
|
4127
4223
|
**/
|
4128
4224
|
PalletElectionProviderMultiPhaseError: {
|
4129
4225
|
_enum: string[];
|
4130
4226
|
};
|
4131
4227
|
/**
|
4132
|
-
*
|
4228
|
+
* Lookup531: pallet_staking::StakingLedger<T>
|
4133
4229
|
**/
|
4134
4230
|
PalletStakingStakingLedger: {
|
4135
4231
|
stash: string;
|
@@ -4139,14 +4235,14 @@ declare const _default: {
|
|
4139
4235
|
legacyClaimedRewards: string;
|
4140
4236
|
};
|
4141
4237
|
/**
|
4142
|
-
*
|
4238
|
+
* Lookup533: pallet_staking::UnlockChunk<Balance>
|
4143
4239
|
**/
|
4144
4240
|
PalletStakingUnlockChunk: {
|
4145
4241
|
value: string;
|
4146
4242
|
era: string;
|
4147
4243
|
};
|
4148
4244
|
/**
|
4149
|
-
*
|
4245
|
+
* Lookup536: pallet_staking::Nominations<T>
|
4150
4246
|
**/
|
4151
4247
|
PalletStakingNominations: {
|
4152
4248
|
targets: string;
|
@@ -4154,14 +4250,14 @@ declare const _default: {
|
|
4154
4250
|
suppressed: string;
|
4155
4251
|
};
|
4156
4252
|
/**
|
4157
|
-
*
|
4253
|
+
* Lookup537: pallet_staking::ActiveEraInfo
|
4158
4254
|
**/
|
4159
4255
|
PalletStakingActiveEraInfo: {
|
4160
4256
|
index: string;
|
4161
4257
|
start: string;
|
4162
4258
|
};
|
4163
4259
|
/**
|
4164
|
-
*
|
4260
|
+
* Lookup539: sp_staking::PagedExposureMetadata<Balance>
|
4165
4261
|
**/
|
4166
4262
|
SpStakingPagedExposureMetadata: {
|
4167
4263
|
total: string;
|
@@ -4170,21 +4266,21 @@ declare const _default: {
|
|
4170
4266
|
pageCount: string;
|
4171
4267
|
};
|
4172
4268
|
/**
|
4173
|
-
*
|
4269
|
+
* Lookup541: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
|
4174
4270
|
**/
|
4175
4271
|
SpStakingExposurePage: {
|
4176
4272
|
pageTotal: string;
|
4177
4273
|
others: string;
|
4178
4274
|
};
|
4179
4275
|
/**
|
4180
|
-
*
|
4276
|
+
* Lookup542: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
|
4181
4277
|
**/
|
4182
4278
|
PalletStakingEraRewardPoints: {
|
4183
4279
|
total: string;
|
4184
4280
|
individual: string;
|
4185
4281
|
};
|
4186
4282
|
/**
|
4187
|
-
*
|
4283
|
+
* Lookup547: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
|
4188
4284
|
**/
|
4189
4285
|
PalletStakingUnappliedSlash: {
|
4190
4286
|
validator: string;
|
@@ -4194,7 +4290,7 @@ declare const _default: {
|
|
4194
4290
|
payout: string;
|
4195
4291
|
};
|
4196
4292
|
/**
|
4197
|
-
*
|
4293
|
+
* Lookup551: pallet_staking::slashing::SlashingSpans
|
4198
4294
|
**/
|
4199
4295
|
PalletStakingSlashingSlashingSpans: {
|
4200
4296
|
spanIndex: string;
|
@@ -4203,30 +4299,30 @@ declare const _default: {
|
|
4203
4299
|
prior: string;
|
4204
4300
|
};
|
4205
4301
|
/**
|
4206
|
-
*
|
4302
|
+
* Lookup552: pallet_staking::slashing::SpanRecord<Balance>
|
4207
4303
|
**/
|
4208
4304
|
PalletStakingSlashingSpanRecord: {
|
4209
4305
|
slashed: string;
|
4210
4306
|
paidOut: string;
|
4211
4307
|
};
|
4212
4308
|
/**
|
4213
|
-
*
|
4309
|
+
* Lookup555: pallet_staking::pallet::pallet::Error<T>
|
4214
4310
|
**/
|
4215
4311
|
PalletStakingPalletError: {
|
4216
4312
|
_enum: string[];
|
4217
4313
|
};
|
4218
4314
|
/**
|
4219
|
-
*
|
4315
|
+
* Lookup559: sp_core::crypto::KeyTypeId
|
4220
4316
|
**/
|
4221
4317
|
SpCoreCryptoKeyTypeId: string;
|
4222
4318
|
/**
|
4223
|
-
*
|
4319
|
+
* Lookup560: pallet_session::pallet::Error<T>
|
4224
4320
|
**/
|
4225
4321
|
PalletSessionError: {
|
4226
4322
|
_enum: string[];
|
4227
4323
|
};
|
4228
4324
|
/**
|
4229
|
-
*
|
4325
|
+
* Lookup562: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
|
4230
4326
|
**/
|
4231
4327
|
PalletTreasuryProposal: {
|
4232
4328
|
proposer: string;
|
@@ -4235,7 +4331,7 @@ declare const _default: {
|
|
4235
4331
|
bond: string;
|
4236
4332
|
};
|
4237
4333
|
/**
|
4238
|
-
*
|
4334
|
+
* Lookup564: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
|
4239
4335
|
**/
|
4240
4336
|
PalletTreasurySpendStatus: {
|
4241
4337
|
assetKind: string;
|
@@ -4246,7 +4342,7 @@ declare const _default: {
|
|
4246
4342
|
status: string;
|
4247
4343
|
};
|
4248
4344
|
/**
|
4249
|
-
*
|
4345
|
+
* Lookup565: pallet_treasury::PaymentState<Id>
|
4250
4346
|
**/
|
4251
4347
|
PalletTreasuryPaymentState: {
|
4252
4348
|
_enum: {
|
@@ -4258,17 +4354,17 @@ declare const _default: {
|
|
4258
4354
|
};
|
4259
4355
|
};
|
4260
4356
|
/**
|
4261
|
-
*
|
4357
|
+
* Lookup566: frame_support::PalletId
|
4262
4358
|
**/
|
4263
4359
|
FrameSupportPalletId: string;
|
4264
4360
|
/**
|
4265
|
-
*
|
4361
|
+
* Lookup567: pallet_treasury::pallet::Error<T, I>
|
4266
4362
|
**/
|
4267
4363
|
PalletTreasuryError: {
|
4268
4364
|
_enum: string[];
|
4269
4365
|
};
|
4270
4366
|
/**
|
4271
|
-
*
|
4367
|
+
* Lookup568: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
4272
4368
|
**/
|
4273
4369
|
PalletBountiesBounty: {
|
4274
4370
|
proposer: string;
|
@@ -4279,7 +4375,7 @@ declare const _default: {
|
|
4279
4375
|
status: string;
|
4280
4376
|
};
|
4281
4377
|
/**
|
4282
|
-
*
|
4378
|
+
* Lookup569: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
4283
4379
|
**/
|
4284
4380
|
PalletBountiesBountyStatus: {
|
4285
4381
|
_enum: {
|
@@ -4301,13 +4397,13 @@ declare const _default: {
|
|
4301
4397
|
};
|
4302
4398
|
};
|
4303
4399
|
/**
|
4304
|
-
*
|
4400
|
+
* Lookup571: pallet_bounties::pallet::Error<T, I>
|
4305
4401
|
**/
|
4306
4402
|
PalletBountiesError: {
|
4307
4403
|
_enum: string[];
|
4308
4404
|
};
|
4309
4405
|
/**
|
4310
|
-
*
|
4406
|
+
* Lookup572: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
4311
4407
|
**/
|
4312
4408
|
PalletChildBountiesChildBounty: {
|
4313
4409
|
parentBounty: string;
|
@@ -4317,7 +4413,7 @@ declare const _default: {
|
|
4317
4413
|
status: string;
|
4318
4414
|
};
|
4319
4415
|
/**
|
4320
|
-
*
|
4416
|
+
* Lookup573: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
|
4321
4417
|
**/
|
4322
4418
|
PalletChildBountiesChildBountyStatus: {
|
4323
4419
|
_enum: {
|
@@ -4336,13 +4432,13 @@ declare const _default: {
|
|
4336
4432
|
};
|
4337
4433
|
};
|
4338
4434
|
/**
|
4339
|
-
*
|
4435
|
+
* Lookup574: pallet_child_bounties::pallet::Error<T>
|
4340
4436
|
**/
|
4341
4437
|
PalletChildBountiesError: {
|
4342
4438
|
_enum: string[];
|
4343
4439
|
};
|
4344
4440
|
/**
|
4345
|
-
*
|
4441
|
+
* Lookup575: pallet_bags_list::list::Node<T, I>
|
4346
4442
|
**/
|
4347
4443
|
PalletBagsListListNode: {
|
4348
4444
|
id: string;
|
@@ -4352,14 +4448,14 @@ declare const _default: {
|
|
4352
4448
|
score: string;
|
4353
4449
|
};
|
4354
4450
|
/**
|
4355
|
-
*
|
4451
|
+
* Lookup576: pallet_bags_list::list::Bag<T, I>
|
4356
4452
|
**/
|
4357
4453
|
PalletBagsListListBag: {
|
4358
4454
|
head: string;
|
4359
4455
|
tail: string;
|
4360
4456
|
};
|
4361
4457
|
/**
|
4362
|
-
*
|
4458
|
+
* Lookup578: pallet_bags_list::pallet::Error<T, I>
|
4363
4459
|
**/
|
4364
4460
|
PalletBagsListError: {
|
4365
4461
|
_enum: {
|
@@ -4367,13 +4463,13 @@ declare const _default: {
|
|
4367
4463
|
};
|
4368
4464
|
};
|
4369
4465
|
/**
|
4370
|
-
*
|
4466
|
+
* Lookup579: pallet_bags_list::list::ListError
|
4371
4467
|
**/
|
4372
4468
|
PalletBagsListListListError: {
|
4373
4469
|
_enum: string[];
|
4374
4470
|
};
|
4375
4471
|
/**
|
4376
|
-
*
|
4472
|
+
* Lookup580: pallet_nomination_pools::PoolMember<T>
|
4377
4473
|
**/
|
4378
4474
|
PalletNominationPoolsPoolMember: {
|
4379
4475
|
poolId: string;
|
@@ -4382,7 +4478,7 @@ declare const _default: {
|
|
4382
4478
|
unbondingEras: string;
|
4383
4479
|
};
|
4384
4480
|
/**
|
4385
|
-
*
|
4481
|
+
* Lookup585: pallet_nomination_pools::BondedPoolInner<T>
|
4386
4482
|
**/
|
4387
4483
|
PalletNominationPoolsBondedPoolInner: {
|
4388
4484
|
commission: string;
|
@@ -4392,7 +4488,7 @@ declare const _default: {
|
|
4392
4488
|
state: string;
|
4393
4489
|
};
|
4394
4490
|
/**
|
4395
|
-
*
|
4491
|
+
* Lookup586: pallet_nomination_pools::Commission<T>
|
4396
4492
|
**/
|
4397
4493
|
PalletNominationPoolsCommission: {
|
4398
4494
|
current: string;
|
@@ -4402,7 +4498,7 @@ declare const _default: {
|
|
4402
4498
|
claimPermission: string;
|
4403
4499
|
};
|
4404
4500
|
/**
|
4405
|
-
*
|
4501
|
+
* Lookup589: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
|
4406
4502
|
**/
|
4407
4503
|
PalletNominationPoolsPoolRoles: {
|
4408
4504
|
depositor: string;
|
@@ -4411,7 +4507,7 @@ declare const _default: {
|
|
4411
4507
|
bouncer: string;
|
4412
4508
|
};
|
4413
4509
|
/**
|
4414
|
-
*
|
4510
|
+
* Lookup590: pallet_nomination_pools::RewardPool<T>
|
4415
4511
|
**/
|
4416
4512
|
PalletNominationPoolsRewardPool: {
|
4417
4513
|
lastRecordedRewardCounter: string;
|
@@ -4421,21 +4517,21 @@ declare const _default: {
|
|
4421
4517
|
totalCommissionClaimed: string;
|
4422
4518
|
};
|
4423
4519
|
/**
|
4424
|
-
*
|
4520
|
+
* Lookup591: pallet_nomination_pools::SubPools<T>
|
4425
4521
|
**/
|
4426
4522
|
PalletNominationPoolsSubPools: {
|
4427
4523
|
noEra: string;
|
4428
4524
|
withEra: string;
|
4429
4525
|
};
|
4430
4526
|
/**
|
4431
|
-
*
|
4527
|
+
* Lookup592: pallet_nomination_pools::UnbondPool<T>
|
4432
4528
|
**/
|
4433
4529
|
PalletNominationPoolsUnbondPool: {
|
4434
4530
|
points: string;
|
4435
4531
|
balance: string;
|
4436
4532
|
};
|
4437
4533
|
/**
|
4438
|
-
*
|
4534
|
+
* Lookup597: pallet_nomination_pools::pallet::Error<T>
|
4439
4535
|
**/
|
4440
4536
|
PalletNominationPoolsError: {
|
4441
4537
|
_enum: {
|
@@ -4474,13 +4570,13 @@ declare const _default: {
|
|
4474
4570
|
};
|
4475
4571
|
};
|
4476
4572
|
/**
|
4477
|
-
*
|
4573
|
+
* Lookup598: pallet_nomination_pools::pallet::DefensiveError
|
4478
4574
|
**/
|
4479
4575
|
PalletNominationPoolsDefensiveError: {
|
4480
4576
|
_enum: string[];
|
4481
4577
|
};
|
4482
4578
|
/**
|
4483
|
-
*
|
4579
|
+
* 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>
|
4484
4580
|
**/
|
4485
4581
|
PalletSchedulerScheduled: {
|
4486
4582
|
maybeId: string;
|
@@ -4490,13 +4586,13 @@ declare const _default: {
|
|
4490
4586
|
origin: string;
|
4491
4587
|
};
|
4492
4588
|
/**
|
4493
|
-
*
|
4589
|
+
* Lookup603: pallet_scheduler::pallet::Error<T>
|
4494
4590
|
**/
|
4495
4591
|
PalletSchedulerError: {
|
4496
4592
|
_enum: string[];
|
4497
4593
|
};
|
4498
4594
|
/**
|
4499
|
-
*
|
4595
|
+
* Lookup604: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
|
4500
4596
|
**/
|
4501
4597
|
PalletPreimageOldRequestStatus: {
|
4502
4598
|
_enum: {
|
@@ -4512,7 +4608,7 @@ declare const _default: {
|
|
4512
4608
|
};
|
4513
4609
|
};
|
4514
4610
|
/**
|
4515
|
-
*
|
4611
|
+
* Lookup606: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
|
4516
4612
|
**/
|
4517
4613
|
PalletPreimageRequestStatus: {
|
4518
4614
|
_enum: {
|
@@ -4528,32 +4624,32 @@ declare const _default: {
|
|
4528
4624
|
};
|
4529
4625
|
};
|
4530
4626
|
/**
|
4531
|
-
*
|
4627
|
+
* Lookup610: pallet_preimage::pallet::Error<T>
|
4532
4628
|
**/
|
4533
4629
|
PalletPreimageError: {
|
4534
4630
|
_enum: string[];
|
4535
4631
|
};
|
4536
4632
|
/**
|
4537
|
-
*
|
4633
|
+
* Lookup611: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
|
4538
4634
|
**/
|
4539
4635
|
SpStakingOffenceOffenceDetails: {
|
4540
4636
|
offender: string;
|
4541
4637
|
reporters: string;
|
4542
4638
|
};
|
4543
4639
|
/**
|
4544
|
-
*
|
4640
|
+
* Lookup613: pallet_tx_pause::pallet::Error<T>
|
4545
4641
|
**/
|
4546
4642
|
PalletTxPauseError: {
|
4547
4643
|
_enum: string[];
|
4548
4644
|
};
|
4549
4645
|
/**
|
4550
|
-
*
|
4646
|
+
* Lookup616: pallet_im_online::pallet::Error<T>
|
4551
4647
|
**/
|
4552
4648
|
PalletImOnlineError: {
|
4553
4649
|
_enum: string[];
|
4554
4650
|
};
|
4555
4651
|
/**
|
4556
|
-
*
|
4652
|
+
* Lookup618: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
|
4557
4653
|
**/
|
4558
4654
|
PalletIdentityRegistration: {
|
4559
4655
|
judgements: string;
|
@@ -4561,7 +4657,7 @@ declare const _default: {
|
|
4561
4657
|
info: string;
|
4562
4658
|
};
|
4563
4659
|
/**
|
4564
|
-
*
|
4660
|
+
* Lookup627: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
|
4565
4661
|
**/
|
4566
4662
|
PalletIdentityRegistrarInfo: {
|
4567
4663
|
account: string;
|
@@ -4569,26 +4665,26 @@ declare const _default: {
|
|
4569
4665
|
fields: string;
|
4570
4666
|
};
|
4571
4667
|
/**
|
4572
|
-
*
|
4668
|
+
* Lookup629: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
|
4573
4669
|
**/
|
4574
4670
|
PalletIdentityAuthorityProperties: {
|
4575
4671
|
suffix: string;
|
4576
4672
|
allocation: string;
|
4577
4673
|
};
|
4578
4674
|
/**
|
4579
|
-
*
|
4675
|
+
* Lookup632: pallet_identity::pallet::Error<T>
|
4580
4676
|
**/
|
4581
4677
|
PalletIdentityError: {
|
4582
4678
|
_enum: string[];
|
4583
4679
|
};
|
4584
4680
|
/**
|
4585
|
-
*
|
4681
|
+
* Lookup633: pallet_utility::pallet::Error<T>
|
4586
4682
|
**/
|
4587
4683
|
PalletUtilityError: {
|
4588
4684
|
_enum: string[];
|
4589
4685
|
};
|
4590
4686
|
/**
|
4591
|
-
*
|
4687
|
+
* Lookup635: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
|
4592
4688
|
**/
|
4593
4689
|
PalletMultisigMultisig: {
|
4594
4690
|
when: string;
|
@@ -4597,13 +4693,13 @@ declare const _default: {
|
|
4597
4693
|
approvals: string;
|
4598
4694
|
};
|
4599
4695
|
/**
|
4600
|
-
*
|
4696
|
+
* Lookup636: pallet_multisig::pallet::Error<T>
|
4601
4697
|
**/
|
4602
4698
|
PalletMultisigError: {
|
4603
4699
|
_enum: string[];
|
4604
4700
|
};
|
4605
4701
|
/**
|
4606
|
-
*
|
4702
|
+
* Lookup639: fp_rpc::TransactionStatus
|
4607
4703
|
**/
|
4608
4704
|
FpRpcTransactionStatus: {
|
4609
4705
|
transactionHash: string;
|
@@ -4615,11 +4711,11 @@ declare const _default: {
|
|
4615
4711
|
logsBloom: string;
|
4616
4712
|
};
|
4617
4713
|
/**
|
4618
|
-
*
|
4714
|
+
* Lookup642: ethbloom::Bloom
|
4619
4715
|
**/
|
4620
4716
|
EthbloomBloom: string;
|
4621
4717
|
/**
|
4622
|
-
*
|
4718
|
+
* Lookup644: ethereum::receipt::ReceiptV3
|
4623
4719
|
**/
|
4624
4720
|
EthereumReceiptReceiptV3: {
|
4625
4721
|
_enum: {
|
@@ -4629,7 +4725,7 @@ declare const _default: {
|
|
4629
4725
|
};
|
4630
4726
|
};
|
4631
4727
|
/**
|
4632
|
-
*
|
4728
|
+
* Lookup645: ethereum::receipt::EIP658ReceiptData
|
4633
4729
|
**/
|
4634
4730
|
EthereumReceiptEip658ReceiptData: {
|
4635
4731
|
statusCode: string;
|
@@ -4638,7 +4734,7 @@ declare const _default: {
|
|
4638
4734
|
logs: string;
|
4639
4735
|
};
|
4640
4736
|
/**
|
4641
|
-
*
|
4737
|
+
* Lookup646: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
4642
4738
|
**/
|
4643
4739
|
EthereumBlock: {
|
4644
4740
|
header: string;
|
@@ -4646,7 +4742,7 @@ declare const _default: {
|
|
4646
4742
|
ommers: string;
|
4647
4743
|
};
|
4648
4744
|
/**
|
4649
|
-
*
|
4745
|
+
* Lookup647: ethereum::header::Header
|
4650
4746
|
**/
|
4651
4747
|
EthereumHeader: {
|
4652
4748
|
parentHash: string;
|
@@ -4666,17 +4762,17 @@ declare const _default: {
|
|
4666
4762
|
nonce: string;
|
4667
4763
|
};
|
4668
4764
|
/**
|
4669
|
-
*
|
4765
|
+
* Lookup648: ethereum_types::hash::H64
|
4670
4766
|
**/
|
4671
4767
|
EthereumTypesHashH64: string;
|
4672
4768
|
/**
|
4673
|
-
*
|
4769
|
+
* Lookup653: pallet_ethereum::pallet::Error<T>
|
4674
4770
|
**/
|
4675
4771
|
PalletEthereumError: {
|
4676
4772
|
_enum: string[];
|
4677
4773
|
};
|
4678
4774
|
/**
|
4679
|
-
*
|
4775
|
+
* Lookup654: pallet_evm::CodeMetadata
|
4680
4776
|
**/
|
4681
4777
|
PalletEvmCodeMetadata: {
|
4682
4778
|
_alias: {
|
@@ -4687,25 +4783,25 @@ declare const _default: {
|
|
4687
4783
|
hash_: string;
|
4688
4784
|
};
|
4689
4785
|
/**
|
4690
|
-
*
|
4786
|
+
* Lookup656: pallet_evm::pallet::Error<T>
|
4691
4787
|
**/
|
4692
4788
|
PalletEvmError: {
|
4693
4789
|
_enum: string[];
|
4694
4790
|
};
|
4695
4791
|
/**
|
4696
|
-
*
|
4792
|
+
* Lookup657: pallet_hotfix_sufficients::pallet::Error<T>
|
4697
4793
|
**/
|
4698
4794
|
PalletHotfixSufficientsError: {
|
4699
4795
|
_enum: string[];
|
4700
4796
|
};
|
4701
4797
|
/**
|
4702
|
-
*
|
4798
|
+
* Lookup659: pallet_airdrop_claims::pallet::Error<T>
|
4703
4799
|
**/
|
4704
4800
|
PalletAirdropClaimsError: {
|
4705
4801
|
_enum: string[];
|
4706
4802
|
};
|
4707
4803
|
/**
|
4708
|
-
*
|
4804
|
+
* Lookup660: pallet_roles::types::RestakingLedger<T>
|
4709
4805
|
**/
|
4710
4806
|
PalletRolesRestakingLedger: {
|
4711
4807
|
stash: string;
|
@@ -4718,20 +4814,20 @@ declare const _default: {
|
|
4718
4814
|
maxActiveServices: string;
|
4719
4815
|
};
|
4720
4816
|
/**
|
4721
|
-
*
|
4817
|
+
* Lookup666: pallet_roles::types::UnlockChunk<Balance>
|
4722
4818
|
**/
|
4723
4819
|
PalletRolesUnlockChunk: {
|
4724
4820
|
value: string;
|
4725
4821
|
era: string;
|
4726
4822
|
};
|
4727
4823
|
/**
|
4728
|
-
*
|
4824
|
+
* Lookup670: pallet_roles::pallet::Error<T>
|
4729
4825
|
**/
|
4730
4826
|
PalletRolesError: {
|
4731
4827
|
_enum: string[];
|
4732
4828
|
};
|
4733
4829
|
/**
|
4734
|
-
*
|
4830
|
+
* 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>
|
4735
4831
|
**/
|
4736
4832
|
TanglePrimitivesJobsPhaseResult: {
|
4737
4833
|
owner: string;
|
@@ -4741,53 +4837,75 @@ declare const _default: {
|
|
4741
4837
|
jobType: string;
|
4742
4838
|
};
|
4743
4839
|
/**
|
4744
|
-
*
|
4840
|
+
* Lookup673: pallet_jobs::module::Error<T>
|
4745
4841
|
**/
|
4746
4842
|
PalletJobsModuleError: {
|
4747
4843
|
_enum: string[];
|
4748
4844
|
};
|
4749
4845
|
/**
|
4750
|
-
*
|
4846
|
+
* Lookup674: pallet_dkg::pallet::Error<T>
|
4751
4847
|
**/
|
4752
4848
|
PalletDkgError: {
|
4753
4849
|
_enum: string[];
|
4754
4850
|
};
|
4755
4851
|
/**
|
4756
|
-
*
|
4852
|
+
* Lookup675: pallet_zksaas::pallet::Error<T>
|
4757
4853
|
**/
|
4758
4854
|
PalletZksaasError: {
|
4759
4855
|
_enum: string[];
|
4760
4856
|
};
|
4761
4857
|
/**
|
4762
|
-
*
|
4858
|
+
* Lookup678: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
|
4859
|
+
**/
|
4860
|
+
PalletProxyProxyDefinition: {
|
4861
|
+
delegate: string;
|
4862
|
+
proxyType: string;
|
4863
|
+
delay: string;
|
4864
|
+
};
|
4865
|
+
/**
|
4866
|
+
* Lookup682: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
|
4867
|
+
**/
|
4868
|
+
PalletProxyAnnouncement: {
|
4869
|
+
real: string;
|
4870
|
+
callHash: string;
|
4871
|
+
height: string;
|
4872
|
+
};
|
4873
|
+
/**
|
4874
|
+
* Lookup684: pallet_proxy::pallet::Error<T>
|
4875
|
+
**/
|
4876
|
+
PalletProxyError: {
|
4877
|
+
_enum: string[];
|
4878
|
+
};
|
4879
|
+
/**
|
4880
|
+
* Lookup687: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
4763
4881
|
**/
|
4764
4882
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
4765
4883
|
/**
|
4766
|
-
*
|
4884
|
+
* Lookup688: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
4767
4885
|
**/
|
4768
4886
|
FrameSystemExtensionsCheckSpecVersion: string;
|
4769
4887
|
/**
|
4770
|
-
*
|
4888
|
+
* Lookup689: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
4771
4889
|
**/
|
4772
4890
|
FrameSystemExtensionsCheckTxVersion: string;
|
4773
4891
|
/**
|
4774
|
-
*
|
4892
|
+
* Lookup690: frame_system::extensions::check_genesis::CheckGenesis<T>
|
4775
4893
|
**/
|
4776
4894
|
FrameSystemExtensionsCheckGenesis: string;
|
4777
4895
|
/**
|
4778
|
-
*
|
4896
|
+
* Lookup693: frame_system::extensions::check_nonce::CheckNonce<T>
|
4779
4897
|
**/
|
4780
4898
|
FrameSystemExtensionsCheckNonce: string;
|
4781
4899
|
/**
|
4782
|
-
*
|
4900
|
+
* Lookup694: frame_system::extensions::check_weight::CheckWeight<T>
|
4783
4901
|
**/
|
4784
4902
|
FrameSystemExtensionsCheckWeight: string;
|
4785
4903
|
/**
|
4786
|
-
*
|
4904
|
+
* Lookup695: pallet_transaction_payment::ChargeTransactionPayment<T>
|
4787
4905
|
**/
|
4788
4906
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
4789
4907
|
/**
|
4790
|
-
*
|
4908
|
+
* Lookup697: tangle_testnet_runtime::Runtime
|
4791
4909
|
**/
|
4792
4910
|
TangleTestnetRuntimeRuntime: string;
|
4793
4911
|
};
|