@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
@@ -1539,6 +1539,7 @@ declare module '@polkadot/types/lookup' {
|
|
1539
1539
|
readonly threshold: u8;
|
1540
1540
|
readonly permittedCaller: Option<AccountId32>;
|
1541
1541
|
readonly roleType: TanglePrimitivesRolesTssThresholdSignatureRoleType;
|
1542
|
+
readonly hdWallet: bool;
|
1542
1543
|
}
|
1543
1544
|
/** @name TanglePrimitivesJobsTssDkgtssPhaseTwoJobType (137) */
|
1544
1545
|
interface TanglePrimitivesJobsTssDkgtssPhaseTwoJobType extends Struct {
|
@@ -1665,7 +1666,50 @@ declare module '@polkadot/types/lookup' {
|
|
1665
1666
|
readonly proveFee: u128;
|
1666
1667
|
readonly storageFeePerByte: u128;
|
1667
1668
|
}
|
1668
|
-
/** @name
|
1669
|
+
/** @name PalletProxyEvent (161) */
|
1670
|
+
interface PalletProxyEvent extends Enum {
|
1671
|
+
readonly isProxyExecuted: boolean;
|
1672
|
+
readonly asProxyExecuted: {
|
1673
|
+
readonly result: Result<Null, SpRuntimeDispatchError>;
|
1674
|
+
} & Struct;
|
1675
|
+
readonly isPureCreated: boolean;
|
1676
|
+
readonly asPureCreated: {
|
1677
|
+
readonly pure: AccountId32;
|
1678
|
+
readonly who: AccountId32;
|
1679
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1680
|
+
readonly disambiguationIndex: u16;
|
1681
|
+
} & Struct;
|
1682
|
+
readonly isAnnounced: boolean;
|
1683
|
+
readonly asAnnounced: {
|
1684
|
+
readonly real: AccountId32;
|
1685
|
+
readonly proxy: AccountId32;
|
1686
|
+
readonly callHash: H256;
|
1687
|
+
} & Struct;
|
1688
|
+
readonly isProxyAdded: boolean;
|
1689
|
+
readonly asProxyAdded: {
|
1690
|
+
readonly delegator: AccountId32;
|
1691
|
+
readonly delegatee: AccountId32;
|
1692
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1693
|
+
readonly delay: u64;
|
1694
|
+
} & Struct;
|
1695
|
+
readonly isProxyRemoved: boolean;
|
1696
|
+
readonly asProxyRemoved: {
|
1697
|
+
readonly delegator: AccountId32;
|
1698
|
+
readonly delegatee: AccountId32;
|
1699
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
1700
|
+
readonly delay: u64;
|
1701
|
+
} & Struct;
|
1702
|
+
readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved';
|
1703
|
+
}
|
1704
|
+
/** @name TangleTestnetRuntimeProxyType (162) */
|
1705
|
+
interface TangleTestnetRuntimeProxyType extends Enum {
|
1706
|
+
readonly isAny: boolean;
|
1707
|
+
readonly isNonTransfer: boolean;
|
1708
|
+
readonly isGovernance: boolean;
|
1709
|
+
readonly isStaking: boolean;
|
1710
|
+
readonly type: 'Any' | 'NonTransfer' | 'Governance' | 'Staking';
|
1711
|
+
}
|
1712
|
+
/** @name FrameSystemPhase (164) */
|
1669
1713
|
interface FrameSystemPhase extends Enum {
|
1670
1714
|
readonly isApplyExtrinsic: boolean;
|
1671
1715
|
readonly asApplyExtrinsic: u32;
|
@@ -1673,17 +1717,17 @@ declare module '@polkadot/types/lookup' {
|
|
1673
1717
|
readonly isInitialization: boolean;
|
1674
1718
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
1675
1719
|
}
|
1676
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
1720
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (166) */
|
1677
1721
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
1678
1722
|
readonly specVersion: Compact<u32>;
|
1679
1723
|
readonly specName: Text;
|
1680
1724
|
}
|
1681
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
1725
|
+
/** @name FrameSystemCodeUpgradeAuthorization (168) */
|
1682
1726
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
1683
1727
|
readonly codeHash: H256;
|
1684
1728
|
readonly checkVersion: bool;
|
1685
1729
|
}
|
1686
|
-
/** @name FrameSystemCall (
|
1730
|
+
/** @name FrameSystemCall (169) */
|
1687
1731
|
interface FrameSystemCall extends Enum {
|
1688
1732
|
readonly isRemark: boolean;
|
1689
1733
|
readonly asRemark: {
|
@@ -1732,41 +1776,41 @@ declare module '@polkadot/types/lookup' {
|
|
1732
1776
|
} & Struct;
|
1733
1777
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade';
|
1734
1778
|
}
|
1735
|
-
/** @name FrameSystemLimitsBlockWeights (
|
1779
|
+
/** @name FrameSystemLimitsBlockWeights (173) */
|
1736
1780
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
1737
1781
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
1738
1782
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
1739
1783
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
1740
1784
|
}
|
1741
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
1785
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (174) */
|
1742
1786
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
1743
1787
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
1744
1788
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
1745
1789
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
1746
1790
|
}
|
1747
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
1791
|
+
/** @name FrameSystemLimitsWeightsPerClass (175) */
|
1748
1792
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
1749
1793
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
1750
1794
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
1751
1795
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
1752
1796
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
1753
1797
|
}
|
1754
|
-
/** @name FrameSystemLimitsBlockLength (
|
1798
|
+
/** @name FrameSystemLimitsBlockLength (177) */
|
1755
1799
|
interface FrameSystemLimitsBlockLength extends Struct {
|
1756
1800
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
1757
1801
|
}
|
1758
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
1802
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (178) */
|
1759
1803
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
1760
1804
|
readonly normal: u32;
|
1761
1805
|
readonly operational: u32;
|
1762
1806
|
readonly mandatory: u32;
|
1763
1807
|
}
|
1764
|
-
/** @name SpWeightsRuntimeDbWeight (
|
1808
|
+
/** @name SpWeightsRuntimeDbWeight (179) */
|
1765
1809
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
1766
1810
|
readonly read: u64;
|
1767
1811
|
readonly write: u64;
|
1768
1812
|
}
|
1769
|
-
/** @name SpVersionRuntimeVersion (
|
1813
|
+
/** @name SpVersionRuntimeVersion (180) */
|
1770
1814
|
interface SpVersionRuntimeVersion extends Struct {
|
1771
1815
|
readonly specName: Text;
|
1772
1816
|
readonly implName: Text;
|
@@ -1777,7 +1821,7 @@ declare module '@polkadot/types/lookup' {
|
|
1777
1821
|
readonly transactionVersion: u32;
|
1778
1822
|
readonly stateVersion: u8;
|
1779
1823
|
}
|
1780
|
-
/** @name FrameSystemError (
|
1824
|
+
/** @name FrameSystemError (185) */
|
1781
1825
|
interface FrameSystemError extends Enum {
|
1782
1826
|
readonly isInvalidSpecName: boolean;
|
1783
1827
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
@@ -1789,7 +1833,7 @@ declare module '@polkadot/types/lookup' {
|
|
1789
1833
|
readonly isUnauthorized: boolean;
|
1790
1834
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized';
|
1791
1835
|
}
|
1792
|
-
/** @name PalletTimestampCall (
|
1836
|
+
/** @name PalletTimestampCall (186) */
|
1793
1837
|
interface PalletTimestampCall extends Enum {
|
1794
1838
|
readonly isSet: boolean;
|
1795
1839
|
readonly asSet: {
|
@@ -1797,7 +1841,7 @@ declare module '@polkadot/types/lookup' {
|
|
1797
1841
|
} & Struct;
|
1798
1842
|
readonly type: 'Set';
|
1799
1843
|
}
|
1800
|
-
/** @name PalletSudoCall (
|
1844
|
+
/** @name PalletSudoCall (187) */
|
1801
1845
|
interface PalletSudoCall extends Enum {
|
1802
1846
|
readonly isSudo: boolean;
|
1803
1847
|
readonly asSudo: {
|
@@ -1820,7 +1864,7 @@ declare module '@polkadot/types/lookup' {
|
|
1820
1864
|
readonly isRemoveKey: boolean;
|
1821
1865
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
1822
1866
|
}
|
1823
|
-
/** @name PalletBalancesCall (
|
1867
|
+
/** @name PalletBalancesCall (189) */
|
1824
1868
|
interface PalletBalancesCall extends Enum {
|
1825
1869
|
readonly isTransferAllowDeath: boolean;
|
1826
1870
|
readonly asTransferAllowDeath: {
|
@@ -1864,13 +1908,13 @@ declare module '@polkadot/types/lookup' {
|
|
1864
1908
|
} & Struct;
|
1865
1909
|
readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance';
|
1866
1910
|
}
|
1867
|
-
/** @name PalletBalancesAdjustmentDirection (
|
1911
|
+
/** @name PalletBalancesAdjustmentDirection (191) */
|
1868
1912
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
1869
1913
|
readonly isIncrease: boolean;
|
1870
1914
|
readonly isDecrease: boolean;
|
1871
1915
|
readonly type: 'Increase' | 'Decrease';
|
1872
1916
|
}
|
1873
|
-
/** @name PalletBabeCall (
|
1917
|
+
/** @name PalletBabeCall (192) */
|
1874
1918
|
interface PalletBabeCall extends Enum {
|
1875
1919
|
readonly isReportEquivocation: boolean;
|
1876
1920
|
readonly asReportEquivocation: {
|
@@ -1888,14 +1932,14 @@ declare module '@polkadot/types/lookup' {
|
|
1888
1932
|
} & Struct;
|
1889
1933
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
1890
1934
|
}
|
1891
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
1935
|
+
/** @name SpConsensusSlotsEquivocationProof (193) */
|
1892
1936
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
1893
1937
|
readonly offender: SpConsensusBabeAppPublic;
|
1894
1938
|
readonly slot: u64;
|
1895
1939
|
readonly firstHeader: SpRuntimeHeader;
|
1896
1940
|
readonly secondHeader: SpRuntimeHeader;
|
1897
1941
|
}
|
1898
|
-
/** @name SpRuntimeHeader (
|
1942
|
+
/** @name SpRuntimeHeader (194) */
|
1899
1943
|
interface SpRuntimeHeader extends Struct {
|
1900
1944
|
readonly parentHash: H256;
|
1901
1945
|
readonly number: Compact<u64>;
|
@@ -1903,16 +1947,16 @@ declare module '@polkadot/types/lookup' {
|
|
1903
1947
|
readonly extrinsicsRoot: H256;
|
1904
1948
|
readonly digest: SpRuntimeDigest;
|
1905
1949
|
}
|
1906
|
-
/** @name SpConsensusBabeAppPublic (
|
1950
|
+
/** @name SpConsensusBabeAppPublic (195) */
|
1907
1951
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
1908
1952
|
}
|
1909
|
-
/** @name SpSessionMembershipProof (
|
1953
|
+
/** @name SpSessionMembershipProof (197) */
|
1910
1954
|
interface SpSessionMembershipProof extends Struct {
|
1911
1955
|
readonly session: u32;
|
1912
1956
|
readonly trieNodes: Vec<Bytes>;
|
1913
1957
|
readonly validatorCount: u32;
|
1914
1958
|
}
|
1915
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
1959
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (198) */
|
1916
1960
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
1917
1961
|
readonly isV1: boolean;
|
1918
1962
|
readonly asV1: {
|
@@ -1921,14 +1965,14 @@ declare module '@polkadot/types/lookup' {
|
|
1921
1965
|
} & Struct;
|
1922
1966
|
readonly type: 'V1';
|
1923
1967
|
}
|
1924
|
-
/** @name SpConsensusBabeAllowedSlots (
|
1968
|
+
/** @name SpConsensusBabeAllowedSlots (200) */
|
1925
1969
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
1926
1970
|
readonly isPrimarySlots: boolean;
|
1927
1971
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
1928
1972
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
1929
1973
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
1930
1974
|
}
|
1931
|
-
/** @name PalletGrandpaCall (
|
1975
|
+
/** @name PalletGrandpaCall (201) */
|
1932
1976
|
interface PalletGrandpaCall extends Enum {
|
1933
1977
|
readonly isReportEquivocation: boolean;
|
1934
1978
|
readonly asReportEquivocation: {
|
@@ -1947,12 +1991,12 @@ declare module '@polkadot/types/lookup' {
|
|
1947
1991
|
} & Struct;
|
1948
1992
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
1949
1993
|
}
|
1950
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
1994
|
+
/** @name SpConsensusGrandpaEquivocationProof (202) */
|
1951
1995
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
1952
1996
|
readonly setId: u64;
|
1953
1997
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
1954
1998
|
}
|
1955
|
-
/** @name SpConsensusGrandpaEquivocation (
|
1999
|
+
/** @name SpConsensusGrandpaEquivocation (203) */
|
1956
2000
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
1957
2001
|
readonly isPrevote: boolean;
|
1958
2002
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
@@ -1960,39 +2004,39 @@ declare module '@polkadot/types/lookup' {
|
|
1960
2004
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
1961
2005
|
readonly type: 'Prevote' | 'Precommit';
|
1962
2006
|
}
|
1963
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
2007
|
+
/** @name FinalityGrandpaEquivocationPrevote (204) */
|
1964
2008
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
1965
2009
|
readonly roundNumber: u64;
|
1966
2010
|
readonly identity: SpConsensusGrandpaAppPublic;
|
1967
2011
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
1968
2012
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
1969
2013
|
}
|
1970
|
-
/** @name FinalityGrandpaPrevote (
|
2014
|
+
/** @name FinalityGrandpaPrevote (205) */
|
1971
2015
|
interface FinalityGrandpaPrevote extends Struct {
|
1972
2016
|
readonly targetHash: H256;
|
1973
2017
|
readonly targetNumber: u64;
|
1974
2018
|
}
|
1975
|
-
/** @name SpConsensusGrandpaAppSignature (
|
2019
|
+
/** @name SpConsensusGrandpaAppSignature (206) */
|
1976
2020
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
1977
2021
|
}
|
1978
|
-
/** @name SpCoreEd25519Signature (
|
2022
|
+
/** @name SpCoreEd25519Signature (207) */
|
1979
2023
|
interface SpCoreEd25519Signature extends U8aFixed {
|
1980
2024
|
}
|
1981
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
2025
|
+
/** @name FinalityGrandpaEquivocationPrecommit (210) */
|
1982
2026
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
1983
2027
|
readonly roundNumber: u64;
|
1984
2028
|
readonly identity: SpConsensusGrandpaAppPublic;
|
1985
2029
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
1986
2030
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
1987
2031
|
}
|
1988
|
-
/** @name FinalityGrandpaPrecommit (
|
2032
|
+
/** @name FinalityGrandpaPrecommit (211) */
|
1989
2033
|
interface FinalityGrandpaPrecommit extends Struct {
|
1990
2034
|
readonly targetHash: H256;
|
1991
2035
|
readonly targetNumber: u64;
|
1992
2036
|
}
|
1993
|
-
/** @name SpCoreVoid (
|
2037
|
+
/** @name SpCoreVoid (213) */
|
1994
2038
|
type SpCoreVoid = Null;
|
1995
|
-
/** @name PalletIndicesCall (
|
2039
|
+
/** @name PalletIndicesCall (214) */
|
1996
2040
|
interface PalletIndicesCall extends Enum {
|
1997
2041
|
readonly isClaim: boolean;
|
1998
2042
|
readonly asClaim: {
|
@@ -2019,7 +2063,7 @@ declare module '@polkadot/types/lookup' {
|
|
2019
2063
|
} & Struct;
|
2020
2064
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
2021
2065
|
}
|
2022
|
-
/** @name PalletDemocracyCall (
|
2066
|
+
/** @name PalletDemocracyCall (215) */
|
2023
2067
|
interface PalletDemocracyCall extends Enum {
|
2024
2068
|
readonly isPropose: boolean;
|
2025
2069
|
readonly asPropose: {
|
@@ -2102,7 +2146,7 @@ declare module '@polkadot/types/lookup' {
|
|
2102
2146
|
} & Struct;
|
2103
2147
|
readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';
|
2104
2148
|
}
|
2105
|
-
/** @name FrameSupportPreimagesBounded (
|
2149
|
+
/** @name FrameSupportPreimagesBounded (216) */
|
2106
2150
|
interface FrameSupportPreimagesBounded extends Enum {
|
2107
2151
|
readonly isLegacy: boolean;
|
2108
2152
|
readonly asLegacy: {
|
@@ -2117,9 +2161,9 @@ declare module '@polkadot/types/lookup' {
|
|
2117
2161
|
} & Struct;
|
2118
2162
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
2119
2163
|
}
|
2120
|
-
/** @name SpRuntimeBlakeTwo256 (
|
2164
|
+
/** @name SpRuntimeBlakeTwo256 (217) */
|
2121
2165
|
type SpRuntimeBlakeTwo256 = Null;
|
2122
|
-
/** @name PalletDemocracyConviction (
|
2166
|
+
/** @name PalletDemocracyConviction (219) */
|
2123
2167
|
interface PalletDemocracyConviction extends Enum {
|
2124
2168
|
readonly isNone: boolean;
|
2125
2169
|
readonly isLocked1x: boolean;
|
@@ -2130,7 +2174,7 @@ declare module '@polkadot/types/lookup' {
|
|
2130
2174
|
readonly isLocked6x: boolean;
|
2131
2175
|
readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';
|
2132
2176
|
}
|
2133
|
-
/** @name PalletCollectiveCall (
|
2177
|
+
/** @name PalletCollectiveCall (222) */
|
2134
2178
|
interface PalletCollectiveCall extends Enum {
|
2135
2179
|
readonly isSetMembers: boolean;
|
2136
2180
|
readonly asSetMembers: {
|
@@ -2168,7 +2212,7 @@ declare module '@polkadot/types/lookup' {
|
|
2168
2212
|
} & Struct;
|
2169
2213
|
readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';
|
2170
2214
|
}
|
2171
|
-
/** @name PalletVestingCall (
|
2215
|
+
/** @name PalletVestingCall (223) */
|
2172
2216
|
interface PalletVestingCall extends Enum {
|
2173
2217
|
readonly isVest: boolean;
|
2174
2218
|
readonly isVestOther: boolean;
|
@@ -2198,13 +2242,13 @@ declare module '@polkadot/types/lookup' {
|
|
2198
2242
|
} & Struct;
|
2199
2243
|
readonly type: 'Vest' | 'VestOther' | 'VestedTransfer' | 'ForceVestedTransfer' | 'MergeSchedules' | 'ForceRemoveVestingSchedule';
|
2200
2244
|
}
|
2201
|
-
/** @name PalletVestingVestingInfo (
|
2245
|
+
/** @name PalletVestingVestingInfo (224) */
|
2202
2246
|
interface PalletVestingVestingInfo extends Struct {
|
2203
2247
|
readonly locked: u128;
|
2204
2248
|
readonly perBlock: u128;
|
2205
2249
|
readonly startingBlock: u64;
|
2206
2250
|
}
|
2207
|
-
/** @name PalletElectionsPhragmenCall (
|
2251
|
+
/** @name PalletElectionsPhragmenCall (225) */
|
2208
2252
|
interface PalletElectionsPhragmenCall extends Enum {
|
2209
2253
|
readonly isVote: boolean;
|
2210
2254
|
readonly asVote: {
|
@@ -2233,7 +2277,7 @@ declare module '@polkadot/types/lookup' {
|
|
2233
2277
|
} & Struct;
|
2234
2278
|
readonly type: 'Vote' | 'RemoveVoter' | 'SubmitCandidacy' | 'RenounceCandidacy' | 'RemoveMember' | 'CleanDefunctVoters';
|
2235
2279
|
}
|
2236
|
-
/** @name PalletElectionsPhragmenRenouncing (
|
2280
|
+
/** @name PalletElectionsPhragmenRenouncing (226) */
|
2237
2281
|
interface PalletElectionsPhragmenRenouncing extends Enum {
|
2238
2282
|
readonly isMember: boolean;
|
2239
2283
|
readonly isRunnerUp: boolean;
|
@@ -2241,7 +2285,7 @@ declare module '@polkadot/types/lookup' {
|
|
2241
2285
|
readonly asCandidate: Compact<u32>;
|
2242
2286
|
readonly type: 'Member' | 'RunnerUp' | 'Candidate';
|
2243
2287
|
}
|
2244
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
2288
|
+
/** @name PalletElectionProviderMultiPhaseCall (227) */
|
2245
2289
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
2246
2290
|
readonly isSubmitUnsigned: boolean;
|
2247
2291
|
readonly asSubmitUnsigned: {
|
@@ -2267,13 +2311,13 @@ declare module '@polkadot/types/lookup' {
|
|
2267
2311
|
} & Struct;
|
2268
2312
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
2269
2313
|
}
|
2270
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
2314
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (228) */
|
2271
2315
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
2272
2316
|
readonly solution: TangleTestnetRuntimeNposSolution16;
|
2273
2317
|
readonly score: SpNposElectionsElectionScore;
|
2274
2318
|
readonly round: u32;
|
2275
2319
|
}
|
2276
|
-
/** @name TangleTestnetRuntimeNposSolution16 (
|
2320
|
+
/** @name TangleTestnetRuntimeNposSolution16 (229) */
|
2277
2321
|
interface TangleTestnetRuntimeNposSolution16 extends Struct {
|
2278
2322
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
2279
2323
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
@@ -2292,17 +2336,17 @@ declare module '@polkadot/types/lookup' {
|
|
2292
2336
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2293
2337
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
2294
2338
|
}
|
2295
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
2339
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (280) */
|
2296
2340
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
2297
2341
|
readonly voters: Compact<u32>;
|
2298
2342
|
readonly targets: Compact<u32>;
|
2299
2343
|
}
|
2300
|
-
/** @name SpNposElectionsSupport (
|
2344
|
+
/** @name SpNposElectionsSupport (284) */
|
2301
2345
|
interface SpNposElectionsSupport extends Struct {
|
2302
2346
|
readonly total: u128;
|
2303
2347
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
2304
2348
|
}
|
2305
|
-
/** @name PalletStakingPalletCall (
|
2349
|
+
/** @name PalletStakingPalletCall (285) */
|
2306
2350
|
interface PalletStakingPalletCall extends Enum {
|
2307
2351
|
readonly isBond: boolean;
|
2308
2352
|
readonly asBond: {
|
@@ -2419,7 +2463,7 @@ declare module '@polkadot/types/lookup' {
|
|
2419
2463
|
} & Struct;
|
2420
2464
|
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';
|
2421
2465
|
}
|
2422
|
-
/** @name PalletStakingPalletConfigOpU128 (
|
2466
|
+
/** @name PalletStakingPalletConfigOpU128 (289) */
|
2423
2467
|
interface PalletStakingPalletConfigOpU128 extends Enum {
|
2424
2468
|
readonly isNoop: boolean;
|
2425
2469
|
readonly isSet: boolean;
|
@@ -2427,7 +2471,7 @@ declare module '@polkadot/types/lookup' {
|
|
2427
2471
|
readonly isRemove: boolean;
|
2428
2472
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2429
2473
|
}
|
2430
|
-
/** @name PalletStakingPalletConfigOpU32 (
|
2474
|
+
/** @name PalletStakingPalletConfigOpU32 (290) */
|
2431
2475
|
interface PalletStakingPalletConfigOpU32 extends Enum {
|
2432
2476
|
readonly isNoop: boolean;
|
2433
2477
|
readonly isSet: boolean;
|
@@ -2435,7 +2479,7 @@ declare module '@polkadot/types/lookup' {
|
|
2435
2479
|
readonly isRemove: boolean;
|
2436
2480
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2437
2481
|
}
|
2438
|
-
/** @name PalletStakingPalletConfigOpPercent (
|
2482
|
+
/** @name PalletStakingPalletConfigOpPercent (291) */
|
2439
2483
|
interface PalletStakingPalletConfigOpPercent extends Enum {
|
2440
2484
|
readonly isNoop: boolean;
|
2441
2485
|
readonly isSet: boolean;
|
@@ -2443,7 +2487,7 @@ declare module '@polkadot/types/lookup' {
|
|
2443
2487
|
readonly isRemove: boolean;
|
2444
2488
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2445
2489
|
}
|
2446
|
-
/** @name PalletStakingPalletConfigOpPerbill (
|
2490
|
+
/** @name PalletStakingPalletConfigOpPerbill (292) */
|
2447
2491
|
interface PalletStakingPalletConfigOpPerbill extends Enum {
|
2448
2492
|
readonly isNoop: boolean;
|
2449
2493
|
readonly isSet: boolean;
|
@@ -2451,7 +2495,7 @@ declare module '@polkadot/types/lookup' {
|
|
2451
2495
|
readonly isRemove: boolean;
|
2452
2496
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2453
2497
|
}
|
2454
|
-
/** @name PalletSessionCall (
|
2498
|
+
/** @name PalletSessionCall (294) */
|
2455
2499
|
interface PalletSessionCall extends Enum {
|
2456
2500
|
readonly isSetKeys: boolean;
|
2457
2501
|
readonly asSetKeys: {
|
@@ -2461,20 +2505,20 @@ declare module '@polkadot/types/lookup' {
|
|
2461
2505
|
readonly isPurgeKeys: boolean;
|
2462
2506
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
2463
2507
|
}
|
2464
|
-
/** @name TangleTestnetRuntimeOpaqueSessionKeys (
|
2508
|
+
/** @name TangleTestnetRuntimeOpaqueSessionKeys (295) */
|
2465
2509
|
interface TangleTestnetRuntimeOpaqueSessionKeys extends Struct {
|
2466
2510
|
readonly babe: SpConsensusBabeAppPublic;
|
2467
2511
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
2468
2512
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
2469
2513
|
readonly role: TangleCryptoPrimitivesCryptoPublic;
|
2470
2514
|
}
|
2471
|
-
/** @name TangleCryptoPrimitivesCryptoPublic (
|
2515
|
+
/** @name TangleCryptoPrimitivesCryptoPublic (296) */
|
2472
2516
|
interface TangleCryptoPrimitivesCryptoPublic extends SpCoreEcdsaPublic {
|
2473
2517
|
}
|
2474
|
-
/** @name SpCoreEcdsaPublic (
|
2518
|
+
/** @name SpCoreEcdsaPublic (297) */
|
2475
2519
|
interface SpCoreEcdsaPublic extends U8aFixed {
|
2476
2520
|
}
|
2477
|
-
/** @name PalletTreasuryCall (
|
2521
|
+
/** @name PalletTreasuryCall (299) */
|
2478
2522
|
interface PalletTreasuryCall extends Enum {
|
2479
2523
|
readonly isProposeSpend: boolean;
|
2480
2524
|
readonly asProposeSpend: {
|
@@ -2519,7 +2563,7 @@ declare module '@polkadot/types/lookup' {
|
|
2519
2563
|
} & Struct;
|
2520
2564
|
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend';
|
2521
2565
|
}
|
2522
|
-
/** @name PalletBountiesCall (
|
2566
|
+
/** @name PalletBountiesCall (301) */
|
2523
2567
|
interface PalletBountiesCall extends Enum {
|
2524
2568
|
readonly isProposeBounty: boolean;
|
2525
2569
|
readonly asProposeBounty: {
|
@@ -2564,7 +2608,7 @@ declare module '@polkadot/types/lookup' {
|
|
2564
2608
|
} & Struct;
|
2565
2609
|
readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry';
|
2566
2610
|
}
|
2567
|
-
/** @name PalletChildBountiesCall (
|
2611
|
+
/** @name PalletChildBountiesCall (302) */
|
2568
2612
|
interface PalletChildBountiesCall extends Enum {
|
2569
2613
|
readonly isAddChildBounty: boolean;
|
2570
2614
|
readonly asAddChildBounty: {
|
@@ -2607,7 +2651,7 @@ declare module '@polkadot/types/lookup' {
|
|
2607
2651
|
} & Struct;
|
2608
2652
|
readonly type: 'AddChildBounty' | 'ProposeCurator' | 'AcceptCurator' | 'UnassignCurator' | 'AwardChildBounty' | 'ClaimChildBounty' | 'CloseChildBounty';
|
2609
2653
|
}
|
2610
|
-
/** @name PalletBagsListCall (
|
2654
|
+
/** @name PalletBagsListCall (303) */
|
2611
2655
|
interface PalletBagsListCall extends Enum {
|
2612
2656
|
readonly isRebag: boolean;
|
2613
2657
|
readonly asRebag: {
|
@@ -2624,7 +2668,7 @@ declare module '@polkadot/types/lookup' {
|
|
2624
2668
|
} & Struct;
|
2625
2669
|
readonly type: 'Rebag' | 'PutInFrontOf' | 'PutInFrontOfOther';
|
2626
2670
|
}
|
2627
|
-
/** @name PalletNominationPoolsCall (
|
2671
|
+
/** @name PalletNominationPoolsCall (304) */
|
2628
2672
|
interface PalletNominationPoolsCall extends Enum {
|
2629
2673
|
readonly isJoin: boolean;
|
2630
2674
|
readonly asJoin: {
|
@@ -2744,14 +2788,14 @@ declare module '@polkadot/types/lookup' {
|
|
2744
2788
|
} & Struct;
|
2745
2789
|
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';
|
2746
2790
|
}
|
2747
|
-
/** @name PalletNominationPoolsBondExtra (
|
2791
|
+
/** @name PalletNominationPoolsBondExtra (305) */
|
2748
2792
|
interface PalletNominationPoolsBondExtra extends Enum {
|
2749
2793
|
readonly isFreeBalance: boolean;
|
2750
2794
|
readonly asFreeBalance: u128;
|
2751
2795
|
readonly isRewards: boolean;
|
2752
2796
|
readonly type: 'FreeBalance' | 'Rewards';
|
2753
2797
|
}
|
2754
|
-
/** @name PalletNominationPoolsConfigOpU128 (
|
2798
|
+
/** @name PalletNominationPoolsConfigOpU128 (306) */
|
2755
2799
|
interface PalletNominationPoolsConfigOpU128 extends Enum {
|
2756
2800
|
readonly isNoop: boolean;
|
2757
2801
|
readonly isSet: boolean;
|
@@ -2759,7 +2803,7 @@ declare module '@polkadot/types/lookup' {
|
|
2759
2803
|
readonly isRemove: boolean;
|
2760
2804
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2761
2805
|
}
|
2762
|
-
/** @name PalletNominationPoolsConfigOpU32 (
|
2806
|
+
/** @name PalletNominationPoolsConfigOpU32 (307) */
|
2763
2807
|
interface PalletNominationPoolsConfigOpU32 extends Enum {
|
2764
2808
|
readonly isNoop: boolean;
|
2765
2809
|
readonly isSet: boolean;
|
@@ -2767,7 +2811,7 @@ declare module '@polkadot/types/lookup' {
|
|
2767
2811
|
readonly isRemove: boolean;
|
2768
2812
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2769
2813
|
}
|
2770
|
-
/** @name PalletNominationPoolsConfigOpPerbill (
|
2814
|
+
/** @name PalletNominationPoolsConfigOpPerbill (308) */
|
2771
2815
|
interface PalletNominationPoolsConfigOpPerbill extends Enum {
|
2772
2816
|
readonly isNoop: boolean;
|
2773
2817
|
readonly isSet: boolean;
|
@@ -2775,7 +2819,7 @@ declare module '@polkadot/types/lookup' {
|
|
2775
2819
|
readonly isRemove: boolean;
|
2776
2820
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2777
2821
|
}
|
2778
|
-
/** @name PalletNominationPoolsConfigOpAccountId32 (
|
2822
|
+
/** @name PalletNominationPoolsConfigOpAccountId32 (309) */
|
2779
2823
|
interface PalletNominationPoolsConfigOpAccountId32 extends Enum {
|
2780
2824
|
readonly isNoop: boolean;
|
2781
2825
|
readonly isSet: boolean;
|
@@ -2783,7 +2827,7 @@ declare module '@polkadot/types/lookup' {
|
|
2783
2827
|
readonly isRemove: boolean;
|
2784
2828
|
readonly type: 'Noop' | 'Set' | 'Remove';
|
2785
2829
|
}
|
2786
|
-
/** @name PalletNominationPoolsClaimPermission (
|
2830
|
+
/** @name PalletNominationPoolsClaimPermission (310) */
|
2787
2831
|
interface PalletNominationPoolsClaimPermission extends Enum {
|
2788
2832
|
readonly isPermissioned: boolean;
|
2789
2833
|
readonly isPermissionlessCompound: boolean;
|
@@ -2791,7 +2835,7 @@ declare module '@polkadot/types/lookup' {
|
|
2791
2835
|
readonly isPermissionlessAll: boolean;
|
2792
2836
|
readonly type: 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
2793
2837
|
}
|
2794
|
-
/** @name PalletSchedulerCall (
|
2838
|
+
/** @name PalletSchedulerCall (311) */
|
2795
2839
|
interface PalletSchedulerCall extends Enum {
|
2796
2840
|
readonly isSchedule: boolean;
|
2797
2841
|
readonly asSchedule: {
|
@@ -2834,7 +2878,7 @@ declare module '@polkadot/types/lookup' {
|
|
2834
2878
|
} & Struct;
|
2835
2879
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
2836
2880
|
}
|
2837
|
-
/** @name PalletPreimageCall (
|
2881
|
+
/** @name PalletPreimageCall (313) */
|
2838
2882
|
interface PalletPreimageCall extends Enum {
|
2839
2883
|
readonly isNotePreimage: boolean;
|
2840
2884
|
readonly asNotePreimage: {
|
@@ -2858,7 +2902,7 @@ declare module '@polkadot/types/lookup' {
|
|
2858
2902
|
} & Struct;
|
2859
2903
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated';
|
2860
2904
|
}
|
2861
|
-
/** @name PalletTxPauseCall (
|
2905
|
+
/** @name PalletTxPauseCall (314) */
|
2862
2906
|
interface PalletTxPauseCall extends Enum {
|
2863
2907
|
readonly isPause: boolean;
|
2864
2908
|
readonly asPause: {
|
@@ -2870,7 +2914,7 @@ declare module '@polkadot/types/lookup' {
|
|
2870
2914
|
} & Struct;
|
2871
2915
|
readonly type: 'Pause' | 'Unpause';
|
2872
2916
|
}
|
2873
|
-
/** @name PalletImOnlineCall (
|
2917
|
+
/** @name PalletImOnlineCall (315) */
|
2874
2918
|
interface PalletImOnlineCall extends Enum {
|
2875
2919
|
readonly isHeartbeat: boolean;
|
2876
2920
|
readonly asHeartbeat: {
|
@@ -2879,20 +2923,20 @@ declare module '@polkadot/types/lookup' {
|
|
2879
2923
|
} & Struct;
|
2880
2924
|
readonly type: 'Heartbeat';
|
2881
2925
|
}
|
2882
|
-
/** @name PalletImOnlineHeartbeat (
|
2926
|
+
/** @name PalletImOnlineHeartbeat (316) */
|
2883
2927
|
interface PalletImOnlineHeartbeat extends Struct {
|
2884
2928
|
readonly blockNumber: u64;
|
2885
2929
|
readonly sessionIndex: u32;
|
2886
2930
|
readonly authorityIndex: u32;
|
2887
2931
|
readonly validatorsLen: u32;
|
2888
2932
|
}
|
2889
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
2933
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (317) */
|
2890
2934
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
2891
2935
|
}
|
2892
|
-
/** @name SpCoreSr25519Signature (
|
2936
|
+
/** @name SpCoreSr25519Signature (318) */
|
2893
2937
|
interface SpCoreSr25519Signature extends U8aFixed {
|
2894
2938
|
}
|
2895
|
-
/** @name PalletIdentityCall (
|
2939
|
+
/** @name PalletIdentityCall (319) */
|
2896
2940
|
interface PalletIdentityCall extends Enum {
|
2897
2941
|
readonly isAddRegistrar: boolean;
|
2898
2942
|
readonly asAddRegistrar: {
|
@@ -2991,7 +3035,7 @@ declare module '@polkadot/types/lookup' {
|
|
2991
3035
|
} & Struct;
|
2992
3036
|
readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'AddUsernameAuthority' | 'RemoveUsernameAuthority' | 'SetUsernameFor' | 'AcceptUsername' | 'RemoveExpiredApproval' | 'SetPrimaryUsername' | 'RemoveDanglingUsername';
|
2993
3037
|
}
|
2994
|
-
/** @name PalletIdentityLegacyIdentityInfo (
|
3038
|
+
/** @name PalletIdentityLegacyIdentityInfo (320) */
|
2995
3039
|
interface PalletIdentityLegacyIdentityInfo extends Struct {
|
2996
3040
|
readonly additional: Vec<ITuple<[Data, Data]>>;
|
2997
3041
|
readonly display: Data;
|
@@ -3003,7 +3047,7 @@ declare module '@polkadot/types/lookup' {
|
|
3003
3047
|
readonly image: Data;
|
3004
3048
|
readonly twitter: Data;
|
3005
3049
|
}
|
3006
|
-
/** @name PalletIdentityJudgement (
|
3050
|
+
/** @name PalletIdentityJudgement (356) */
|
3007
3051
|
interface PalletIdentityJudgement extends Enum {
|
3008
3052
|
readonly isUnknown: boolean;
|
3009
3053
|
readonly isFeePaid: boolean;
|
@@ -3015,7 +3059,7 @@ declare module '@polkadot/types/lookup' {
|
|
3015
3059
|
readonly isErroneous: boolean;
|
3016
3060
|
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
|
3017
3061
|
}
|
3018
|
-
/** @name SpRuntimeMultiSignature (
|
3062
|
+
/** @name SpRuntimeMultiSignature (358) */
|
3019
3063
|
interface SpRuntimeMultiSignature extends Enum {
|
3020
3064
|
readonly isEd25519: boolean;
|
3021
3065
|
readonly asEd25519: SpCoreEd25519Signature;
|
@@ -3025,10 +3069,10 @@ declare module '@polkadot/types/lookup' {
|
|
3025
3069
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
3026
3070
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
3027
3071
|
}
|
3028
|
-
/** @name SpCoreEcdsaSignature (
|
3072
|
+
/** @name SpCoreEcdsaSignature (359) */
|
3029
3073
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
3030
3074
|
}
|
3031
|
-
/** @name PalletUtilityCall (
|
3075
|
+
/** @name PalletUtilityCall (361) */
|
3032
3076
|
interface PalletUtilityCall extends Enum {
|
3033
3077
|
readonly isBatch: boolean;
|
3034
3078
|
readonly asBatch: {
|
@@ -3059,7 +3103,7 @@ declare module '@polkadot/types/lookup' {
|
|
3059
3103
|
} & Struct;
|
3060
3104
|
readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight';
|
3061
3105
|
}
|
3062
|
-
/** @name TangleTestnetRuntimeOriginCaller (
|
3106
|
+
/** @name TangleTestnetRuntimeOriginCaller (363) */
|
3063
3107
|
interface TangleTestnetRuntimeOriginCaller extends Enum {
|
3064
3108
|
readonly isSystem: boolean;
|
3065
3109
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
@@ -3070,7 +3114,7 @@ declare module '@polkadot/types/lookup' {
|
|
3070
3114
|
readonly asEthereum: PalletEthereumRawOrigin;
|
3071
3115
|
readonly type: 'System' | 'Void' | 'Council' | 'Ethereum';
|
3072
3116
|
}
|
3073
|
-
/** @name FrameSupportDispatchRawOrigin (
|
3117
|
+
/** @name FrameSupportDispatchRawOrigin (364) */
|
3074
3118
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
3075
3119
|
readonly isRoot: boolean;
|
3076
3120
|
readonly isSigned: boolean;
|
@@ -3078,7 +3122,7 @@ declare module '@polkadot/types/lookup' {
|
|
3078
3122
|
readonly isNone: boolean;
|
3079
3123
|
readonly type: 'Root' | 'Signed' | 'None';
|
3080
3124
|
}
|
3081
|
-
/** @name PalletCollectiveRawOrigin (
|
3125
|
+
/** @name PalletCollectiveRawOrigin (365) */
|
3082
3126
|
interface PalletCollectiveRawOrigin extends Enum {
|
3083
3127
|
readonly isMembers: boolean;
|
3084
3128
|
readonly asMembers: ITuple<[u32, u32]>;
|
@@ -3087,13 +3131,13 @@ declare module '@polkadot/types/lookup' {
|
|
3087
3131
|
readonly isPhantom: boolean;
|
3088
3132
|
readonly type: 'Members' | 'Member' | 'Phantom';
|
3089
3133
|
}
|
3090
|
-
/** @name PalletEthereumRawOrigin (
|
3134
|
+
/** @name PalletEthereumRawOrigin (366) */
|
3091
3135
|
interface PalletEthereumRawOrigin extends Enum {
|
3092
3136
|
readonly isEthereumTransaction: boolean;
|
3093
3137
|
readonly asEthereumTransaction: H160;
|
3094
3138
|
readonly type: 'EthereumTransaction';
|
3095
3139
|
}
|
3096
|
-
/** @name PalletMultisigCall (
|
3140
|
+
/** @name PalletMultisigCall (367) */
|
3097
3141
|
interface PalletMultisigCall extends Enum {
|
3098
3142
|
readonly isAsMultiThreshold1: boolean;
|
3099
3143
|
readonly asAsMultiThreshold1: {
|
@@ -3125,7 +3169,7 @@ declare module '@polkadot/types/lookup' {
|
|
3125
3169
|
} & Struct;
|
3126
3170
|
readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti';
|
3127
3171
|
}
|
3128
|
-
/** @name PalletEthereumCall (
|
3172
|
+
/** @name PalletEthereumCall (369) */
|
3129
3173
|
interface PalletEthereumCall extends Enum {
|
3130
3174
|
readonly isTransact: boolean;
|
3131
3175
|
readonly asTransact: {
|
@@ -3133,7 +3177,7 @@ declare module '@polkadot/types/lookup' {
|
|
3133
3177
|
} & Struct;
|
3134
3178
|
readonly type: 'Transact';
|
3135
3179
|
}
|
3136
|
-
/** @name EthereumTransactionTransactionV2 (
|
3180
|
+
/** @name EthereumTransactionTransactionV2 (370) */
|
3137
3181
|
interface EthereumTransactionTransactionV2 extends Enum {
|
3138
3182
|
readonly isLegacy: boolean;
|
3139
3183
|
readonly asLegacy: EthereumTransactionLegacyTransaction;
|
@@ -3143,7 +3187,7 @@ declare module '@polkadot/types/lookup' {
|
|
3143
3187
|
readonly asEip1559: EthereumTransactionEip1559Transaction;
|
3144
3188
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
3145
3189
|
}
|
3146
|
-
/** @name EthereumTransactionLegacyTransaction (
|
3190
|
+
/** @name EthereumTransactionLegacyTransaction (371) */
|
3147
3191
|
interface EthereumTransactionLegacyTransaction extends Struct {
|
3148
3192
|
readonly nonce: U256;
|
3149
3193
|
readonly gasPrice: U256;
|
@@ -3153,20 +3197,20 @@ declare module '@polkadot/types/lookup' {
|
|
3153
3197
|
readonly input: Bytes;
|
3154
3198
|
readonly signature: EthereumTransactionTransactionSignature;
|
3155
3199
|
}
|
3156
|
-
/** @name EthereumTransactionTransactionAction (
|
3200
|
+
/** @name EthereumTransactionTransactionAction (372) */
|
3157
3201
|
interface EthereumTransactionTransactionAction extends Enum {
|
3158
3202
|
readonly isCall: boolean;
|
3159
3203
|
readonly asCall: H160;
|
3160
3204
|
readonly isCreate: boolean;
|
3161
3205
|
readonly type: 'Call' | 'Create';
|
3162
3206
|
}
|
3163
|
-
/** @name EthereumTransactionTransactionSignature (
|
3207
|
+
/** @name EthereumTransactionTransactionSignature (373) */
|
3164
3208
|
interface EthereumTransactionTransactionSignature extends Struct {
|
3165
3209
|
readonly v: u64;
|
3166
3210
|
readonly r: H256;
|
3167
3211
|
readonly s: H256;
|
3168
3212
|
}
|
3169
|
-
/** @name EthereumTransactionEip2930Transaction (
|
3213
|
+
/** @name EthereumTransactionEip2930Transaction (375) */
|
3170
3214
|
interface EthereumTransactionEip2930Transaction extends Struct {
|
3171
3215
|
readonly chainId: u64;
|
3172
3216
|
readonly nonce: U256;
|
@@ -3180,12 +3224,12 @@ declare module '@polkadot/types/lookup' {
|
|
3180
3224
|
readonly r: H256;
|
3181
3225
|
readonly s: H256;
|
3182
3226
|
}
|
3183
|
-
/** @name EthereumTransactionAccessListItem (
|
3227
|
+
/** @name EthereumTransactionAccessListItem (377) */
|
3184
3228
|
interface EthereumTransactionAccessListItem extends Struct {
|
3185
3229
|
readonly address: H160;
|
3186
3230
|
readonly storageKeys: Vec<H256>;
|
3187
3231
|
}
|
3188
|
-
/** @name EthereumTransactionEip1559Transaction (
|
3232
|
+
/** @name EthereumTransactionEip1559Transaction (378) */
|
3189
3233
|
interface EthereumTransactionEip1559Transaction extends Struct {
|
3190
3234
|
readonly chainId: u64;
|
3191
3235
|
readonly nonce: U256;
|
@@ -3200,7 +3244,7 @@ declare module '@polkadot/types/lookup' {
|
|
3200
3244
|
readonly r: H256;
|
3201
3245
|
readonly s: H256;
|
3202
3246
|
}
|
3203
|
-
/** @name PalletEvmCall (
|
3247
|
+
/** @name PalletEvmCall (379) */
|
3204
3248
|
interface PalletEvmCall extends Enum {
|
3205
3249
|
readonly isWithdraw: boolean;
|
3206
3250
|
readonly asWithdraw: {
|
@@ -3244,7 +3288,7 @@ declare module '@polkadot/types/lookup' {
|
|
3244
3288
|
} & Struct;
|
3245
3289
|
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
|
3246
3290
|
}
|
3247
|
-
/** @name PalletDynamicFeeCall (
|
3291
|
+
/** @name PalletDynamicFeeCall (383) */
|
3248
3292
|
interface PalletDynamicFeeCall extends Enum {
|
3249
3293
|
readonly isNoteMinGasPriceTarget: boolean;
|
3250
3294
|
readonly asNoteMinGasPriceTarget: {
|
@@ -3252,7 +3296,7 @@ declare module '@polkadot/types/lookup' {
|
|
3252
3296
|
} & Struct;
|
3253
3297
|
readonly type: 'NoteMinGasPriceTarget';
|
3254
3298
|
}
|
3255
|
-
/** @name PalletBaseFeeCall (
|
3299
|
+
/** @name PalletBaseFeeCall (384) */
|
3256
3300
|
interface PalletBaseFeeCall extends Enum {
|
3257
3301
|
readonly isSetBaseFeePerGas: boolean;
|
3258
3302
|
readonly asSetBaseFeePerGas: {
|
@@ -3264,7 +3308,7 @@ declare module '@polkadot/types/lookup' {
|
|
3264
3308
|
} & Struct;
|
3265
3309
|
readonly type: 'SetBaseFeePerGas' | 'SetElasticity';
|
3266
3310
|
}
|
3267
|
-
/** @name PalletHotfixSufficientsCall (
|
3311
|
+
/** @name PalletHotfixSufficientsCall (385) */
|
3268
3312
|
interface PalletHotfixSufficientsCall extends Enum {
|
3269
3313
|
readonly isHotfixIncAccountSufficients: boolean;
|
3270
3314
|
readonly asHotfixIncAccountSufficients: {
|
@@ -3272,7 +3316,7 @@ declare module '@polkadot/types/lookup' {
|
|
3272
3316
|
} & Struct;
|
3273
3317
|
readonly type: 'HotfixIncAccountSufficients';
|
3274
3318
|
}
|
3275
|
-
/** @name PalletAirdropClaimsCall (
|
3319
|
+
/** @name PalletAirdropClaimsCall (387) */
|
3276
3320
|
interface PalletAirdropClaimsCall extends Enum {
|
3277
3321
|
readonly isClaim: boolean;
|
3278
3322
|
readonly asClaim: {
|
@@ -3306,7 +3350,7 @@ declare module '@polkadot/types/lookup' {
|
|
3306
3350
|
} & Struct;
|
3307
3351
|
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'MoveClaim' | 'ForceSetExpiryConfig';
|
3308
3352
|
}
|
3309
|
-
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (
|
3353
|
+
/** @name PalletAirdropClaimsUtilsMultiAddressSignature (389) */
|
3310
3354
|
interface PalletAirdropClaimsUtilsMultiAddressSignature extends Enum {
|
3311
3355
|
readonly isEvm: boolean;
|
3312
3356
|
readonly asEvm: PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature;
|
@@ -3314,19 +3358,19 @@ declare module '@polkadot/types/lookup' {
|
|
3314
3358
|
readonly asNative: PalletAirdropClaimsUtilsSr25519Signature;
|
3315
3359
|
readonly type: 'Evm' | 'Native';
|
3316
3360
|
}
|
3317
|
-
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (
|
3361
|
+
/** @name PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature (390) */
|
3318
3362
|
interface PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature extends U8aFixed {
|
3319
3363
|
}
|
3320
|
-
/** @name PalletAirdropClaimsUtilsSr25519Signature (
|
3364
|
+
/** @name PalletAirdropClaimsUtilsSr25519Signature (391) */
|
3321
3365
|
interface PalletAirdropClaimsUtilsSr25519Signature extends SpCoreSr25519Signature {
|
3322
3366
|
}
|
3323
|
-
/** @name PalletAirdropClaimsStatementKind (
|
3367
|
+
/** @name PalletAirdropClaimsStatementKind (397) */
|
3324
3368
|
interface PalletAirdropClaimsStatementKind extends Enum {
|
3325
3369
|
readonly isRegular: boolean;
|
3326
3370
|
readonly isSafe: boolean;
|
3327
3371
|
readonly type: 'Regular' | 'Safe';
|
3328
3372
|
}
|
3329
|
-
/** @name PalletRolesCall (
|
3373
|
+
/** @name PalletRolesCall (398) */
|
3330
3374
|
interface PalletRolesCall extends Enum {
|
3331
3375
|
readonly isCreateProfile: boolean;
|
3332
3376
|
readonly asCreateProfile: {
|
@@ -3355,7 +3399,7 @@ declare module '@polkadot/types/lookup' {
|
|
3355
3399
|
} & Struct;
|
3356
3400
|
readonly type: 'CreateProfile' | 'UpdateProfile' | 'DeleteProfile' | 'Chill' | 'UnbondFunds' | 'WithdrawUnbonded' | 'PayoutStakers' | 'SetMinRestakingBond';
|
3357
3401
|
}
|
3358
|
-
/** @name PalletRolesProfile (
|
3402
|
+
/** @name PalletRolesProfile (399) */
|
3359
3403
|
interface PalletRolesProfile extends Enum {
|
3360
3404
|
readonly isIndependent: boolean;
|
3361
3405
|
readonly asIndependent: PalletRolesProfileIndependentRestakeProfile;
|
@@ -3363,21 +3407,21 @@ declare module '@polkadot/types/lookup' {
|
|
3363
3407
|
readonly asShared: PalletRolesProfileSharedRestakeProfile;
|
3364
3408
|
readonly type: 'Independent' | 'Shared';
|
3365
3409
|
}
|
3366
|
-
/** @name PalletRolesProfileIndependentRestakeProfile (
|
3410
|
+
/** @name PalletRolesProfileIndependentRestakeProfile (400) */
|
3367
3411
|
interface PalletRolesProfileIndependentRestakeProfile extends Struct {
|
3368
3412
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3369
3413
|
}
|
3370
|
-
/** @name PalletRolesProfileRecord (
|
3414
|
+
/** @name PalletRolesProfileRecord (402) */
|
3371
3415
|
interface PalletRolesProfileRecord extends Struct {
|
3372
3416
|
readonly role: TanglePrimitivesRolesRoleType;
|
3373
3417
|
readonly amount: Option<u128>;
|
3374
3418
|
}
|
3375
|
-
/** @name PalletRolesProfileSharedRestakeProfile (
|
3419
|
+
/** @name PalletRolesProfileSharedRestakeProfile (405) */
|
3376
3420
|
interface PalletRolesProfileSharedRestakeProfile extends Struct {
|
3377
3421
|
readonly records: Vec<PalletRolesProfileRecord>;
|
3378
3422
|
readonly amount: u128;
|
3379
3423
|
}
|
3380
|
-
/** @name PalletJobsModuleCall (
|
3424
|
+
/** @name PalletJobsModuleCall (406) */
|
3381
3425
|
interface PalletJobsModuleCall extends Enum {
|
3382
3426
|
readonly isSubmitJob: boolean;
|
3383
3427
|
readonly asSubmitJob: {
|
@@ -3420,7 +3464,7 @@ declare module '@polkadot/types/lookup' {
|
|
3420
3464
|
} & Struct;
|
3421
3465
|
readonly type: 'SubmitJob' | 'SubmitJobResult' | 'WithdrawRewards' | 'ReportInactiveValidator' | 'SetPermittedCaller' | 'SetTimeFee' | 'SubmitMisbehavior' | 'ExtendJobResultTtl';
|
3422
3466
|
}
|
3423
|
-
/** @name TanglePrimitivesJobsJobResult (
|
3467
|
+
/** @name TanglePrimitivesJobsJobResult (407) */
|
3424
3468
|
interface TanglePrimitivesJobsJobResult extends Enum {
|
3425
3469
|
readonly isDkgPhaseOne: boolean;
|
3426
3470
|
readonly asDkgPhaseOne: TanglePrimitivesJobsTssDkgtssKeySubmissionResult;
|
@@ -3436,23 +3480,24 @@ declare module '@polkadot/types/lookup' {
|
|
3436
3480
|
readonly asZkSaaSPhaseTwo: TanglePrimitivesJobsZksaasZkSaaSProofResult;
|
3437
3481
|
readonly type: 'DkgPhaseOne' | 'DkgPhaseTwo' | 'DkgPhaseThree' | 'DkgPhaseFour' | 'ZkSaaSPhaseOne' | 'ZkSaaSPhaseTwo';
|
3438
3482
|
}
|
3439
|
-
/** @name TangleTestnetRuntimeMaxKeyLen (
|
3483
|
+
/** @name TangleTestnetRuntimeMaxKeyLen (408) */
|
3440
3484
|
type TangleTestnetRuntimeMaxKeyLen = Null;
|
3441
|
-
/** @name TangleTestnetRuntimeMaxSignatureLen (
|
3485
|
+
/** @name TangleTestnetRuntimeMaxSignatureLen (409) */
|
3442
3486
|
type TangleTestnetRuntimeMaxSignatureLen = Null;
|
3443
|
-
/** @name TangleTestnetRuntimeMaxDataLen (
|
3487
|
+
/** @name TangleTestnetRuntimeMaxDataLen (410) */
|
3444
3488
|
type TangleTestnetRuntimeMaxDataLen = Null;
|
3445
|
-
/** @name TangleTestnetRuntimeMaxProofLen (
|
3489
|
+
/** @name TangleTestnetRuntimeMaxProofLen (411) */
|
3446
3490
|
type TangleTestnetRuntimeMaxProofLen = Null;
|
3447
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (
|
3491
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeySubmissionResult (412) */
|
3448
3492
|
interface TanglePrimitivesJobsTssDkgtssKeySubmissionResult extends Struct {
|
3449
3493
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3450
3494
|
readonly key: Bytes;
|
3495
|
+
readonly chainCode: Option<U8aFixed>;
|
3451
3496
|
readonly participants: Vec<Bytes>;
|
3452
3497
|
readonly signatures: Vec<Bytes>;
|
3453
3498
|
readonly threshold: u8;
|
3454
3499
|
}
|
3455
|
-
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (
|
3500
|
+
/** @name TanglePrimitivesJobsTssDigitalSignatureScheme (413) */
|
3456
3501
|
interface TanglePrimitivesJobsTssDigitalSignatureScheme extends Enum {
|
3457
3502
|
readonly isEcdsaSecp256k1: boolean;
|
3458
3503
|
readonly isEcdsaSecp256r1: boolean;
|
@@ -3468,19 +3513,20 @@ declare module '@polkadot/types/lookup' {
|
|
3468
3513
|
readonly isBls381: boolean;
|
3469
3514
|
readonly type: 'EcdsaSecp256k1' | 'EcdsaSecp256r1' | 'EcdsaStark' | 'SchnorrP256' | 'SchnorrP384' | 'SchnorrSecp256k1' | 'SchnorrSr25519' | 'SchnorrRistretto255' | 'SchnorrRedJubJub' | 'SchnorrEd25519' | 'SchnorrEd448' | 'Bls381';
|
3470
3515
|
}
|
3471
|
-
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (
|
3516
|
+
/** @name TanglePrimitivesJobsTssDkgtssSignatureResult (420) */
|
3472
3517
|
interface TanglePrimitivesJobsTssDkgtssSignatureResult extends Struct {
|
3473
3518
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3474
|
-
readonly derivationPath: Option<Bytes>;
|
3475
3519
|
readonly data: Bytes;
|
3476
3520
|
readonly signature: Bytes;
|
3477
3521
|
readonly verifyingKey: Bytes;
|
3522
|
+
readonly derivationPath: Option<Bytes>;
|
3523
|
+
readonly chainCode: Option<U8aFixed>;
|
3478
3524
|
}
|
3479
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (
|
3525
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRefreshResult (422) */
|
3480
3526
|
interface TanglePrimitivesJobsTssDkgtssKeyRefreshResult extends Struct {
|
3481
3527
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3482
3528
|
}
|
3483
|
-
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (
|
3529
|
+
/** @name TanglePrimitivesJobsTssDkgtssKeyRotationResult (423) */
|
3484
3530
|
interface TanglePrimitivesJobsTssDkgtssKeyRotationResult extends Struct {
|
3485
3531
|
readonly phaseOneId: u64;
|
3486
3532
|
readonly newPhaseOneId: u64;
|
@@ -3489,13 +3535,14 @@ declare module '@polkadot/types/lookup' {
|
|
3489
3535
|
readonly signature: Bytes;
|
3490
3536
|
readonly signatureScheme: TanglePrimitivesJobsTssDigitalSignatureScheme;
|
3491
3537
|
readonly derivationPath: Option<Bytes>;
|
3538
|
+
readonly chainCode: Option<U8aFixed>;
|
3492
3539
|
}
|
3493
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (
|
3540
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSCircuitResult (424) */
|
3494
3541
|
interface TanglePrimitivesJobsZksaasZkSaaSCircuitResult extends Struct {
|
3495
3542
|
readonly jobId: u64;
|
3496
3543
|
readonly participants: Vec<SpCoreEcdsaPublic>;
|
3497
3544
|
}
|
3498
|
-
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (
|
3545
|
+
/** @name TanglePrimitivesJobsZksaasZkSaaSProofResult (427) */
|
3499
3546
|
interface TanglePrimitivesJobsZksaasZkSaaSProofResult extends Enum {
|
3500
3547
|
readonly isArkworks: boolean;
|
3501
3548
|
readonly asArkworks: TanglePrimitivesJobsZksaasArkworksProofResult;
|
@@ -3503,15 +3550,15 @@ declare module '@polkadot/types/lookup' {
|
|
3503
3550
|
readonly asCircom: TanglePrimitivesJobsZksaasCircomProofResult;
|
3504
3551
|
readonly type: 'Arkworks' | 'Circom';
|
3505
3552
|
}
|
3506
|
-
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (
|
3553
|
+
/** @name TanglePrimitivesJobsZksaasArkworksProofResult (428) */
|
3507
3554
|
interface TanglePrimitivesJobsZksaasArkworksProofResult extends Struct {
|
3508
3555
|
readonly proof: Bytes;
|
3509
3556
|
}
|
3510
|
-
/** @name TanglePrimitivesJobsZksaasCircomProofResult (
|
3557
|
+
/** @name TanglePrimitivesJobsZksaasCircomProofResult (430) */
|
3511
3558
|
interface TanglePrimitivesJobsZksaasCircomProofResult extends Struct {
|
3512
3559
|
readonly proof: Bytes;
|
3513
3560
|
}
|
3514
|
-
/** @name TanglePrimitivesJobsValidatorOffenceType (
|
3561
|
+
/** @name TanglePrimitivesJobsValidatorOffenceType (431) */
|
3515
3562
|
interface TanglePrimitivesJobsValidatorOffenceType extends Enum {
|
3516
3563
|
readonly isInactivity: boolean;
|
3517
3564
|
readonly isInvalidSignatureSubmitted: boolean;
|
@@ -3519,21 +3566,21 @@ declare module '@polkadot/types/lookup' {
|
|
3519
3566
|
readonly isApprovedInvalidAction: boolean;
|
3520
3567
|
readonly type: 'Inactivity' | 'InvalidSignatureSubmitted' | 'RejectedValidAction' | 'ApprovedInvalidAction';
|
3521
3568
|
}
|
3522
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (
|
3569
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorSubmission (432) */
|
3523
3570
|
interface TanglePrimitivesMisbehaviorMisbehaviorSubmission extends Struct {
|
3524
3571
|
readonly roleType: TanglePrimitivesRolesRoleType;
|
3525
3572
|
readonly offender: U8aFixed;
|
3526
3573
|
readonly jobId: u64;
|
3527
3574
|
readonly justification: TanglePrimitivesMisbehaviorMisbehaviorJustification;
|
3528
3575
|
}
|
3529
|
-
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (
|
3576
|
+
/** @name TanglePrimitivesMisbehaviorMisbehaviorJustification (433) */
|
3530
3577
|
interface TanglePrimitivesMisbehaviorMisbehaviorJustification extends Enum {
|
3531
3578
|
readonly isDkgtss: boolean;
|
3532
3579
|
readonly asDkgtss: TanglePrimitivesMisbehaviorDkgtssJustification;
|
3533
3580
|
readonly isZkSaaS: boolean;
|
3534
3581
|
readonly type: 'Dkgtss' | 'ZkSaaS';
|
3535
3582
|
}
|
3536
|
-
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (
|
3583
|
+
/** @name TanglePrimitivesMisbehaviorDkgtssJustification (434) */
|
3537
3584
|
interface TanglePrimitivesMisbehaviorDkgtssJustification extends Enum {
|
3538
3585
|
readonly isDfnsCGGMP21: boolean;
|
3539
3586
|
readonly asDfnsCGGMP21: TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification;
|
@@ -3541,7 +3588,7 @@ declare module '@polkadot/types/lookup' {
|
|
3541
3588
|
readonly asZCashFrost: TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification;
|
3542
3589
|
readonly type: 'DfnsCGGMP21' | 'ZCashFrost';
|
3543
3590
|
}
|
3544
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (
|
3591
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification (435) */
|
3545
3592
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21DfnsCGGMP21Justification extends Enum {
|
3546
3593
|
readonly isKeygen: boolean;
|
3547
3594
|
readonly asKeygen: {
|
@@ -3563,7 +3610,7 @@ declare module '@polkadot/types/lookup' {
|
|
3563
3610
|
} & Struct;
|
3564
3611
|
readonly type: 'Keygen' | 'KeyRefresh' | 'Signing';
|
3565
3612
|
}
|
3566
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (
|
3613
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted (437) */
|
3567
3614
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeygenAborted extends Enum {
|
3568
3615
|
readonly isInvalidDecommitment: boolean;
|
3569
3616
|
readonly asInvalidDecommitment: {
|
@@ -3586,13 +3633,13 @@ declare module '@polkadot/types/lookup' {
|
|
3586
3633
|
} & Struct;
|
3587
3634
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'FeldmanVerificationFailed' | 'InvalidDataSize';
|
3588
3635
|
}
|
3589
|
-
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (
|
3636
|
+
/** @name TanglePrimitivesMisbehaviorSignedRoundMessage (438) */
|
3590
3637
|
interface TanglePrimitivesMisbehaviorSignedRoundMessage extends Struct {
|
3591
3638
|
readonly sender: u16;
|
3592
3639
|
readonly message: Bytes;
|
3593
3640
|
readonly signature: Bytes;
|
3594
3641
|
}
|
3595
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (
|
3642
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted (440) */
|
3596
3643
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21KeyRefreshAborted extends Enum {
|
3597
3644
|
readonly isInvalidDecommitment: boolean;
|
3598
3645
|
readonly asInvalidDecommitment: {
|
@@ -3617,7 +3664,7 @@ declare module '@polkadot/types/lookup' {
|
|
3617
3664
|
readonly isPaillierDec: boolean;
|
3618
3665
|
readonly type: 'InvalidDecommitment' | 'InvalidSchnorrProof' | 'InvalidModProof' | 'InvalidFacProof' | 'InvalidRingPedersenParameters' | 'InvalidX' | 'InvalidXShare' | 'InvalidDataSize' | 'PaillierDec';
|
3619
3666
|
}
|
3620
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (
|
3667
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason (441) */
|
3621
3668
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21InvalidProofReason extends Enum {
|
3622
3669
|
readonly isEqualityCheck: boolean;
|
3623
3670
|
readonly asEqualityCheck: u8;
|
@@ -3635,7 +3682,7 @@ declare module '@polkadot/types/lookup' {
|
|
3635
3682
|
readonly asIncorrectFourthRoot: u8;
|
3636
3683
|
readonly type: 'EqualityCheck' | 'RangeCheck' | 'Encryption' | 'PaillierEnc' | 'PaillierOp' | 'ModPow' | 'ModulusIsPrime' | 'ModulusIsEven' | 'IncorrectNthRoot' | 'IncorrectFourthRoot';
|
3637
3684
|
}
|
3638
|
-
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (
|
3685
|
+
/** @name TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted (442) */
|
3639
3686
|
interface TanglePrimitivesMisbehaviorDfnsCggmp21SigningAborted extends Enum {
|
3640
3687
|
readonly isEncProofOfK: boolean;
|
3641
3688
|
readonly isInvalidPsi: boolean;
|
@@ -3643,7 +3690,7 @@ declare module '@polkadot/types/lookup' {
|
|
3643
3690
|
readonly isMismatchedDelta: boolean;
|
3644
3691
|
readonly type: 'EncProofOfK' | 'InvalidPsi' | 'InvalidPsiPrimePrime' | 'MismatchedDelta';
|
3645
3692
|
}
|
3646
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (
|
3693
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification (443) */
|
3647
3694
|
interface TanglePrimitivesMisbehaviorZcashFrostZCashFrostJustification extends Enum {
|
3648
3695
|
readonly isKeygen: boolean;
|
3649
3696
|
readonly asKeygen: {
|
@@ -3659,7 +3706,7 @@ declare module '@polkadot/types/lookup' {
|
|
3659
3706
|
} & Struct;
|
3660
3707
|
readonly type: 'Keygen' | 'Signing';
|
3661
3708
|
}
|
3662
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (
|
3709
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostKeygenAborted (444) */
|
3663
3710
|
interface TanglePrimitivesMisbehaviorZcashFrostKeygenAborted extends Enum {
|
3664
3711
|
readonly isInvalidProofOfKnowledge: boolean;
|
3665
3712
|
readonly asInvalidProofOfKnowledge: {
|
@@ -3672,7 +3719,7 @@ declare module '@polkadot/types/lookup' {
|
|
3672
3719
|
} & Struct;
|
3673
3720
|
readonly type: 'InvalidProofOfKnowledge' | 'InvalidSecretShare';
|
3674
3721
|
}
|
3675
|
-
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (
|
3722
|
+
/** @name TanglePrimitivesMisbehaviorZcashFrostSigningAborted (445) */
|
3676
3723
|
interface TanglePrimitivesMisbehaviorZcashFrostSigningAborted extends Enum {
|
3677
3724
|
readonly isInvalidSignatureShare: boolean;
|
3678
3725
|
readonly asInvalidSignatureShare: {
|
@@ -3681,9 +3728,9 @@ declare module '@polkadot/types/lookup' {
|
|
3681
3728
|
} & Struct;
|
3682
3729
|
readonly type: 'InvalidSignatureShare';
|
3683
3730
|
}
|
3684
|
-
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (
|
3731
|
+
/** @name TanglePrimitivesMisbehaviorZkSaaSJustification (446) */
|
3685
3732
|
type TanglePrimitivesMisbehaviorZkSaaSJustification = Null;
|
3686
|
-
/** @name PalletDkgCall (
|
3733
|
+
/** @name PalletDkgCall (447) */
|
3687
3734
|
interface PalletDkgCall extends Enum {
|
3688
3735
|
readonly isSetFee: boolean;
|
3689
3736
|
readonly asSetFee: {
|
@@ -3691,7 +3738,7 @@ declare module '@polkadot/types/lookup' {
|
|
3691
3738
|
} & Struct;
|
3692
3739
|
readonly type: 'SetFee';
|
3693
3740
|
}
|
3694
|
-
/** @name PalletZksaasCall (
|
3741
|
+
/** @name PalletZksaasCall (448) */
|
3695
3742
|
interface PalletZksaasCall extends Enum {
|
3696
3743
|
readonly isSetFee: boolean;
|
3697
3744
|
readonly asSetFee: {
|
@@ -3699,62 +3746,121 @@ declare module '@polkadot/types/lookup' {
|
|
3699
3746
|
} & Struct;
|
3700
3747
|
readonly type: 'SetFee';
|
3701
3748
|
}
|
3702
|
-
/** @name
|
3749
|
+
/** @name PalletProxyCall (449) */
|
3750
|
+
interface PalletProxyCall extends Enum {
|
3751
|
+
readonly isProxy: boolean;
|
3752
|
+
readonly asProxy: {
|
3753
|
+
readonly real: MultiAddress;
|
3754
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
3755
|
+
readonly call: Call;
|
3756
|
+
} & Struct;
|
3757
|
+
readonly isAddProxy: boolean;
|
3758
|
+
readonly asAddProxy: {
|
3759
|
+
readonly delegate: MultiAddress;
|
3760
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
3761
|
+
readonly delay: u64;
|
3762
|
+
} & Struct;
|
3763
|
+
readonly isRemoveProxy: boolean;
|
3764
|
+
readonly asRemoveProxy: {
|
3765
|
+
readonly delegate: MultiAddress;
|
3766
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
3767
|
+
readonly delay: u64;
|
3768
|
+
} & Struct;
|
3769
|
+
readonly isRemoveProxies: boolean;
|
3770
|
+
readonly isCreatePure: boolean;
|
3771
|
+
readonly asCreatePure: {
|
3772
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
3773
|
+
readonly delay: u64;
|
3774
|
+
readonly index: u16;
|
3775
|
+
} & Struct;
|
3776
|
+
readonly isKillPure: boolean;
|
3777
|
+
readonly asKillPure: {
|
3778
|
+
readonly spawner: MultiAddress;
|
3779
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
3780
|
+
readonly index: u16;
|
3781
|
+
readonly height: Compact<u64>;
|
3782
|
+
readonly extIndex: Compact<u32>;
|
3783
|
+
} & Struct;
|
3784
|
+
readonly isAnnounce: boolean;
|
3785
|
+
readonly asAnnounce: {
|
3786
|
+
readonly real: MultiAddress;
|
3787
|
+
readonly callHash: H256;
|
3788
|
+
} & Struct;
|
3789
|
+
readonly isRemoveAnnouncement: boolean;
|
3790
|
+
readonly asRemoveAnnouncement: {
|
3791
|
+
readonly real: MultiAddress;
|
3792
|
+
readonly callHash: H256;
|
3793
|
+
} & Struct;
|
3794
|
+
readonly isRejectAnnouncement: boolean;
|
3795
|
+
readonly asRejectAnnouncement: {
|
3796
|
+
readonly delegate: MultiAddress;
|
3797
|
+
readonly callHash: H256;
|
3798
|
+
} & Struct;
|
3799
|
+
readonly isProxyAnnounced: boolean;
|
3800
|
+
readonly asProxyAnnounced: {
|
3801
|
+
readonly delegate: MultiAddress;
|
3802
|
+
readonly real: MultiAddress;
|
3803
|
+
readonly forceProxyType: Option<TangleTestnetRuntimeProxyType>;
|
3804
|
+
readonly call: Call;
|
3805
|
+
} & Struct;
|
3806
|
+
readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced';
|
3807
|
+
}
|
3808
|
+
/** @name PalletSudoError (451) */
|
3703
3809
|
interface PalletSudoError extends Enum {
|
3704
3810
|
readonly isRequireSudo: boolean;
|
3705
3811
|
readonly type: 'RequireSudo';
|
3706
3812
|
}
|
3707
|
-
/** @name PalletBalancesBalanceLock (
|
3813
|
+
/** @name PalletBalancesBalanceLock (454) */
|
3708
3814
|
interface PalletBalancesBalanceLock extends Struct {
|
3709
3815
|
readonly id: U8aFixed;
|
3710
3816
|
readonly amount: u128;
|
3711
3817
|
readonly reasons: PalletBalancesReasons;
|
3712
3818
|
}
|
3713
|
-
/** @name PalletBalancesReasons (
|
3819
|
+
/** @name PalletBalancesReasons (455) */
|
3714
3820
|
interface PalletBalancesReasons extends Enum {
|
3715
3821
|
readonly isFee: boolean;
|
3716
3822
|
readonly isMisc: boolean;
|
3717
3823
|
readonly isAll: boolean;
|
3718
3824
|
readonly type: 'Fee' | 'Misc' | 'All';
|
3719
3825
|
}
|
3720
|
-
/** @name PalletBalancesReserveData (
|
3826
|
+
/** @name PalletBalancesReserveData (458) */
|
3721
3827
|
interface PalletBalancesReserveData extends Struct {
|
3722
3828
|
readonly id: U8aFixed;
|
3723
3829
|
readonly amount: u128;
|
3724
3830
|
}
|
3725
|
-
/** @name PalletBalancesIdAmountRuntimeHoldReason (
|
3831
|
+
/** @name PalletBalancesIdAmountRuntimeHoldReason (461) */
|
3726
3832
|
interface PalletBalancesIdAmountRuntimeHoldReason extends Struct {
|
3727
3833
|
readonly id: TangleTestnetRuntimeRuntimeHoldReason;
|
3728
3834
|
readonly amount: u128;
|
3729
3835
|
}
|
3730
|
-
/** @name TangleTestnetRuntimeRuntimeHoldReason (
|
3836
|
+
/** @name TangleTestnetRuntimeRuntimeHoldReason (462) */
|
3731
3837
|
interface TangleTestnetRuntimeRuntimeHoldReason extends Enum {
|
3732
3838
|
readonly isPreimage: boolean;
|
3733
3839
|
readonly asPreimage: PalletPreimageHoldReason;
|
3734
3840
|
readonly type: 'Preimage';
|
3735
3841
|
}
|
3736
|
-
/** @name PalletPreimageHoldReason (
|
3842
|
+
/** @name PalletPreimageHoldReason (463) */
|
3737
3843
|
interface PalletPreimageHoldReason extends Enum {
|
3738
3844
|
readonly isPreimage: boolean;
|
3739
3845
|
readonly type: 'Preimage';
|
3740
3846
|
}
|
3741
|
-
/** @name PalletBalancesIdAmountRuntimeFreezeReason (
|
3847
|
+
/** @name PalletBalancesIdAmountRuntimeFreezeReason (466) */
|
3742
3848
|
interface PalletBalancesIdAmountRuntimeFreezeReason extends Struct {
|
3743
3849
|
readonly id: TangleTestnetRuntimeRuntimeFreezeReason;
|
3744
3850
|
readonly amount: u128;
|
3745
3851
|
}
|
3746
|
-
/** @name TangleTestnetRuntimeRuntimeFreezeReason (
|
3852
|
+
/** @name TangleTestnetRuntimeRuntimeFreezeReason (467) */
|
3747
3853
|
interface TangleTestnetRuntimeRuntimeFreezeReason extends Enum {
|
3748
3854
|
readonly isNominationPools: boolean;
|
3749
3855
|
readonly asNominationPools: PalletNominationPoolsFreezeReason;
|
3750
3856
|
readonly type: 'NominationPools';
|
3751
3857
|
}
|
3752
|
-
/** @name PalletNominationPoolsFreezeReason (
|
3858
|
+
/** @name PalletNominationPoolsFreezeReason (468) */
|
3753
3859
|
interface PalletNominationPoolsFreezeReason extends Enum {
|
3754
3860
|
readonly isPoolMinBalance: boolean;
|
3755
3861
|
readonly type: 'PoolMinBalance';
|
3756
3862
|
}
|
3757
|
-
/** @name PalletBalancesError (
|
3863
|
+
/** @name PalletBalancesError (470) */
|
3758
3864
|
interface PalletBalancesError extends Enum {
|
3759
3865
|
readonly isVestingBalance: boolean;
|
3760
3866
|
readonly isLiquidityRestrictions: boolean;
|
@@ -3770,13 +3876,13 @@ declare module '@polkadot/types/lookup' {
|
|
3770
3876
|
readonly isDeltaZero: boolean;
|
3771
3877
|
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
|
3772
3878
|
}
|
3773
|
-
/** @name PalletTransactionPaymentReleases (
|
3879
|
+
/** @name PalletTransactionPaymentReleases (472) */
|
3774
3880
|
interface PalletTransactionPaymentReleases extends Enum {
|
3775
3881
|
readonly isV1Ancient: boolean;
|
3776
3882
|
readonly isV2: boolean;
|
3777
3883
|
readonly type: 'V1Ancient' | 'V2';
|
3778
3884
|
}
|
3779
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
3885
|
+
/** @name SpConsensusBabeDigestsPreDigest (479) */
|
3780
3886
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
3781
3887
|
readonly isPrimary: boolean;
|
3782
3888
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
@@ -3786,34 +3892,34 @@ declare module '@polkadot/types/lookup' {
|
|
3786
3892
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
3787
3893
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
3788
3894
|
}
|
3789
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
3895
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (480) */
|
3790
3896
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
3791
3897
|
readonly authorityIndex: u32;
|
3792
3898
|
readonly slot: u64;
|
3793
3899
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
3794
3900
|
}
|
3795
|
-
/** @name SpCoreSr25519VrfVrfSignature (
|
3901
|
+
/** @name SpCoreSr25519VrfVrfSignature (481) */
|
3796
3902
|
interface SpCoreSr25519VrfVrfSignature extends Struct {
|
3797
3903
|
readonly preOutput: U8aFixed;
|
3798
3904
|
readonly proof: U8aFixed;
|
3799
3905
|
}
|
3800
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
3906
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (482) */
|
3801
3907
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
3802
3908
|
readonly authorityIndex: u32;
|
3803
3909
|
readonly slot: u64;
|
3804
3910
|
}
|
3805
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
3911
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (483) */
|
3806
3912
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
3807
3913
|
readonly authorityIndex: u32;
|
3808
3914
|
readonly slot: u64;
|
3809
3915
|
readonly vrfSignature: SpCoreSr25519VrfVrfSignature;
|
3810
3916
|
}
|
3811
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
3917
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (484) */
|
3812
3918
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
3813
3919
|
readonly c: ITuple<[u64, u64]>;
|
3814
3920
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
3815
3921
|
}
|
3816
|
-
/** @name PalletBabeError (
|
3922
|
+
/** @name PalletBabeError (486) */
|
3817
3923
|
interface PalletBabeError extends Enum {
|
3818
3924
|
readonly isInvalidEquivocationProof: boolean;
|
3819
3925
|
readonly isInvalidKeyOwnershipProof: boolean;
|
@@ -3821,7 +3927,7 @@ declare module '@polkadot/types/lookup' {
|
|
3821
3927
|
readonly isInvalidConfiguration: boolean;
|
3822
3928
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
3823
3929
|
}
|
3824
|
-
/** @name PalletGrandpaStoredState (
|
3930
|
+
/** @name PalletGrandpaStoredState (487) */
|
3825
3931
|
interface PalletGrandpaStoredState extends Enum {
|
3826
3932
|
readonly isLive: boolean;
|
3827
3933
|
readonly isPendingPause: boolean;
|
@@ -3837,14 +3943,14 @@ declare module '@polkadot/types/lookup' {
|
|
3837
3943
|
} & Struct;
|
3838
3944
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
3839
3945
|
}
|
3840
|
-
/** @name PalletGrandpaStoredPendingChange (
|
3946
|
+
/** @name PalletGrandpaStoredPendingChange (488) */
|
3841
3947
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
3842
3948
|
readonly scheduledAt: u64;
|
3843
3949
|
readonly delay: u64;
|
3844
3950
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
3845
3951
|
readonly forced: Option<u64>;
|
3846
3952
|
}
|
3847
|
-
/** @name PalletGrandpaError (
|
3953
|
+
/** @name PalletGrandpaError (490) */
|
3848
3954
|
interface PalletGrandpaError extends Enum {
|
3849
3955
|
readonly isPauseFailed: boolean;
|
3850
3956
|
readonly isResumeFailed: boolean;
|
@@ -3855,7 +3961,7 @@ declare module '@polkadot/types/lookup' {
|
|
3855
3961
|
readonly isDuplicateOffenceReport: boolean;
|
3856
3962
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
3857
3963
|
}
|
3858
|
-
/** @name PalletIndicesError (
|
3964
|
+
/** @name PalletIndicesError (492) */
|
3859
3965
|
interface PalletIndicesError extends Enum {
|
3860
3966
|
readonly isNotAssigned: boolean;
|
3861
3967
|
readonly isNotOwner: boolean;
|
@@ -3864,7 +3970,7 @@ declare module '@polkadot/types/lookup' {
|
|
3864
3970
|
readonly isPermanent: boolean;
|
3865
3971
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
3866
3972
|
}
|
3867
|
-
/** @name PalletDemocracyReferendumInfo (
|
3973
|
+
/** @name PalletDemocracyReferendumInfo (497) */
|
3868
3974
|
interface PalletDemocracyReferendumInfo extends Enum {
|
3869
3975
|
readonly isOngoing: boolean;
|
3870
3976
|
readonly asOngoing: PalletDemocracyReferendumStatus;
|
@@ -3875,7 +3981,7 @@ declare module '@polkadot/types/lookup' {
|
|
3875
3981
|
} & Struct;
|
3876
3982
|
readonly type: 'Ongoing' | 'Finished';
|
3877
3983
|
}
|
3878
|
-
/** @name PalletDemocracyReferendumStatus (
|
3984
|
+
/** @name PalletDemocracyReferendumStatus (498) */
|
3879
3985
|
interface PalletDemocracyReferendumStatus extends Struct {
|
3880
3986
|
readonly end: u64;
|
3881
3987
|
readonly proposal: FrameSupportPreimagesBounded;
|
@@ -3883,13 +3989,13 @@ declare module '@polkadot/types/lookup' {
|
|
3883
3989
|
readonly delay: u64;
|
3884
3990
|
readonly tally: PalletDemocracyTally;
|
3885
3991
|
}
|
3886
|
-
/** @name PalletDemocracyTally (
|
3992
|
+
/** @name PalletDemocracyTally (499) */
|
3887
3993
|
interface PalletDemocracyTally extends Struct {
|
3888
3994
|
readonly ayes: u128;
|
3889
3995
|
readonly nays: u128;
|
3890
3996
|
readonly turnout: u128;
|
3891
3997
|
}
|
3892
|
-
/** @name PalletDemocracyVoteVoting (
|
3998
|
+
/** @name PalletDemocracyVoteVoting (500) */
|
3893
3999
|
interface PalletDemocracyVoteVoting extends Enum {
|
3894
4000
|
readonly isDirect: boolean;
|
3895
4001
|
readonly asDirect: {
|
@@ -3907,15 +4013,15 @@ declare module '@polkadot/types/lookup' {
|
|
3907
4013
|
} & Struct;
|
3908
4014
|
readonly type: 'Direct' | 'Delegating';
|
3909
4015
|
}
|
3910
|
-
/** @name PalletDemocracyDelegations (
|
4016
|
+
/** @name PalletDemocracyDelegations (504) */
|
3911
4017
|
interface PalletDemocracyDelegations extends Struct {
|
3912
4018
|
readonly votes: u128;
|
3913
4019
|
readonly capital: u128;
|
3914
4020
|
}
|
3915
|
-
/** @name PalletDemocracyVotePriorLock (
|
4021
|
+
/** @name PalletDemocracyVotePriorLock (505) */
|
3916
4022
|
interface PalletDemocracyVotePriorLock extends ITuple<[u64, u128]> {
|
3917
4023
|
}
|
3918
|
-
/** @name PalletDemocracyError (
|
4024
|
+
/** @name PalletDemocracyError (508) */
|
3919
4025
|
interface PalletDemocracyError extends Enum {
|
3920
4026
|
readonly isValueLow: boolean;
|
3921
4027
|
readonly isProposalMissing: boolean;
|
@@ -3943,7 +4049,7 @@ declare module '@polkadot/types/lookup' {
|
|
3943
4049
|
readonly isPreimageNotExist: boolean;
|
3944
4050
|
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';
|
3945
4051
|
}
|
3946
|
-
/** @name PalletCollectiveVotes (
|
4052
|
+
/** @name PalletCollectiveVotes (510) */
|
3947
4053
|
interface PalletCollectiveVotes extends Struct {
|
3948
4054
|
readonly index: u32;
|
3949
4055
|
readonly threshold: u32;
|
@@ -3951,7 +4057,7 @@ declare module '@polkadot/types/lookup' {
|
|
3951
4057
|
readonly nays: Vec<AccountId32>;
|
3952
4058
|
readonly end: u64;
|
3953
4059
|
}
|
3954
|
-
/** @name PalletCollectiveError (
|
4060
|
+
/** @name PalletCollectiveError (511) */
|
3955
4061
|
interface PalletCollectiveError extends Enum {
|
3956
4062
|
readonly isNotMember: boolean;
|
3957
4063
|
readonly isDuplicateProposal: boolean;
|
@@ -3966,13 +4072,13 @@ declare module '@polkadot/types/lookup' {
|
|
3966
4072
|
readonly isPrimeAccountNotMember: boolean;
|
3967
4073
|
readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember';
|
3968
4074
|
}
|
3969
|
-
/** @name PalletVestingReleases (
|
4075
|
+
/** @name PalletVestingReleases (514) */
|
3970
4076
|
interface PalletVestingReleases extends Enum {
|
3971
4077
|
readonly isV0: boolean;
|
3972
4078
|
readonly isV1: boolean;
|
3973
4079
|
readonly type: 'V0' | 'V1';
|
3974
4080
|
}
|
3975
|
-
/** @name PalletVestingError (
|
4081
|
+
/** @name PalletVestingError (515) */
|
3976
4082
|
interface PalletVestingError extends Enum {
|
3977
4083
|
readonly isNotVesting: boolean;
|
3978
4084
|
readonly isAtMaxVestingSchedules: boolean;
|
@@ -3981,19 +4087,19 @@ declare module '@polkadot/types/lookup' {
|
|
3981
4087
|
readonly isInvalidScheduleParams: boolean;
|
3982
4088
|
readonly type: 'NotVesting' | 'AtMaxVestingSchedules' | 'AmountLow' | 'ScheduleIndexOutOfBounds' | 'InvalidScheduleParams';
|
3983
4089
|
}
|
3984
|
-
/** @name PalletElectionsPhragmenSeatHolder (
|
4090
|
+
/** @name PalletElectionsPhragmenSeatHolder (517) */
|
3985
4091
|
interface PalletElectionsPhragmenSeatHolder extends Struct {
|
3986
4092
|
readonly who: AccountId32;
|
3987
4093
|
readonly stake: u128;
|
3988
4094
|
readonly deposit: u128;
|
3989
4095
|
}
|
3990
|
-
/** @name PalletElectionsPhragmenVoter (
|
4096
|
+
/** @name PalletElectionsPhragmenVoter (518) */
|
3991
4097
|
interface PalletElectionsPhragmenVoter extends Struct {
|
3992
4098
|
readonly votes: Vec<AccountId32>;
|
3993
4099
|
readonly stake: u128;
|
3994
4100
|
readonly deposit: u128;
|
3995
4101
|
}
|
3996
|
-
/** @name PalletElectionsPhragmenError (
|
4102
|
+
/** @name PalletElectionsPhragmenError (519) */
|
3997
4103
|
interface PalletElectionsPhragmenError extends Enum {
|
3998
4104
|
readonly isUnableToVote: boolean;
|
3999
4105
|
readonly isNoVotes: boolean;
|
@@ -4014,25 +4120,25 @@ declare module '@polkadot/types/lookup' {
|
|
4014
4120
|
readonly isInvalidReplacement: boolean;
|
4015
4121
|
readonly type: 'UnableToVote' | 'NoVotes' | 'TooManyVotes' | 'MaximumVotesExceeded' | 'LowBalance' | 'UnableToPayBond' | 'MustBeVoter' | 'DuplicatedCandidate' | 'TooManyCandidates' | 'MemberSubmit' | 'RunnerUpSubmit' | 'InsufficientCandidateFunds' | 'NotMember' | 'InvalidWitnessData' | 'InvalidVoteCount' | 'InvalidRenouncing' | 'InvalidReplacement';
|
4016
4122
|
}
|
4017
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
4123
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (520) */
|
4018
4124
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
4019
4125
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
4020
4126
|
readonly score: SpNposElectionsElectionScore;
|
4021
4127
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
4022
4128
|
}
|
4023
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
4129
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (522) */
|
4024
4130
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
4025
4131
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
4026
4132
|
readonly targets: Vec<AccountId32>;
|
4027
4133
|
}
|
4028
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
4134
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (529) */
|
4029
4135
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
4030
4136
|
readonly who: AccountId32;
|
4031
4137
|
readonly deposit: u128;
|
4032
4138
|
readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
|
4033
4139
|
readonly callFee: u128;
|
4034
4140
|
}
|
4035
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
4141
|
+
/** @name PalletElectionProviderMultiPhaseError (530) */
|
4036
4142
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
4037
4143
|
readonly isPreDispatchEarlySubmission: boolean;
|
4038
4144
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
@@ -4051,7 +4157,7 @@ declare module '@polkadot/types/lookup' {
|
|
4051
4157
|
readonly isPreDispatchDifferentRound: boolean;
|
4052
4158
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners' | 'PreDispatchDifferentRound';
|
4053
4159
|
}
|
4054
|
-
/** @name PalletStakingStakingLedger (
|
4160
|
+
/** @name PalletStakingStakingLedger (531) */
|
4055
4161
|
interface PalletStakingStakingLedger extends Struct {
|
4056
4162
|
readonly stash: AccountId32;
|
4057
4163
|
readonly total: Compact<u128>;
|
@@ -4059,40 +4165,40 @@ declare module '@polkadot/types/lookup' {
|
|
4059
4165
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
4060
4166
|
readonly legacyClaimedRewards: Vec<u32>;
|
4061
4167
|
}
|
4062
|
-
/** @name PalletStakingUnlockChunk (
|
4168
|
+
/** @name PalletStakingUnlockChunk (533) */
|
4063
4169
|
interface PalletStakingUnlockChunk extends Struct {
|
4064
4170
|
readonly value: Compact<u128>;
|
4065
4171
|
readonly era: Compact<u32>;
|
4066
4172
|
}
|
4067
|
-
/** @name PalletStakingNominations (
|
4173
|
+
/** @name PalletStakingNominations (536) */
|
4068
4174
|
interface PalletStakingNominations extends Struct {
|
4069
4175
|
readonly targets: Vec<AccountId32>;
|
4070
4176
|
readonly submittedIn: u32;
|
4071
4177
|
readonly suppressed: bool;
|
4072
4178
|
}
|
4073
|
-
/** @name PalletStakingActiveEraInfo (
|
4179
|
+
/** @name PalletStakingActiveEraInfo (537) */
|
4074
4180
|
interface PalletStakingActiveEraInfo extends Struct {
|
4075
4181
|
readonly index: u32;
|
4076
4182
|
readonly start: Option<u64>;
|
4077
4183
|
}
|
4078
|
-
/** @name SpStakingPagedExposureMetadata (
|
4184
|
+
/** @name SpStakingPagedExposureMetadata (539) */
|
4079
4185
|
interface SpStakingPagedExposureMetadata extends Struct {
|
4080
4186
|
readonly total: Compact<u128>;
|
4081
4187
|
readonly own: Compact<u128>;
|
4082
4188
|
readonly nominatorCount: u32;
|
4083
4189
|
readonly pageCount: u32;
|
4084
4190
|
}
|
4085
|
-
/** @name SpStakingExposurePage (
|
4191
|
+
/** @name SpStakingExposurePage (541) */
|
4086
4192
|
interface SpStakingExposurePage extends Struct {
|
4087
4193
|
readonly pageTotal: Compact<u128>;
|
4088
4194
|
readonly others: Vec<SpStakingIndividualExposure>;
|
4089
4195
|
}
|
4090
|
-
/** @name PalletStakingEraRewardPoints (
|
4196
|
+
/** @name PalletStakingEraRewardPoints (542) */
|
4091
4197
|
interface PalletStakingEraRewardPoints extends Struct {
|
4092
4198
|
readonly total: u32;
|
4093
4199
|
readonly individual: BTreeMap<AccountId32, u32>;
|
4094
4200
|
}
|
4095
|
-
/** @name PalletStakingUnappliedSlash (
|
4201
|
+
/** @name PalletStakingUnappliedSlash (547) */
|
4096
4202
|
interface PalletStakingUnappliedSlash extends Struct {
|
4097
4203
|
readonly validator: AccountId32;
|
4098
4204
|
readonly own: u128;
|
@@ -4100,19 +4206,19 @@ declare module '@polkadot/types/lookup' {
|
|
4100
4206
|
readonly reporters: Vec<AccountId32>;
|
4101
4207
|
readonly payout: u128;
|
4102
4208
|
}
|
4103
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
4209
|
+
/** @name PalletStakingSlashingSlashingSpans (551) */
|
4104
4210
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
4105
4211
|
readonly spanIndex: u32;
|
4106
4212
|
readonly lastStart: u32;
|
4107
4213
|
readonly lastNonzeroSlash: u32;
|
4108
4214
|
readonly prior: Vec<u32>;
|
4109
4215
|
}
|
4110
|
-
/** @name PalletStakingSlashingSpanRecord (
|
4216
|
+
/** @name PalletStakingSlashingSpanRecord (552) */
|
4111
4217
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
4112
4218
|
readonly slashed: u128;
|
4113
4219
|
readonly paidOut: u128;
|
4114
4220
|
}
|
4115
|
-
/** @name PalletStakingPalletError (
|
4221
|
+
/** @name PalletStakingPalletError (555) */
|
4116
4222
|
interface PalletStakingPalletError extends Enum {
|
4117
4223
|
readonly isNotController: boolean;
|
4118
4224
|
readonly isNotStash: boolean;
|
@@ -4144,10 +4250,10 @@ declare module '@polkadot/types/lookup' {
|
|
4144
4250
|
readonly isRestakeActive: boolean;
|
4145
4251
|
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';
|
4146
4252
|
}
|
4147
|
-
/** @name SpCoreCryptoKeyTypeId (
|
4253
|
+
/** @name SpCoreCryptoKeyTypeId (559) */
|
4148
4254
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
4149
4255
|
}
|
4150
|
-
/** @name PalletSessionError (
|
4256
|
+
/** @name PalletSessionError (560) */
|
4151
4257
|
interface PalletSessionError extends Enum {
|
4152
4258
|
readonly isInvalidProof: boolean;
|
4153
4259
|
readonly isNoAssociatedValidatorId: boolean;
|
@@ -4156,14 +4262,14 @@ declare module '@polkadot/types/lookup' {
|
|
4156
4262
|
readonly isNoAccount: boolean;
|
4157
4263
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
4158
4264
|
}
|
4159
|
-
/** @name PalletTreasuryProposal (
|
4265
|
+
/** @name PalletTreasuryProposal (562) */
|
4160
4266
|
interface PalletTreasuryProposal extends Struct {
|
4161
4267
|
readonly proposer: AccountId32;
|
4162
4268
|
readonly value: u128;
|
4163
4269
|
readonly beneficiary: AccountId32;
|
4164
4270
|
readonly bond: u128;
|
4165
4271
|
}
|
4166
|
-
/** @name PalletTreasurySpendStatus (
|
4272
|
+
/** @name PalletTreasurySpendStatus (564) */
|
4167
4273
|
interface PalletTreasurySpendStatus extends Struct {
|
4168
4274
|
readonly assetKind: Null;
|
4169
4275
|
readonly amount: u128;
|
@@ -4172,7 +4278,7 @@ declare module '@polkadot/types/lookup' {
|
|
4172
4278
|
readonly expireAt: u64;
|
4173
4279
|
readonly status: PalletTreasuryPaymentState;
|
4174
4280
|
}
|
4175
|
-
/** @name PalletTreasuryPaymentState (
|
4281
|
+
/** @name PalletTreasuryPaymentState (565) */
|
4176
4282
|
interface PalletTreasuryPaymentState extends Enum {
|
4177
4283
|
readonly isPending: boolean;
|
4178
4284
|
readonly isAttempted: boolean;
|
@@ -4182,10 +4288,10 @@ declare module '@polkadot/types/lookup' {
|
|
4182
4288
|
readonly isFailed: boolean;
|
4183
4289
|
readonly type: 'Pending' | 'Attempted' | 'Failed';
|
4184
4290
|
}
|
4185
|
-
/** @name FrameSupportPalletId (
|
4291
|
+
/** @name FrameSupportPalletId (566) */
|
4186
4292
|
interface FrameSupportPalletId extends U8aFixed {
|
4187
4293
|
}
|
4188
|
-
/** @name PalletTreasuryError (
|
4294
|
+
/** @name PalletTreasuryError (567) */
|
4189
4295
|
interface PalletTreasuryError extends Enum {
|
4190
4296
|
readonly isInsufficientProposersBalance: boolean;
|
4191
4297
|
readonly isInvalidIndex: boolean;
|
@@ -4201,7 +4307,7 @@ declare module '@polkadot/types/lookup' {
|
|
4201
4307
|
readonly isInconclusive: boolean;
|
4202
4308
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive';
|
4203
4309
|
}
|
4204
|
-
/** @name PalletBountiesBounty (
|
4310
|
+
/** @name PalletBountiesBounty (568) */
|
4205
4311
|
interface PalletBountiesBounty extends Struct {
|
4206
4312
|
readonly proposer: AccountId32;
|
4207
4313
|
readonly value: u128;
|
@@ -4210,7 +4316,7 @@ declare module '@polkadot/types/lookup' {
|
|
4210
4316
|
readonly bond: u128;
|
4211
4317
|
readonly status: PalletBountiesBountyStatus;
|
4212
4318
|
}
|
4213
|
-
/** @name PalletBountiesBountyStatus (
|
4319
|
+
/** @name PalletBountiesBountyStatus (569) */
|
4214
4320
|
interface PalletBountiesBountyStatus extends Enum {
|
4215
4321
|
readonly isProposed: boolean;
|
4216
4322
|
readonly isApproved: boolean;
|
@@ -4232,7 +4338,7 @@ declare module '@polkadot/types/lookup' {
|
|
4232
4338
|
} & Struct;
|
4233
4339
|
readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4234
4340
|
}
|
4235
|
-
/** @name PalletBountiesError (
|
4341
|
+
/** @name PalletBountiesError (571) */
|
4236
4342
|
interface PalletBountiesError extends Enum {
|
4237
4343
|
readonly isInsufficientProposersBalance: boolean;
|
4238
4344
|
readonly isInvalidIndex: boolean;
|
@@ -4247,7 +4353,7 @@ declare module '@polkadot/types/lookup' {
|
|
4247
4353
|
readonly isTooManyQueued: boolean;
|
4248
4354
|
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued';
|
4249
4355
|
}
|
4250
|
-
/** @name PalletChildBountiesChildBounty (
|
4356
|
+
/** @name PalletChildBountiesChildBounty (572) */
|
4251
4357
|
interface PalletChildBountiesChildBounty extends Struct {
|
4252
4358
|
readonly parentBounty: u32;
|
4253
4359
|
readonly value: u128;
|
@@ -4255,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
|
|
4255
4361
|
readonly curatorDeposit: u128;
|
4256
4362
|
readonly status: PalletChildBountiesChildBountyStatus;
|
4257
4363
|
}
|
4258
|
-
/** @name PalletChildBountiesChildBountyStatus (
|
4364
|
+
/** @name PalletChildBountiesChildBountyStatus (573) */
|
4259
4365
|
interface PalletChildBountiesChildBountyStatus extends Enum {
|
4260
4366
|
readonly isAdded: boolean;
|
4261
4367
|
readonly isCuratorProposed: boolean;
|
@@ -4274,14 +4380,14 @@ declare module '@polkadot/types/lookup' {
|
|
4274
4380
|
} & Struct;
|
4275
4381
|
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
4276
4382
|
}
|
4277
|
-
/** @name PalletChildBountiesError (
|
4383
|
+
/** @name PalletChildBountiesError (574) */
|
4278
4384
|
interface PalletChildBountiesError extends Enum {
|
4279
4385
|
readonly isParentBountyNotActive: boolean;
|
4280
4386
|
readonly isInsufficientBountyBalance: boolean;
|
4281
4387
|
readonly isTooManyChildBounties: boolean;
|
4282
4388
|
readonly type: 'ParentBountyNotActive' | 'InsufficientBountyBalance' | 'TooManyChildBounties';
|
4283
4389
|
}
|
4284
|
-
/** @name PalletBagsListListNode (
|
4390
|
+
/** @name PalletBagsListListNode (575) */
|
4285
4391
|
interface PalletBagsListListNode extends Struct {
|
4286
4392
|
readonly id: AccountId32;
|
4287
4393
|
readonly prev: Option<AccountId32>;
|
@@ -4289,18 +4395,18 @@ declare module '@polkadot/types/lookup' {
|
|
4289
4395
|
readonly bagUpper: u64;
|
4290
4396
|
readonly score: u64;
|
4291
4397
|
}
|
4292
|
-
/** @name PalletBagsListListBag (
|
4398
|
+
/** @name PalletBagsListListBag (576) */
|
4293
4399
|
interface PalletBagsListListBag extends Struct {
|
4294
4400
|
readonly head: Option<AccountId32>;
|
4295
4401
|
readonly tail: Option<AccountId32>;
|
4296
4402
|
}
|
4297
|
-
/** @name PalletBagsListError (
|
4403
|
+
/** @name PalletBagsListError (578) */
|
4298
4404
|
interface PalletBagsListError extends Enum {
|
4299
4405
|
readonly isList: boolean;
|
4300
4406
|
readonly asList: PalletBagsListListListError;
|
4301
4407
|
readonly type: 'List';
|
4302
4408
|
}
|
4303
|
-
/** @name PalletBagsListListListError (
|
4409
|
+
/** @name PalletBagsListListListError (579) */
|
4304
4410
|
interface PalletBagsListListListError extends Enum {
|
4305
4411
|
readonly isDuplicate: boolean;
|
4306
4412
|
readonly isNotHeavier: boolean;
|
@@ -4308,14 +4414,14 @@ declare module '@polkadot/types/lookup' {
|
|
4308
4414
|
readonly isNodeNotFound: boolean;
|
4309
4415
|
readonly type: 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
4310
4416
|
}
|
4311
|
-
/** @name PalletNominationPoolsPoolMember (
|
4417
|
+
/** @name PalletNominationPoolsPoolMember (580) */
|
4312
4418
|
interface PalletNominationPoolsPoolMember extends Struct {
|
4313
4419
|
readonly poolId: u32;
|
4314
4420
|
readonly points: u128;
|
4315
4421
|
readonly lastRecordedRewardCounter: u128;
|
4316
4422
|
readonly unbondingEras: BTreeMap<u32, u128>;
|
4317
4423
|
}
|
4318
|
-
/** @name PalletNominationPoolsBondedPoolInner (
|
4424
|
+
/** @name PalletNominationPoolsBondedPoolInner (585) */
|
4319
4425
|
interface PalletNominationPoolsBondedPoolInner extends Struct {
|
4320
4426
|
readonly commission: PalletNominationPoolsCommission;
|
4321
4427
|
readonly memberCounter: u32;
|
@@ -4323,7 +4429,7 @@ declare module '@polkadot/types/lookup' {
|
|
4323
4429
|
readonly roles: PalletNominationPoolsPoolRoles;
|
4324
4430
|
readonly state: PalletNominationPoolsPoolState;
|
4325
4431
|
}
|
4326
|
-
/** @name PalletNominationPoolsCommission (
|
4432
|
+
/** @name PalletNominationPoolsCommission (586) */
|
4327
4433
|
interface PalletNominationPoolsCommission extends Struct {
|
4328
4434
|
readonly current: Option<ITuple<[Perbill, AccountId32]>>;
|
4329
4435
|
readonly max: Option<Perbill>;
|
@@ -4331,14 +4437,14 @@ declare module '@polkadot/types/lookup' {
|
|
4331
4437
|
readonly throttleFrom: Option<u64>;
|
4332
4438
|
readonly claimPermission: Option<PalletNominationPoolsCommissionClaimPermission>;
|
4333
4439
|
}
|
4334
|
-
/** @name PalletNominationPoolsPoolRoles (
|
4440
|
+
/** @name PalletNominationPoolsPoolRoles (589) */
|
4335
4441
|
interface PalletNominationPoolsPoolRoles extends Struct {
|
4336
4442
|
readonly depositor: AccountId32;
|
4337
4443
|
readonly root: Option<AccountId32>;
|
4338
4444
|
readonly nominator: Option<AccountId32>;
|
4339
4445
|
readonly bouncer: Option<AccountId32>;
|
4340
4446
|
}
|
4341
|
-
/** @name PalletNominationPoolsRewardPool (
|
4447
|
+
/** @name PalletNominationPoolsRewardPool (590) */
|
4342
4448
|
interface PalletNominationPoolsRewardPool extends Struct {
|
4343
4449
|
readonly lastRecordedRewardCounter: u128;
|
4344
4450
|
readonly lastRecordedTotalPayouts: u128;
|
@@ -4346,17 +4452,17 @@ declare module '@polkadot/types/lookup' {
|
|
4346
4452
|
readonly totalCommissionPending: u128;
|
4347
4453
|
readonly totalCommissionClaimed: u128;
|
4348
4454
|
}
|
4349
|
-
/** @name PalletNominationPoolsSubPools (
|
4455
|
+
/** @name PalletNominationPoolsSubPools (591) */
|
4350
4456
|
interface PalletNominationPoolsSubPools extends Struct {
|
4351
4457
|
readonly noEra: PalletNominationPoolsUnbondPool;
|
4352
4458
|
readonly withEra: BTreeMap<u32, PalletNominationPoolsUnbondPool>;
|
4353
4459
|
}
|
4354
|
-
/** @name PalletNominationPoolsUnbondPool (
|
4460
|
+
/** @name PalletNominationPoolsUnbondPool (592) */
|
4355
4461
|
interface PalletNominationPoolsUnbondPool extends Struct {
|
4356
4462
|
readonly points: u128;
|
4357
4463
|
readonly balance: u128;
|
4358
4464
|
}
|
4359
|
-
/** @name PalletNominationPoolsError (
|
4465
|
+
/** @name PalletNominationPoolsError (597) */
|
4360
4466
|
interface PalletNominationPoolsError extends Enum {
|
4361
4467
|
readonly isPoolNotFound: boolean;
|
4362
4468
|
readonly isPoolMemberNotFound: boolean;
|
@@ -4393,7 +4499,7 @@ declare module '@polkadot/types/lookup' {
|
|
4393
4499
|
readonly isNothingToAdjust: boolean;
|
4394
4500
|
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';
|
4395
4501
|
}
|
4396
|
-
/** @name PalletNominationPoolsDefensiveError (
|
4502
|
+
/** @name PalletNominationPoolsDefensiveError (598) */
|
4397
4503
|
interface PalletNominationPoolsDefensiveError extends Enum {
|
4398
4504
|
readonly isNotEnoughSpaceInUnbondPool: boolean;
|
4399
4505
|
readonly isPoolNotFound: boolean;
|
@@ -4402,7 +4508,7 @@ declare module '@polkadot/types/lookup' {
|
|
4402
4508
|
readonly isBondedStashKilledPrematurely: boolean;
|
4403
4509
|
readonly type: 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
4404
4510
|
}
|
4405
|
-
/** @name PalletSchedulerScheduled (
|
4511
|
+
/** @name PalletSchedulerScheduled (601) */
|
4406
4512
|
interface PalletSchedulerScheduled extends Struct {
|
4407
4513
|
readonly maybeId: Option<U8aFixed>;
|
4408
4514
|
readonly priority: u8;
|
@@ -4410,7 +4516,7 @@ declare module '@polkadot/types/lookup' {
|
|
4410
4516
|
readonly maybePeriodic: Option<ITuple<[u64, u32]>>;
|
4411
4517
|
readonly origin: TangleTestnetRuntimeOriginCaller;
|
4412
4518
|
}
|
4413
|
-
/** @name PalletSchedulerError (
|
4519
|
+
/** @name PalletSchedulerError (603) */
|
4414
4520
|
interface PalletSchedulerError extends Enum {
|
4415
4521
|
readonly isFailedToSchedule: boolean;
|
4416
4522
|
readonly isNotFound: boolean;
|
@@ -4419,7 +4525,7 @@ declare module '@polkadot/types/lookup' {
|
|
4419
4525
|
readonly isNamed: boolean;
|
4420
4526
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
4421
4527
|
}
|
4422
|
-
/** @name PalletPreimageOldRequestStatus (
|
4528
|
+
/** @name PalletPreimageOldRequestStatus (604) */
|
4423
4529
|
interface PalletPreimageOldRequestStatus extends Enum {
|
4424
4530
|
readonly isUnrequested: boolean;
|
4425
4531
|
readonly asUnrequested: {
|
@@ -4434,7 +4540,7 @@ declare module '@polkadot/types/lookup' {
|
|
4434
4540
|
} & Struct;
|
4435
4541
|
readonly type: 'Unrequested' | 'Requested';
|
4436
4542
|
}
|
4437
|
-
/** @name PalletPreimageRequestStatus (
|
4543
|
+
/** @name PalletPreimageRequestStatus (606) */
|
4438
4544
|
interface PalletPreimageRequestStatus extends Enum {
|
4439
4545
|
readonly isUnrequested: boolean;
|
4440
4546
|
readonly asUnrequested: {
|
@@ -4449,7 +4555,7 @@ declare module '@polkadot/types/lookup' {
|
|
4449
4555
|
} & Struct;
|
4450
4556
|
readonly type: 'Unrequested' | 'Requested';
|
4451
4557
|
}
|
4452
|
-
/** @name PalletPreimageError (
|
4558
|
+
/** @name PalletPreimageError (610) */
|
4453
4559
|
interface PalletPreimageError extends Enum {
|
4454
4560
|
readonly isTooBig: boolean;
|
4455
4561
|
readonly isAlreadyNoted: boolean;
|
@@ -4461,12 +4567,12 @@ declare module '@polkadot/types/lookup' {
|
|
4461
4567
|
readonly isTooFew: boolean;
|
4462
4568
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew';
|
4463
4569
|
}
|
4464
|
-
/** @name SpStakingOffenceOffenceDetails (
|
4570
|
+
/** @name SpStakingOffenceOffenceDetails (611) */
|
4465
4571
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
4466
4572
|
readonly offender: ITuple<[AccountId32, SpStakingExposure]>;
|
4467
4573
|
readonly reporters: Vec<AccountId32>;
|
4468
4574
|
}
|
4469
|
-
/** @name PalletTxPauseError (
|
4575
|
+
/** @name PalletTxPauseError (613) */
|
4470
4576
|
interface PalletTxPauseError extends Enum {
|
4471
4577
|
readonly isIsPaused: boolean;
|
4472
4578
|
readonly isIsUnpaused: boolean;
|
@@ -4474,30 +4580,30 @@ declare module '@polkadot/types/lookup' {
|
|
4474
4580
|
readonly isNotFound: boolean;
|
4475
4581
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
4476
4582
|
}
|
4477
|
-
/** @name PalletImOnlineError (
|
4583
|
+
/** @name PalletImOnlineError (616) */
|
4478
4584
|
interface PalletImOnlineError extends Enum {
|
4479
4585
|
readonly isInvalidKey: boolean;
|
4480
4586
|
readonly isDuplicatedHeartbeat: boolean;
|
4481
4587
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
4482
4588
|
}
|
4483
|
-
/** @name PalletIdentityRegistration (
|
4589
|
+
/** @name PalletIdentityRegistration (618) */
|
4484
4590
|
interface PalletIdentityRegistration extends Struct {
|
4485
4591
|
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
|
4486
4592
|
readonly deposit: u128;
|
4487
4593
|
readonly info: PalletIdentityLegacyIdentityInfo;
|
4488
4594
|
}
|
4489
|
-
/** @name PalletIdentityRegistrarInfo (
|
4595
|
+
/** @name PalletIdentityRegistrarInfo (627) */
|
4490
4596
|
interface PalletIdentityRegistrarInfo extends Struct {
|
4491
4597
|
readonly account: AccountId32;
|
4492
4598
|
readonly fee: u128;
|
4493
4599
|
readonly fields: u64;
|
4494
4600
|
}
|
4495
|
-
/** @name PalletIdentityAuthorityProperties (
|
4601
|
+
/** @name PalletIdentityAuthorityProperties (629) */
|
4496
4602
|
interface PalletIdentityAuthorityProperties extends Struct {
|
4497
4603
|
readonly suffix: Bytes;
|
4498
4604
|
readonly allocation: u32;
|
4499
4605
|
}
|
4500
|
-
/** @name PalletIdentityError (
|
4606
|
+
/** @name PalletIdentityError (632) */
|
4501
4607
|
interface PalletIdentityError extends Enum {
|
4502
4608
|
readonly isTooManySubAccounts: boolean;
|
4503
4609
|
readonly isNotFound: boolean;
|
@@ -4527,19 +4633,19 @@ declare module '@polkadot/types/lookup' {
|
|
4527
4633
|
readonly isNotExpired: boolean;
|
4528
4634
|
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';
|
4529
4635
|
}
|
4530
|
-
/** @name PalletUtilityError (
|
4636
|
+
/** @name PalletUtilityError (633) */
|
4531
4637
|
interface PalletUtilityError extends Enum {
|
4532
4638
|
readonly isTooManyCalls: boolean;
|
4533
4639
|
readonly type: 'TooManyCalls';
|
4534
4640
|
}
|
4535
|
-
/** @name PalletMultisigMultisig (
|
4641
|
+
/** @name PalletMultisigMultisig (635) */
|
4536
4642
|
interface PalletMultisigMultisig extends Struct {
|
4537
4643
|
readonly when: PalletMultisigTimepoint;
|
4538
4644
|
readonly deposit: u128;
|
4539
4645
|
readonly depositor: AccountId32;
|
4540
4646
|
readonly approvals: Vec<AccountId32>;
|
4541
4647
|
}
|
4542
|
-
/** @name PalletMultisigError (
|
4648
|
+
/** @name PalletMultisigError (636) */
|
4543
4649
|
interface PalletMultisigError extends Enum {
|
4544
4650
|
readonly isMinimumThreshold: boolean;
|
4545
4651
|
readonly isAlreadyApproved: boolean;
|
@@ -4557,7 +4663,7 @@ declare module '@polkadot/types/lookup' {
|
|
4557
4663
|
readonly isAlreadyStored: boolean;
|
4558
4664
|
readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
|
4559
4665
|
}
|
4560
|
-
/** @name FpRpcTransactionStatus (
|
4666
|
+
/** @name FpRpcTransactionStatus (639) */
|
4561
4667
|
interface FpRpcTransactionStatus extends Struct {
|
4562
4668
|
readonly transactionHash: H256;
|
4563
4669
|
readonly transactionIndex: u32;
|
@@ -4567,10 +4673,10 @@ declare module '@polkadot/types/lookup' {
|
|
4567
4673
|
readonly logs: Vec<EthereumLog>;
|
4568
4674
|
readonly logsBloom: EthbloomBloom;
|
4569
4675
|
}
|
4570
|
-
/** @name EthbloomBloom (
|
4676
|
+
/** @name EthbloomBloom (642) */
|
4571
4677
|
interface EthbloomBloom extends U8aFixed {
|
4572
4678
|
}
|
4573
|
-
/** @name EthereumReceiptReceiptV3 (
|
4679
|
+
/** @name EthereumReceiptReceiptV3 (644) */
|
4574
4680
|
interface EthereumReceiptReceiptV3 extends Enum {
|
4575
4681
|
readonly isLegacy: boolean;
|
4576
4682
|
readonly asLegacy: EthereumReceiptEip658ReceiptData;
|
@@ -4580,20 +4686,20 @@ declare module '@polkadot/types/lookup' {
|
|
4580
4686
|
readonly asEip1559: EthereumReceiptEip658ReceiptData;
|
4581
4687
|
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
|
4582
4688
|
}
|
4583
|
-
/** @name EthereumReceiptEip658ReceiptData (
|
4689
|
+
/** @name EthereumReceiptEip658ReceiptData (645) */
|
4584
4690
|
interface EthereumReceiptEip658ReceiptData extends Struct {
|
4585
4691
|
readonly statusCode: u8;
|
4586
4692
|
readonly usedGas: U256;
|
4587
4693
|
readonly logsBloom: EthbloomBloom;
|
4588
4694
|
readonly logs: Vec<EthereumLog>;
|
4589
4695
|
}
|
4590
|
-
/** @name EthereumBlock (
|
4696
|
+
/** @name EthereumBlock (646) */
|
4591
4697
|
interface EthereumBlock extends Struct {
|
4592
4698
|
readonly header: EthereumHeader;
|
4593
4699
|
readonly transactions: Vec<EthereumTransactionTransactionV2>;
|
4594
4700
|
readonly ommers: Vec<EthereumHeader>;
|
4595
4701
|
}
|
4596
|
-
/** @name EthereumHeader (
|
4702
|
+
/** @name EthereumHeader (647) */
|
4597
4703
|
interface EthereumHeader extends Struct {
|
4598
4704
|
readonly parentHash: H256;
|
4599
4705
|
readonly ommersHash: H256;
|
@@ -4611,21 +4717,21 @@ declare module '@polkadot/types/lookup' {
|
|
4611
4717
|
readonly mixHash: H256;
|
4612
4718
|
readonly nonce: EthereumTypesHashH64;
|
4613
4719
|
}
|
4614
|
-
/** @name EthereumTypesHashH64 (
|
4720
|
+
/** @name EthereumTypesHashH64 (648) */
|
4615
4721
|
interface EthereumTypesHashH64 extends U8aFixed {
|
4616
4722
|
}
|
4617
|
-
/** @name PalletEthereumError (
|
4723
|
+
/** @name PalletEthereumError (653) */
|
4618
4724
|
interface PalletEthereumError extends Enum {
|
4619
4725
|
readonly isInvalidSignature: boolean;
|
4620
4726
|
readonly isPreLogExists: boolean;
|
4621
4727
|
readonly type: 'InvalidSignature' | 'PreLogExists';
|
4622
4728
|
}
|
4623
|
-
/** @name PalletEvmCodeMetadata (
|
4729
|
+
/** @name PalletEvmCodeMetadata (654) */
|
4624
4730
|
interface PalletEvmCodeMetadata extends Struct {
|
4625
4731
|
readonly size_: u64;
|
4626
4732
|
readonly hash_: H256;
|
4627
4733
|
}
|
4628
|
-
/** @name PalletEvmError (
|
4734
|
+
/** @name PalletEvmError (656) */
|
4629
4735
|
interface PalletEvmError extends Enum {
|
4630
4736
|
readonly isBalanceLow: boolean;
|
4631
4737
|
readonly isFeeOverflow: boolean;
|
@@ -4642,12 +4748,12 @@ declare module '@polkadot/types/lookup' {
|
|
4642
4748
|
readonly isUndefined: boolean;
|
4643
4749
|
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'InvalidChainId' | 'InvalidSignature' | 'Reentrancy' | 'TransactionMustComeFromEOA' | 'Undefined';
|
4644
4750
|
}
|
4645
|
-
/** @name PalletHotfixSufficientsError (
|
4751
|
+
/** @name PalletHotfixSufficientsError (657) */
|
4646
4752
|
interface PalletHotfixSufficientsError extends Enum {
|
4647
4753
|
readonly isMaxAddressCountExceeded: boolean;
|
4648
4754
|
readonly type: 'MaxAddressCountExceeded';
|
4649
4755
|
}
|
4650
|
-
/** @name PalletAirdropClaimsError (
|
4756
|
+
/** @name PalletAirdropClaimsError (659) */
|
4651
4757
|
interface PalletAirdropClaimsError extends Enum {
|
4652
4758
|
readonly isInvalidEthereumSignature: boolean;
|
4653
4759
|
readonly isInvalidNativeSignature: boolean;
|
@@ -4659,7 +4765,7 @@ declare module '@polkadot/types/lookup' {
|
|
4659
4765
|
readonly isVestedBalanceExists: boolean;
|
4660
4766
|
readonly type: 'InvalidEthereumSignature' | 'InvalidNativeSignature' | 'InvalidNativeAccount' | 'SignerHasNoClaim' | 'SenderHasNoClaim' | 'PotUnderflow' | 'InvalidStatement' | 'VestedBalanceExists';
|
4661
4767
|
}
|
4662
|
-
/** @name PalletRolesRestakingLedger (
|
4768
|
+
/** @name PalletRolesRestakingLedger (660) */
|
4663
4769
|
interface PalletRolesRestakingLedger extends Struct {
|
4664
4770
|
readonly stash: AccountId32;
|
4665
4771
|
readonly total: Compact<u128>;
|
@@ -4670,12 +4776,12 @@ declare module '@polkadot/types/lookup' {
|
|
4670
4776
|
readonly claimedRewards: Vec<u32>;
|
4671
4777
|
readonly maxActiveServices: u32;
|
4672
4778
|
}
|
4673
|
-
/** @name PalletRolesUnlockChunk (
|
4779
|
+
/** @name PalletRolesUnlockChunk (666) */
|
4674
4780
|
interface PalletRolesUnlockChunk extends Struct {
|
4675
4781
|
readonly value: Compact<u128>;
|
4676
4782
|
readonly era: Compact<u32>;
|
4677
4783
|
}
|
4678
|
-
/** @name PalletRolesError (
|
4784
|
+
/** @name PalletRolesError (670) */
|
4679
4785
|
interface PalletRolesError extends Enum {
|
4680
4786
|
readonly isNotValidator: boolean;
|
4681
4787
|
readonly isHasRoleAssigned: boolean;
|
@@ -4698,7 +4804,7 @@ declare module '@polkadot/types/lookup' {
|
|
4698
4804
|
readonly isNoMoreChunks: boolean;
|
4699
4805
|
readonly type: 'NotValidator' | 'HasRoleAssigned' | 'RoleNotAssigned' | 'MaxRoles' | 'RoleCannotBeRemoved' | 'RestakingAmountCannotBeUpdated' | 'ExceedsMaxRestakeValue' | 'InsufficientRestakingBond' | 'ProfileUpdateFailed' | 'ProfileAlreadyExists' | 'NoProfileFound' | 'ProfileDeleteRequestFailed' | 'SessionKeysNotProvided' | 'KeySizeExceeded' | 'CannotGetCurrentEra' | 'InvalidEraToReward' | 'BoundNotMet' | 'AlreadyClaimed' | 'NoMoreChunks';
|
4700
4806
|
}
|
4701
|
-
/** @name TanglePrimitivesJobsPhaseResult (
|
4807
|
+
/** @name TanglePrimitivesJobsPhaseResult (671) */
|
4702
4808
|
interface TanglePrimitivesJobsPhaseResult extends Struct {
|
4703
4809
|
readonly owner: AccountId32;
|
4704
4810
|
readonly result: TanglePrimitivesJobsJobResult;
|
@@ -4706,7 +4812,7 @@ declare module '@polkadot/types/lookup' {
|
|
4706
4812
|
readonly permittedCaller: Option<AccountId32>;
|
4707
4813
|
readonly jobType: TanglePrimitivesJobsJobType;
|
4708
4814
|
}
|
4709
|
-
/** @name PalletJobsModuleError (
|
4815
|
+
/** @name PalletJobsModuleError (673) */
|
4710
4816
|
interface PalletJobsModuleError extends Enum {
|
4711
4817
|
readonly isInvalidJobPhase: boolean;
|
4712
4818
|
readonly isInvalidValidator: boolean;
|
@@ -4728,7 +4834,7 @@ declare module '@polkadot/types/lookup' {
|
|
4728
4834
|
readonly isTooManyJobsForValidator: boolean;
|
4729
4835
|
readonly type: 'InvalidJobPhase' | 'InvalidValidator' | 'InvalidJobParams' | 'PreviousResultNotFound' | 'ResultExpired' | 'JobAlreadyExpired' | 'JobNotFound' | 'PhaseOneResultNotFound' | 'NoRewards' | 'NotEnoughValidators' | 'EmptyResult' | 'EmptyJob' | 'ValidatorRoleKeyNotFound' | 'ResultNotExpectedType' | 'NoPermission' | 'TooManyParticipants' | 'ExceedsMaxKeySize' | 'TooManyJobsForValidator';
|
4730
4836
|
}
|
4731
|
-
/** @name PalletDkgError (
|
4837
|
+
/** @name PalletDkgError (674) */
|
4732
4838
|
interface PalletDkgError extends Enum {
|
4733
4839
|
readonly isCannotRetreiveSigner: boolean;
|
4734
4840
|
readonly isNotEnoughSigners: boolean;
|
@@ -4780,29 +4886,53 @@ declare module '@polkadot/types/lookup' {
|
|
4780
4886
|
readonly isMalformedStarkSignature: boolean;
|
4781
4887
|
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';
|
4782
4888
|
}
|
4783
|
-
/** @name PalletZksaasError (
|
4889
|
+
/** @name PalletZksaasError (675) */
|
4784
4890
|
interface PalletZksaasError extends Enum {
|
4785
4891
|
readonly isInvalidJobType: boolean;
|
4786
4892
|
readonly isInvalidProof: boolean;
|
4787
4893
|
readonly isMalformedProof: boolean;
|
4788
4894
|
readonly type: 'InvalidJobType' | 'InvalidProof' | 'MalformedProof';
|
4789
4895
|
}
|
4790
|
-
/** @name
|
4896
|
+
/** @name PalletProxyProxyDefinition (678) */
|
4897
|
+
interface PalletProxyProxyDefinition extends Struct {
|
4898
|
+
readonly delegate: AccountId32;
|
4899
|
+
readonly proxyType: TangleTestnetRuntimeProxyType;
|
4900
|
+
readonly delay: u64;
|
4901
|
+
}
|
4902
|
+
/** @name PalletProxyAnnouncement (682) */
|
4903
|
+
interface PalletProxyAnnouncement extends Struct {
|
4904
|
+
readonly real: AccountId32;
|
4905
|
+
readonly callHash: H256;
|
4906
|
+
readonly height: u64;
|
4907
|
+
}
|
4908
|
+
/** @name PalletProxyError (684) */
|
4909
|
+
interface PalletProxyError extends Enum {
|
4910
|
+
readonly isTooMany: boolean;
|
4911
|
+
readonly isNotFound: boolean;
|
4912
|
+
readonly isNotProxy: boolean;
|
4913
|
+
readonly isUnproxyable: boolean;
|
4914
|
+
readonly isDuplicate: boolean;
|
4915
|
+
readonly isNoPermission: boolean;
|
4916
|
+
readonly isUnannounced: boolean;
|
4917
|
+
readonly isNoSelfProxy: boolean;
|
4918
|
+
readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
|
4919
|
+
}
|
4920
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (687) */
|
4791
4921
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
4792
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
4922
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (688) */
|
4793
4923
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
4794
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
4924
|
+
/** @name FrameSystemExtensionsCheckTxVersion (689) */
|
4795
4925
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
4796
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
4926
|
+
/** @name FrameSystemExtensionsCheckGenesis (690) */
|
4797
4927
|
type FrameSystemExtensionsCheckGenesis = Null;
|
4798
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
4928
|
+
/** @name FrameSystemExtensionsCheckNonce (693) */
|
4799
4929
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
4800
4930
|
}
|
4801
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
4931
|
+
/** @name FrameSystemExtensionsCheckWeight (694) */
|
4802
4932
|
type FrameSystemExtensionsCheckWeight = Null;
|
4803
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
4933
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (695) */
|
4804
4934
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
4805
4935
|
}
|
4806
|
-
/** @name TangleTestnetRuntimeRuntime (
|
4936
|
+
/** @name TangleTestnetRuntimeRuntime (697) */
|
4807
4937
|
type TangleTestnetRuntimeRuntime = Null;
|
4808
4938
|
}
|