@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
@@ -1624,6 +1624,7 @@ declare module '@polkadot/types/lookup' {
|
|
1624
1624
|
readonly threshold: u8;
|
1625
1625
|
readonly permittedCaller: Option<AccountId32>;
|
1626
1626
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1627
|
+
readonly hdWallet: bool;
|
1627
1628
|
}
|
1628
1629
|
|
1629
1630
|
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (137) */
|
@@ -1768,7 +1769,52 @@ declare module '@polkadot/types/lookup' {
|
|
1768
1769
|
readonly storageFeePerByte: u128;
|
1769
1770
|
}
|
1770
1771
|
|
1771
|
-
/** @name
|
1772
|
+
/** @name PalletProxyEvent (161) */
|
1773
|
+
interface PalletProxyEvent extends Enum {
|
1774
|
+
readonly isProxyExecuted: boolean;
|
1775
|
+
readonly asProxyExecuted: {
|
1776
|
+
readonly result: Result<Null, SpRuntimeDispatchError>;
|
1777
|
+
} & Struct;
|
1778
|
+
readonly isPureCreated: boolean;
|
1779
|
+
readonly asPureCreated: {
|
1780
|
+
readonly pure: AccountId32;
|
1781
|
+
readonly who: AccountId32;
|
1782
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1783
|
+
readonly disambiguationIndex: u16;
|
1784
|
+
} & Struct;
|
1785
|
+
readonly isAnnounced: boolean;
|
1786
|
+
readonly asAnnounced: {
|
1787
|
+
readonly real: AccountId32;
|
1788
|
+
readonly proxy: AccountId32;
|
1789
|
+
readonly callHash: H256;
|
1790
|
+
} & Struct;
|
1791
|
+
readonly isProxyAdded: boolean;
|
1792
|
+
readonly asProxyAdded: {
|
1793
|
+
readonly delegator: AccountId32;
|
1794
|
+
readonly delegatee: AccountId32;
|
1795
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1796
|
+
readonly delay: u64;
|
1797
|
+
} & Struct;
|
1798
|
+
readonly isProxyRemoved: boolean;
|
1799
|
+
readonly asProxyRemoved: {
|
1800
|
+
readonly delegator: AccountId32;
|
1801
|
+
readonly delegatee: AccountId32;
|
1802
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1803
|
+
readonly delay: u64;
|
1804
|
+
} & Struct;
|
1805
|
+
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
1806
|
+
}
|
1807
|
+
|
1808
|
+
/** @name TangleTestnetRuntimeProxyType (162) */
|
1809
|
+
interface TangleTestnetRuntimeProxyType extends Enum {
|
1810
|
+
readonly isAny: boolean;
|
1811
|
+
readonly isNonTransfer: boolean;
|
1812
|
+
readonly isGovernance: boolean;
|
1813
|
+
readonly isStaking: boolean;
|
1814
|
+
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
/** @name FrameSystemPhase (164) */
|
1772
1818
|
interface FrameSystemPhase extends Enum {
|
1773
1819
|
readonly isApplyExtrinsic: boolean;
|
1774
1820
|
readonly asApplyExtrinsic: u32;
|
@@ -1777,19 +1823,19 @@ declare module '@polkadot/types/lookup' {
|
|
1777
1823
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
1778
1824
|
}
|
1779
1825
|
|
1780
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
1826
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (166) */
|
1781
1827
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
1782
1828
|
readonly specVersion: Compact<u32>;
|
1783
1829
|
readonly specName: Text;
|
1784
1830
|
}
|
1785
1831
|
|
1786
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
1832
|
+
/** @name FrameSystemCodeUpgradeAuthorization (168) */
|
1787
1833
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
1788
1834
|
readonly codeHash: H256;
|
1789
1835
|
readonly checkVersion: bool;
|
1790
1836
|
}
|
1791
1837
|
|
1792
|
-
/** @name FrameSystemCall (
|
1838
|
+
/** @name FrameSystemCall (169) */
|
1793
1839
|
interface FrameSystemCall extends Enum {
|
1794
1840
|
readonly isRemark: boolean;
|
1795
1841
|
readonly asRemark: {
|
@@ -1839,21 +1885,21 @@ declare module '@polkadot/types/lookup' {
|
|
1839
1885
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
1840
1886
|
}
|
1841
1887
|
|
1842
|
-
/** @name FrameSystemLimitsBlockWeights (
|
1888
|
+
/** @name FrameSystemLimitsBlockWeights (173) */
|
1843
1889
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
1844
1890
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
1845
1891
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
1846
1892
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
1847
1893
|
}
|
1848
1894
|
|
1849
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
1895
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (174) */
|
1850
1896
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
1851
1897
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
1852
1898
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
1853
1899
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
1854
1900
|
}
|
1855
1901
|
|
1856
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
1902
|
+
/** @name FrameSystemLimitsWeightsPerClass (175) */
|
1857
1903
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
1858
1904
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
1859
1905
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
@@ -1861,25 +1907,25 @@ declare module '@polkadot/types/lookup' {
|
|
1861
1907
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
1862
1908
|
}
|
1863
1909
|
|
1864
|
-
/** @name FrameSystemLimitsBlockLength (
|
1910
|
+
/** @name FrameSystemLimitsBlockLength (177) */
|
1865
1911
|
interface FrameSystemLimitsBlockLength extends Struct {
|
1866
1912
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
1867
1913
|
}
|
1868
1914
|
|
1869
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
1915
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (178) */
|
1870
1916
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
1871
1917
|
readonly normal: u32;
|
1872
1918
|
readonly operational: u32;
|
1873
1919
|
readonly mandatory: u32;
|
1874
1920
|
}
|
1875
1921
|
|
1876
|
-
/** @name SpWeightsRuntimeDbWeight (
|
1922
|
+
/** @name SpWeightsRuntimeDbWeight (179) */
|
1877
1923
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
1878
1924
|
readonly read: u64;
|
1879
1925
|
readonly write: u64;
|
1880
1926
|
}
|
1881
1927
|
|
1882
|
-
/** @name SpVersionRuntimeVersion (
|
1928
|
+
/** @name SpVersionRuntimeVersion (180) */
|
1883
1929
|
interface SpVersionRuntimeVersion extends Struct {
|
1884
1930
|
readonly specName: Text;
|
1885
1931
|
readonly implName: Text;
|
@@ -1891,7 +1937,7 @@ declare module '@polkadot/types/lookup' {
|
|
1891
1937
|
readonly stateVersion: u8;
|
1892
1938
|
}
|
1893
1939
|
|
1894
|
-
/** @name FrameSystemError (
|
1940
|
+
/** @name FrameSystemError (185) */
|
1895
1941
|
interface FrameSystemError extends Enum {
|
1896
1942
|
readonly isInvalidSpecName: boolean;
|
1897
1943
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
@@ -1904,7 +1950,7 @@ declare module '@polkadot/types/lookup' {
|
|
1904
1950
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
|
1905
1951
|
}
|
1906
1952
|
|
1907
|
-
/** @name PalletTimestampCall (
|
1953
|
+
/** @name PalletTimestampCall (186) */
|
1908
1954
|
interface PalletTimestampCall extends Enum {
|
1909
1955
|
readonly isSet: boolean;
|
1910
1956
|
readonly asSet: {
|
@@ -1913,7 +1959,7 @@ declare module '@polkadot/types/lookup' {
|
|
1913
1959
|
readonly type: 'Set';
|
1914
1960
|
}
|
1915
1961
|
|
1916
|
-
/** @name PalletSudoCall (
|
1962
|
+
/** @name PalletSudoCall (187) */
|
1917
1963
|
interface PalletSudoCall extends Enum {
|
1918
1964
|
readonly isSudo: boolean;
|
1919
1965
|
readonly asSudo: {
|
@@ -1937,7 +1983,7 @@ declare module '@polkadot/types/lookup' {
|
|
1937
1983
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
1938
1984
|
}
|
1939
1985
|
|
1940
|
-
/** @name PalletBalancesCall (
|
1986
|
+
/** @name PalletBalancesCall (189) */
|
1941
1987
|
interface PalletBalancesCall extends Enum {
|
1942
1988
|
readonly isTransferAllowDeath: boolean;
|
1943
1989
|
readonly asTransferAllowDeath: {
|
@@ -1982,14 +2028,14 @@ declare module '@polkadot/types/lookup' {
|
|
1982
2028
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
|
1983
2029
|
}
|
1984
2030
|
|
1985
|
-
/** @name PalletBalancesAdjustmentDirection (
|
2031
|
+
/** @name PalletBalancesAdjustmentDirection (191) */
|
1986
2032
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
1987
2033
|
readonly isIncrease: boolean;
|
1988
2034
|
readonly isDecrease: boolean;
|
1989
2035
|
readonly type: 'Increase' | 'Decrease';
|
1990
2036
|
}
|
1991
2037
|
|
1992
|
-
/** @name PalletBabeCall (
|
2038
|
+
/** @name PalletBabeCall (192) */
|
1993
2039
|
interface PalletBabeCall extends Enum {
|
1994
2040
|
readonly isReportEquivocation: boolean;
|
1995
2041
|
readonly asReportEquivocation: {
|
@@ -2008,7 +2054,7 @@ declare module '@polkadot/types/lookup' {
|
|
2008
2054
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
2009
2055
|
}
|
2010
2056
|
|
2011
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
2057
|
+
/** @name SpConsensusSlotsEquivocationProof (193) */
|
2012
2058
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
2013
2059
|
readonly offender: SpConsensusBabeAppPublic;
|
2014
2060
|
readonly slot: u64;
|
@@ -2016,7 +2062,7 @@ declare module '@polkadot/types/lookup' {
|
|
2016
2062
|
readonly secondHeader: SpRuntimeHeader;
|
2017
2063
|
}
|
2018
2064
|
|
2019
|
-
/** @name SpRuntimeHeader (
|
2065
|
+
/** @name SpRuntimeHeader (194) */
|
2020
2066
|
interface SpRuntimeHeader extends Struct {
|
2021
2067
|
readonly parentHash: H256;
|
2022
2068
|
readonly number: Compact<u64>;
|
@@ -2025,17 +2071,17 @@ declare module '@polkadot/types/lookup' {
|
|
2025
2071
|
readonly digest: SpRuntimeDigest;
|
2026
2072
|
}
|
2027
2073
|
|
2028
|
-
/** @name SpConsensusBabeAppPublic (
|
2074
|
+
/** @name SpConsensusBabeAppPublic (195) */
|
2029
2075
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {}
|
2030
2076
|
|
2031
|
-
/** @name SpSessionMembershipProof (
|
2077
|
+
/** @name SpSessionMembershipProof (197) */
|
2032
2078
|
interface SpSessionMembershipProof extends Struct {
|
2033
2079
|
readonly session: u32;
|
2034
2080
|
readonly trieNodes: Vec<Bytes>;
|
2035
2081
|
readonly validatorCount: u32;
|
2036
2082
|
}
|
2037
2083
|
|
2038
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
2084
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (198) */
|
2039
2085
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
2040
2086
|
readonly isV1: boolean;
|
2041
2087
|
readonly asV1: {
|
@@ -2045,7 +2091,7 @@ declare module '@polkadot/types/lookup' {
|
|
2045
2091
|
readonly type: 'V1';
|
2046
2092
|
}
|
2047
2093
|
|
2048
|
-
/** @name SpConsensusBabeAllowedSlots (
|
2094
|
+
/** @name SpConsensusBabeAllowedSlots (200) */
|
2049
2095
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
2050
2096
|
readonly isPrimarySlots: boolean;
|
2051
2097
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
@@ -2053,7 +2099,7 @@ declare module '@polkadot/types/lookup' {
|
|
2053
2099
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
2054
2100
|
}
|
2055
2101
|
|
2056
|
-
/** @name PalletGrandpaCall (
|
2102
|
+
/** @name PalletGrandpaCall (201) */
|
2057
2103
|
interface PalletGrandpaCall extends Enum {
|
2058
2104
|
readonly isReportEquivocation: boolean;
|
2059
2105
|
readonly asReportEquivocation: {
|
@@ -2073,13 +2119,13 @@ declare module '@polkadot/types/lookup' {
|
|
2073
2119
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
2074
2120
|
}
|
2075
2121
|
|
2076
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
2122
|
+
/** @name SpConsensusGrandpaEquivocationProof (202) */
|
2077
2123
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
2078
2124
|
readonly setId: u64;
|
2079
2125
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
2080
2126
|
}
|
2081
2127
|
|
2082
|
-
/** @name SpConsensusGrandpaEquivocation (
|
2128
|
+
/** @name SpConsensusGrandpaEquivocation (203) */
|
2083
2129
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
2084
2130
|
readonly isPrevote: boolean;
|
2085
2131
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
@@ -2088,7 +2134,7 @@ declare module '@polkadot/types/lookup' {
|
|
2088
2134
|
readonly type: 'Prevote' | 'Precommit';
|
2089
2135
|
}
|
2090
2136
|
|
2091
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
2137
|
+
/** @name FinalityGrandpaEquivocationPrevote (204) */
|
2092
2138
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
2093
2139
|
readonly roundNumber: u64;
|
2094
2140
|
readonly identity: SpConsensusGrandpaAppPublic;
|
@@ -2096,19 +2142,19 @@ declare module '@polkadot/types/lookup' {
|
|
2096
2142
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
2097
2143
|
}
|
2098
2144
|
|
2099
|
-
/** @name FinalityGrandpaPrevote (
|
2145
|
+
/** @name FinalityGrandpaPrevote (205) */
|
2100
2146
|
interface FinalityGrandpaPrevote extends Struct {
|
2101
2147
|
readonly targetHash: H256;
|
2102
2148
|
readonly targetNumber: u64;
|
2103
2149
|
}
|
2104
2150
|
|
2105
|
-
/** @name SpConsensusGrandpaAppSignature (
|
2151
|
+
/** @name SpConsensusGrandpaAppSignature (206) */
|
2106
2152
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {}
|
2107
2153
|
|
2108
|
-
/** @name SpCoreEd25519Signature (
|
2154
|
+
/** @name SpCoreEd25519Signature (207) */
|
2109
2155
|
interface SpCoreEd25519Signature extends U8aFixed {}
|
2110
2156
|
|
2111
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
2157
|
+
/** @name FinalityGrandpaEquivocationPrecommit (210) */
|
2112
2158
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
2113
2159
|
readonly roundNumber: u64;
|
2114
2160
|
readonly identity: SpConsensusGrandpaAppPublic;
|
@@ -2116,16 +2162,16 @@ declare module '@polkadot/types/lookup' {
|
|
2116
2162
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
2117
2163
|
}
|
2118
2164
|
|
2119
|
-
/** @name FinalityGrandpaPrecommit (
|
2165
|
+
/** @name FinalityGrandpaPrecommit (211) */
|
2120
2166
|
interface FinalityGrandpaPrecommit extends Struct {
|
2121
2167
|
readonly targetHash: H256;
|
2122
2168
|
readonly targetNumber: u64;
|
2123
2169
|
}
|
2124
2170
|
|
2125
|
-
/** @name SpCoreVoid (
|
2171
|
+
/** @name SpCoreVoid (213) */
|
2126
2172
|
type SpCoreVoid = Null;
|
2127
2173
|
|
2128
|
-
/** @name PalletIndicesCall (
|
2174
|
+
/** @name PalletIndicesCall (214) */
|
2129
2175
|
interface PalletIndicesCall extends Enum {
|
2130
2176
|
readonly isClaim: boolean;
|
2131
2177
|
readonly asClaim: {
|
@@ -2153,7 +2199,7 @@ declare module '@polkadot/types/lookup' {
|
|
2153
2199
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
2154
2200
|
}
|
2155
2201
|
|
2156
|
-
/** @name PalletDemocracyCall (
|
2202
|
+
/** @name PalletDemocracyCall (215) */
|
2157
2203
|
interface PalletDemocracyCall extends Enum {
|
2158
2204
|
readonly isPropose: boolean;
|
2159
2205
|
readonly asPropose: {
|
@@ -2237,7 +2283,7 @@ declare module '@polkadot/types/lookup' {
|
|
2237
2283
|
readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
|
2238
2284
|
}
|
2239
2285
|
|
2240
|
-
/** @name FrameSupportPreimagesBounded (
|
2286
|
+
/** @name FrameSupportPreimagesBounded (216) */
|
2241
2287
|
interface FrameSupportPreimagesBounded extends Enum {
|
2242
2288
|
readonly isLegacy: boolean;
|
2243
2289
|
readonly asLegacy: {
|
@@ -2253,10 +2299,10 @@ declare module '@polkadot/types/lookup' {
|
|
2253
2299
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
2254
2300
|
}
|
2255
2301
|
|
2256
|
-
/** @name SpRuntimeBlakeTwo256 (
|
2302
|
+
/** @name SpRuntimeBlakeTwo256 (217) */
|
2257
2303
|
type SpRuntimeBlakeTwo256 = Null;
|
2258
2304
|
|
2259
|
-
/** @name PalletDemocracyConviction (
|
2305
|
+
/** @name PalletDemocracyConviction (219) */
|
2260
2306
|
interface PalletDemocracyConviction extends Enum {
|
2261
2307
|
readonly isNone: boolean;
|
2262
2308
|
readonly isLocked1x: boolean;
|
@@ -2268,7 +2314,7 @@ declare module '@polkadot/types/lookup' {
|
|
2268
2314
|
readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
|
2269
2315
|
}
|
2270
2316
|
|
2271
|
-
/** @name PalletCollectiveCall (
|
2317
|
+
/** @name PalletCollectiveCall (222) */
|
2272
2318
|
interface PalletCollectiveCall extends Enum {
|
2273
2319
|
readonly isSetMembers: boolean;
|
2274
2320
|
readonly asSetMembers: {
|
@@ -2307,7 +2353,7 @@ declare module '@polkadot/types/lookup' {
|
|
2307
2353
|
readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
|
2308
2354
|
}
|
2309
2355
|
|
2310
|
-
/** @name PalletVestingCall (
|
2356
|
+
/** @name PalletVestingCall (223) */
|
2311
2357
|
interface PalletVestingCall extends Enum {
|
2312
2358
|
readonly isVest: boolean;
|
2313
2359
|
readonly isVestOther: boolean;
|
@@ -2338,14 +2384,14 @@ declare module '@polkadot/types/lookup' {
|
|
2338
2384
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
2339
2385
|
}
|
2340
2386
|
|
2341
|
-
/** @name PalletVestingVestingInfo (
|
2387
|
+
/** @name PalletVestingVestingInfo (224) */
|
2342
2388
|
interface PalletVestingVestingInfo extends Struct {
|
2343
2389
|
readonly locked: u128;
|
2344
2390
|
readonly perBlock: u128;
|
2345
2391
|
readonly startingBlock: u64;
|
2346
2392
|
}
|
2347
2393
|
|
2348
|
-
/** @name PalletElectionsPhragmenCall (
|
2394
|
+
/** @name PalletElectionsPhragmenCall (225) */
|
2349
2395
|
interface PalletElectionsPhragmenCall extends Enum {
|
2350
2396
|
readonly isVote: boolean;
|
2351
2397
|
readonly asVote: {
|
@@ -2375,7 +2421,7 @@ declare module '@polkadot/types/lookup' {
|
|
2375
2421
|
readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
|
2376
2422
|
}
|
2377
2423
|
|
2378
|
-
/** @name PalletElectionsPhragmenRenouncing (
|
2424
|
+
/** @name PalletElectionsPhragmenRenouncing (226) */
|
2379
2425
|
interface PalletElectionsPhragmenRenouncing extends Enum {
|
2380
2426
|
readonly isMember: boolean;
|
2381
2427
|
readonly isRunnerUp: boolean;
|
@@ -2384,7 +2430,7 @@ declare module '@polkadot/types/lookup' {
|
|
2384
2430
|
readonly type: 'Member' | 'RunnerUp' | 'Candidate';
|
2385
2431
|
}
|
2386
2432
|
|
2387
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
2433
|
+
/** @name PalletElectionProviderMultiPhaseCall (227) */
|
2388
2434
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
2389
2435
|
readonly isSubmitUnsigned: boolean;
|
2390
2436
|
readonly asSubmitUnsigned: {
|
@@ -2411,14 +2457,14 @@ declare module '@polkadot/types/lookup' {
|
|
2411
2457
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
2412
2458
|
}
|
2413
2459
|
|
2414
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
2460
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (228) */
|
2415
2461
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
2416
2462
|
readonly solution: TangleTestnetRuntimeNposSolution16;
|
2417
2463
|
readonly score: SpNposElectionsElectionScore;
|
2418
2464
|
readonly round: u32;
|
2419
2465
|
}
|
2420
2466
|
|
2421
|
-
/** @name TangleTestnetRuntimeNposSolution16 (
|
2467
|
+
/** @name TangleTestnetRuntimeNposSolution16 (229) */
|
2422
2468
|
interface TangleTestnetRuntimeNposSolution16 extends Struct {
|
2423
2469
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
2424
2470
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
@@ -2438,19 +2484,19 @@ declare module '@polkadot/types/lookup' {
|
|
2438
2484
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2439
2485
|
}
|
2440
2486
|
|
2441
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
2487
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (280) */
|
2442
2488
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
2443
2489
|
readonly voters: Compact<u32>;
|
2444
2490
|
readonly targets: Compact<u32>;
|
2445
2491
|
}
|
2446
2492
|
|
2447
|
-
/** @name SpNposElectionsSupport (
|
2493
|
+
/** @name SpNposElectionsSupport (284) */
|
2448
2494
|
interface SpNposElectionsSupport extends Struct {
|
2449
2495
|
readonly total: u128;
|
2450
2496
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
2451
2497
|
}
|
2452
2498
|
|
2453
|
-
/** @name PalletStakingPalletCall (
|
2499
|
+
/** @name PalletStakingPalletCall (285) */
|
2454
2500
|
interface PalletStakingPalletCall extends Enum {
|
2455
2501
|
readonly isBond: boolean;
|
2456
2502
|
readonly asBond: {
|
@@ -2568,7 +2614,7 @@ declare module '@polkadot/types/lookup' {
|
|
2568
2614
|
readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'ReapStash' | 'Kick' | 'SetStakingConfigs' | 'ChillOther' | 'ForceApplyMinCommission' | 'SetMinCommission' | 'PayoutStakersByPage' | 'UpdatePayee' | 'DeprecateControllerBatch';
|
2569
2615
|
}
|
2570
2616
|
|
2571
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
2617
|
+
/** @name PalletStakingPalletConfigOpU128 (289) */
|
2572
2618
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
2573
2619
|
readonly isNoop: boolean;
|
2574
2620
|
readonly isSet: boolean;
|
@@ -2577,7 +2623,7 @@ declare module '@polkadot/types/lookup' {
|
|
2577
2623
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2578
2624
|
}
|
2579
2625
|
|
2580
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
2626
|
+
/** @name PalletStakingPalletConfigOpU32 (290) */
|
2581
2627
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
2582
2628
|
readonly isNoop: boolean;
|
2583
2629
|
readonly isSet: boolean;
|
@@ -2586,7 +2632,7 @@ declare module '@polkadot/types/lookup' {
|
|
2586
2632
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2587
2633
|
}
|
2588
2634
|
|
2589
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
2635
|
+
/** @name PalletStakingPalletConfigOpPercent (291) */
|
2590
2636
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
2591
2637
|
readonly isNoop: boolean;
|
2592
2638
|
readonly isSet: boolean;
|
@@ -2595,7 +2641,7 @@ declare module '@polkadot/types/lookup' {
|
|
2595
2641
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2596
2642
|
}
|
2597
2643
|
|
2598
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
2644
|
+
/** @name PalletStakingPalletConfigOpPerbill (292) */
|
2599
2645
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
2600
2646
|
readonly isNoop: boolean;
|
2601
2647
|
readonly isSet: boolean;
|
@@ -2604,7 +2650,7 @@ declare module '@polkadot/types/lookup' {
|
|
2604
2650
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2605
2651
|
}
|
2606
2652
|
|
2607
|
-
/** @name PalletSessionCall (
|
2653
|
+
/** @name PalletSessionCall (294) */
|
2608
2654
|
interface PalletSessionCall extends Enum {
|
2609
2655
|
readonly isSetKeys: boolean;
|
2610
2656
|
readonly asSetKeys: {
|
@@ -2615,7 +2661,7 @@ declare module '@polkadot/types/lookup' {
|
|
2615
2661
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
2616
2662
|
}
|
2617
2663
|
|
2618
|
-
/** @name TangleTestnetRuntimeOpaqueSessionKeys (
|
2664
|
+
/** @name TangleTestnetRuntimeOpaqueSessionKeys (295) */
|
2619
2665
|
interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
|
2620
2666
|
readonly babe: SpConsensusBabeAppPublic;
|
2621
2667
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
@@ -2623,13 +2669,13 @@ declare module '@polkadot/types/lookup' {
|
|
2623
2669
|
readonly role: TangleCryptoPrimitivesCryptoPublic;
|
2624
2670
|
}
|
2625
2671
|
|
2626
|
-
/** @name TangleCryptoPrimitivesCryptoPublic (
|
2672
|
+
/** @name TangleCryptoPrimitivesCryptoPublic (296) */
|
2627
2673
|
interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {}
|
2628
2674
|
|
2629
|
-
/** @name SpCoreEcdsaPublic (
|
2675
|
+
/** @name SpCoreEcdsaPublic (297) */
|
2630
2676
|
interface SpCoreEcdsaPublic extends U8aFixed {}
|
2631
2677
|
|
2632
|
-
/** @name PalletTreasuryCall (
|
2678
|
+
/** @name PalletTreasuryCall (299) */
|
2633
2679
|
interface PalletTreasuryCall extends Enum {
|
2634
2680
|
readonly isProposeSpend: boolean;
|
2635
2681
|
readonly asProposeSpend: {
|
@@ -2675,7 +2721,7 @@ declare module '@polkadot/types/lookup' {
|
|
2675
2721
|
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
|
2676
2722
|
}
|
2677
2723
|
|
2678
|
-
/** @name PalletBountiesCall (
|
2724
|
+
/** @name PalletBountiesCall (301) */
|
2679
2725
|
interface PalletBountiesCall extends Enum {
|
2680
2726
|
readonly isProposeBounty: boolean;
|
2681
2727
|
readonly asProposeBounty: {
|
@@ -2721,7 +2767,7 @@ declare module '@polkadot/types/lookup' {
|
|
2721
2767
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
|
2722
2768
|
}
|
2723
2769
|
|
2724
|
-
/** @name PalletChildBountiesCall (
|
2770
|
+
/** @name PalletChildBountiesCall (302) */
|
2725
2771
|
interface PalletChildBountiesCall extends Enum {
|
2726
2772
|
readonly isAddChildBounty: boolean;
|
2727
2773
|
readonly asAddChildBounty: {
|
@@ -2765,7 +2811,7 @@ declare module '@polkadot/types/lookup' {
|
|
2765
2811
|
readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
|
2766
2812
|
}
|
2767
2813
|
|
2768
|
-
/** @name PalletBagsListCall (
|
2814
|
+
/** @name PalletBagsListCall (303) */
|
2769
2815
|
interface PalletBagsListCall extends Enum {
|
2770
2816
|
readonly isRebag: boolean;
|
2771
2817
|
readonly asRebag: {
|
@@ -2783,7 +2829,7 @@ declare module '@polkadot/types/lookup' {
|
|
2783
2829
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
2784
2830
|
}
|
2785
2831
|
|
2786
|
-
/** @name PalletNominationPoolsCall (
|
2832
|
+
/** @name PalletNominationPoolsCall (304) */
|
2787
2833
|
interface PalletNominationPoolsCall extends Enum {
|
2788
2834
|
readonly isJoin: boolean;
|
2789
2835
|
readonly asJoin: {
|
@@ -2904,7 +2950,7 @@ declare module '@polkadot/types/lookup' {
|
|
2904
2950
|
readonly type: 'Join' | 'BondExtra' | 'ClaimPayout' | 'Unbond' | 'PoolWithdrawUnbonded' | 'WithdrawUnbonded' | 'Create' | 'CreateWithPoolId' | 'Nominate' | 'SetState' | 'SetMetadata' | 'SetConfigs' | 'UpdateRoles' | 'Chill' | 'BondExtraOther' | 'SetClaimPermission' | 'ClaimPayoutOther' | 'SetCommission' | 'SetCommissionMax' | 'SetCommissionChangeRate' | 'ClaimCommission' | 'AdjustPoolDeposit' | 'SetCommissionClaimPermission';
|
2905
2951
|
}
|
2906
2952
|
|
2907
|
-
/** @name PalletNominationPoolsBondExtra (
|
2953
|
+
/** @name PalletNominationPoolsBondExtra (305) */
|
2908
2954
|
interface PalletNominationPoolsBondExtra extends Enum {
|
2909
2955
|
readonly isFreeBalance: boolean;
|
2910
2956
|
readonly asFreeBalance: u128;
|
@@ -2912,7 +2958,7 @@ declare module '@polkadot/types/lookup' {
|
|
2912
2958
|
readonly type: 'FreeBalance' | 'Rewards';
|
2913
2959
|
}
|
2914
2960
|
|
2915
|
-
/** @name PalletNominationPoolsConfigOpU128 (
|
2961
|
+
/** @name PalletNominationPoolsConfigOpU128 (306) */
|
2916
2962
|
interface PalletNominationPoolsConfigOpU128 extends Enum {
|
2917
2963
|
readonly isNoop: boolean;
|
2918
2964
|
readonly isSet: boolean;
|
@@ -2921,7 +2967,7 @@ declare module '@polkadot/types/lookup' {
|
|
2921
2967
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2922
2968
|
}
|
2923
2969
|
|
2924
|
-
/** @name PalletNominationPoolsConfigOpU32 (
|
2970
|
+
/** @name PalletNominationPoolsConfigOpU32 (307) */
|
2925
2971
|
interface PalletNominationPoolsConfigOpU32 extends Enum {
|
2926
2972
|
readonly isNoop: boolean;
|
2927
2973
|
readonly isSet: boolean;
|
@@ -2930,7 +2976,7 @@ declare module '@polkadot/types/lookup' {
|
|
2930
2976
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2931
2977
|
}
|
2932
2978
|
|
2933
|
-
/** @name PalletNominationPoolsConfigOpPerbill (
|
2979
|
+
/** @name PalletNominationPoolsConfigOpPerbill (308) */
|
2934
2980
|
interface PalletNominationPoolsConfigOpPerbill extends Enum {
|
2935
2981
|
readonly isNoop: boolean;
|
2936
2982
|
readonly isSet: boolean;
|
@@ -2939,7 +2985,7 @@ declare module '@polkadot/types/lookup' {
|
|
2939
2985
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2940
2986
|
}
|
2941
2987
|
|
2942
|
-
/** @name PalletNominationPoolsConfigOpAccountId32 (
|
2988
|
+
/** @name PalletNominationPoolsConfigOpAccountId32 (309) */
|
2943
2989
|
interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
|
2944
2990
|
readonly isNoop: boolean;
|
2945
2991
|
readonly isSet: boolean;
|
@@ -2948,7 +2994,7 @@ declare module '@polkadot/types/lookup' {
|
|
2948
2994
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2949
2995
|
}
|
2950
2996
|
|
2951
|
-
/** @name PalletNominationPoolsClaimPermission (
|
2997
|
+
/** @name PalletNominationPoolsClaimPermission (310) */
|
2952
2998
|
interface PalletNominationPoolsClaimPermission extends Enum {
|
2953
2999
|
readonly isPermissioned: boolean;
|
2954
3000
|
readonly isPermissionlessCompound: boolean;
|
@@ -2957,7 +3003,7 @@ declare module '@polkadot/types/lookup' {
|
|
2957
3003
|
readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
2958
3004
|
}
|
2959
3005
|
|
2960
|
-
/** @name PalletSchedulerCall (
|
3006
|
+
/** @name PalletSchedulerCall (311) */
|
2961
3007
|
interface PalletSchedulerCall extends Enum {
|
2962
3008
|
readonly isSchedule: boolean;
|
2963
3009
|
readonly asSchedule: {
|
@@ -3001,7 +3047,7 @@ declare module '@polkadot/types/lookup' {
|
|
3001
3047
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
3002
3048
|
}
|
3003
3049
|
|
3004
|
-
/** @name PalletPreimageCall (
|
3050
|
+
/** @name PalletPreimageCall (313) */
|
3005
3051
|
interface PalletPreimageCall extends Enum {
|
3006
3052
|
readonly isNotePreimage: boolean;
|
3007
3053
|
readonly asNotePreimage: {
|
@@ -3026,7 +3072,7 @@ declare module '@polkadot/types/lookup' {
|
|
3026
3072
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
|
3027
3073
|
}
|
3028
3074
|
|
3029
|
-
/** @name PalletTxPauseCall (
|
3075
|
+
/** @name PalletTxPauseCall (314) */
|
3030
3076
|
interface PalletTxPauseCall extends Enum {
|
3031
3077
|
readonly isPause: boolean;
|
3032
3078
|
readonly asPause: {
|
@@ -3039,7 +3085,7 @@ declare module '@polkadot/types/lookup' {
|
|
3039
3085
|
readonly type: 'Pause' | 'Unpause';
|
3040
3086
|
}
|
3041
3087
|
|
3042
|
-
/** @name PalletImOnlineCall (
|
3088
|
+
/** @name PalletImOnlineCall (315) */
|
3043
3089
|
interface PalletImOnlineCall extends Enum {
|
3044
3090
|
readonly isHeartbeat: boolean;
|
3045
3091
|
readonly asHeartbeat: {
|
@@ -3049,7 +3095,7 @@ declare module '@polkadot/types/lookup' {
|
|
3049
3095
|
readonly type: 'Heartbeat';
|
3050
3096
|
}
|
3051
3097
|
|
3052
|
-
/** @name PalletImOnlineHeartbeat (
|
3098
|
+
/** @name PalletImOnlineHeartbeat (316) */
|
3053
3099
|
interface PalletImOnlineHeartbeat extends Struct {
|
3054
3100
|
readonly blockNumber: u64;
|
3055
3101
|
readonly sessionIndex: u32;
|
@@ -3057,13 +3103,13 @@ declare module '@polkadot/types/lookup' {
|
|
3057
3103
|
readonly validatorsLen: u32;
|
3058
3104
|
}
|
3059
3105
|
|
3060
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
3106
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (317) */
|
3061
3107
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {}
|
3062
3108
|
|
3063
|
-
/** @name SpCoreSr25519Signature (
|
3109
|
+
/** @name SpCoreSr25519Signature (318) */
|
3064
3110
|
interface SpCoreSr25519Signature extends U8aFixed {}
|
3065
3111
|
|
3066
|
-
/** @name PalletIdentityCall (
|
3112
|
+
/** @name PalletIdentityCall (319) */
|
3067
3113
|
interface PalletIdentityCall extends Enum {
|
3068
3114
|
readonly isAddRegistrar: boolean;
|
3069
3115
|
readonly asAddRegistrar: {
|
@@ -3163,7 +3209,7 @@ declare module '@polkadot/types/lookup' {
|
|
3163
3209
|
readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'AddUsernameAuthority' | 'RemoveUsernameAuthority' | 'SetUsernameFor' | 'AcceptUsername' | 'RemoveExpiredApproval' | 'SetPrimaryUsername' | 'RemoveDanglingUsername';
|
3164
3210
|
}
|
3165
3211
|
|
3166
|
-
/** @name PalletIdentityLegacyIdentityInfo (
|
3212
|
+
/** @name PalletIdentityLegacyIdentityInfo (320) */
|
3167
3213
|
interface PalletIdentityLegacyIdentityInfo extends Struct {
|
3168
3214
|
readonly additional: Vec<ITuple<[Data, Data]>>;
|
3169
3215
|
readonly display: Data;
|
@@ -3176,7 +3222,7 @@ declare module '@polkadot/types/lookup' {
|
|
3176
3222
|
readonly twitter: Data;
|
3177
3223
|
}
|
3178
3224
|
|
3179
|
-
/** @name PalletIdentityJudgement (
|
3225
|
+
/** @name PalletIdentityJudgement (356) */
|
3180
3226
|
interface PalletIdentityJudgement extends Enum {
|
3181
3227
|
readonly isUnknown: boolean;
|
3182
3228
|
readonly isFeePaid: boolean;
|
@@ -3189,7 +3235,7 @@ declare module '@polkadot/types/lookup' {
|
|
3189
3235
|
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
|
3190
3236
|
}
|
3191
3237
|
|
3192
|
-
/** @name SpRuntimeMultiSignature (
|
3238
|
+
/** @name SpRuntimeMultiSignature (358) */
|
3193
3239
|
interface SpRuntimeMultiSignature extends Enum {
|
3194
3240
|
readonly isEd25519: boolean;
|
3195
3241
|
readonly asEd25519: SpCoreEd25519Signature;
|
@@ -3200,10 +3246,10 @@ declare module '@polkadot/types/lookup' {
|
|
3200
3246
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
3201
3247
|
}
|
3202
3248
|
|
3203
|
-
/** @name SpCoreEcdsaSignature (
|
3249
|
+
/** @name SpCoreEcdsaSignature (359) */
|
3204
3250
|
interface SpCoreEcdsaSignature extends U8aFixed {}
|
3205
3251
|
|
3206
|
-
/** @name PalletUtilityCall (
|
3252
|
+
/** @name PalletUtilityCall (361) */
|
3207
3253
|
interface PalletUtilityCall extends Enum {
|
3208
3254
|
readonly isBatch: boolean;
|
3209
3255
|
readonly asBatch: {
|
@@ -3235,7 +3281,7 @@ declare module '@polkadot/types/lookup' {
|
|
3235
3281
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
3236
3282
|
}
|
3237
3283
|
|
3238
|
-
/** @name TangleTestnetRuntimeOriginCaller (
|
3284
|
+
/** @name TangleTestnetRuntimeOriginCaller (363) */
|
3239
3285
|
interface TangleTestnetRuntimeOriginCaller extends Enum {
|
3240
3286
|
readonly isSystem: boolean;
|
3241
3287
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
@@ -3247,7 +3293,7 @@ declare module '@polkadot/types/lookup' {
|
|
3247
3293
|
readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
|
3248
3294
|
}
|
3249
3295
|
|
3250
|
-
/** @name FrameSupportDispatchRawOrigin (
|
3296
|
+
/** @name FrameSupportDispatchRawOrigin (364) */
|
3251
3297
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
3252
3298
|
readonly isRoot: boolean;
|
3253
3299
|
readonly isSigned: boolean;
|
@@ -3256,7 +3302,7 @@ declare module '@polkadot/types/lookup' {
|
|
3256
3302
|
readonly type: 'Root' | 'Signed' | 'None';
|
3257
3303
|
}
|
3258
3304
|
|
3259
|
-
/** @name PalletCollectiveRawOrigin (
|
3305
|
+
/** @name PalletCollectiveRawOrigin (365) */
|
3260
3306
|
interface PalletCollectiveRawOrigin extends Enum {
|
3261
3307
|
readonly isMembers: boolean;
|
3262
3308
|
readonly asMembers: ITuple<[u32, u32]>;
|
@@ -3266,14 +3312,14 @@ declare module '@polkadot/types/lookup' {
|
|
3266
3312
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
3267
3313
|
}
|
3268
3314
|
|
3269
|
-
/** @name PalletEthereumRawOrigin (
|
3315
|
+
/** @name PalletEthereumRawOrigin (366) */
|
3270
3316
|
interface PalletEthereumRawOrigin extends Enum {
|
3271
3317
|
readonly isEthereumTransaction: boolean;
|
3272
3318
|
readonly asEthereumTransaction: H160;
|
3273
3319
|
readonly type: 'EthereumTransaction';
|
3274
3320
|
}
|
3275
3321
|
|
3276
|
-
/** @name PalletMultisigCall (
|
3322
|
+
/** @name PalletMultisigCall (367) */
|
3277
3323
|
interface PalletMultisigCall extends Enum {
|
3278
3324
|
readonly isAsMultiThreshold1: boolean;
|
3279
3325
|
readonly asAsMultiThreshold1: {
|
@@ -3306,7 +3352,7 @@ declare module '@polkadot/types/lookup' {
|
|
3306
3352
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
3307
3353
|
}
|
3308
3354
|
|
3309
|
-
/** @name PalletEthereumCall (
|
3355
|
+
/** @name PalletEthereumCall (369) */
|
3310
3356
|
interface PalletEthereumCall extends Enum {
|
3311
3357
|
readonly isTransact: boolean;
|
3312
3358
|
readonly asTransact: {
|
@@ -3315,7 +3361,7 @@ declare module '@polkadot/types/lookup' {
|
|
3315
3361
|
readonly type: 'Transact';
|
3316
3362
|
}
|
3317
3363
|
|
3318
|
-
/** @name EthereumTransactionTransactionV2 (
|
3364
|
+
/** @name EthereumTransactionTransactionV2 (370) */
|
3319
3365
|
interface EthereumTransactionTransactionV2 extends Enum {
|
3320
3366
|
readonly isLegacy: boolean;
|
3321
3367
|
readonly asLegacy: EthereumTransactionLegacyTransaction;
|
@@ -3326,7 +3372,7 @@ declare module '@polkadot/types/lookup' {
|
|
3326
3372
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
3327
3373
|
}
|
3328
3374
|
|
3329
|
-
/** @name EthereumTransactionLegacyTransaction (
|
3375
|
+
/** @name EthereumTransactionLegacyTransaction (371) */
|
3330
3376
|
interface EthereumTransactionLegacyTransaction extends Struct {
|
3331
3377
|
readonly nonce: U256;
|
3332
3378
|
readonly gasPrice: U256;
|
@@ -3337,7 +3383,7 @@ declare module '@polkadot/types/lookup' {
|
|
3337
3383
|
readonly signature: EthereumTransactionTransactionSignature;
|
3338
3384
|
}
|
3339
3385
|
|
3340
|
-
/** @name EthereumTransactionTransactionAction (
|
3386
|
+
/** @name EthereumTransactionTransactionAction (372) */
|
3341
3387
|
interface EthereumTransactionTransactionAction extends Enum {
|
3342
3388
|
readonly isCall: boolean;
|
3343
3389
|
readonly asCall: H160;
|
@@ -3345,14 +3391,14 @@ declare module '@polkadot/types/lookup' {
|
|
3345
3391
|
readonly type: 'Call' | 'Create';
|
3346
3392
|
}
|
3347
3393
|
|
3348
|
-
/** @name EthereumTransactionTransactionSignature (
|
3394
|
+
/** @name EthereumTransactionTransactionSignature (373) */
|
3349
3395
|
interface EthereumTransactionTransactionSignature extends Struct {
|
3350
3396
|
readonly v: u64;
|
3351
3397
|
readonly r: H256;
|
3352
3398
|
readonly s: H256;
|
3353
3399
|
}
|
3354
3400
|
|
3355
|
-
/** @name EthereumTransactionEip2930Transaction (
|
3401
|
+
/** @name EthereumTransactionEip2930Transaction (375) */
|
3356
3402
|
interface EthereumTransactionEip2930Transaction extends Struct {
|
3357
3403
|
readonly chainId: u64;
|
3358
3404
|
readonly nonce: U256;
|
@@ -3367,13 +3413,13 @@ declare module '@polkadot/types/lookup' {
|
|
3367
3413
|
readonly s: H256;
|
3368
3414
|
}
|
3369
3415
|
|
3370
|
-
/** @name EthereumTransactionAccessListItem (
|
3416
|
+
/** @name EthereumTransactionAccessListItem (377) */
|
3371
3417
|
interface EthereumTransactionAccessListItem extends Struct {
|
3372
3418
|
readonly address: H160;
|
3373
3419
|
readonly storageKeys: Vec<H256>;
|
3374
3420
|
}
|
3375
3421
|
|
3376
|
-
/** @name EthereumTransactionEip1559Transaction (
|
3422
|
+
/** @name EthereumTransactionEip1559Transaction (378) */
|
3377
3423
|
interface EthereumTransactionEip1559Transaction extends Struct {
|
3378
3424
|
readonly chainId: u64;
|
3379
3425
|
readonly nonce: U256;
|
@@ -3389,7 +3435,7 @@ declare module '@polkadot/types/lookup' {
|
|
3389
3435
|
readonly s: H256;
|
3390
3436
|
}
|
3391
3437
|
|
3392
|
-
/** @name PalletEvmCall (
|
3438
|
+
/** @name PalletEvmCall (379) */
|
3393
3439
|
interface PalletEvmCall extends Enum {
|
3394
3440
|
readonly isWithdraw: boolean;
|
3395
3441
|
readonly asWithdraw: {
|
@@ -3434,7 +3480,7 @@ declare module '@polkadot/types/lookup' {
|
|
3434
3480
|
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
|
3435
3481
|
}
|
3436
3482
|
|
3437
|
-
/** @name PalletDynamicFeeCall (
|
3483
|
+
/** @name PalletDynamicFeeCall (383) */
|
3438
3484
|
interface PalletDynamicFeeCall extends Enum {
|
3439
3485
|
readonly isNoteMinGasPriceTarget: boolean;
|
3440
3486
|
readonly asNoteMinGasPriceTarget: {
|
@@ -3443,7 +3489,7 @@ declare module '@polkadot/types/lookup' {
|
|
3443
3489
|
readonly type: 'NoteMinGasPriceTarget';
|
3444
3490
|
}
|
3445
3491
|
|
3446
|
-
/** @name PalletBaseFeeCall (
|
3492
|
+
/** @name PalletBaseFeeCall (384) */
|
3447
3493
|
interface PalletBaseFeeCall extends Enum {
|
3448
3494
|
readonly isSetBaseFeePerGas: boolean;
|
3449
3495
|
readonly asSetBaseFeePerGas: {
|
@@ -3456,7 +3502,7 @@ declare module '@polkadot/types/lookup' {
|
|
3456
3502
|
readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
|
3457
3503
|
}
|
3458
3504
|
|
3459
|
-
/** @name PalletHotfixSufficientsCall (
|
3505
|
+
/** @name PalletHotfixSufficientsCall (385) */
|
3460
3506
|
interface PalletHotfixSufficientsCall extends Enum {
|
3461
3507
|
readonly isHotfixIncAccountSufficients: boolean;
|
3462
3508
|
readonly asHotfixIncAccountSufficients: {
|
@@ -3465,7 +3511,7 @@ declare module '@polkadot/types/lookup' {
|
|
3465
3511
|
readonly type: 'HotfixIncAccountSufficients';
|
3466
3512
|
}
|
3467
3513
|
|
3468
|
-
/** @name PalletAirdropClaimsCall (
|
3514
|
+
/** @name PalletAirdropClaimsCall (387) */
|
3469
3515
|
interface PalletAirdropClaimsCall extends Enum {
|
3470
3516
|
readonly isClaim: boolean;
|
3471
3517
|
readonly asClaim: {
|
@@ -3500,7 +3546,7 @@ declare module '@polkadot/types/lookup' {
|
|
3500
3546
|
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig';
|
3501
3547
|
}
|
3502
3548
|
|
3503
|
-
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (
|
3549
|
+
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (389) */
|
3504
3550
|
interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
|
3505
3551
|
readonly isEvm: boolean;
|
3506
3552
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
|
@@ -3509,20 +3555,20 @@ declare module '@polkadot/types/lookup' {
|
|
3509
3555
|
readonly type: 'Evm' | 'Native';
|
3510
3556
|
}
|
3511
3557
|
|
3512
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (
|
3558
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (390) */
|
3513
3559
|
interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {}
|
3514
3560
|
|
3515
|
-
/** @name PalletAirdropClaimsUtilsSr25519Signature (
|
3561
|
+
/** @name PalletAirdropClaimsUtilsSr25519Signature (391) */
|
3516
3562
|
interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {}
|
3517
3563
|
|
3518
|
-
/** @name PalletAirdropClaimsStatementKind (
|
3564
|
+
/** @name PalletAirdropClaimsStatementKind (397) */
|
3519
3565
|
interface PalletAirdropClaimsStatementKind extends Enum {
|
3520
3566
|
readonly isRegular: boolean;
|
3521
3567
|
readonly isSafe: boolean;
|
3522
3568
|
readonly type: 'Regular' | 'Safe';
|
3523
3569
|
}
|
3524
3570
|
|
3525
|
-
/** @name PalletRolesCall (
|
3571
|
+
/** @name PalletRolesCall (398) */
|
3526
3572
|
interface PalletRolesCall extends Enum {
|
3527
3573
|
readonly isCreateProfile: boolean;
|
3528
3574
|
readonly asCreateProfile: {
|
@@ -3552,7 +3598,7 @@ declare module '@polkadot/types/lookup' {
|
|
3552
3598
|
readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
|
3553
3599
|
}
|
3554
3600
|
|
3555
|
-
/** @name PalletRolesProfile (
|
3601
|
+
/** @name PalletRolesProfile (399) */
|
3556
3602
|
interface PalletRolesProfile extends Enum {
|
3557
3603
|
readonly isIndependent: boolean;
|
3558
3604
|
readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
|
@@ -3561,24 +3607,24 @@ declare module '@polkadot/types/lookup' {
|
|
3561
3607
|
readonly type: 'Independent' | 'Shared';
|
3562
3608
|
}
|
3563
3609
|
|
3564
|
-
/** @name PalletRolesProfileIndependentRestakeProfile (
|
3610
|
+
/** @name PalletRolesProfileIndependentRestakeProfile (400) */
|
3565
3611
|
interface PalletRolesProfileIndependentRestakeProfile extends Struct {
|
3566
3612
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3567
3613
|
}
|
3568
3614
|
|
3569
|
-
/** @name PalletRolesProfileRecord (
|
3615
|
+
/** @name PalletRolesProfileRecord (402) */
|
3570
3616
|
interface PalletRolesProfileRecord extends Struct {
|
3571
3617
|
readonly role: TanglePrimitivesRolesRoleType;
|
3572
3618
|
readonly amount: Option<u128>;
|
3573
3619
|
}
|
3574
3620
|
|
3575
|
-
/** @name PalletRolesProfileSharedRestakeProfile (
|
3621
|
+
/** @name PalletRolesProfileSharedRestakeProfile (405) */
|
3576
3622
|
interface PalletRolesProfileSharedRestakeProfile extends Struct {
|
3577
3623
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3578
3624
|
readonly amount: u128;
|
3579
3625
|
}
|
3580
3626
|
|
3581
|
-
/** @name PalletJobsModuleCall (
|
3627
|
+
/** @name PalletJobsModuleCall (406) */
|
3582
3628
|
interface PalletJobsModuleCall extends Enum {
|
3583
3629
|
readonly isSubmitJob: boolean;
|
3584
3630
|
readonly asSubmitJob: {
|
@@ -3622,7 +3668,7 @@ declare module '@polkadot/types/lookup' {
|
|
3622
3668
|
readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
|
3623
3669
|
}
|
3624
3670
|
|
3625
|
-
/** @name TanglePrimitivesJobsJobResult (
|
3671
|
+
/** @name TanglePrimitivesJobsJobResult (407) */
|
3626
3672
|
interface TanglePrimitivesJobsJobResult extends Enum {
|
3627
3673
|
readonly isDkgPhaseOne: boolean;
|
3628
3674
|
readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
|
@@ -3639,28 +3685,29 @@ declare module '@polkadot/types/lookup' {
|
|
3639
3685
|
readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
3640
3686
|
}
|
3641
3687
|
|
3642
|
-
/** @name TangleTestnetRuntimeMaxKeyLen (
|
3688
|
+
/** @name TangleTestnetRuntimeMaxKeyLen (408) */
|
3643
3689
|
type TangleTestnetRuntimeMaxKeyLen = Null;
|
3644
3690
|
|
3645
|
-
/** @name TangleTestnetRuntimeMaxSignatureLen (
|
3691
|
+
/** @name TangleTestnetRuntimeMaxSignatureLen (409) */
|
3646
3692
|
type TangleTestnetRuntimeMaxSignatureLen = Null;
|
3647
3693
|
|
3648
|
-
/** @name TangleTestnetRuntimeMaxDataLen (
|
3694
|
+
/** @name TangleTestnetRuntimeMaxDataLen (410) */
|
3649
3695
|
type TangleTestnetRuntimeMaxDataLen = Null;
|
3650
3696
|
|
3651
|
-
/** @name TangleTestnetRuntimeMaxProofLen (
|
3697
|
+
/** @name TangleTestnetRuntimeMaxProofLen (411) */
|
3652
3698
|
type TangleTestnetRuntimeMaxProofLen = Null;
|
3653
3699
|
|
3654
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (
|
3700
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (412) */
|
3655
3701
|
interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
|
3656
3702
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3657
3703
|
readonly key: Bytes;
|
3704
|
+
readonly chainCode: Option<U8aFixed>;
|
3658
3705
|
readonly participants: Vec<Bytes>;
|
3659
3706
|
readonly signatures: Vec<Bytes>;
|
3660
3707
|
readonly threshold: u8;
|
3661
3708
|
}
|
3662
3709
|
|
3663
|
-
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (
|
3710
|
+
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (413) */
|
3664
3711
|
interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
|
3665
3712
|
readonly isEcdsaSecp256k1: boolean;
|
3666
3713
|
readonly isEcdsaSecp256r1: boolean;
|
@@ -3677,21 +3724,22 @@ declare module '@polkadot/types/lookup' {
|
|
3677
3724
|
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrRedJubJub' | 'SchnorrEd25519' | 'SchnorrEd448' | 'Bls381';
|
3678
3725
|
}
|
3679
3726
|
|
3680
|
-
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (
|
3727
|
+
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (420) */
|
3681
3728
|
interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
|
3682
3729
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3683
|
-
readonly derivationPath: Option<Bytes>;
|
3684
3730
|
readonly data: Bytes;
|
3685
3731
|
readonly signature: Bytes;
|
3686
3732
|
readonly verifyingKey: Bytes;
|
3733
|
+
readonly derivationPath: Option<Bytes>;
|
3734
|
+
readonly chainCode: Option<U8aFixed>;
|
3687
3735
|
}
|
3688
3736
|
|
3689
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (
|
3737
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (422) */
|
3690
3738
|
interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
|
3691
3739
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3692
3740
|
}
|
3693
3741
|
|
3694
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (
|
3742
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (423) */
|
3695
3743
|
interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
|
3696
3744
|
readonly phaseOneId: u64;
|
3697
3745
|
readonly newPhaseOneId: u64;
|
@@ -3700,15 +3748,16 @@ declare module '@polkadot/types/lookup' {
|
|
3700
3748
|
readonly signature: Bytes;
|
3701
3749
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3702
3750
|
readonly derivationPath: Option<Bytes>;
|
3751
|
+
readonly chainCode: Option<U8aFixed>;
|
3703
3752
|
}
|
3704
3753
|
|
3705
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (
|
3754
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (424) */
|
3706
3755
|
interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
|
3707
3756
|
readonly jobId: u64;
|
3708
3757
|
readonly participants: Vec<SpCoreEcdsaPublic>;
|
3709
3758
|
}
|
3710
3759
|
|
3711
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (
|
3760
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (427) */
|
3712
3761
|
interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
|
3713
3762
|
readonly isArkworks: boolean;
|
3714
3763
|
readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
|
@@ -3717,17 +3766,17 @@ declare module '@polkadot/types/lookup' {
|
|
3717
3766
|
readonly type: 'Arkworks' | 'Circom';
|
3718
3767
|
}
|
3719
3768
|
|
3720
|
-
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (
|
3769
|
+
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (428) */
|
3721
3770
|
interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
|
3722
3771
|
readonly proof: Bytes;
|
3723
3772
|
}
|
3724
3773
|
|
3725
|
-
/** @name TanglePrimitivesJobsZksaasCircomProofResult (
|
3774
|
+
/** @name TanglePrimitivesJobsZksaasCircomProofResult (430) */
|
3726
3775
|
interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
|
3727
3776
|
readonly proof: Bytes;
|
3728
3777
|
}
|
3729
3778
|
|
3730
|
-
/** @name TanglePrimitivesJobsValidatorOffenceType (
|
3779
|
+
/** @name TanglePrimitivesJobsValidatorOffenceType (431) */
|
3731
3780
|
interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
|
3732
3781
|
readonly isInactivity: boolean;
|
3733
3782
|
readonly isInvalidSignatureSubmitted: boolean;
|
@@ -3736,7 +3785,7 @@ declare module '@polkadot/types/lookup' {
|
|
3736
3785
|
readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
|
3737
3786
|
}
|
3738
3787
|
|
3739
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (
|
3788
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (432) */
|
3740
3789
|
interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
|
3741
3790
|
readonly roleType: TanglePrimitivesRolesRoleType;
|
3742
3791
|
readonly offender: U8aFixed;
|
@@ -3744,7 +3793,7 @@ declare module '@polkadot/types/lookup' {
|
|
3744
3793
|
readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
|
3745
3794
|
}
|
3746
3795
|
|
3747
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (
|
3796
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (433) */
|
3748
3797
|
interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
|
3749
3798
|
readonly isDkgtss: boolean;
|
3750
3799
|
readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
|
@@ -3752,7 +3801,7 @@ declare module '@polkadot/types/lookup' {
|
|
3752
3801
|
readonly type: 'Dkgtss' | 'ZkSaaS';
|
3753
3802
|
}
|
3754
3803
|
|
3755
|
-
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (
|
3804
|
+
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (434) */
|
3756
3805
|
interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
|
3757
3806
|
readonly isDfnsCGGMP21: boolean;
|
3758
3807
|
readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
|
@@ -3761,7 +3810,7 @@ declare module '@polkadot/types/lookup' {
|
|
3761
3810
|
readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
|
3762
3811
|
}
|
3763
3812
|
|
3764
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (
|
3813
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (435) */
|
3765
3814
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
|
3766
3815
|
readonly isKeygen: boolean;
|
3767
3816
|
readonly asKeygen: {
|
@@ -3784,7 +3833,7 @@ declare module '@polkadot/types/lookup' {
|
|
3784
3833
|
readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
|
3785
3834
|
}
|
3786
3835
|
|
3787
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (
|
3836
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (437) */
|
3788
3837
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
|
3789
3838
|
readonly isInvalidDecommitment: boolean;
|
3790
3839
|
readonly asInvalidDecommitment: {
|
@@ -3808,14 +3857,14 @@ declare module '@polkadot/types/lookup' {
|
|
3808
3857
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
|
3809
3858
|
}
|
3810
3859
|
|
3811
|
-
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (
|
3860
|
+
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (438) */
|
3812
3861
|
interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
|
3813
3862
|
readonly sender: u16;
|
3814
3863
|
readonly message: Bytes;
|
3815
3864
|
readonly signature: Bytes;
|
3816
3865
|
}
|
3817
3866
|
|
3818
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (
|
3867
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (440) */
|
3819
3868
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
|
3820
3869
|
readonly isInvalidDecommitment: boolean;
|
3821
3870
|
readonly asInvalidDecommitment: {
|
@@ -3841,7 +3890,7 @@ declare module '@polkadot/types/lookup' {
|
|
3841
3890
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
|
3842
3891
|
}
|
3843
3892
|
|
3844
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (
|
3893
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (441) */
|
3845
3894
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
|
3846
3895
|
readonly isEqualityCheck: boolean;
|
3847
3896
|
readonly asEqualityCheck: u8;
|
@@ -3860,7 +3909,7 @@ declare module '@polkadot/types/lookup' {
|
|
3860
3909
|
readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
|
3861
3910
|
}
|
3862
3911
|
|
3863
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (
|
3912
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (442) */
|
3864
3913
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
|
3865
3914
|
readonly isEncProofOfK: boolean;
|
3866
3915
|
readonly isInvalidPsi: boolean;
|
@@ -3869,7 +3918,7 @@ declare module '@polkadot/types/lookup' {
|
|
3869
3918
|
readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
|
3870
3919
|
}
|
3871
3920
|
|
3872
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (
|
3921
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (443) */
|
3873
3922
|
interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
|
3874
3923
|
readonly isKeygen: boolean;
|
3875
3924
|
readonly asKeygen: {
|
@@ -3886,7 +3935,7 @@ declare module '@polkadot/types/lookup' {
|
|
3886
3935
|
readonly type: 'Keygen' | 'Signing';
|
3887
3936
|
}
|
3888
3937
|
|
3889
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (
|
3938
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (444) */
|
3890
3939
|
interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
|
3891
3940
|
readonly isInvalidProofOfKnowledge: boolean;
|
3892
3941
|
readonly asInvalidProofOfKnowledge: {
|
@@ -3900,7 +3949,7 @@ declare module '@polkadot/types/lookup' {
|
|
3900
3949
|
readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
|
3901
3950
|
}
|
3902
3951
|
|
3903
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (
|
3952
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (445) */
|
3904
3953
|
interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
|
3905
3954
|
readonly isInvalidSignatureShare: boolean;
|
3906
3955
|
readonly asInvalidSignatureShare: {
|
@@ -3910,10 +3959,10 @@ declare module '@polkadot/types/lookup' {
|
|
3910
3959
|
readonly type: 'InvalidSignatureShare';
|
3911
3960
|
}
|
3912
3961
|
|
3913
|
-
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (
|
3962
|
+
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (446) */
|
3914
3963
|
type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
|
3915
3964
|
|
3916
|
-
/** @name PalletDkgCall (
|
3965
|
+
/** @name PalletDkgCall (447) */
|
3917
3966
|
interface PalletDkgCall extends Enum {
|
3918
3967
|
readonly isSetFee: boolean;
|
3919
3968
|
readonly asSetFee: {
|
@@ -3922,7 +3971,7 @@ declare module '@polkadot/types/lookup' {
|
|
3922
3971
|
readonly type: 'SetFee';
|
3923
3972
|
}
|
3924
3973
|
|
3925
|
-
/** @name PalletZksaasCall (
|
3974
|
+
/** @name PalletZksaasCall (448) */
|
3926
3975
|
interface PalletZksaasCall extends Enum {
|
3927
3976
|
readonly isSetFee: boolean;
|
3928
3977
|
readonly asSetFee: {
|
@@ -3931,20 +3980,80 @@ declare module '@polkadot/types/lookup' {
|
|
3931
3980
|
readonly type: 'SetFee';
|
3932
3981
|
}
|
3933
3982
|
|
3934
|
-
/** @name
|
3983
|
+
/** @name PalletProxyCall (449) */
|
3984
|
+
interface PalletProxyCall extends Enum {
|
3985
|
+
readonly isProxy: boolean;
|
3986
|
+
readonly asProxy: {
|
3987
|
+
readonly real: MultiAddress;
|
3988
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
3989
|
+
readonly call: Call;
|
3990
|
+
} & Struct;
|
3991
|
+
readonly isAddProxy: boolean;
|
3992
|
+
readonly asAddProxy: {
|
3993
|
+
readonly delegate: MultiAddress;
|
3994
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
3995
|
+
readonly delay: u64;
|
3996
|
+
} & Struct;
|
3997
|
+
readonly isRemoveProxy: boolean;
|
3998
|
+
readonly asRemoveProxy: {
|
3999
|
+
readonly delegate: MultiAddress;
|
4000
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
4001
|
+
readonly delay: u64;
|
4002
|
+
} & Struct;
|
4003
|
+
readonly isRemoveProxies: boolean;
|
4004
|
+
readonly isCreatePure: boolean;
|
4005
|
+
readonly asCreatePure: {
|
4006
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
4007
|
+
readonly delay: u64;
|
4008
|
+
readonly index: u16;
|
4009
|
+
} & Struct;
|
4010
|
+
readonly isKillPure: boolean;
|
4011
|
+
readonly asKillPure: {
|
4012
|
+
readonly spawner: MultiAddress;
|
4013
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
4014
|
+
readonly index: u16;
|
4015
|
+
readonly height: Compact<u64>;
|
4016
|
+
readonly extIndex: Compact<u32>;
|
4017
|
+
} & Struct;
|
4018
|
+
readonly isAnnounce: boolean;
|
4019
|
+
readonly asAnnounce: {
|
4020
|
+
readonly real: MultiAddress;
|
4021
|
+
readonly callHash: H256;
|
4022
|
+
} & Struct;
|
4023
|
+
readonly isRemoveAnnouncement: boolean;
|
4024
|
+
readonly asRemoveAnnouncement: {
|
4025
|
+
readonly real: MultiAddress;
|
4026
|
+
readonly callHash: H256;
|
4027
|
+
} & Struct;
|
4028
|
+
readonly isRejectAnnouncement: boolean;
|
4029
|
+
readonly asRejectAnnouncement: {
|
4030
|
+
readonly delegate: MultiAddress;
|
4031
|
+
readonly callHash: H256;
|
4032
|
+
} & Struct;
|
4033
|
+
readonly isProxyAnnounced: boolean;
|
4034
|
+
readonly asProxyAnnounced: {
|
4035
|
+
readonly delegate: MultiAddress;
|
4036
|
+
readonly real: MultiAddress;
|
4037
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
4038
|
+
readonly call: Call;
|
4039
|
+
} & Struct;
|
4040
|
+
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
4041
|
+
}
|
4042
|
+
|
4043
|
+
/** @name PalletSudoError (451) */
|
3935
4044
|
interface PalletSudoError extends Enum {
|
3936
4045
|
readonly isRequireSudo: boolean;
|
3937
4046
|
readonly type: 'RequireSudo';
|
3938
4047
|
}
|
3939
4048
|
|
3940
|
-
/** @name PalletBalancesBalanceLock (
|
4049
|
+
/** @name PalletBalancesBalanceLock (454) */
|
3941
4050
|
interface PalletBalancesBalanceLock extends Struct {
|
3942
4051
|
readonly id: U8aFixed;
|
3943
4052
|
readonly amount: u128;
|
3944
4053
|
readonly reasons: PalletBalancesReasons;
|
3945
4054
|
}
|
3946
4055
|
|
3947
|
-
/** @name PalletBalancesReasons (
|
4056
|
+
/** @name PalletBalancesReasons (455) */
|
3948
4057
|
interface PalletBalancesReasons extends Enum {
|
3949
4058
|
readonly isFee: boolean;
|
3950
4059
|
readonly isMisc: boolean;
|
@@ -3952,51 +4061,51 @@ declare module '@polkadot/types/lookup' {
|
|
3952
4061
|
readonly type: 'Fee' | 'Misc' | 'All';
|
3953
4062
|
}
|
3954
4063
|
|
3955
|
-
/** @name PalletBalancesReserveData (
|
4064
|
+
/** @name PalletBalancesReserveData (458) */
|
3956
4065
|
interface PalletBalancesReserveData extends Struct {
|
3957
4066
|
readonly id: U8aFixed;
|
3958
4067
|
readonly amount: u128;
|
3959
4068
|
}
|
3960
4069
|
|
3961
|
-
/** @name PalletBalancesIdAmountRuntimeHoldReason (
|
4070
|
+
/** @name PalletBalancesIdAmountRuntimeHoldReason (461) */
|
3962
4071
|
interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
|
3963
4072
|
readonly id: TangleTestnetRuntimeRuntimeHoldReason;
|
3964
4073
|
readonly amount: u128;
|
3965
4074
|
}
|
3966
4075
|
|
3967
|
-
/** @name TangleTestnetRuntimeRuntimeHoldReason (
|
4076
|
+
/** @name TangleTestnetRuntimeRuntimeHoldReason (462) */
|
3968
4077
|
interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
|
3969
4078
|
readonly isPreimage: boolean;
|
3970
4079
|
readonly asPreimage: PalletPreimageHoldReason;
|
3971
4080
|
readonly type: 'Preimage';
|
3972
4081
|
}
|
3973
4082
|
|
3974
|
-
/** @name PalletPreimageHoldReason (
|
4083
|
+
/** @name PalletPreimageHoldReason (463) */
|
3975
4084
|
interface PalletPreimageHoldReason extends Enum {
|
3976
4085
|
readonly isPreimage: boolean;
|
3977
4086
|
readonly type: 'Preimage';
|
3978
4087
|
}
|
3979
4088
|
|
3980
|
-
/** @name PalletBalancesIdAmountRuntimeFreezeReason (
|
4089
|
+
/** @name PalletBalancesIdAmountRuntimeFreezeReason (466) */
|
3981
4090
|
interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
|
3982
4091
|
readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
|
3983
4092
|
readonly amount: u128;
|
3984
4093
|
}
|
3985
4094
|
|
3986
|
-
/** @name TangleTestnetRuntimeRuntimeFreezeReason (
|
4095
|
+
/** @name TangleTestnetRuntimeRuntimeFreezeReason (467) */
|
3987
4096
|
interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
|
3988
4097
|
readonly isNominationPools: boolean;
|
3989
4098
|
readonly asNominationPools: PalletNominationPoolsFreezeReason;
|
3990
4099
|
readonly type: 'NominationPools';
|
3991
4100
|
}
|
3992
4101
|
|
3993
|
-
/** @name PalletNominationPoolsFreezeReason (
|
4102
|
+
/** @name PalletNominationPoolsFreezeReason (468) */
|
3994
4103
|
interface PalletNominationPoolsFreezeReason extends Enum {
|
3995
4104
|
readonly isPoolMinBalance: boolean;
|
3996
4105
|
readonly type: 'PoolMinBalance';
|
3997
4106
|
}
|
3998
4107
|
|
3999
|
-
/** @name PalletBalancesError (
|
4108
|
+
/** @name PalletBalancesError (470) */
|
4000
4109
|
interface PalletBalancesError extends Enum {
|
4001
4110
|
readonly isVestingBalance: boolean;
|
4002
4111
|
readonly isLiquidityRestrictions: boolean;
|
@@ -4013,14 +4122,14 @@ declare module '@polkadot/types/lookup' {
|
|
4013
4122
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
4014
4123
|
}
|
4015
4124
|
|
4016
|
-
/** @name PalletTransactionPaymentReleases (
|
4125
|
+
/** @name PalletTransactionPaymentReleases (472) */
|
4017
4126
|
interface PalletTransactionPaymentReleases extends Enum {
|
4018
4127
|
readonly isV1Ancient: boolean;
|
4019
4128
|
readonly isV2: boolean;
|
4020
4129
|
readonly type: 'V1Ancient' | 'V2';
|
4021
4130
|
}
|
4022
4131
|
|
4023
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
4132
|
+
/** @name SpConsensusBabeDigestsPreDigest (479) */
|
4024
4133
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
4025
4134
|
readonly isPrimary: boolean;
|
4026
4135
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
@@ -4031,39 +4140,39 @@ declare module '@polkadot/types/lookup' {
|
|
4031
4140
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
4032
4141
|
}
|
4033
4142
|
|
4034
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
4143
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (480) */
|
4035
4144
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
4036
4145
|
readonly authorityIndex: u32;
|
4037
4146
|
readonly slot: u64;
|
4038
4147
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
4039
4148
|
}
|
4040
4149
|
|
4041
|
-
/** @name SpCoreSr25519VrfVrfSignature (
|
4150
|
+
/** @name SpCoreSr25519VrfVrfSignature (481) */
|
4042
4151
|
interface SpCoreSr25519VrfVrfSignature extends Struct {
|
4043
4152
|
readonly preOutput: U8aFixed;
|
4044
4153
|
readonly proof: U8aFixed;
|
4045
4154
|
}
|
4046
4155
|
|
4047
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
4156
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (482) */
|
4048
4157
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
4049
4158
|
readonly authorityIndex: u32;
|
4050
4159
|
readonly slot: u64;
|
4051
4160
|
}
|
4052
4161
|
|
4053
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
4162
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (483) */
|
4054
4163
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
4055
4164
|
readonly authorityIndex: u32;
|
4056
4165
|
readonly slot: u64;
|
4057
4166
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
4058
4167
|
}
|
4059
4168
|
|
4060
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
4169
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (484) */
|
4061
4170
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
4062
4171
|
readonly c: ITuple<[u64, u64]>;
|
4063
4172
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
4064
4173
|
}
|
4065
4174
|
|
4066
|
-
/** @name PalletBabeError (
|
4175
|
+
/** @name PalletBabeError (486) */
|
4067
4176
|
interface PalletBabeError extends Enum {
|
4068
4177
|
readonly isInvalidEquivocationProof: boolean;
|
4069
4178
|
readonly isInvalidKeyOwnershipProof: boolean;
|
@@ -4072,7 +4181,7 @@ declare module '@polkadot/types/lookup' {
|
|
4072
4181
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
4073
4182
|
}
|
4074
4183
|
|
4075
|
-
/** @name PalletGrandpaStoredState (
|
4184
|
+
/** @name PalletGrandpaStoredState (487) */
|
4076
4185
|
interface PalletGrandpaStoredState extends Enum {
|
4077
4186
|
readonly isLive: boolean;
|
4078
4187
|
readonly isPendingPause: boolean;
|
@@ -4089,7 +4198,7 @@ declare module '@polkadot/types/lookup' {
|
|
4089
4198
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
4090
4199
|
}
|
4091
4200
|
|
4092
|
-
/** @name PalletGrandpaStoredPendingChange (
|
4201
|
+
/** @name PalletGrandpaStoredPendingChange (488) */
|
4093
4202
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
4094
4203
|
readonly scheduledAt: u64;
|
4095
4204
|
readonly delay: u64;
|
@@ -4097,7 +4206,7 @@ declare module '@polkadot/types/lookup' {
|
|
4097
4206
|
readonly forced: Option<u64>;
|
4098
4207
|
}
|
4099
4208
|
|
4100
|
-
/** @name PalletGrandpaError (
|
4209
|
+
/** @name PalletGrandpaError (490) */
|
4101
4210
|
interface PalletGrandpaError extends Enum {
|
4102
4211
|
readonly isPauseFailed: boolean;
|
4103
4212
|
readonly isResumeFailed: boolean;
|
@@ -4109,7 +4218,7 @@ declare module '@polkadot/types/lookup' {
|
|
4109
4218
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
4110
4219
|
}
|
4111
4220
|
|
4112
|
-
/** @name PalletIndicesError (
|
4221
|
+
/** @name PalletIndicesError (492) */
|
4113
4222
|
interface PalletIndicesError extends Enum {
|
4114
4223
|
readonly isNotAssigned: boolean;
|
4115
4224
|
readonly isNotOwner: boolean;
|
@@ -4119,7 +4228,7 @@ declare module '@polkadot/types/lookup' {
|
|
4119
4228
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
4120
4229
|
}
|
4121
4230
|
|
4122
|
-
/** @name PalletDemocracyReferendumInfo (
|
4231
|
+
/** @name PalletDemocracyReferendumInfo (497) */
|
4123
4232
|
interface PalletDemocracyReferendumInfo extends Enum {
|
4124
4233
|
readonly isOngoing: boolean;
|
4125
4234
|
readonly asOngoing: PalletDemocracyReferendumStatus;
|
@@ -4131,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
|
|
4131
4240
|
readonly type: 'Ongoing' | 'Finished';
|
4132
4241
|
}
|
4133
4242
|
|
4134
|
-
/** @name PalletDemocracyReferendumStatus (
|
4243
|
+
/** @name PalletDemocracyReferendumStatus (498) */
|
4135
4244
|
interface PalletDemocracyReferendumStatus extends Struct {
|
4136
4245
|
readonly end: u64;
|
4137
4246
|
readonly proposal: FrameSupportPreimagesBounded;
|
@@ -4140,14 +4249,14 @@ declare module '@polkadot/types/lookup' {
|
|
4140
4249
|
readonly tally: PalletDemocracyTally;
|
4141
4250
|
}
|
4142
4251
|
|
4143
|
-
/** @name PalletDemocracyTally (
|
4252
|
+
/** @name PalletDemocracyTally (499) */
|
4144
4253
|
interface PalletDemocracyTally extends Struct {
|
4145
4254
|
readonly ayes: u128;
|
4146
4255
|
readonly nays: u128;
|
4147
4256
|
readonly turnout: u128;
|
4148
4257
|
}
|
4149
4258
|
|
4150
|
-
/** @name PalletDemocracyVoteVoting (
|
4259
|
+
/** @name PalletDemocracyVoteVoting (500) */
|
4151
4260
|
interface PalletDemocracyVoteVoting extends Enum {
|
4152
4261
|
readonly isDirect: boolean;
|
4153
4262
|
readonly asDirect: {
|
@@ -4166,16 +4275,16 @@ declare module '@polkadot/types/lookup' {
|
|
4166
4275
|
readonly type: 'Direct' | 'Delegating';
|
4167
4276
|
}
|
4168
4277
|
|
4169
|
-
/** @name PalletDemocracyDelegations (
|
4278
|
+
/** @name PalletDemocracyDelegations (504) */
|
4170
4279
|
interface PalletDemocracyDelegations extends Struct {
|
4171
4280
|
readonly votes: u128;
|
4172
4281
|
readonly capital: u128;
|
4173
4282
|
}
|
4174
4283
|
|
4175
|
-
/** @name PalletDemocracyVotePriorLock (
|
4284
|
+
/** @name PalletDemocracyVotePriorLock (505) */
|
4176
4285
|
interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {}
|
4177
4286
|
|
4178
|
-
/** @name PalletDemocracyError (
|
4287
|
+
/** @name PalletDemocracyError (508) */
|
4179
4288
|
interface PalletDemocracyError extends Enum {
|
4180
4289
|
readonly isValueLow: boolean;
|
4181
4290
|
readonly isProposalMissing: boolean;
|
@@ -4204,7 +4313,7 @@ declare module '@polkadot/types/lookup' {
|
|
4204
4313
|
readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist';
|
4205
4314
|
}
|
4206
4315
|
|
4207
|
-
/** @name PalletCollectiveVotes (
|
4316
|
+
/** @name PalletCollectiveVotes (510) */
|
4208
4317
|
interface PalletCollectiveVotes extends Struct {
|
4209
4318
|
readonly index: u32;
|
4210
4319
|
readonly threshold: u32;
|
@@ -4213,7 +4322,7 @@ declare module '@polkadot/types/lookup' {
|
|
4213
4322
|
readonly end: u64;
|
4214
4323
|
}
|
4215
4324
|
|
4216
|
-
/** @name PalletCollectiveError (
|
4325
|
+
/** @name PalletCollectiveError (511) */
|
4217
4326
|
interface PalletCollectiveError extends Enum {
|
4218
4327
|
readonly isNotMember: boolean;
|
4219
4328
|
readonly isDuplicateProposal: boolean;
|
@@ -4229,14 +4338,14 @@ declare module '@polkadot/types/lookup' {
|
|
4229
4338
|
readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
|
4230
4339
|
}
|
4231
4340
|
|
4232
|
-
/** @name PalletVestingReleases (
|
4341
|
+
/** @name PalletVestingReleases (514) */
|
4233
4342
|
interface PalletVestingReleases extends Enum {
|
4234
4343
|
readonly isV0: boolean;
|
4235
4344
|
readonly isV1: boolean;
|
4236
4345
|
readonly type: 'V0' | 'V1';
|
4237
4346
|
}
|
4238
4347
|
|
4239
|
-
/** @name PalletVestingError (
|
4348
|
+
/** @name PalletVestingError (515) */
|
4240
4349
|
interface PalletVestingError extends Enum {
|
4241
4350
|
readonly isNotVesting: boolean;
|
4242
4351
|
readonly isAtMaxVestingSchedules: boolean;
|
@@ -4246,21 +4355,21 @@ declare module '@polkadot/types/lookup' {
|
|
4246
4355
|
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
|
4247
4356
|
}
|
4248
4357
|
|
4249
|
-
/** @name PalletElectionsPhragmenSeatHolder (
|
4358
|
+
/** @name PalletElectionsPhragmenSeatHolder (517) */
|
4250
4359
|
interface PalletElectionsPhragmenSeatHolder extends Struct {
|
4251
4360
|
readonly who: AccountId32;
|
4252
4361
|
readonly stake: u128;
|
4253
4362
|
readonly deposit: u128;
|
4254
4363
|
}
|
4255
4364
|
|
4256
|
-
/** @name PalletElectionsPhragmenVoter (
|
4365
|
+
/** @name PalletElectionsPhragmenVoter (518) */
|
4257
4366
|
interface PalletElectionsPhragmenVoter extends Struct {
|
4258
4367
|
readonly votes: Vec<AccountId32>;
|
4259
4368
|
readonly stake: u128;
|
4260
4369
|
readonly deposit: u128;
|
4261
4370
|
}
|
4262
4371
|
|
4263
|
-
/** @name PalletElectionsPhragmenError (
|
4372
|
+
/** @name PalletElectionsPhragmenError (519) */
|
4264
4373
|
interface PalletElectionsPhragmenError extends Enum {
|
4265
4374
|
readonly isUnableToVote: boolean;
|
4266
4375
|
readonly isNoVotes: boolean;
|
@@ -4282,20 +4391,20 @@ declare module '@polkadot/types/lookup' {
|
|
4282
4391
|
readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
|
4283
4392
|
}
|
4284
4393
|
|
4285
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
4394
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (520) */
|
4286
4395
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
4287
4396
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
4288
4397
|
readonly score: SpNposElectionsElectionScore;
|
4289
4398
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
4290
4399
|
}
|
4291
4400
|
|
4292
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
4401
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (522) */
|
4293
4402
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
4294
4403
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
4295
4404
|
readonly targets: Vec<AccountId32>;
|
4296
4405
|
}
|
4297
4406
|
|
4298
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
4407
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (529) */
|
4299
4408
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
4300
4409
|
readonly who: AccountId32;
|
4301
4410
|
readonly deposit: u128;
|
@@ -4303,7 +4412,7 @@ declare module '@polkadot/types/lookup' {
|
|
4303
4412
|
readonly callFee: u128;
|
4304
4413
|
}
|
4305
4414
|
|
4306
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
4415
|
+
/** @name PalletElectionProviderMultiPhaseError (530) */
|
4307
4416
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
4308
4417
|
readonly isPreDispatchEarlySubmission: boolean;
|
4309
4418
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
@@ -4323,7 +4432,7 @@ declare module '@polkadot/types/lookup' {
|
|
4323
4432
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
|
4324
4433
|
}
|
4325
4434
|
|
4326
|
-
/** @name PalletStakingStakingLedger (
|
4435
|
+
/** @name PalletStakingStakingLedger (531) */
|
4327
4436
|
interface PalletStakingStakingLedger extends Struct {
|
4328
4437
|
readonly stash: AccountId32;
|
4329
4438
|
readonly total: Compact<u128>;
|
@@ -4332,26 +4441,26 @@ declare module '@polkadot/types/lookup' {
|
|
4332
4441
|
readonly legacyClaimedRewards: Vec<u32>;
|
4333
4442
|
}
|
4334
4443
|
|
4335
|
-
/** @name PalletStakingUnlockChunk (
|
4444
|
+
/** @name PalletStakingUnlockChunk (533) */
|
4336
4445
|
interface PalletStakingUnlockChunk extends Struct {
|
4337
4446
|
readonly value: Compact<u128>;
|
4338
4447
|
readonly era: Compact<u32>;
|
4339
4448
|
}
|
4340
4449
|
|
4341
|
-
/** @name PalletStakingNominations (
|
4450
|
+
/** @name PalletStakingNominations (536) */
|
4342
4451
|
interface PalletStakingNominations extends Struct {
|
4343
4452
|
readonly targets: Vec<AccountId32>;
|
4344
4453
|
readonly submittedIn: u32;
|
4345
4454
|
readonly suppressed: bool;
|
4346
4455
|
}
|
4347
4456
|
|
4348
|
-
/** @name PalletStakingActiveEraInfo (
|
4457
|
+
/** @name PalletStakingActiveEraInfo (537) */
|
4349
4458
|
interface PalletStakingActiveEraInfo extends Struct {
|
4350
4459
|
readonly index: u32;
|
4351
4460
|
readonly start: Option<u64>;
|
4352
4461
|
}
|
4353
4462
|
|
4354
|
-
/** @name SpStakingPagedExposureMetadata (
|
4463
|
+
/** @name SpStakingPagedExposureMetadata (539) */
|
4355
4464
|
interface SpStakingPagedExposureMetadata extends Struct {
|
4356
4465
|
readonly total: Compact<u128>;
|
4357
4466
|
readonly own: Compact<u128>;
|
@@ -4359,19 +4468,19 @@ declare module '@polkadot/types/lookup' {
|
|
4359
4468
|
readonly pageCount: u32;
|
4360
4469
|
}
|
4361
4470
|
|
4362
|
-
/** @name SpStakingExposurePage (
|
4471
|
+
/** @name SpStakingExposurePage (541) */
|
4363
4472
|
interface SpStakingExposurePage extends Struct {
|
4364
4473
|
readonly pageTotal: Compact<u128>;
|
4365
4474
|
readonly others: Vec<SpStakingIndividualExposure>;
|
4366
4475
|
}
|
4367
4476
|
|
4368
|
-
/** @name PalletStakingEraRewardPoints (
|
4477
|
+
/** @name PalletStakingEraRewardPoints (542) */
|
4369
4478
|
interface PalletStakingEraRewardPoints extends Struct {
|
4370
4479
|
readonly total: u32;
|
4371
4480
|
readonly individual: BTreeMap<AccountId32, u32>;
|
4372
4481
|
}
|
4373
4482
|
|
4374
|
-
/** @name PalletStakingUnappliedSlash (
|
4483
|
+
/** @name PalletStakingUnappliedSlash (547) */
|
4375
4484
|
interface PalletStakingUnappliedSlash extends Struct {
|
4376
4485
|
readonly validator: AccountId32;
|
4377
4486
|
readonly own: u128;
|
@@ -4380,7 +4489,7 @@ declare module '@polkadot/types/lookup' {
|
|
4380
4489
|
readonly payout: u128;
|
4381
4490
|
}
|
4382
4491
|
|
4383
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
4492
|
+
/** @name PalletStakingSlashingSlashingSpans (551) */
|
4384
4493
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
4385
4494
|
readonly spanIndex: u32;
|
4386
4495
|
readonly lastStart: u32;
|
@@ -4388,13 +4497,13 @@ declare module '@polkadot/types/lookup' {
|
|
4388
4497
|
readonly prior: Vec<u32>;
|
4389
4498
|
}
|
4390
4499
|
|
4391
|
-
/** @name PalletStakingSlashingSpanRecord (
|
4500
|
+
/** @name PalletStakingSlashingSpanRecord (552) */
|
4392
4501
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
4393
4502
|
readonly slashed: u128;
|
4394
4503
|
readonly paidOut: u128;
|
4395
4504
|
}
|
4396
4505
|
|
4397
|
-
/** @name PalletStakingPalletError (
|
4506
|
+
/** @name PalletStakingPalletError (555) */
|
4398
4507
|
interface PalletStakingPalletError extends Enum {
|
4399
4508
|
readonly isNotController: boolean;
|
4400
4509
|
readonly isNotStash: boolean;
|
@@ -4427,10 +4536,10 @@ declare module '@polkadot/types/lookup' {
|
|
4427
4536
|
readonly type: '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';
|
4428
4537
|
}
|
4429
4538
|
|
4430
|
-
/** @name SpCoreCryptoKeyTypeId (
|
4539
|
+
/** @name SpCoreCryptoKeyTypeId (559) */
|
4431
4540
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {}
|
4432
4541
|
|
4433
|
-
/** @name PalletSessionError (
|
4542
|
+
/** @name PalletSessionError (560) */
|
4434
4543
|
interface PalletSessionError extends Enum {
|
4435
4544
|
readonly isInvalidProof: boolean;
|
4436
4545
|
readonly isNoAssociatedValidatorId: boolean;
|
@@ -4440,7 +4549,7 @@ declare module '@polkadot/types/lookup' {
|
|
4440
4549
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
4441
4550
|
}
|
4442
4551
|
|
4443
|
-
/** @name PalletTreasuryProposal (
|
4552
|
+
/** @name PalletTreasuryProposal (562) */
|
4444
4553
|
interface PalletTreasuryProposal extends Struct {
|
4445
4554
|
readonly proposer: AccountId32;
|
4446
4555
|
readonly value: u128;
|
@@ -4448,7 +4557,7 @@ declare module '@polkadot/types/lookup' {
|
|
4448
4557
|
readonly bond: u128;
|
4449
4558
|
}
|
4450
4559
|
|
4451
|
-
/** @name PalletTreasurySpendStatus (
|
4560
|
+
/** @name PalletTreasurySpendStatus (564) */
|
4452
4561
|
interface PalletTreasurySpendStatus extends Struct {
|
4453
4562
|
readonly assetKind: Null;
|
4454
4563
|
readonly amount: u128;
|
@@ -4458,7 +4567,7 @@ declare module '@polkadot/types/lookup' {
|
|
4458
4567
|
readonly status: PalletTreasuryPaymentState;
|
4459
4568
|
}
|
4460
4569
|
|
4461
|
-
/** @name PalletTreasuryPaymentState (
|
4570
|
+
/** @name PalletTreasuryPaymentState (565) */
|
4462
4571
|
interface PalletTreasuryPaymentState extends Enum {
|
4463
4572
|
readonly isPending: boolean;
|
4464
4573
|
readonly isAttempted: boolean;
|
@@ -4469,10 +4578,10 @@ declare module '@polkadot/types/lookup' {
|
|
4469
4578
|
readonly type: 'Pending' | 'Attempted' | 'Failed';
|
4470
4579
|
}
|
4471
4580
|
|
4472
|
-
/** @name FrameSupportPalletId (
|
4581
|
+
/** @name FrameSupportPalletId (566) */
|
4473
4582
|
interface FrameSupportPalletId extends U8aFixed {}
|
4474
4583
|
|
4475
|
-
/** @name PalletTreasuryError (
|
4584
|
+
/** @name PalletTreasuryError (567) */
|
4476
4585
|
interface PalletTreasuryError extends Enum {
|
4477
4586
|
readonly isInsufficientProposersBalance: boolean;
|
4478
4587
|
readonly isInvalidIndex: boolean;
|
@@ -4489,7 +4598,7 @@ declare module '@polkadot/types/lookup' {
|
|
4489
4598
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
|
4490
4599
|
}
|
4491
4600
|
|
4492
|
-
/** @name PalletBountiesBounty (
|
4601
|
+
/** @name PalletBountiesBounty (568) */
|
4493
4602
|
interface PalletBountiesBounty extends Struct {
|
4494
4603
|
readonly proposer: AccountId32;
|
4495
4604
|
readonly value: u128;
|
@@ -4499,7 +4608,7 @@ declare module '@polkadot/types/lookup' {
|
|
4499
4608
|
readonly status: PalletBountiesBountyStatus;
|
4500
4609
|
}
|
4501
4610
|
|
4502
|
-
/** @name PalletBountiesBountyStatus (
|
4611
|
+
/** @name PalletBountiesBountyStatus (569) */
|
4503
4612
|
interface PalletBountiesBountyStatus extends Enum {
|
4504
4613
|
readonly isProposed: boolean;
|
4505
4614
|
readonly isApproved: boolean;
|
@@ -4522,7 +4631,7 @@ declare module '@polkadot/types/lookup' {
|
|
4522
4631
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4523
4632
|
}
|
4524
4633
|
|
4525
|
-
/** @name PalletBountiesError (
|
4634
|
+
/** @name PalletBountiesError (571) */
|
4526
4635
|
interface PalletBountiesError extends Enum {
|
4527
4636
|
readonly isInsufficientProposersBalance: boolean;
|
4528
4637
|
readonly isInvalidIndex: boolean;
|
@@ -4538,7 +4647,7 @@ declare module '@polkadot/types/lookup' {
|
|
4538
4647
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
|
4539
4648
|
}
|
4540
4649
|
|
4541
|
-
/** @name PalletChildBountiesChildBounty (
|
4650
|
+
/** @name PalletChildBountiesChildBounty (572) */
|
4542
4651
|
interface PalletChildBountiesChildBounty extends Struct {
|
4543
4652
|
readonly parentBounty: u32;
|
4544
4653
|
readonly value: u128;
|
@@ -4547,7 +4656,7 @@ declare module '@polkadot/types/lookup' {
|
|
4547
4656
|
readonly status: PalletChildBountiesChildBountyStatus;
|
4548
4657
|
}
|
4549
4658
|
|
4550
|
-
/** @name PalletChildBountiesChildBountyStatus (
|
4659
|
+
/** @name PalletChildBountiesChildBountyStatus (573) */
|
4551
4660
|
interface PalletChildBountiesChildBountyStatus extends Enum {
|
4552
4661
|
readonly isAdded: boolean;
|
4553
4662
|
readonly isCuratorProposed: boolean;
|
@@ -4567,7 +4676,7 @@ declare module '@polkadot/types/lookup' {
|
|
4567
4676
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4568
4677
|
}
|
4569
4678
|
|
4570
|
-
/** @name PalletChildBountiesError (
|
4679
|
+
/** @name PalletChildBountiesError (574) */
|
4571
4680
|
interface PalletChildBountiesError extends Enum {
|
4572
4681
|
readonly isParentBountyNotActive: boolean;
|
4573
4682
|
readonly isInsufficientBountyBalance: boolean;
|
@@ -4575,7 +4684,7 @@ declare module '@polkadot/types/lookup' {
|
|
4575
4684
|
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
|
4576
4685
|
}
|
4577
4686
|
|
4578
|
-
/** @name PalletBagsListListNode (
|
4687
|
+
/** @name PalletBagsListListNode (575) */
|
4579
4688
|
interface PalletBagsListListNode extends Struct {
|
4580
4689
|
readonly id: AccountId32;
|
4581
4690
|
readonly prev: Option<AccountId32>;
|
@@ -4584,20 +4693,20 @@ declare module '@polkadot/types/lookup' {
|
|
4584
4693
|
readonly score: u64;
|
4585
4694
|
}
|
4586
4695
|
|
4587
|
-
/** @name PalletBagsListListBag (
|
4696
|
+
/** @name PalletBagsListListBag (576) */
|
4588
4697
|
interface PalletBagsListListBag extends Struct {
|
4589
4698
|
readonly head: Option<AccountId32>;
|
4590
4699
|
readonly tail: Option<AccountId32>;
|
4591
4700
|
}
|
4592
4701
|
|
4593
|
-
/** @name PalletBagsListError (
|
4702
|
+
/** @name PalletBagsListError (578) */
|
4594
4703
|
interface PalletBagsListError extends Enum {
|
4595
4704
|
readonly isList: boolean;
|
4596
4705
|
readonly asList: PalletBagsListListListError;
|
4597
4706
|
readonly type: 'List';
|
4598
4707
|
}
|
4599
4708
|
|
4600
|
-
/** @name PalletBagsListListListError (
|
4709
|
+
/** @name PalletBagsListListListError (579) */
|
4601
4710
|
interface PalletBagsListListListError extends Enum {
|
4602
4711
|
readonly isDuplicate: boolean;
|
4603
4712
|
readonly isNotHeavier: boolean;
|
@@ -4606,7 +4715,7 @@ declare module '@polkadot/types/lookup' {
|
|
4606
4715
|
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
4607
4716
|
}
|
4608
4717
|
|
4609
|
-
/** @name PalletNominationPoolsPoolMember (
|
4718
|
+
/** @name PalletNominationPoolsPoolMember (580) */
|
4610
4719
|
interface PalletNominationPoolsPoolMember extends Struct {
|
4611
4720
|
readonly poolId: u32;
|
4612
4721
|
readonly points: u128;
|
@@ -4614,7 +4723,7 @@ declare module '@polkadot/types/lookup' {
|
|
4614
4723
|
readonly unbondingEras: BTreeMap<u32, u128>;
|
4615
4724
|
}
|
4616
4725
|
|
4617
|
-
/** @name PalletNominationPoolsBondedPoolInner (
|
4726
|
+
/** @name PalletNominationPoolsBondedPoolInner (585) */
|
4618
4727
|
interface PalletNominationPoolsBondedPoolInner extends Struct {
|
4619
4728
|
readonly commission: PalletNominationPoolsCommission;
|
4620
4729
|
readonly memberCounter: u32;
|
@@ -4623,7 +4732,7 @@ declare module '@polkadot/types/lookup' {
|
|
4623
4732
|
readonly state: PalletNominationPoolsPoolState;
|
4624
4733
|
}
|
4625
4734
|
|
4626
|
-
/** @name PalletNominationPoolsCommission (
|
4735
|
+
/** @name PalletNominationPoolsCommission (586) */
|
4627
4736
|
interface PalletNominationPoolsCommission extends Struct {
|
4628
4737
|
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
|
4629
4738
|
readonly max: Option<Perbill>;
|
@@ -4632,7 +4741,7 @@ declare module '@polkadot/types/lookup' {
|
|
4632
4741
|
readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
|
4633
4742
|
}
|
4634
4743
|
|
4635
|
-
/** @name PalletNominationPoolsPoolRoles (
|
4744
|
+
/** @name PalletNominationPoolsPoolRoles (589) */
|
4636
4745
|
interface PalletNominationPoolsPoolRoles extends Struct {
|
4637
4746
|
readonly depositor: AccountId32;
|
4638
4747
|
readonly root: Option<AccountId32>;
|
@@ -4640,7 +4749,7 @@ declare module '@polkadot/types/lookup' {
|
|
4640
4749
|
readonly bouncer: Option<AccountId32>;
|
4641
4750
|
}
|
4642
4751
|
|
4643
|
-
/** @name PalletNominationPoolsRewardPool (
|
4752
|
+
/** @name PalletNominationPoolsRewardPool (590) */
|
4644
4753
|
interface PalletNominationPoolsRewardPool extends Struct {
|
4645
4754
|
readonly lastRecordedRewardCounter: u128;
|
4646
4755
|
readonly lastRecordedTotalPayouts: u128;
|
@@ -4649,19 +4758,19 @@ declare module '@polkadot/types/lookup' {
|
|
4649
4758
|
readonly totalCommissionClaimed: u128;
|
4650
4759
|
}
|
4651
4760
|
|
4652
|
-
/** @name PalletNominationPoolsSubPools (
|
4761
|
+
/** @name PalletNominationPoolsSubPools (591) */
|
4653
4762
|
interface PalletNominationPoolsSubPools extends Struct {
|
4654
4763
|
readonly noEra: PalletNominationPoolsUnbondPool;
|
4655
4764
|
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
|
4656
4765
|
}
|
4657
4766
|
|
4658
|
-
/** @name PalletNominationPoolsUnbondPool (
|
4767
|
+
/** @name PalletNominationPoolsUnbondPool (592) */
|
4659
4768
|
interface PalletNominationPoolsUnbondPool extends Struct {
|
4660
4769
|
readonly points: u128;
|
4661
4770
|
readonly balance: u128;
|
4662
4771
|
}
|
4663
4772
|
|
4664
|
-
/** @name PalletNominationPoolsError (
|
4773
|
+
/** @name PalletNominationPoolsError (597) */
|
4665
4774
|
interface PalletNominationPoolsError extends Enum {
|
4666
4775
|
readonly isPoolNotFound: boolean;
|
4667
4776
|
readonly isPoolMemberNotFound: boolean;
|
@@ -4699,7 +4808,7 @@ declare module '@polkadot/types/lookup' {
|
|
4699
4808
|
readonly type: 'PoolNotFound' | 'PoolMemberNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'AccountBelongsToOtherPool' | 'FullyUnbonding' | 'MaxUnbondingLimit' | 'CannotWithdrawAny' | 'MinimumBondNotMet' | 'OverflowRisk' | 'NotDestroying' | 'NotNominator' | 'NotKickerOrDestroying' | 'NotOpen' | 'MaxPools' | 'MaxPoolMembers' | 'CanNotChangeState' | 'DoesNotHavePermission' | 'MetadataExceedsMaxLen' | 'Defensive' | 'PartialUnbondNotAllowedPermissionlessly' | 'MaxCommissionRestricted' | 'CommissionExceedsMaximum' | 'CommissionExceedsGlobalMaximum' | 'CommissionChangeThrottled' | 'CommissionChangeRateNotAllowed' | 'NoPendingCommission' | 'NoCommissionCurrentSet' | 'PoolIdInUse' | 'InvalidPoolId' | 'BondExtraRestricted' | 'NothingToAdjust';
|
4700
4809
|
}
|
4701
4810
|
|
4702
|
-
/** @name PalletNominationPoolsDefensiveError (
|
4811
|
+
/** @name PalletNominationPoolsDefensiveError (598) */
|
4703
4812
|
interface PalletNominationPoolsDefensiveError extends Enum {
|
4704
4813
|
readonly isNotEnoughSpaceInUnbondPool: boolean;
|
4705
4814
|
readonly isPoolNotFound: boolean;
|
@@ -4709,7 +4818,7 @@ declare module '@polkadot/types/lookup' {
|
|
4709
4818
|
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
4710
4819
|
}
|
4711
4820
|
|
4712
|
-
/** @name PalletSchedulerScheduled (
|
4821
|
+
/** @name PalletSchedulerScheduled (601) */
|
4713
4822
|
interface PalletSchedulerScheduled extends Struct {
|
4714
4823
|
readonly maybeId: Option<U8aFixed>;
|
4715
4824
|
readonly priority: u8;
|
@@ -4718,7 +4827,7 @@ declare module '@polkadot/types/lookup' {
|
|
4718
4827
|
readonly origin: TangleTestnetRuntimeOriginCaller;
|
4719
4828
|
}
|
4720
4829
|
|
4721
|
-
/** @name PalletSchedulerError (
|
4830
|
+
/** @name PalletSchedulerError (603) */
|
4722
4831
|
interface PalletSchedulerError extends Enum {
|
4723
4832
|
readonly isFailedToSchedule: boolean;
|
4724
4833
|
readonly isNotFound: boolean;
|
@@ -4728,7 +4837,7 @@ declare module '@polkadot/types/lookup' {
|
|
4728
4837
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
4729
4838
|
}
|
4730
4839
|
|
4731
|
-
/** @name PalletPreimageOldRequestStatus (
|
4840
|
+
/** @name PalletPreimageOldRequestStatus (604) */
|
4732
4841
|
interface PalletPreimageOldRequestStatus extends Enum {
|
4733
4842
|
readonly isUnrequested: boolean;
|
4734
4843
|
readonly asUnrequested: {
|
@@ -4744,7 +4853,7 @@ declare module '@polkadot/types/lookup' {
|
|
4744
4853
|
readonly type: 'Unrequested' | 'Requested';
|
4745
4854
|
}
|
4746
4855
|
|
4747
|
-
/** @name PalletPreimageRequestStatus (
|
4856
|
+
/** @name PalletPreimageRequestStatus (606) */
|
4748
4857
|
interface PalletPreimageRequestStatus extends Enum {
|
4749
4858
|
readonly isUnrequested: boolean;
|
4750
4859
|
readonly asUnrequested: {
|
@@ -4760,7 +4869,7 @@ declare module '@polkadot/types/lookup' {
|
|
4760
4869
|
readonly type: 'Unrequested' | 'Requested';
|
4761
4870
|
}
|
4762
4871
|
|
4763
|
-
/** @name PalletPreimageError (
|
4872
|
+
/** @name PalletPreimageError (610) */
|
4764
4873
|
interface PalletPreimageError extends Enum {
|
4765
4874
|
readonly isTooBig: boolean;
|
4766
4875
|
readonly isAlreadyNoted: boolean;
|
@@ -4773,13 +4882,13 @@ declare module '@polkadot/types/lookup' {
|
|
4773
4882
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
|
4774
4883
|
}
|
4775
4884
|
|
4776
|
-
/** @name SpStakingOffenceOffenceDetails (
|
4885
|
+
/** @name SpStakingOffenceOffenceDetails (611) */
|
4777
4886
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
4778
4887
|
readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
|
4779
4888
|
readonly reporters: Vec<AccountId32>;
|
4780
4889
|
}
|
4781
4890
|
|
4782
|
-
/** @name PalletTxPauseError (
|
4891
|
+
/** @name PalletTxPauseError (613) */
|
4783
4892
|
interface PalletTxPauseError extends Enum {
|
4784
4893
|
readonly isIsPaused: boolean;
|
4785
4894
|
readonly isIsUnpaused: boolean;
|
@@ -4788,34 +4897,34 @@ declare module '@polkadot/types/lookup' {
|
|
4788
4897
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
4789
4898
|
}
|
4790
4899
|
|
4791
|
-
/** @name PalletImOnlineError (
|
4900
|
+
/** @name PalletImOnlineError (616) */
|
4792
4901
|
interface PalletImOnlineError extends Enum {
|
4793
4902
|
readonly isInvalidKey: boolean;
|
4794
4903
|
readonly isDuplicatedHeartbeat: boolean;
|
4795
4904
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
4796
4905
|
}
|
4797
4906
|
|
4798
|
-
/** @name PalletIdentityRegistration (
|
4907
|
+
/** @name PalletIdentityRegistration (618) */
|
4799
4908
|
interface PalletIdentityRegistration extends Struct {
|
4800
4909
|
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
|
4801
4910
|
readonly deposit: u128;
|
4802
4911
|
readonly info: PalletIdentityLegacyIdentityInfo;
|
4803
4912
|
}
|
4804
4913
|
|
4805
|
-
/** @name PalletIdentityRegistrarInfo (
|
4914
|
+
/** @name PalletIdentityRegistrarInfo (627) */
|
4806
4915
|
interface PalletIdentityRegistrarInfo extends Struct {
|
4807
4916
|
readonly account: AccountId32;
|
4808
4917
|
readonly fee: u128;
|
4809
4918
|
readonly fields: u64;
|
4810
4919
|
}
|
4811
4920
|
|
4812
|
-
/** @name PalletIdentityAuthorityProperties (
|
4921
|
+
/** @name PalletIdentityAuthorityProperties (629) */
|
4813
4922
|
interface PalletIdentityAuthorityProperties extends Struct {
|
4814
4923
|
readonly suffix: Bytes;
|
4815
4924
|
readonly allocation: u32;
|
4816
4925
|
}
|
4817
4926
|
|
4818
|
-
/** @name PalletIdentityError (
|
4927
|
+
/** @name PalletIdentityError (632) */
|
4819
4928
|
interface PalletIdentityError extends Enum {
|
4820
4929
|
readonly isTooManySubAccounts: boolean;
|
4821
4930
|
readonly isNotFound: boolean;
|
@@ -4846,13 +4955,13 @@ declare module '@polkadot/types/lookup' {
|
|
4846
4955
|
readonly type: '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';
|
4847
4956
|
}
|
4848
4957
|
|
4849
|
-
/** @name PalletUtilityError (
|
4958
|
+
/** @name PalletUtilityError (633) */
|
4850
4959
|
interface PalletUtilityError extends Enum {
|
4851
4960
|
readonly isTooManyCalls: boolean;
|
4852
4961
|
readonly type: 'TooManyCalls';
|
4853
4962
|
}
|
4854
4963
|
|
4855
|
-
/** @name PalletMultisigMultisig (
|
4964
|
+
/** @name PalletMultisigMultisig (635) */
|
4856
4965
|
interface PalletMultisigMultisig extends Struct {
|
4857
4966
|
readonly when: PalletMultisigTimepoint;
|
4858
4967
|
readonly deposit: u128;
|
@@ -4860,7 +4969,7 @@ declare module '@polkadot/types/lookup' {
|
|
4860
4969
|
readonly approvals: Vec<AccountId32>;
|
4861
4970
|
}
|
4862
4971
|
|
4863
|
-
/** @name PalletMultisigError (
|
4972
|
+
/** @name PalletMultisigError (636) */
|
4864
4973
|
interface PalletMultisigError extends Enum {
|
4865
4974
|
readonly isMinimumThreshold: boolean;
|
4866
4975
|
readonly isAlreadyApproved: boolean;
|
@@ -4879,7 +4988,7 @@ declare module '@polkadot/types/lookup' {
|
|
4879
4988
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
4880
4989
|
}
|
4881
4990
|
|
4882
|
-
/** @name FpRpcTransactionStatus (
|
4991
|
+
/** @name FpRpcTransactionStatus (639) */
|
4883
4992
|
interface FpRpcTransactionStatus extends Struct {
|
4884
4993
|
readonly transactionHash: H256;
|
4885
4994
|
readonly transactionIndex: u32;
|
@@ -4890,10 +4999,10 @@ declare module '@polkadot/types/lookup' {
|
|
4890
4999
|
readonly logsBloom: EthbloomBloom;
|
4891
5000
|
}
|
4892
5001
|
|
4893
|
-
/** @name EthbloomBloom (
|
5002
|
+
/** @name EthbloomBloom (642) */
|
4894
5003
|
interface EthbloomBloom extends U8aFixed {}
|
4895
5004
|
|
4896
|
-
/** @name EthereumReceiptReceiptV3 (
|
5005
|
+
/** @name EthereumReceiptReceiptV3 (644) */
|
4897
5006
|
interface EthereumReceiptReceiptV3 extends Enum {
|
4898
5007
|
readonly isLegacy: boolean;
|
4899
5008
|
readonly asLegacy: EthereumReceiptEip658ReceiptData;
|
@@ -4904,7 +5013,7 @@ declare module '@polkadot/types/lookup' {
|
|
4904
5013
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
4905
5014
|
}
|
4906
5015
|
|
4907
|
-
/** @name EthereumReceiptEip658ReceiptData (
|
5016
|
+
/** @name EthereumReceiptEip658ReceiptData (645) */
|
4908
5017
|
interface EthereumReceiptEip658ReceiptData extends Struct {
|
4909
5018
|
readonly statusCode: u8;
|
4910
5019
|
readonly usedGas: U256;
|
@@ -4912,14 +5021,14 @@ declare module '@polkadot/types/lookup' {
|
|
4912
5021
|
readonly logs: Vec<EthereumLog>;
|
4913
5022
|
}
|
4914
5023
|
|
4915
|
-
/** @name EthereumBlock (
|
5024
|
+
/** @name EthereumBlock (646) */
|
4916
5025
|
interface EthereumBlock extends Struct {
|
4917
5026
|
readonly header: EthereumHeader;
|
4918
5027
|
readonly transactions: Vec<EthereumTransactionTransactionV2>;
|
4919
5028
|
readonly ommers: Vec<EthereumHeader>;
|
4920
5029
|
}
|
4921
5030
|
|
4922
|
-
/** @name EthereumHeader (
|
5031
|
+
/** @name EthereumHeader (647) */
|
4923
5032
|
interface EthereumHeader extends Struct {
|
4924
5033
|
readonly parentHash: H256;
|
4925
5034
|
readonly ommersHash: H256;
|
@@ -4938,23 +5047,23 @@ declare module '@polkadot/types/lookup' {
|
|
4938
5047
|
readonly nonce: EthereumTypesHashH64;
|
4939
5048
|
}
|
4940
5049
|
|
4941
|
-
/** @name EthereumTypesHashH64 (
|
5050
|
+
/** @name EthereumTypesHashH64 (648) */
|
4942
5051
|
interface EthereumTypesHashH64 extends U8aFixed {}
|
4943
5052
|
|
4944
|
-
/** @name PalletEthereumError (
|
5053
|
+
/** @name PalletEthereumError (653) */
|
4945
5054
|
interface PalletEthereumError extends Enum {
|
4946
5055
|
readonly isInvalidSignature: boolean;
|
4947
5056
|
readonly isPreLogExists: boolean;
|
4948
5057
|
readonly type: 'InvalidSignature' | 'PreLogExists';
|
4949
5058
|
}
|
4950
5059
|
|
4951
|
-
/** @name PalletEvmCodeMetadata (
|
5060
|
+
/** @name PalletEvmCodeMetadata (654) */
|
4952
5061
|
interface PalletEvmCodeMetadata extends Struct {
|
4953
5062
|
readonly size_: u64;
|
4954
5063
|
readonly hash_: H256;
|
4955
5064
|
}
|
4956
5065
|
|
4957
|
-
/** @name PalletEvmError (
|
5066
|
+
/** @name PalletEvmError (656) */
|
4958
5067
|
interface PalletEvmError extends Enum {
|
4959
5068
|
readonly isBalanceLow: boolean;
|
4960
5069
|
readonly isFeeOverflow: boolean;
|
@@ -4972,13 +5081,13 @@ declare module '@polkadot/types/lookup' {
|
|
4972
5081
|
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
|
4973
5082
|
}
|
4974
5083
|
|
4975
|
-
/** @name PalletHotfixSufficientsError (
|
5084
|
+
/** @name PalletHotfixSufficientsError (657) */
|
4976
5085
|
interface PalletHotfixSufficientsError extends Enum {
|
4977
5086
|
readonly isMaxAddressCountExceeded: boolean;
|
4978
5087
|
readonly type: 'MaxAddressCountExceeded';
|
4979
5088
|
}
|
4980
5089
|
|
4981
|
-
/** @name PalletAirdropClaimsError (
|
5090
|
+
/** @name PalletAirdropClaimsError (659) */
|
4982
5091
|
interface PalletAirdropClaimsError extends Enum {
|
4983
5092
|
readonly isInvalidEthereumSignature: boolean;
|
4984
5093
|
readonly isInvalidNativeSignature: boolean;
|
@@ -4991,7 +5100,7 @@ declare module '@polkadot/types/lookup' {
|
|
4991
5100
|
readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
|
4992
5101
|
}
|
4993
5102
|
|
4994
|
-
/** @name PalletRolesRestakingLedger (
|
5103
|
+
/** @name PalletRolesRestakingLedger (660) */
|
4995
5104
|
interface PalletRolesRestakingLedger extends Struct {
|
4996
5105
|
readonly stash: AccountId32;
|
4997
5106
|
readonly total: Compact<u128>;
|
@@ -5003,13 +5112,13 @@ declare module '@polkadot/types/lookup' {
|
|
5003
5112
|
readonly maxActiveServices: u32;
|
5004
5113
|
}
|
5005
5114
|
|
5006
|
-
/** @name PalletRolesUnlockChunk (
|
5115
|
+
/** @name PalletRolesUnlockChunk (666) */
|
5007
5116
|
interface PalletRolesUnlockChunk extends Struct {
|
5008
5117
|
readonly value: Compact<u128>;
|
5009
5118
|
readonly era: Compact<u32>;
|
5010
5119
|
}
|
5011
5120
|
|
5012
|
-
/** @name PalletRolesError (
|
5121
|
+
/** @name PalletRolesError (670) */
|
5013
5122
|
interface PalletRolesError extends Enum {
|
5014
5123
|
readonly isNotValidator: boolean;
|
5015
5124
|
readonly isHasRoleAssigned: boolean;
|
@@ -5033,7 +5142,7 @@ declare module '@polkadot/types/lookup' {
|
|
5033
5142
|
readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
|
5034
5143
|
}
|
5035
5144
|
|
5036
|
-
/** @name TanglePrimitivesJobsPhaseResult (
|
5145
|
+
/** @name TanglePrimitivesJobsPhaseResult (671) */
|
5037
5146
|
interface TanglePrimitivesJobsPhaseResult extends Struct {
|
5038
5147
|
readonly owner: AccountId32;
|
5039
5148
|
readonly result: TanglePrimitivesJobsJobResult;
|
@@ -5042,7 +5151,7 @@ declare module '@polkadot/types/lookup' {
|
|
5042
5151
|
readonly jobType: TanglePrimitivesJobsJobType;
|
5043
5152
|
}
|
5044
5153
|
|
5045
|
-
/** @name PalletJobsModuleError (
|
5154
|
+
/** @name PalletJobsModuleError (673) */
|
5046
5155
|
interface PalletJobsModuleError extends Enum {
|
5047
5156
|
readonly isInvalidJobPhase: boolean;
|
5048
5157
|
readonly isInvalidValidator: boolean;
|
@@ -5065,7 +5174,7 @@ declare module '@polkadot/types/lookup' {
|
|
5065
5174
|
readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
|
5066
5175
|
}
|
5067
5176
|
|
5068
|
-
/** @name PalletDkgError (
|
5177
|
+
/** @name PalletDkgError (674) */
|
5069
5178
|
interface PalletDkgError extends Enum {
|
5070
5179
|
readonly isCannotRetreiveSigner: boolean;
|
5071
5180
|
readonly isNotEnoughSigners: boolean;
|
@@ -5118,7 +5227,7 @@ declare module '@polkadot/types/lookup' {
|
|
5118
5227
|
readonly type: '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';
|
5119
5228
|
}
|
5120
5229
|
|
5121
|
-
/** @name PalletZksaasError (
|
5230
|
+
/** @name PalletZksaasError (675) */
|
5122
5231
|
interface PalletZksaasError extends Enum {
|
5123
5232
|
readonly isInvalidJobType: boolean;
|
5124
5233
|
readonly isInvalidProof: boolean;
|
@@ -5126,28 +5235,55 @@ declare module '@polkadot/types/lookup' {
|
|
5126
5235
|
readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
|
5127
5236
|
}
|
5128
5237
|
|
5129
|
-
/** @name
|
5238
|
+
/** @name PalletProxyProxyDefinition (678) */
|
5239
|
+
interface PalletProxyProxyDefinition extends Struct {
|
5240
|
+
readonly delegate: AccountId32;
|
5241
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
5242
|
+
readonly delay: u64;
|
5243
|
+
}
|
5244
|
+
|
5245
|
+
/** @name PalletProxyAnnouncement (682) */
|
5246
|
+
interface PalletProxyAnnouncement extends Struct {
|
5247
|
+
readonly real: AccountId32;
|
5248
|
+
readonly callHash: H256;
|
5249
|
+
readonly height: u64;
|
5250
|
+
}
|
5251
|
+
|
5252
|
+
/** @name PalletProxyError (684) */
|
5253
|
+
interface PalletProxyError extends Enum {
|
5254
|
+
readonly isTooMany: boolean;
|
5255
|
+
readonly isNotFound: boolean;
|
5256
|
+
readonly isNotProxy: boolean;
|
5257
|
+
readonly isUnproxyable: boolean;
|
5258
|
+
readonly isDuplicate: boolean;
|
5259
|
+
readonly isNoPermission: boolean;
|
5260
|
+
readonly isUnannounced: boolean;
|
5261
|
+
readonly isNoSelfProxy: boolean;
|
5262
|
+
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
5263
|
+
}
|
5264
|
+
|
5265
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (687) */
|
5130
5266
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
5131
5267
|
|
5132
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
5268
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (688) */
|
5133
5269
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
5134
5270
|
|
5135
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
5271
|
+
/** @name FrameSystemExtensionsCheckTxVersion (689) */
|
5136
5272
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
5137
5273
|
|
5138
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
5274
|
+
/** @name FrameSystemExtensionsCheckGenesis (690) */
|
5139
5275
|
type FrameSystemExtensionsCheckGenesis = Null;
|
5140
5276
|
|
5141
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
5277
|
+
/** @name FrameSystemExtensionsCheckNonce (693) */
|
5142
5278
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
5143
5279
|
|
5144
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
5280
|
+
/** @name FrameSystemExtensionsCheckWeight (694) */
|
5145
5281
|
type FrameSystemExtensionsCheckWeight = Null;
|
5146
5282
|
|
5147
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
5283
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (695) */
|
5148
5284
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
5149
5285
|
|
5150
|
-
/** @name TangleTestnetRuntimeRuntime (
|
5286
|
+
/** @name TangleTestnetRuntimeRuntime (697) */
|
5151
5287
|
type TangleTestnetRuntimeRuntime = Null;
|
5152
5288
|
|
5153
5289
|
} // declare module
|