@argonprotocol/mainchain 1.4.9 → 1.4.10-dev.459cb75f
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/browser/index.d.ts +639 -428
- package/browser/index.js +135 -28
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +158 -52
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +639 -428
- package/lib/index.d.ts +639 -428
- package/lib/index.js +134 -28
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +56 -24
- package/src/interfaces/augment-api-errors.ts +39 -15
- package/src/interfaces/augment-api-events.ts +117 -32
- package/src/interfaces/augment-api-query.ts +86 -51
- package/src/interfaces/augment-api-tx.ts +20 -13
- package/src/interfaces/lookup.ts +367 -283
- package/src/interfaces/registry.ts +14 -2
- package/src/interfaces/types-lookup.ts +388 -297
|
@@ -1657,6 +1657,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1657
1657
|
readonly amount: u128;
|
|
1658
1658
|
readonly dispatchError: SpRuntimeDispatchError;
|
|
1659
1659
|
} & Struct;
|
|
1660
|
+
readonly isCouldNotDistributeEarningsToArgonotBondLot: boolean;
|
|
1661
|
+
readonly asCouldNotDistributeEarningsToArgonotBondLot: {
|
|
1662
|
+
readonly frameId: u64;
|
|
1663
|
+
readonly bondLotId: u64;
|
|
1664
|
+
readonly accountId: AccountId32;
|
|
1665
|
+
readonly amount: u128;
|
|
1666
|
+
readonly dispatchError: SpRuntimeDispatchError;
|
|
1667
|
+
} & Struct;
|
|
1660
1668
|
readonly isCouldNotTransferToTreasuryReserves: boolean;
|
|
1661
1669
|
readonly asCouldNotTransferToTreasuryReserves: {
|
|
1662
1670
|
readonly frameId: u64;
|
|
@@ -1667,6 +1675,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
1667
1675
|
readonly asFrameEarningsDistributed: {
|
|
1668
1676
|
readonly frameId: u64;
|
|
1669
1677
|
readonly bidPoolDistributed: u128;
|
|
1678
|
+
readonly argonotBondPoolDistributed: u128;
|
|
1679
|
+
readonly vaultBidPoolDistributed: u128;
|
|
1680
|
+
readonly treasuryRefunds: u128;
|
|
1670
1681
|
readonly treasuryReserves: u128;
|
|
1671
1682
|
readonly participatingVaults: u32;
|
|
1672
1683
|
} & Struct;
|
|
@@ -1679,7 +1690,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1679
1690
|
readonly isCouldNotReleaseBondLot: boolean;
|
|
1680
1691
|
readonly asCouldNotReleaseBondLot: {
|
|
1681
1692
|
readonly frameId: u64;
|
|
1682
|
-
readonly
|
|
1693
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1683
1694
|
readonly bondLotId: u64;
|
|
1684
1695
|
readonly amount: u128;
|
|
1685
1696
|
readonly accountId: AccountId32;
|
|
@@ -1687,14 +1698,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1687
1698
|
} & Struct;
|
|
1688
1699
|
readonly isBondLotPurchased: boolean;
|
|
1689
1700
|
readonly asBondLotPurchased: {
|
|
1690
|
-
readonly
|
|
1701
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1691
1702
|
readonly bondLotId: u64;
|
|
1692
1703
|
readonly accountId: AccountId32;
|
|
1693
1704
|
readonly bonds: u32;
|
|
1694
1705
|
} & Struct;
|
|
1695
1706
|
readonly isBondLotReleaseScheduled: boolean;
|
|
1696
1707
|
readonly asBondLotReleaseScheduled: {
|
|
1697
|
-
readonly
|
|
1708
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1698
1709
|
readonly bondLotId: u64;
|
|
1699
1710
|
readonly accountId: AccountId32;
|
|
1700
1711
|
readonly bonds: u32;
|
|
@@ -1704,7 +1715,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1704
1715
|
readonly isBondLotReleased: boolean;
|
|
1705
1716
|
readonly asBondLotReleased: {
|
|
1706
1717
|
readonly frameId: u64;
|
|
1707
|
-
readonly
|
|
1718
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1708
1719
|
readonly bondLotId: u64;
|
|
1709
1720
|
readonly accountId: AccountId32;
|
|
1710
1721
|
readonly bonds: u32;
|
|
@@ -1717,6 +1728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1717
1728
|
} & Struct;
|
|
1718
1729
|
readonly type:
|
|
1719
1730
|
| 'CouldNotDistributeEarningsToBondLot'
|
|
1731
|
+
| 'CouldNotDistributeEarningsToArgonotBondLot'
|
|
1720
1732
|
| 'CouldNotTransferToTreasuryReserves'
|
|
1721
1733
|
| 'FrameEarningsDistributed'
|
|
1722
1734
|
| 'FrameVaultCapitalLocked'
|
|
@@ -1727,7 +1739,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1727
1739
|
| 'EncumberedBondMicrogonsBurned';
|
|
1728
1740
|
}
|
|
1729
1741
|
|
|
1730
|
-
/** @name
|
|
1742
|
+
/** @name PalletTreasuryBondProgramId (120) */
|
|
1743
|
+
interface PalletTreasuryBondProgramId extends Enum {
|
|
1744
|
+
readonly isVault: boolean;
|
|
1745
|
+
readonly asVault: {
|
|
1746
|
+
readonly vaultId: Compact<u32>;
|
|
1747
|
+
} & Struct;
|
|
1748
|
+
readonly isArgonot: boolean;
|
|
1749
|
+
readonly type: 'Vault' | 'Argonot';
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
/** @name PalletTreasuryBondReleaseReason (121) */
|
|
1731
1753
|
interface PalletTreasuryBondReleaseReason extends Enum {
|
|
1732
1754
|
readonly isUserLiquidation: boolean;
|
|
1733
1755
|
readonly isBumped: boolean;
|
|
@@ -1735,7 +1757,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1735
1757
|
readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
|
|
1736
1758
|
}
|
|
1737
1759
|
|
|
1738
|
-
/** @name PalletFeeControlEvent (
|
|
1760
|
+
/** @name PalletFeeControlEvent (122) */
|
|
1739
1761
|
interface PalletFeeControlEvent extends Enum {
|
|
1740
1762
|
readonly isFeeSkipped: boolean;
|
|
1741
1763
|
readonly asFeeSkipped: {
|
|
@@ -1750,14 +1772,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1750
1772
|
readonly type: 'FeeSkipped' | 'FeeDelegated';
|
|
1751
1773
|
}
|
|
1752
1774
|
|
|
1753
|
-
/** @name ArgonRuntimeOriginCaller (
|
|
1775
|
+
/** @name ArgonRuntimeOriginCaller (123) */
|
|
1754
1776
|
interface ArgonRuntimeOriginCaller extends Enum {
|
|
1755
1777
|
readonly isSystem: boolean;
|
|
1756
1778
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
1757
1779
|
readonly type: 'System';
|
|
1758
1780
|
}
|
|
1759
1781
|
|
|
1760
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
1782
|
+
/** @name FrameSupportDispatchRawOrigin (124) */
|
|
1761
1783
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
1762
1784
|
readonly isRoot: boolean;
|
|
1763
1785
|
readonly isSigned: boolean;
|
|
@@ -1767,18 +1789,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
1767
1789
|
readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
|
|
1768
1790
|
}
|
|
1769
1791
|
|
|
1770
|
-
/** @name PalletOperationalAccountsEvent (
|
|
1792
|
+
/** @name PalletOperationalAccountsEvent (125) */
|
|
1771
1793
|
interface PalletOperationalAccountsEvent extends Enum {
|
|
1772
1794
|
readonly isOperationalAccountRegistered: boolean;
|
|
1773
1795
|
readonly asOperationalAccountRegistered: {
|
|
1774
1796
|
readonly operationalAccount: AccountId32;
|
|
1775
1797
|
readonly vaultAccount: AccountId32;
|
|
1776
|
-
readonly
|
|
1777
|
-
readonly
|
|
1778
|
-
|
|
1798
|
+
readonly miningAccount: AccountId32;
|
|
1799
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
1800
|
+
} & Struct;
|
|
1801
|
+
readonly isAccountMeetsMinimums: boolean;
|
|
1802
|
+
readonly asAccountMeetsMinimums: {
|
|
1803
|
+
readonly account: AccountId32;
|
|
1779
1804
|
} & Struct;
|
|
1780
|
-
readonly
|
|
1781
|
-
readonly
|
|
1805
|
+
readonly isAccountOperationallyCertified: boolean;
|
|
1806
|
+
readonly asAccountOperationallyCertified: {
|
|
1782
1807
|
readonly account: AccountId32;
|
|
1783
1808
|
} & Struct;
|
|
1784
1809
|
readonly isOperationalRewardEarned: boolean;
|
|
@@ -1796,27 +1821,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
1796
1821
|
} & Struct;
|
|
1797
1822
|
readonly isRewardsConfigUpdated: boolean;
|
|
1798
1823
|
readonly asRewardsConfigUpdated: {
|
|
1799
|
-
readonly
|
|
1800
|
-
readonly
|
|
1824
|
+
readonly operationalCertificationReward: u128;
|
|
1825
|
+
readonly operationalCertificationBonusReward: u128;
|
|
1801
1826
|
} & Struct;
|
|
1802
1827
|
readonly isOperationalProgressForced: boolean;
|
|
1803
1828
|
readonly asOperationalProgressForced: {
|
|
1804
1829
|
readonly account: AccountId32;
|
|
1805
1830
|
readonly updateOperationalProgress: bool;
|
|
1806
|
-
readonly
|
|
1831
|
+
readonly meetsMinimums: bool;
|
|
1832
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
1833
|
+
readonly accountBitcoinAmount: u128;
|
|
1834
|
+
readonly accountVaultBondAmount: u128;
|
|
1807
1835
|
readonly vaultCreated: bool;
|
|
1808
|
-
readonly
|
|
1809
|
-
readonly
|
|
1810
|
-
readonly observedMiningSeatTotal: u32;
|
|
1836
|
+
readonly operatorVaultBitcoinAmount: u128;
|
|
1837
|
+
readonly miningSeatCount: u32;
|
|
1811
1838
|
} & Struct;
|
|
1812
1839
|
readonly isEncryptedServerUpdated: boolean;
|
|
1813
1840
|
readonly asEncryptedServerUpdated: {
|
|
1814
|
-
readonly
|
|
1815
|
-
readonly
|
|
1841
|
+
readonly upstreamAccount: AccountId32;
|
|
1842
|
+
readonly downstreamAccount: AccountId32;
|
|
1816
1843
|
} & Struct;
|
|
1817
1844
|
readonly type:
|
|
1818
1845
|
| 'OperationalAccountRegistered'
|
|
1819
|
-
| '
|
|
1846
|
+
| 'AccountMeetsMinimums'
|
|
1847
|
+
| 'AccountOperationallyCertified'
|
|
1820
1848
|
| 'OperationalRewardEarned'
|
|
1821
1849
|
| 'OperationalRewardsClaimed'
|
|
1822
1850
|
| 'RewardsConfigUpdated'
|
|
@@ -1824,14 +1852,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1824
1852
|
| 'EncryptedServerUpdated';
|
|
1825
1853
|
}
|
|
1826
1854
|
|
|
1827
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1855
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1828
1856
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1829
|
-
readonly
|
|
1830
|
-
readonly
|
|
1831
|
-
readonly type: '
|
|
1857
|
+
readonly isCertification: boolean;
|
|
1858
|
+
readonly isOperationalCertificationBonus: boolean;
|
|
1859
|
+
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
1832
1860
|
}
|
|
1833
1861
|
|
|
1834
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1862
|
+
/** @name PalletEthereumVerifierEvent (127) */
|
|
1835
1863
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1836
1864
|
readonly isBeaconHeaderImported: boolean;
|
|
1837
1865
|
readonly asBeaconHeaderImported: {
|
|
@@ -1866,14 +1894,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1866
1894
|
| 'OperatingModeChanged';
|
|
1867
1895
|
}
|
|
1868
1896
|
|
|
1869
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1897
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (128) */
|
|
1870
1898
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1871
1899
|
readonly isNormal: boolean;
|
|
1872
1900
|
readonly isHalted: boolean;
|
|
1873
1901
|
readonly type: 'Normal' | 'Halted';
|
|
1874
1902
|
}
|
|
1875
1903
|
|
|
1876
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1904
|
+
/** @name PalletCrosschainTransferEvent (129) */
|
|
1877
1905
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1878
1906
|
readonly isTransferToArgonSettled: boolean;
|
|
1879
1907
|
readonly asTransferToArgonSettled: {
|
|
@@ -1885,6 +1913,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1885
1913
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1886
1914
|
readonly councilHash: H256;
|
|
1887
1915
|
} & Struct;
|
|
1916
|
+
readonly isGlobalIssuanceCouncilRotationQueued: boolean;
|
|
1917
|
+
readonly asGlobalIssuanceCouncilRotationQueued: {
|
|
1918
|
+
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1919
|
+
readonly councilHash: H256;
|
|
1920
|
+
readonly approvalQueueNonce: u64;
|
|
1921
|
+
} & Struct;
|
|
1888
1922
|
readonly isCouncilSignerRegistered: boolean;
|
|
1889
1923
|
readonly asCouncilSignerRegistered: {
|
|
1890
1924
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -2000,6 +2034,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2000
2034
|
readonly type:
|
|
2001
2035
|
| 'TransferToArgonSettled'
|
|
2002
2036
|
| 'GlobalIssuanceCouncilForced'
|
|
2037
|
+
| 'GlobalIssuanceCouncilRotationQueued'
|
|
2003
2038
|
| 'CouncilSignerRegistered'
|
|
2004
2039
|
| 'CouncilSignerRotationQueued'
|
|
2005
2040
|
| 'MintingAuthorityRegistered'
|
|
@@ -2022,13 +2057,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2022
2057
|
| 'TransferCollateralInvalidated';
|
|
2023
2058
|
}
|
|
2024
2059
|
|
|
2025
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2060
|
+
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
2026
2061
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2027
2062
|
readonly isEthereum: boolean;
|
|
2028
2063
|
readonly type: 'Ethereum';
|
|
2029
2064
|
}
|
|
2030
2065
|
|
|
2031
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2066
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (131) */
|
|
2032
2067
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2033
2068
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2034
2069
|
readonly from: H160;
|
|
@@ -2037,14 +2072,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2037
2072
|
readonly amount: Compact<u128>;
|
|
2038
2073
|
}
|
|
2039
2074
|
|
|
2040
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2075
|
+
/** @name PalletCrosschainTransferAssetKind (134) */
|
|
2041
2076
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2042
2077
|
readonly isArgon: boolean;
|
|
2043
2078
|
readonly isArgonot: boolean;
|
|
2044
2079
|
readonly type: 'Argon' | 'Argonot';
|
|
2045
2080
|
}
|
|
2046
2081
|
|
|
2047
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2082
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (135) */
|
|
2048
2083
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2049
2084
|
readonly isMintingAuthorityActivation: boolean;
|
|
2050
2085
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2058,14 +2093,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2058
2093
|
| 'GlobalIssuanceCouncilRotation';
|
|
2059
2094
|
}
|
|
2060
2095
|
|
|
2061
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2096
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (136) */
|
|
2062
2097
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2063
2098
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2064
2099
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2065
2100
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2066
2101
|
}
|
|
2067
2102
|
|
|
2068
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2103
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (137) */
|
|
2069
2104
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2070
2105
|
readonly isManual: boolean;
|
|
2071
2106
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2090,7 +2125,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2090
2125
|
| 'GatewayStateDrift';
|
|
2091
2126
|
}
|
|
2092
2127
|
|
|
2093
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2128
|
+
/** @name PalletCrosschainTransferGatewayState (138) */
|
|
2094
2129
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2095
2130
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2096
2131
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2098,7 +2133,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2098
2133
|
readonly argonotCirculation: u128;
|
|
2099
2134
|
}
|
|
2100
2135
|
|
|
2101
|
-
/** @name FrameSystemPhase (
|
|
2136
|
+
/** @name FrameSystemPhase (139) */
|
|
2102
2137
|
interface FrameSystemPhase extends Enum {
|
|
2103
2138
|
readonly isApplyExtrinsic: boolean;
|
|
2104
2139
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2107,19 +2142,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2107
2142
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2108
2143
|
}
|
|
2109
2144
|
|
|
2110
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2145
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (143) */
|
|
2111
2146
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2112
2147
|
readonly specVersion: Compact<u32>;
|
|
2113
2148
|
readonly specName: Text;
|
|
2114
2149
|
}
|
|
2115
2150
|
|
|
2116
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2151
|
+
/** @name FrameSystemCodeUpgradeAuthorization (146) */
|
|
2117
2152
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2118
2153
|
readonly codeHash: H256;
|
|
2119
2154
|
readonly checkVersion: bool;
|
|
2120
2155
|
}
|
|
2121
2156
|
|
|
2122
|
-
/** @name FrameSystemCall (
|
|
2157
|
+
/** @name FrameSystemCall (147) */
|
|
2123
2158
|
interface FrameSystemCall extends Enum {
|
|
2124
2159
|
readonly isRemark: boolean;
|
|
2125
2160
|
readonly asRemark: {
|
|
@@ -2180,21 +2215,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2180
2215
|
| 'ApplyAuthorizedUpgrade';
|
|
2181
2216
|
}
|
|
2182
2217
|
|
|
2183
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2218
|
+
/** @name FrameSystemLimitsBlockWeights (151) */
|
|
2184
2219
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2185
2220
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2186
2221
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2187
2222
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2188
2223
|
}
|
|
2189
2224
|
|
|
2190
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2225
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
|
|
2191
2226
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2192
2227
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2193
2228
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2194
2229
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2195
2230
|
}
|
|
2196
2231
|
|
|
2197
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2232
|
+
/** @name FrameSystemLimitsWeightsPerClass (153) */
|
|
2198
2233
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2199
2234
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2200
2235
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2202,26 +2237,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2202
2237
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2203
2238
|
}
|
|
2204
2239
|
|
|
2205
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2240
|
+
/** @name FrameSystemLimitsBlockLength (155) */
|
|
2206
2241
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2207
2242
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2208
2243
|
readonly maxHeaderSize: Option<u32>;
|
|
2209
2244
|
}
|
|
2210
2245
|
|
|
2211
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2246
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (156) */
|
|
2212
2247
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2213
2248
|
readonly normal: u32;
|
|
2214
2249
|
readonly operational: u32;
|
|
2215
2250
|
readonly mandatory: u32;
|
|
2216
2251
|
}
|
|
2217
2252
|
|
|
2218
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2253
|
+
/** @name SpWeightsRuntimeDbWeight (158) */
|
|
2219
2254
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2220
2255
|
readonly read: u64;
|
|
2221
2256
|
readonly write: u64;
|
|
2222
2257
|
}
|
|
2223
2258
|
|
|
2224
|
-
/** @name SpVersionRuntimeVersion (
|
|
2259
|
+
/** @name SpVersionRuntimeVersion (159) */
|
|
2225
2260
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2226
2261
|
readonly specName: Text;
|
|
2227
2262
|
readonly implName: Text;
|
|
@@ -2233,7 +2268,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2233
2268
|
readonly systemVersion: u8;
|
|
2234
2269
|
}
|
|
2235
2270
|
|
|
2236
|
-
/** @name FrameSystemError (
|
|
2271
|
+
/** @name FrameSystemError (164) */
|
|
2237
2272
|
interface FrameSystemError extends Enum {
|
|
2238
2273
|
readonly isInvalidSpecName: boolean;
|
|
2239
2274
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2256,7 +2291,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2256
2291
|
| 'Unauthorized';
|
|
2257
2292
|
}
|
|
2258
2293
|
|
|
2259
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2294
|
+
/** @name ArgonPrimitivesDigestsDigestset (165) */
|
|
2260
2295
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2261
2296
|
readonly author: AccountId32;
|
|
2262
2297
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2267,18 +2302,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2267
2302
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2268
2303
|
}
|
|
2269
2304
|
|
|
2270
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2305
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
|
|
2271
2306
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2272
2307
|
readonly votingPower: Compact<u128>;
|
|
2273
2308
|
readonly votesCount: Compact<u32>;
|
|
2274
2309
|
}
|
|
2275
2310
|
|
|
2276
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2311
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
|
|
2277
2312
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2278
2313
|
readonly parentVotingKey: Option<H256>;
|
|
2279
2314
|
}
|
|
2280
2315
|
|
|
2281
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2316
|
+
/** @name ArgonPrimitivesForkPower (171) */
|
|
2282
2317
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2283
2318
|
readonly isLatestVote: bool;
|
|
2284
2319
|
readonly notebooks: Compact<u64>;
|
|
@@ -2289,19 +2324,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2289
2324
|
readonly minerNonceScore: Option<U256>;
|
|
2290
2325
|
}
|
|
2291
2326
|
|
|
2292
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2327
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (176) */
|
|
2293
2328
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2294
2329
|
readonly frameId: Compact<u64>;
|
|
2295
2330
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2296
2331
|
readonly isNewFrame: bool;
|
|
2297
2332
|
}
|
|
2298
2333
|
|
|
2299
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2334
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (178) */
|
|
2300
2335
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2301
2336
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2302
2337
|
}
|
|
2303
2338
|
|
|
2304
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2339
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
|
|
2305
2340
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2306
2341
|
readonly notaryId: Compact<u32>;
|
|
2307
2342
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2309,7 +2344,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2309
2344
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2310
2345
|
}
|
|
2311
2346
|
|
|
2312
|
-
/** @name PalletDigestsError (
|
|
2347
|
+
/** @name PalletDigestsError (183) */
|
|
2313
2348
|
interface PalletDigestsError extends Enum {
|
|
2314
2349
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2315
2350
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2340,7 +2375,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2340
2375
|
| 'DuplicateFrameInfoDigest';
|
|
2341
2376
|
}
|
|
2342
2377
|
|
|
2343
|
-
/** @name PalletTimestampCall (
|
|
2378
|
+
/** @name PalletTimestampCall (184) */
|
|
2344
2379
|
interface PalletTimestampCall extends Enum {
|
|
2345
2380
|
readonly isSet: boolean;
|
|
2346
2381
|
readonly asSet: {
|
|
@@ -2349,7 +2384,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2349
2384
|
readonly type: 'Set';
|
|
2350
2385
|
}
|
|
2351
2386
|
|
|
2352
|
-
/** @name PalletMultisigMultisig (
|
|
2387
|
+
/** @name PalletMultisigMultisig (186) */
|
|
2353
2388
|
interface PalletMultisigMultisig extends Struct {
|
|
2354
2389
|
readonly when: PalletMultisigTimepoint;
|
|
2355
2390
|
readonly deposit: u128;
|
|
@@ -2357,7 +2392,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2357
2392
|
readonly approvals: Vec<AccountId32>;
|
|
2358
2393
|
}
|
|
2359
2394
|
|
|
2360
|
-
/** @name PalletMultisigCall (
|
|
2395
|
+
/** @name PalletMultisigCall (189) */
|
|
2361
2396
|
interface PalletMultisigCall extends Enum {
|
|
2362
2397
|
readonly isAsMultiThreshold1: boolean;
|
|
2363
2398
|
readonly asAsMultiThreshold1: {
|
|
@@ -2401,7 +2436,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2401
2436
|
| 'PokeDeposit';
|
|
2402
2437
|
}
|
|
2403
2438
|
|
|
2404
|
-
/** @name PalletProxyCall (
|
|
2439
|
+
/** @name PalletProxyCall (191) */
|
|
2405
2440
|
interface PalletProxyCall extends Enum {
|
|
2406
2441
|
readonly isProxy: boolean;
|
|
2407
2442
|
readonly asProxy: {
|
|
@@ -2473,10 +2508,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2473
2508
|
| 'PokeDeposit';
|
|
2474
2509
|
}
|
|
2475
2510
|
|
|
2476
|
-
/** @name PalletTicksCall (
|
|
2511
|
+
/** @name PalletTicksCall (195) */
|
|
2477
2512
|
type PalletTicksCall = Null;
|
|
2478
2513
|
|
|
2479
|
-
/** @name PalletMiningSlotCall (
|
|
2514
|
+
/** @name PalletMiningSlotCall (196) */
|
|
2480
2515
|
interface PalletMiningSlotCall extends Enum {
|
|
2481
2516
|
readonly isBid: boolean;
|
|
2482
2517
|
readonly asBid: {
|
|
@@ -2492,7 +2527,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2492
2527
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2493
2528
|
}
|
|
2494
2529
|
|
|
2495
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2530
|
+
/** @name PalletBitcoinUtxosCall (197) */
|
|
2496
2531
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2497
2532
|
readonly isSync: boolean;
|
|
2498
2533
|
readonly asSync: {
|
|
@@ -2525,21 +2560,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2525
2560
|
| 'RejectUtxoCandidate';
|
|
2526
2561
|
}
|
|
2527
2562
|
|
|
2528
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2563
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
|
|
2529
2564
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2530
2565
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2531
2566
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2532
2567
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2533
2568
|
}
|
|
2534
2569
|
|
|
2535
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2570
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
|
|
2536
2571
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2537
2572
|
readonly utxoId: Compact<u64>;
|
|
2538
2573
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2539
2574
|
readonly bitcoinHeight: Compact<u64>;
|
|
2540
2575
|
}
|
|
2541
2576
|
|
|
2542
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2577
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
|
|
2543
2578
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2544
2579
|
readonly utxoId: Compact<u64>;
|
|
2545
2580
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2548,13 +2583,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2548
2583
|
readonly bitcoinHeight: Compact<u64>;
|
|
2549
2584
|
}
|
|
2550
2585
|
|
|
2551
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2586
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
|
|
2552
2587
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2553
2588
|
readonly blockHeight: Compact<u64>;
|
|
2554
2589
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2555
2590
|
}
|
|
2556
2591
|
|
|
2557
|
-
/** @name PalletVaultsCall (
|
|
2592
|
+
/** @name PalletVaultsCall (205) */
|
|
2558
2593
|
interface PalletVaultsCall extends Enum {
|
|
2559
2594
|
readonly isCreate: boolean;
|
|
2560
2595
|
readonly asCreate: {
|
|
@@ -2608,7 +2643,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2608
2643
|
| 'SetCommittedArgonots';
|
|
2609
2644
|
}
|
|
2610
2645
|
|
|
2611
|
-
/** @name PalletVaultsVaultConfig (
|
|
2646
|
+
/** @name PalletVaultsVaultConfig (206) */
|
|
2612
2647
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2613
2648
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2614
2649
|
readonly name: Option<Bytes>;
|
|
@@ -2618,7 +2653,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2618
2653
|
readonly securitizationRatio: Compact<u128>;
|
|
2619
2654
|
}
|
|
2620
2655
|
|
|
2621
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2656
|
+
/** @name ArgonPrimitivesVaultVaultTerms (207) */
|
|
2622
2657
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2623
2658
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2624
2659
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -2626,10 +2661,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2626
2661
|
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2627
2662
|
}
|
|
2628
2663
|
|
|
2629
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2664
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
|
|
2630
2665
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2631
2666
|
|
|
2632
|
-
/** @name PalletBitcoinLocksCall (
|
|
2667
|
+
/** @name PalletBitcoinLocksCall (215) */
|
|
2633
2668
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2634
2669
|
readonly isInitialize: boolean;
|
|
2635
2670
|
readonly asInitialize: {
|
|
@@ -2695,10 +2730,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2695
2730
|
| 'IncreaseSecuritization';
|
|
2696
2731
|
}
|
|
2697
2732
|
|
|
2698
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2733
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
|
|
2699
2734
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2700
2735
|
|
|
2701
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2736
|
+
/** @name PalletBitcoinLocksLockOptions (219) */
|
|
2702
2737
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2703
2738
|
readonly isV1: boolean;
|
|
2704
2739
|
readonly asV1: {
|
|
@@ -2707,7 +2742,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2707
2742
|
readonly type: 'V1';
|
|
2708
2743
|
}
|
|
2709
2744
|
|
|
2710
|
-
/** @name PalletNotariesCall (
|
|
2745
|
+
/** @name PalletNotariesCall (222) */
|
|
2711
2746
|
interface PalletNotariesCall extends Enum {
|
|
2712
2747
|
readonly isPropose: boolean;
|
|
2713
2748
|
readonly asPropose: {
|
|
@@ -2726,7 +2761,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2726
2761
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2727
2762
|
}
|
|
2728
2763
|
|
|
2729
|
-
/** @name PalletNotebookCall (
|
|
2764
|
+
/** @name PalletNotebookCall (223) */
|
|
2730
2765
|
interface PalletNotebookCall extends Enum {
|
|
2731
2766
|
readonly isSubmit: boolean;
|
|
2732
2767
|
readonly asSubmit: {
|
|
@@ -2739,13 +2774,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2739
2774
|
readonly type: 'Submit' | 'Unlock';
|
|
2740
2775
|
}
|
|
2741
2776
|
|
|
2742
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2777
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
|
|
2743
2778
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2744
2779
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2745
2780
|
readonly signature: U8aFixed;
|
|
2746
2781
|
}
|
|
2747
2782
|
|
|
2748
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2783
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (226) */
|
|
2749
2784
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2750
2785
|
readonly version: Compact<u16>;
|
|
2751
2786
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2764,7 +2799,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2764
2799
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2765
2800
|
}
|
|
2766
2801
|
|
|
2767
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2802
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (229) */
|
|
2768
2803
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2769
2804
|
readonly isToMainchain: boolean;
|
|
2770
2805
|
readonly asToMainchain: {
|
|
@@ -2778,13 +2813,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2778
2813
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2779
2814
|
}
|
|
2780
2815
|
|
|
2781
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2816
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
|
|
2782
2817
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2783
2818
|
readonly notebookNumber: Compact<u32>;
|
|
2784
2819
|
readonly accountUid: Compact<u32>;
|
|
2785
2820
|
}
|
|
2786
2821
|
|
|
2787
|
-
/** @name PalletLocalchainTransferCall (
|
|
2822
|
+
/** @name PalletLocalchainTransferCall (239) */
|
|
2788
2823
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2789
2824
|
readonly isSendToLocalchain: boolean;
|
|
2790
2825
|
readonly asSendToLocalchain: {
|
|
@@ -2794,7 +2829,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2794
2829
|
readonly type: 'SendToLocalchain';
|
|
2795
2830
|
}
|
|
2796
2831
|
|
|
2797
|
-
/** @name PalletBlockSealSpecCall (
|
|
2832
|
+
/** @name PalletBlockSealSpecCall (240) */
|
|
2798
2833
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2799
2834
|
readonly isConfigure: boolean;
|
|
2800
2835
|
readonly asConfigure: {
|
|
@@ -2804,7 +2839,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2804
2839
|
readonly type: 'Configure';
|
|
2805
2840
|
}
|
|
2806
2841
|
|
|
2807
|
-
/** @name PalletDomainsCall (
|
|
2842
|
+
/** @name PalletDomainsCall (241) */
|
|
2808
2843
|
interface PalletDomainsCall extends Enum {
|
|
2809
2844
|
readonly isSetZoneRecord: boolean;
|
|
2810
2845
|
readonly asSetZoneRecord: {
|
|
@@ -2814,7 +2849,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2814
2849
|
readonly type: 'SetZoneRecord';
|
|
2815
2850
|
}
|
|
2816
2851
|
|
|
2817
|
-
/** @name PalletPriceIndexCall (
|
|
2852
|
+
/** @name PalletPriceIndexCall (242) */
|
|
2818
2853
|
interface PalletPriceIndexCall extends Enum {
|
|
2819
2854
|
readonly isSubmit: boolean;
|
|
2820
2855
|
readonly asSubmit: {
|
|
@@ -2827,7 +2862,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2827
2862
|
readonly type: 'Submit' | 'SetOperator';
|
|
2828
2863
|
}
|
|
2829
2864
|
|
|
2830
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2865
|
+
/** @name PalletPriceIndexPriceIndex (243) */
|
|
2831
2866
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2832
2867
|
readonly btcUsdPrice: Compact<u128>;
|
|
2833
2868
|
readonly argonotUsdPrice: u128;
|
|
@@ -2837,7 +2872,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2872
|
readonly tick: Compact<u64>;
|
|
2838
2873
|
}
|
|
2839
2874
|
|
|
2840
|
-
/** @name PalletGrandpaCall (
|
|
2875
|
+
/** @name PalletGrandpaCall (244) */
|
|
2841
2876
|
interface PalletGrandpaCall extends Enum {
|
|
2842
2877
|
readonly isReportEquivocation: boolean;
|
|
2843
2878
|
readonly asReportEquivocation: {
|
|
@@ -2857,13 +2892,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2857
2892
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2858
2893
|
}
|
|
2859
2894
|
|
|
2860
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2895
|
+
/** @name SpConsensusGrandpaEquivocationProof (245) */
|
|
2861
2896
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2862
2897
|
readonly setId: u64;
|
|
2863
2898
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2864
2899
|
}
|
|
2865
2900
|
|
|
2866
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2901
|
+
/** @name SpConsensusGrandpaEquivocation (246) */
|
|
2867
2902
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2868
2903
|
readonly isPrevote: boolean;
|
|
2869
2904
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2872,7 +2907,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2872
2907
|
readonly type: 'Prevote' | 'Precommit';
|
|
2873
2908
|
}
|
|
2874
2909
|
|
|
2875
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2910
|
+
/** @name FinalityGrandpaEquivocationPrevote (247) */
|
|
2876
2911
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2877
2912
|
readonly roundNumber: u64;
|
|
2878
2913
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2880,16 +2915,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2880
2915
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2881
2916
|
}
|
|
2882
2917
|
|
|
2883
|
-
/** @name FinalityGrandpaPrevote (
|
|
2918
|
+
/** @name FinalityGrandpaPrevote (248) */
|
|
2884
2919
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2885
2920
|
readonly targetHash: H256;
|
|
2886
2921
|
readonly targetNumber: u32;
|
|
2887
2922
|
}
|
|
2888
2923
|
|
|
2889
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2924
|
+
/** @name SpConsensusGrandpaAppSignature (249) */
|
|
2890
2925
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2891
2926
|
|
|
2892
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2927
|
+
/** @name FinalityGrandpaEquivocationPrecommit (251) */
|
|
2893
2928
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2894
2929
|
readonly roundNumber: u64;
|
|
2895
2930
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2897,16 +2932,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2897
2932
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2898
2933
|
}
|
|
2899
2934
|
|
|
2900
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2935
|
+
/** @name FinalityGrandpaPrecommit (252) */
|
|
2901
2936
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2902
2937
|
readonly targetHash: H256;
|
|
2903
2938
|
readonly targetNumber: u32;
|
|
2904
2939
|
}
|
|
2905
2940
|
|
|
2906
|
-
/** @name SpCoreVoid (
|
|
2941
|
+
/** @name SpCoreVoid (254) */
|
|
2907
2942
|
type SpCoreVoid = Null;
|
|
2908
2943
|
|
|
2909
|
-
/** @name PalletBlockSealCall (
|
|
2944
|
+
/** @name PalletBlockSealCall (255) */
|
|
2910
2945
|
interface PalletBlockSealCall extends Enum {
|
|
2911
2946
|
readonly isApply: boolean;
|
|
2912
2947
|
readonly asApply: {
|
|
@@ -2915,7 +2950,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2915
2950
|
readonly type: 'Apply';
|
|
2916
2951
|
}
|
|
2917
2952
|
|
|
2918
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2953
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
|
|
2919
2954
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2920
2955
|
readonly isVote: boolean;
|
|
2921
2956
|
readonly asVote: {
|
|
@@ -2930,14 +2965,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2930
2965
|
readonly type: 'Vote' | 'Compute';
|
|
2931
2966
|
}
|
|
2932
2967
|
|
|
2933
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
2968
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
|
|
2934
2969
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2935
2970
|
readonly proof: Vec<H256>;
|
|
2936
2971
|
readonly numberOfLeaves: Compact<u32>;
|
|
2937
2972
|
readonly leafIndex: Compact<u32>;
|
|
2938
2973
|
}
|
|
2939
2974
|
|
|
2940
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
2975
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
|
|
2941
2976
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2942
2977
|
readonly accountId: AccountId32;
|
|
2943
2978
|
readonly blockHash: H256;
|
|
@@ -2948,7 +2983,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2948
2983
|
readonly tick: Compact<u64>;
|
|
2949
2984
|
}
|
|
2950
2985
|
|
|
2951
|
-
/** @name SpRuntimeMultiSignature (
|
|
2986
|
+
/** @name SpRuntimeMultiSignature (260) */
|
|
2952
2987
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2953
2988
|
readonly isEd25519: boolean;
|
|
2954
2989
|
readonly asEd25519: U8aFixed;
|
|
@@ -2961,7 +2996,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2996
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2962
2997
|
}
|
|
2963
2998
|
|
|
2964
|
-
/** @name PalletBlockRewardsCall (
|
|
2999
|
+
/** @name PalletBlockRewardsCall (262) */
|
|
2965
3000
|
interface PalletBlockRewardsCall extends Enum {
|
|
2966
3001
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2967
3002
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -2974,10 +3009,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2974
3009
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2975
3010
|
}
|
|
2976
3011
|
|
|
2977
|
-
/** @name PalletMintCall (
|
|
3012
|
+
/** @name PalletMintCall (263) */
|
|
2978
3013
|
type PalletMintCall = Null;
|
|
2979
3014
|
|
|
2980
|
-
/** @name PalletBalancesCall (
|
|
3015
|
+
/** @name PalletBalancesCall (264) */
|
|
2981
3016
|
interface PalletBalancesCall extends Enum {
|
|
2982
3017
|
readonly isTransferAllowDeath: boolean;
|
|
2983
3018
|
readonly asTransferAllowDeath: {
|
|
@@ -3036,14 +3071,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
3071
|
| 'Burn';
|
|
3037
3072
|
}
|
|
3038
3073
|
|
|
3039
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3074
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3040
3075
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3041
3076
|
readonly isIncrease: boolean;
|
|
3042
3077
|
readonly isDecrease: boolean;
|
|
3043
3078
|
readonly type: 'Increase' | 'Decrease';
|
|
3044
3079
|
}
|
|
3045
3080
|
|
|
3046
|
-
/** @name PalletTxPauseCall (
|
|
3081
|
+
/** @name PalletTxPauseCall (267) */
|
|
3047
3082
|
interface PalletTxPauseCall extends Enum {
|
|
3048
3083
|
readonly isPause: boolean;
|
|
3049
3084
|
readonly asPause: {
|
|
@@ -3056,7 +3091,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3056
3091
|
readonly type: 'Pause' | 'Unpause';
|
|
3057
3092
|
}
|
|
3058
3093
|
|
|
3059
|
-
/** @name PalletUtilityCall (
|
|
3094
|
+
/** @name PalletUtilityCall (268) */
|
|
3060
3095
|
interface PalletUtilityCall extends Enum {
|
|
3061
3096
|
readonly isBatch: boolean;
|
|
3062
3097
|
readonly asBatch: {
|
|
@@ -3106,7 +3141,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3106
3141
|
| 'DispatchAsFallible';
|
|
3107
3142
|
}
|
|
3108
3143
|
|
|
3109
|
-
/** @name PalletSudoCall (
|
|
3144
|
+
/** @name PalletSudoCall (270) */
|
|
3110
3145
|
interface PalletSudoCall extends Enum {
|
|
3111
3146
|
readonly isSudo: boolean;
|
|
3112
3147
|
readonly asSudo: {
|
|
@@ -3130,7 +3165,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3130
3165
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3131
3166
|
}
|
|
3132
3167
|
|
|
3133
|
-
/** @name PalletTreasuryCall (
|
|
3168
|
+
/** @name PalletTreasuryCall (271) */
|
|
3134
3169
|
interface PalletTreasuryCall extends Enum {
|
|
3135
3170
|
readonly isBuyBonds: boolean;
|
|
3136
3171
|
readonly asBuyBonds: {
|
|
@@ -3142,10 +3177,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3142
3177
|
readonly asLiquidateBondLot: {
|
|
3143
3178
|
readonly bondLotId: u64;
|
|
3144
3179
|
} & Struct;
|
|
3145
|
-
readonly
|
|
3180
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3181
|
+
readonly asBuyArgonotBonds: {
|
|
3182
|
+
readonly bonds: u32;
|
|
3183
|
+
} & Struct;
|
|
3184
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3146
3185
|
}
|
|
3147
3186
|
|
|
3148
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3187
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3149
3188
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3150
3189
|
readonly vaultId: Compact<u32>;
|
|
3151
3190
|
readonly beneficiary: AccountId32;
|
|
@@ -3153,7 +3192,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3153
3192
|
readonly signature: SpRuntimeMultiSignature;
|
|
3154
3193
|
}
|
|
3155
3194
|
|
|
3156
|
-
/** @name PalletOperationalAccountsCall (
|
|
3195
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3157
3196
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3158
3197
|
readonly isRegister: boolean;
|
|
3159
3198
|
readonly asRegister: {
|
|
@@ -3161,8 +3200,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3161
3200
|
} & Struct;
|
|
3162
3201
|
readonly isSetRewardConfig: boolean;
|
|
3163
3202
|
readonly asSetRewardConfig: {
|
|
3164
|
-
readonly
|
|
3165
|
-
readonly
|
|
3203
|
+
readonly operationalCertificationReward: u128;
|
|
3204
|
+
readonly operationalCertificationBonusReward: u128;
|
|
3166
3205
|
} & Struct;
|
|
3167
3206
|
readonly isForceSetProgress: boolean;
|
|
3168
3207
|
readonly asForceSetProgress: {
|
|
@@ -3170,9 +3209,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3170
3209
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3171
3210
|
readonly updateOperationalProgress: bool;
|
|
3172
3211
|
} & Struct;
|
|
3173
|
-
readonly
|
|
3174
|
-
readonly
|
|
3175
|
-
readonly
|
|
3212
|
+
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3213
|
+
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3214
|
+
readonly downstreamAccount: AccountId32;
|
|
3176
3215
|
readonly encryptedServer: Bytes;
|
|
3177
3216
|
} & Struct;
|
|
3178
3217
|
readonly isActivate: boolean;
|
|
@@ -3184,59 +3223,55 @@ declare module '@polkadot/types/lookup' {
|
|
|
3184
3223
|
| 'Register'
|
|
3185
3224
|
| 'SetRewardConfig'
|
|
3186
3225
|
| 'ForceSetProgress'
|
|
3187
|
-
| '
|
|
3226
|
+
| 'SetEncryptedServerForDownstreamAccount'
|
|
3188
3227
|
| 'Activate'
|
|
3189
3228
|
| 'ClaimRewards';
|
|
3190
3229
|
}
|
|
3191
3230
|
|
|
3192
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3231
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3193
3232
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3194
3233
|
readonly isV1: boolean;
|
|
3195
3234
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3196
3235
|
readonly type: 'V1';
|
|
3197
3236
|
}
|
|
3198
3237
|
|
|
3199
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3238
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3200
3239
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3201
3240
|
readonly operationalAccount: AccountId32;
|
|
3202
3241
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
3203
3242
|
readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3204
3243
|
readonly vaultAccount: AccountId32;
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly miningBotAccount: AccountId32;
|
|
3244
|
+
readonly miningAccount: AccountId32;
|
|
3207
3245
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3208
|
-
readonly
|
|
3209
|
-
readonly
|
|
3210
|
-
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3246
|
+
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3247
|
+
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3211
3248
|
}
|
|
3212
3249
|
|
|
3213
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3250
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3214
3251
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3215
3252
|
|
|
3216
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3253
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3217
3254
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3218
3255
|
readonly signature: SpRuntimeMultiSignature;
|
|
3219
3256
|
}
|
|
3220
3257
|
|
|
3221
|
-
/** @name
|
|
3222
|
-
interface
|
|
3223
|
-
readonly
|
|
3224
|
-
readonly
|
|
3225
|
-
readonly sponsor: AccountId32;
|
|
3226
|
-
readonly expiresAtFrame: Compact<u64>;
|
|
3227
|
-
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3258
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (280) */
|
|
3259
|
+
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3260
|
+
readonly upstreamAccount: AccountId32;
|
|
3261
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3228
3262
|
}
|
|
3229
3263
|
|
|
3230
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3264
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3231
3265
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3232
|
-
readonly
|
|
3266
|
+
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3267
|
+
readonly accountBitcoinAmount: Option<u128>;
|
|
3268
|
+
readonly accountVaultBondAmount: Option<u128>;
|
|
3233
3269
|
readonly vaultCreated: Option<bool>;
|
|
3234
|
-
readonly
|
|
3235
|
-
readonly
|
|
3236
|
-
readonly observedMiningSeatTotal: Option<u32>;
|
|
3270
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3271
|
+
readonly miningSeatCount: Option<u32>;
|
|
3237
3272
|
}
|
|
3238
3273
|
|
|
3239
|
-
/** @name PalletEthereumVerifierCall (
|
|
3274
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3240
3275
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3241
3276
|
readonly isForceCheckpoint: boolean;
|
|
3242
3277
|
readonly asForceCheckpoint: {
|
|
@@ -3264,7 +3299,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3299
|
| 'SetOperatingMode';
|
|
3265
3300
|
}
|
|
3266
3301
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3302
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3268
3303
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3269
3304
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3270
3305
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3273,7 +3308,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3273
3308
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3274
3309
|
}
|
|
3275
3310
|
|
|
3276
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3311
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3277
3312
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3278
3313
|
readonly slot: u64;
|
|
3279
3314
|
readonly proposerIndex: u64;
|
|
@@ -3282,22 +3317,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3282
3317
|
readonly bodyRoot: H256;
|
|
3283
3318
|
}
|
|
3284
3319
|
|
|
3285
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3320
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3286
3321
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3287
3322
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3288
3323
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3289
3324
|
}
|
|
3290
3325
|
|
|
3291
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3326
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3292
3327
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3293
3328
|
|
|
3294
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3329
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3295
3330
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3296
3331
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3297
3332
|
readonly executionBranch: Vec<H256>;
|
|
3298
3333
|
}
|
|
3299
3334
|
|
|
3300
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3335
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3301
3336
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3302
3337
|
readonly isCapella: boolean;
|
|
3303
3338
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3306,7 +3341,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3306
3341
|
readonly type: 'Capella' | 'Deneb';
|
|
3307
3342
|
}
|
|
3308
3343
|
|
|
3309
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3344
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3310
3345
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3311
3346
|
readonly parentHash: H256;
|
|
3312
3347
|
readonly feeRecipient: H160;
|
|
@@ -3325,7 +3360,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3325
3360
|
readonly withdrawalsRoot: H256;
|
|
3326
3361
|
}
|
|
3327
3362
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3363
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3329
3364
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3330
3365
|
readonly parentHash: H256;
|
|
3331
3366
|
readonly feeRecipient: H160;
|
|
@@ -3346,7 +3381,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3381
|
readonly excessBlobGas: u64;
|
|
3347
3382
|
}
|
|
3348
3383
|
|
|
3349
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3384
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3350
3385
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3351
3386
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3352
3387
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3357,13 +3392,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3357
3392
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3358
3393
|
}
|
|
3359
3394
|
|
|
3360
|
-
/** @name PalletEthereumVerifierFork (
|
|
3395
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3361
3396
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3362
3397
|
readonly version: U8aFixed;
|
|
3363
3398
|
readonly epoch: Compact<u64>;
|
|
3364
3399
|
}
|
|
3365
3400
|
|
|
3366
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3401
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3367
3402
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3368
3403
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3404
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3374,22 +3409,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3409
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3375
3410
|
}
|
|
3376
3411
|
|
|
3377
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3412
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3378
3413
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3379
3414
|
readonly syncCommitteeBits: Bytes;
|
|
3380
3415
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3381
3416
|
}
|
|
3382
3417
|
|
|
3383
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3418
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3384
3419
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3385
3420
|
|
|
3386
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3421
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3387
3422
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3388
3423
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3389
3424
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3390
3425
|
}
|
|
3391
3426
|
|
|
3392
|
-
/** @name PalletCrosschainTransferCall (
|
|
3427
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3393
3428
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3394
3429
|
readonly isSetChainConfig: boolean;
|
|
3395
3430
|
readonly asSetChainConfig: {
|
|
@@ -3479,7 +3514,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3479
3514
|
| 'CollateralizeTransfer';
|
|
3480
3515
|
}
|
|
3481
3516
|
|
|
3482
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3517
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3483
3518
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3484
3519
|
readonly isEvm: boolean;
|
|
3485
3520
|
readonly asEvm: {
|
|
@@ -3491,7 +3526,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3491
3526
|
readonly type: 'Evm';
|
|
3492
3527
|
}
|
|
3493
3528
|
|
|
3494
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3529
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3495
3530
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3496
3531
|
readonly activationGasCost: Compact<u128>;
|
|
3497
3532
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3499,56 +3534,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3499
3534
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3500
3535
|
}
|
|
3501
3536
|
|
|
3502
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3537
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3503
3538
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3504
3539
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3505
3540
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3506
3541
|
}
|
|
3507
3542
|
|
|
3508
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3543
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3509
3544
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3510
3545
|
readonly anchorBlockHash: H256;
|
|
3511
3546
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3512
3547
|
}
|
|
3513
3548
|
|
|
3514
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3549
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3515
3550
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3516
3551
|
readonly rlp: Bytes;
|
|
3517
3552
|
}
|
|
3518
3553
|
|
|
3519
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3554
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3520
3555
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3521
3556
|
readonly targetBlockNumber: Compact<u64>;
|
|
3522
3557
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3523
3558
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3524
3559
|
}
|
|
3525
3560
|
|
|
3526
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3561
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3527
3562
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3528
3563
|
readonly nodes: Vec<Bytes>;
|
|
3529
3564
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3530
3565
|
}
|
|
3531
3566
|
|
|
3532
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3567
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3533
3568
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3534
3569
|
readonly transactionIndex: Compact<u64>;
|
|
3535
3570
|
readonly nodeIndexes: Vec<u16>;
|
|
3536
3571
|
}
|
|
3537
3572
|
|
|
3538
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3573
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3539
3574
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3540
3575
|
readonly transactionIndex: Compact<u64>;
|
|
3541
3576
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3542
3577
|
}
|
|
3543
3578
|
|
|
3544
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3579
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3545
3580
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3546
3581
|
readonly address: H160;
|
|
3547
3582
|
readonly topics: Vec<H256>;
|
|
3548
3583
|
readonly data: Bytes;
|
|
3549
3584
|
}
|
|
3550
3585
|
|
|
3551
|
-
/** @name PalletMultisigError (
|
|
3586
|
+
/** @name PalletMultisigError (335) */
|
|
3552
3587
|
interface PalletMultisigError extends Enum {
|
|
3553
3588
|
readonly isMinimumThreshold: boolean;
|
|
3554
3589
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3581,21 +3616,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3581
3616
|
| 'AlreadyStored';
|
|
3582
3617
|
}
|
|
3583
3618
|
|
|
3584
|
-
/** @name PalletProxyProxyDefinition (
|
|
3619
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3585
3620
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3586
3621
|
readonly delegate: AccountId32;
|
|
3587
3622
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3588
3623
|
readonly delay: u32;
|
|
3589
3624
|
}
|
|
3590
3625
|
|
|
3591
|
-
/** @name PalletProxyAnnouncement (
|
|
3626
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3592
3627
|
interface PalletProxyAnnouncement extends Struct {
|
|
3593
3628
|
readonly real: AccountId32;
|
|
3594
3629
|
readonly callHash: H256;
|
|
3595
3630
|
readonly height: u32;
|
|
3596
3631
|
}
|
|
3597
3632
|
|
|
3598
|
-
/** @name PalletProxyError (
|
|
3633
|
+
/** @name PalletProxyError (344) */
|
|
3599
3634
|
interface PalletProxyError extends Enum {
|
|
3600
3635
|
readonly isTooMany: boolean;
|
|
3601
3636
|
readonly isNotFound: boolean;
|
|
@@ -3616,16 +3651,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3616
3651
|
| 'NoSelfProxy';
|
|
3617
3652
|
}
|
|
3618
3653
|
|
|
3619
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3654
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3620
3655
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3621
3656
|
readonly tickDurationMillis: Compact<u64>;
|
|
3622
3657
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3623
3658
|
}
|
|
3624
3659
|
|
|
3625
|
-
/** @name PalletTicksError (
|
|
3660
|
+
/** @name PalletTicksError (347) */
|
|
3626
3661
|
type PalletTicksError = Null;
|
|
3627
3662
|
|
|
3628
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3663
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3629
3664
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3630
3665
|
readonly nonce: U256;
|
|
3631
3666
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3633,7 +3668,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3633
3668
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3634
3669
|
}
|
|
3635
3670
|
|
|
3636
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3671
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3637
3672
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3638
3673
|
readonly bidsCount: u32;
|
|
3639
3674
|
readonly bidAmountMin: u128;
|
|
@@ -3641,14 +3676,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3641
3676
|
readonly bidAmountSum: u128;
|
|
3642
3677
|
}
|
|
3643
3678
|
|
|
3644
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3679
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3645
3680
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3646
3681
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3647
3682
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3648
3683
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3649
3684
|
}
|
|
3650
3685
|
|
|
3651
|
-
/** @name PalletMiningSlotError (
|
|
3686
|
+
/** @name PalletMiningSlotError (376) */
|
|
3652
3687
|
interface PalletMiningSlotError extends Enum {
|
|
3653
3688
|
readonly isSlotNotTakingBids: boolean;
|
|
3654
3689
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3675,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3675
3710
|
| 'UnrecoverableHold';
|
|
3676
3711
|
}
|
|
3677
3712
|
|
|
3678
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3713
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3679
3714
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3680
3715
|
readonly utxoId: u64;
|
|
3681
3716
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3684,7 +3719,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3684
3719
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3685
3720
|
}
|
|
3686
3721
|
|
|
3687
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3722
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3688
3723
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3689
3724
|
readonly isP2wsh: boolean;
|
|
3690
3725
|
readonly asP2wsh: {
|
|
@@ -3693,7 +3728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3693
3728
|
readonly type: 'P2wsh';
|
|
3694
3729
|
}
|
|
3695
3730
|
|
|
3696
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3731
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3697
3732
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3698
3733
|
readonly isBitcoin: boolean;
|
|
3699
3734
|
readonly isTestnet: boolean;
|
|
@@ -3702,7 +3737,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3702
3737
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3703
3738
|
}
|
|
3704
3739
|
|
|
3705
|
-
/** @name PalletBitcoinUtxosError (
|
|
3740
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3706
3741
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3707
3742
|
readonly isNoPermissions: boolean;
|
|
3708
3743
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3737,7 +3772,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3737
3772
|
| 'LockAlreadyFunded';
|
|
3738
3773
|
}
|
|
3739
3774
|
|
|
3740
|
-
/** @name ArgonPrimitivesVault (
|
|
3775
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3741
3776
|
interface ArgonPrimitivesVault extends Struct {
|
|
3742
3777
|
readonly operatorAccountId: AccountId32;
|
|
3743
3778
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3758,13 +3793,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3758
3793
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3759
3794
|
}
|
|
3760
3795
|
|
|
3761
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3796
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3762
3797
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3763
3798
|
readonly committedMicronots: Compact<u128>;
|
|
3764
3799
|
readonly encumberedMicronots: Compact<u128>;
|
|
3765
3800
|
}
|
|
3766
3801
|
|
|
3767
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3802
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3768
3803
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3769
3804
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3770
3805
|
readonly depth: Compact<u8>;
|
|
@@ -3774,14 +3809,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3774
3809
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3775
3810
|
}
|
|
3776
3811
|
|
|
3777
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3812
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3778
3813
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3779
3814
|
readonly isMain: boolean;
|
|
3780
3815
|
readonly isTest: boolean;
|
|
3781
3816
|
readonly type: 'Main' | 'Test';
|
|
3782
3817
|
}
|
|
3783
3818
|
|
|
3784
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3819
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3785
3820
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3786
3821
|
readonly frameId: Compact<u64>;
|
|
3787
3822
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3801,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3801
3836
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3802
3837
|
}
|
|
3803
3838
|
|
|
3804
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3839
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3805
3840
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3806
3841
|
readonly blockNumber: Compact<u32>;
|
|
3807
3842
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3809,7 +3844,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3809
3844
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3810
3845
|
}
|
|
3811
3846
|
|
|
3812
|
-
/** @name PalletVaultsError (
|
|
3847
|
+
/** @name PalletVaultsError (414) */
|
|
3813
3848
|
interface PalletVaultsError extends Enum {
|
|
3814
3849
|
readonly isNoMoreVaultIds: boolean;
|
|
3815
3850
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3882,7 +3917,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3882
3917
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3883
3918
|
}
|
|
3884
3919
|
|
|
3885
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3920
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3886
3921
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3887
3922
|
readonly vaultId: Compact<u32>;
|
|
3888
3923
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3906,7 +3941,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3906
3941
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3907
3942
|
}
|
|
3908
3943
|
|
|
3909
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3944
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (419) */
|
|
3910
3945
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3911
3946
|
readonly utxoId: Compact<u64>;
|
|
3912
3947
|
readonly vaultId: Compact<u32>;
|
|
@@ -3916,7 +3951,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3916
3951
|
readonly redemptionAmount: Compact<u128>;
|
|
3917
3952
|
}
|
|
3918
3953
|
|
|
3919
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3954
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (421) */
|
|
3920
3955
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3921
3956
|
readonly utxoId: Compact<u64>;
|
|
3922
3957
|
readonly vaultId: Compact<u32>;
|
|
@@ -3925,14 +3960,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3925
3960
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3926
3961
|
}
|
|
3927
3962
|
|
|
3928
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3963
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
|
|
3929
3964
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3930
3965
|
readonly bitcoinNetworkFee: u64;
|
|
3931
3966
|
readonly toScriptPubkey: Bytes;
|
|
3932
3967
|
readonly createdAtArgonBlockNumber: u32;
|
|
3933
3968
|
}
|
|
3934
3969
|
|
|
3935
|
-
/** @name PalletBitcoinLocksError (
|
|
3970
|
+
/** @name PalletBitcoinLocksError (430) */
|
|
3936
3971
|
interface PalletBitcoinLocksError extends Enum {
|
|
3937
3972
|
readonly isInsufficientFunds: boolean;
|
|
3938
3973
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4008,7 +4043,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4008
4043
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4009
4044
|
}
|
|
4010
4045
|
|
|
4011
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4046
|
+
/** @name ArgonPrimitivesVaultVaultError (431) */
|
|
4012
4047
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4013
4048
|
readonly isVaultClosed: boolean;
|
|
4014
4049
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4039,7 +4074,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4039
4074
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4040
4075
|
}
|
|
4041
4076
|
|
|
4042
|
-
/** @name PalletNotariesError (
|
|
4077
|
+
/** @name PalletNotariesError (443) */
|
|
4043
4078
|
interface PalletNotariesError extends Enum {
|
|
4044
4079
|
readonly isProposalNotFound: boolean;
|
|
4045
4080
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4062,7 +4097,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4062
4097
|
| 'InvalidNotary';
|
|
4063
4098
|
}
|
|
4064
4099
|
|
|
4065
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4100
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
|
|
4066
4101
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4067
4102
|
readonly notebookNumber: Compact<u32>;
|
|
4068
4103
|
readonly tick: Compact<u64>;
|
|
@@ -4071,7 +4106,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4071
4106
|
readonly parentSecret: Option<H256>;
|
|
4072
4107
|
}
|
|
4073
4108
|
|
|
4074
|
-
/** @name PalletNotebookError (
|
|
4109
|
+
/** @name PalletNotebookError (450) */
|
|
4075
4110
|
interface PalletNotebookError extends Enum {
|
|
4076
4111
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4077
4112
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4106,7 +4141,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4106
4141
|
| 'InvalidNotebookSubmissionTick';
|
|
4107
4142
|
}
|
|
4108
4143
|
|
|
4109
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4144
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (451) */
|
|
4110
4145
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4111
4146
|
readonly accountId: AccountId32;
|
|
4112
4147
|
readonly amount: u128;
|
|
@@ -4114,10 +4149,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4114
4149
|
readonly notaryId: u32;
|
|
4115
4150
|
}
|
|
4116
4151
|
|
|
4117
|
-
/** @name FrameSupportPalletId (
|
|
4152
|
+
/** @name FrameSupportPalletId (453) */
|
|
4118
4153
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4119
4154
|
|
|
4120
|
-
/** @name PalletLocalchainTransferError (
|
|
4155
|
+
/** @name PalletLocalchainTransferError (454) */
|
|
4121
4156
|
interface PalletLocalchainTransferError extends Enum {
|
|
4122
4157
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4123
4158
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4138,7 +4173,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4138
4173
|
| 'NoAvailableTransferId';
|
|
4139
4174
|
}
|
|
4140
4175
|
|
|
4141
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4176
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
|
|
4142
4177
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4143
4178
|
readonly notaryId: Compact<u32>;
|
|
4144
4179
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4147,13 +4182,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4182
|
readonly blockVotingPower: Compact<u128>;
|
|
4148
4183
|
}
|
|
4149
4184
|
|
|
4150
|
-
/** @name PalletBlockSealSpecError (
|
|
4185
|
+
/** @name PalletBlockSealSpecError (463) */
|
|
4151
4186
|
interface PalletBlockSealSpecError extends Enum {
|
|
4152
4187
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4153
4188
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4154
4189
|
}
|
|
4155
4190
|
|
|
4156
|
-
/** @name PalletDomainsError (
|
|
4191
|
+
/** @name PalletDomainsError (465) */
|
|
4157
4192
|
interface PalletDomainsError extends Enum {
|
|
4158
4193
|
readonly isDomainNotRegistered: boolean;
|
|
4159
4194
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4168,21 +4203,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
4203
|
| 'AccountDecodingError';
|
|
4169
4204
|
}
|
|
4170
4205
|
|
|
4171
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4206
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (467) */
|
|
4172
4207
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4173
4208
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4174
4209
|
readonly totalCpi: i128;
|
|
4175
4210
|
readonly measurementsCount: u32;
|
|
4176
4211
|
}
|
|
4177
4212
|
|
|
4178
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4213
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
|
|
4179
4214
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4180
4215
|
readonly frameId: Compact<u64>;
|
|
4181
4216
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4182
4217
|
readonly sampleCount: Compact<u32>;
|
|
4183
4218
|
}
|
|
4184
4219
|
|
|
4185
|
-
/** @name PalletPriceIndexError (
|
|
4220
|
+
/** @name PalletPriceIndexError (472) */
|
|
4186
4221
|
interface PalletPriceIndexError extends Enum {
|
|
4187
4222
|
readonly isNotAuthorizedOperator: boolean;
|
|
4188
4223
|
readonly isMissingValue: boolean;
|
|
@@ -4195,7 +4230,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4195
4230
|
| 'MaxPriceChangePerTickExceeded';
|
|
4196
4231
|
}
|
|
4197
4232
|
|
|
4198
|
-
/** @name PalletGrandpaStoredState (
|
|
4233
|
+
/** @name PalletGrandpaStoredState (473) */
|
|
4199
4234
|
interface PalletGrandpaStoredState extends Enum {
|
|
4200
4235
|
readonly isLive: boolean;
|
|
4201
4236
|
readonly isPendingPause: boolean;
|
|
@@ -4212,7 +4247,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4212
4247
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4213
4248
|
}
|
|
4214
4249
|
|
|
4215
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4250
|
+
/** @name PalletGrandpaStoredPendingChange (474) */
|
|
4216
4251
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4217
4252
|
readonly scheduledAt: u32;
|
|
4218
4253
|
readonly delay: u32;
|
|
@@ -4220,7 +4255,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4220
4255
|
readonly forced: Option<u32>;
|
|
4221
4256
|
}
|
|
4222
4257
|
|
|
4223
|
-
/** @name PalletGrandpaError (
|
|
4258
|
+
/** @name PalletGrandpaError (476) */
|
|
4224
4259
|
interface PalletGrandpaError extends Enum {
|
|
4225
4260
|
readonly isPauseFailed: boolean;
|
|
4226
4261
|
readonly isResumeFailed: boolean;
|
|
@@ -4239,14 +4274,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4239
4274
|
| 'DuplicateOffenceReport';
|
|
4240
4275
|
}
|
|
4241
4276
|
|
|
4242
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4277
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
|
|
4243
4278
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4244
4279
|
readonly blockAuthorAccountId: AccountId32;
|
|
4245
4280
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4246
4281
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4247
4282
|
}
|
|
4248
4283
|
|
|
4249
|
-
/** @name PalletBlockSealError (
|
|
4284
|
+
/** @name PalletBlockSealError (479) */
|
|
4250
4285
|
interface PalletBlockSealError extends Enum {
|
|
4251
4286
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4252
4287
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4293,30 +4328,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4293
4328
|
| 'DuplicateVoteBlockAtTick';
|
|
4294
4329
|
}
|
|
4295
4330
|
|
|
4296
|
-
/** @name PalletBlockRewardsError (
|
|
4331
|
+
/** @name PalletBlockRewardsError (483) */
|
|
4297
4332
|
type PalletBlockRewardsError = Null;
|
|
4298
4333
|
|
|
4299
|
-
/** @name
|
|
4334
|
+
/** @name PalletMintPendingMintUtxo (484) */
|
|
4335
|
+
interface PalletMintPendingMintUtxo extends Struct {
|
|
4336
|
+
readonly utxoId: Compact<u64>;
|
|
4337
|
+
readonly accountId: AccountId32;
|
|
4338
|
+
readonly remainingAmount: Compact<u128>;
|
|
4339
|
+
readonly maxAmountPerFrame: Compact<u128>;
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
/** @name PalletMintMintQueueCursor (486) */
|
|
4343
|
+
interface PalletMintMintQueueCursor extends Struct {
|
|
4344
|
+
readonly payoutStartIndex: Compact<u64>;
|
|
4345
|
+
readonly payoutCursorIndex: Compact<u64>;
|
|
4346
|
+
readonly payoutCursorFrameId: Option<u64>;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
/** @name PalletMintMintAction (489) */
|
|
4300
4350
|
interface PalletMintMintAction extends Struct {
|
|
4301
4351
|
readonly argonBurned: u128;
|
|
4302
4352
|
readonly argonMinted: u128;
|
|
4303
4353
|
readonly bitcoinMinted: u128;
|
|
4304
4354
|
}
|
|
4305
4355
|
|
|
4306
|
-
/** @name PalletMintError (
|
|
4356
|
+
/** @name PalletMintError (491) */
|
|
4307
4357
|
interface PalletMintError extends Enum {
|
|
4308
4358
|
readonly isTooManyPendingMints: boolean;
|
|
4309
4359
|
readonly type: 'TooManyPendingMints';
|
|
4310
4360
|
}
|
|
4311
4361
|
|
|
4312
|
-
/** @name PalletBalancesBalanceLock (
|
|
4362
|
+
/** @name PalletBalancesBalanceLock (493) */
|
|
4313
4363
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4314
4364
|
readonly id: U8aFixed;
|
|
4315
4365
|
readonly amount: u128;
|
|
4316
4366
|
readonly reasons: PalletBalancesReasons;
|
|
4317
4367
|
}
|
|
4318
4368
|
|
|
4319
|
-
/** @name PalletBalancesReasons (
|
|
4369
|
+
/** @name PalletBalancesReasons (494) */
|
|
4320
4370
|
interface PalletBalancesReasons extends Enum {
|
|
4321
4371
|
readonly isFee: boolean;
|
|
4322
4372
|
readonly isMisc: boolean;
|
|
@@ -4324,38 +4374,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4324
4374
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4325
4375
|
}
|
|
4326
4376
|
|
|
4327
|
-
/** @name PalletBalancesReserveData (
|
|
4377
|
+
/** @name PalletBalancesReserveData (497) */
|
|
4328
4378
|
interface PalletBalancesReserveData extends Struct {
|
|
4329
4379
|
readonly id: U8aFixed;
|
|
4330
4380
|
readonly amount: u128;
|
|
4331
4381
|
}
|
|
4332
4382
|
|
|
4333
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4383
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
|
|
4334
4384
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4335
4385
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4336
4386
|
readonly amount: u128;
|
|
4337
4387
|
}
|
|
4338
4388
|
|
|
4339
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4389
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
|
|
4340
4390
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4341
4391
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4342
4392
|
readonly amount: u128;
|
|
4343
4393
|
}
|
|
4344
4394
|
|
|
4345
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4395
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (504) */
|
|
4346
4396
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4347
4397
|
readonly isBlockRewards: boolean;
|
|
4348
4398
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4349
4399
|
readonly type: 'BlockRewards';
|
|
4350
4400
|
}
|
|
4351
4401
|
|
|
4352
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4402
|
+
/** @name PalletBlockRewardsFreezeReason (505) */
|
|
4353
4403
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4354
4404
|
readonly isMaturationPeriod: boolean;
|
|
4355
4405
|
readonly type: 'MaturationPeriod';
|
|
4356
4406
|
}
|
|
4357
4407
|
|
|
4358
|
-
/** @name PalletBalancesError (
|
|
4408
|
+
/** @name PalletBalancesError (507) */
|
|
4359
4409
|
interface PalletBalancesError extends Enum {
|
|
4360
4410
|
readonly isVestingBalance: boolean;
|
|
4361
4411
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4384,7 +4434,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4384
4434
|
| 'DeltaZero';
|
|
4385
4435
|
}
|
|
4386
4436
|
|
|
4387
|
-
/** @name PalletTxPauseError (
|
|
4437
|
+
/** @name PalletTxPauseError (509) */
|
|
4388
4438
|
interface PalletTxPauseError extends Enum {
|
|
4389
4439
|
readonly isIsPaused: boolean;
|
|
4390
4440
|
readonly isIsUnpaused: boolean;
|
|
@@ -4393,58 +4443,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4393
4443
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4394
4444
|
}
|
|
4395
4445
|
|
|
4396
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4446
|
+
/** @name PalletTransactionPaymentReleases (510) */
|
|
4397
4447
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4398
4448
|
readonly isV1Ancient: boolean;
|
|
4399
4449
|
readonly isV2: boolean;
|
|
4400
4450
|
readonly type: 'V1Ancient' | 'V2';
|
|
4401
4451
|
}
|
|
4402
4452
|
|
|
4403
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4453
|
+
/** @name FrameSupportStorageNoDrop (511) */
|
|
4404
4454
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4405
4455
|
|
|
4406
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4456
|
+
/** @name FrameSupportTokensFungibleImbalance (512) */
|
|
4407
4457
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4408
4458
|
readonly amount: u128;
|
|
4409
4459
|
}
|
|
4410
4460
|
|
|
4411
|
-
/** @name PalletUtilityError (
|
|
4461
|
+
/** @name PalletUtilityError (513) */
|
|
4412
4462
|
interface PalletUtilityError extends Enum {
|
|
4413
4463
|
readonly isTooManyCalls: boolean;
|
|
4414
4464
|
readonly type: 'TooManyCalls';
|
|
4415
4465
|
}
|
|
4416
4466
|
|
|
4417
|
-
/** @name PalletSudoError (
|
|
4467
|
+
/** @name PalletSudoError (514) */
|
|
4418
4468
|
interface PalletSudoError extends Enum {
|
|
4419
4469
|
readonly isRequireSudo: boolean;
|
|
4420
4470
|
readonly type: 'RequireSudo';
|
|
4421
4471
|
}
|
|
4422
4472
|
|
|
4423
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4473
|
+
/** @name PalletTreasuryFrameVaultCapital (515) */
|
|
4424
4474
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4425
4475
|
readonly frameId: Compact<u64>;
|
|
4426
4476
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4427
4477
|
}
|
|
4428
4478
|
|
|
4429
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4479
|
+
/** @name PalletTreasuryVaultCapital (517) */
|
|
4430
4480
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4431
4481
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4432
4482
|
readonly eligibleBonds: Compact<u32>;
|
|
4433
4483
|
}
|
|
4434
4484
|
|
|
4435
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4485
|
+
/** @name PalletTreasuryBondLotAllocation (519) */
|
|
4436
4486
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4437
4487
|
readonly bondLotId: Compact<u64>;
|
|
4438
4488
|
readonly prorata: u128;
|
|
4439
4489
|
}
|
|
4440
4490
|
|
|
4441
|
-
/** @name
|
|
4491
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (524) */
|
|
4492
|
+
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4493
|
+
readonly frameId: Compact<u64>;
|
|
4494
|
+
readonly totalBonds: Compact<u32>;
|
|
4495
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4496
|
+
}
|
|
4497
|
+
|
|
4498
|
+
/** @name PalletTreasuryBondLotSummary (526) */
|
|
4499
|
+
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4500
|
+
readonly bondLotId: Compact<u64>;
|
|
4501
|
+
readonly bonds: Compact<u32>;
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
/** @name PalletTreasuryBondLot (528) */
|
|
4442
4505
|
interface PalletTreasuryBondLot extends Struct {
|
|
4443
4506
|
readonly owner: AccountId32;
|
|
4444
|
-
readonly
|
|
4507
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4445
4508
|
readonly bonds: Compact<u32>;
|
|
4446
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4447
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4448
4509
|
readonly createdFrameId: Compact<u64>;
|
|
4449
4510
|
readonly participatedFrames: Compact<u32>;
|
|
4450
4511
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4454,13 +4515,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4454
4515
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4455
4516
|
}
|
|
4456
4517
|
|
|
4457
|
-
/** @name
|
|
4458
|
-
interface
|
|
4459
|
-
readonly
|
|
4460
|
-
readonly
|
|
4518
|
+
/** @name PalletTreasuryBondProgram (529) */
|
|
4519
|
+
interface PalletTreasuryBondProgram extends Enum {
|
|
4520
|
+
readonly isVault: boolean;
|
|
4521
|
+
readonly asVault: {
|
|
4522
|
+
readonly vaultId: Compact<u32>;
|
|
4523
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4524
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4525
|
+
} & Struct;
|
|
4526
|
+
readonly isArgonot: boolean;
|
|
4527
|
+
readonly type: 'Vault' | 'Argonot';
|
|
4461
4528
|
}
|
|
4462
4529
|
|
|
4463
|
-
/** @name PalletTreasuryError (
|
|
4530
|
+
/** @name PalletTreasuryError (533) */
|
|
4464
4531
|
interface PalletTreasuryError extends Enum {
|
|
4465
4532
|
readonly isBondPurchaseRejected: boolean;
|
|
4466
4533
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4478,6 +4545,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4478
4545
|
readonly isBonusApprovalExpired: boolean;
|
|
4479
4546
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4480
4547
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4548
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4549
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4481
4550
|
readonly type:
|
|
4482
4551
|
| 'BondPurchaseRejected'
|
|
4483
4552
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4494,91 +4563,99 @@ declare module '@polkadot/types/lookup' {
|
|
|
4494
4563
|
| 'BonusApprovalWrongAccount'
|
|
4495
4564
|
| 'BonusApprovalExpired'
|
|
4496
4565
|
| 'BonusApprovalExistingBondLot'
|
|
4497
|
-
| 'InvalidBonusApprovalSignature'
|
|
4566
|
+
| 'InvalidBonusApprovalSignature'
|
|
4567
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4568
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4498
4569
|
}
|
|
4499
4570
|
|
|
4500
|
-
/** @name PalletFeeControlError (
|
|
4571
|
+
/** @name PalletFeeControlError (534) */
|
|
4501
4572
|
interface PalletFeeControlError extends Enum {
|
|
4502
4573
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4503
4574
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4504
4575
|
}
|
|
4505
4576
|
|
|
4506
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4577
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4507
4578
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4508
4579
|
readonly vaultAccount: AccountId32;
|
|
4509
|
-
readonly
|
|
4510
|
-
readonly miningBotAccount: AccountId32;
|
|
4580
|
+
readonly miningAccount: AccountId32;
|
|
4511
4581
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4512
|
-
readonly
|
|
4513
|
-
readonly
|
|
4582
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
4583
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
4584
|
+
readonly accountBitcoinAmount: u128;
|
|
4585
|
+
readonly accountVaultBondAmount: u128;
|
|
4514
4586
|
readonly vaultCreated: bool;
|
|
4515
|
-
readonly
|
|
4516
|
-
readonly
|
|
4517
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4587
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4588
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4518
4589
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4519
4590
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4520
|
-
readonly
|
|
4521
|
-
readonly
|
|
4522
|
-
readonly
|
|
4591
|
+
readonly operationalCertificationsCount: Compact<u32>;
|
|
4592
|
+
readonly accessCodePending: bool;
|
|
4593
|
+
readonly availableAccessCodes: Compact<u32>;
|
|
4523
4594
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4524
4595
|
readonly rewardsEarnedAmount: u128;
|
|
4525
4596
|
readonly rewardsCollectedAmount: u128;
|
|
4526
|
-
readonly
|
|
4597
|
+
readonly isOperationallyCertified: bool;
|
|
4527
4598
|
}
|
|
4528
4599
|
|
|
4529
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4600
|
+
/** @name PalletOperationalAccountsRewardsConfig (536) */
|
|
4530
4601
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4602
|
+
readonly operationalCertificationReward: Compact<u128>;
|
|
4603
|
+
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4533
4604
|
}
|
|
4534
4605
|
|
|
4535
|
-
/** @name PalletOperationalAccountsError (
|
|
4606
|
+
/** @name PalletOperationalAccountsError (538) */
|
|
4536
4607
|
interface PalletOperationalAccountsError extends Enum {
|
|
4537
4608
|
readonly isAlreadyRegistered: boolean;
|
|
4538
4609
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4539
4610
|
readonly isAccountAlreadyLinked: boolean;
|
|
4540
4611
|
readonly isInvalidAccountProof: boolean;
|
|
4541
4612
|
readonly isNotOperationalAccount: boolean;
|
|
4542
|
-
readonly isInvalidReferralProof: boolean;
|
|
4543
|
-
readonly isReferralProofExpired: boolean;
|
|
4544
4613
|
readonly isRegistrationInviteRequired: boolean;
|
|
4614
|
+
readonly isInvalidAccessProof: boolean;
|
|
4615
|
+
readonly isUpstreamNotOperationalAccount: boolean;
|
|
4616
|
+
readonly isMinimumsNotMet: boolean;
|
|
4617
|
+
readonly isCannotGrantAccessToSelf: boolean;
|
|
4545
4618
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4546
4619
|
readonly isEncryptedServerTooLong: boolean;
|
|
4547
|
-
readonly
|
|
4620
|
+
readonly isNotUpstreamOfDownstream: boolean;
|
|
4548
4621
|
readonly isNoPendingRewards: boolean;
|
|
4549
4622
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4550
4623
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
4551
4624
|
readonly isRewardClaimExceedsPending: boolean;
|
|
4552
4625
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
4553
|
-
readonly
|
|
4626
|
+
readonly isAlreadyOperationallyCertified: boolean;
|
|
4554
4627
|
readonly isNotEligibleForActivation: boolean;
|
|
4628
|
+
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4555
4629
|
readonly type:
|
|
4556
4630
|
| 'AlreadyRegistered'
|
|
4557
4631
|
| 'InvalidRegistrationSubmitter'
|
|
4558
4632
|
| 'AccountAlreadyLinked'
|
|
4559
4633
|
| 'InvalidAccountProof'
|
|
4560
4634
|
| 'NotOperationalAccount'
|
|
4561
|
-
| 'InvalidReferralProof'
|
|
4562
|
-
| 'ReferralProofExpired'
|
|
4563
4635
|
| 'RegistrationInviteRequired'
|
|
4636
|
+
| 'InvalidAccessProof'
|
|
4637
|
+
| 'UpstreamNotOperationalAccount'
|
|
4638
|
+
| 'MinimumsNotMet'
|
|
4639
|
+
| 'CannotGrantAccessToSelf'
|
|
4564
4640
|
| 'NoProgressUpdateProvided'
|
|
4565
4641
|
| 'EncryptedServerTooLong'
|
|
4566
|
-
| '
|
|
4642
|
+
| 'NotUpstreamOfDownstream'
|
|
4567
4643
|
| 'NoPendingRewards'
|
|
4568
4644
|
| 'RewardClaimBelowMinimum'
|
|
4569
4645
|
| 'RewardClaimNotWholeArgon'
|
|
4570
4646
|
| 'RewardClaimExceedsPending'
|
|
4571
4647
|
| 'TreasuryInsufficientFunds'
|
|
4572
|
-
| '
|
|
4573
|
-
| 'NotEligibleForActivation'
|
|
4648
|
+
| 'AlreadyOperationallyCertified'
|
|
4649
|
+
| 'NotEligibleForActivation'
|
|
4650
|
+
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4574
4651
|
}
|
|
4575
4652
|
|
|
4576
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4653
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
|
|
4577
4654
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4578
4655
|
readonly slot: Compact<u64>;
|
|
4579
4656
|
}
|
|
4580
4657
|
|
|
4581
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4658
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
|
|
4582
4659
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4583
4660
|
readonly blockNumber: Compact<u64>;
|
|
4584
4661
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4588,44 +4665,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4588
4665
|
readonly receiptsRoot: H256;
|
|
4589
4666
|
}
|
|
4590
4667
|
|
|
4591
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4668
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
|
|
4592
4669
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4593
4670
|
readonly root: H256;
|
|
4594
4671
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4595
4672
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4596
4673
|
}
|
|
4597
4674
|
|
|
4598
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4675
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
|
|
4599
4676
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4600
4677
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4601
4678
|
}
|
|
4602
4679
|
|
|
4603
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4680
|
+
/** @name SnowbridgeAmclBls381Ecp (544) */
|
|
4604
4681
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4605
4682
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4606
4683
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4607
4684
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4608
4685
|
}
|
|
4609
4686
|
|
|
4610
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4687
|
+
/** @name SnowbridgeAmclBls381Fp (545) */
|
|
4611
4688
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4612
4689
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4613
4690
|
readonly xes: i32;
|
|
4614
4691
|
}
|
|
4615
4692
|
|
|
4616
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4693
|
+
/** @name SnowbridgeAmclBls381Big (546) */
|
|
4617
4694
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4618
4695
|
readonly w: Vec<i32>;
|
|
4619
4696
|
}
|
|
4620
4697
|
|
|
4621
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4698
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
|
|
4622
4699
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4623
4700
|
readonly isMainnet: boolean;
|
|
4624
4701
|
readonly isMinimal: boolean;
|
|
4625
4702
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4626
4703
|
}
|
|
4627
4704
|
|
|
4628
|
-
/** @name PalletEthereumVerifierError (
|
|
4705
|
+
/** @name PalletEthereumVerifierError (551) */
|
|
4629
4706
|
interface PalletEthereumVerifierError extends Enum {
|
|
4630
4707
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4631
4708
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4678,21 +4755,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4678
4755
|
| 'Halted';
|
|
4679
4756
|
}
|
|
4680
4757
|
|
|
4681
|
-
/** @name
|
|
4758
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (552) */
|
|
4759
|
+
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4760
|
+
readonly microgonsIn: u128;
|
|
4761
|
+
readonly microgonsOut: u128;
|
|
4762
|
+
readonly argonTransfersInCount: Compact<u32>;
|
|
4763
|
+
readonly argonTransfersOutCount: Compact<u32>;
|
|
4764
|
+
readonly micronotsIn: u128;
|
|
4765
|
+
readonly micronotsOut: u128;
|
|
4766
|
+
readonly argonotTransfersInCount: Compact<u32>;
|
|
4767
|
+
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4768
|
+
}
|
|
4769
|
+
|
|
4770
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
4682
4771
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4683
4772
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4684
4773
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4685
4774
|
readonly totalWeight: u128;
|
|
4686
4775
|
}
|
|
4687
4776
|
|
|
4688
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4777
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4689
4778
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4690
4779
|
readonly accountId: AccountId32;
|
|
4691
4780
|
readonly signer: H160;
|
|
4692
4781
|
readonly weight: u128;
|
|
4693
4782
|
}
|
|
4694
4783
|
|
|
4695
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4784
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4696
4785
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4697
4786
|
readonly approvingCouncilHash: H256;
|
|
4698
4787
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4704,7 +4793,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4704
4793
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4705
4794
|
}
|
|
4706
4795
|
|
|
4707
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4796
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4708
4797
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4709
4798
|
readonly accountId: AccountId32;
|
|
4710
4799
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4721,7 +4810,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4721
4810
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4722
4811
|
}
|
|
4723
4812
|
|
|
4724
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4813
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4725
4814
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4726
4815
|
readonly isPendingActivation: boolean;
|
|
4727
4816
|
readonly isActive: boolean;
|
|
@@ -4729,7 +4818,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4729
4818
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4730
4819
|
}
|
|
4731
4820
|
|
|
4732
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4821
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4733
4822
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4734
4823
|
readonly argonAccountId: AccountId32;
|
|
4735
4824
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4748,7 +4837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4837
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4749
4838
|
}
|
|
4750
4839
|
|
|
4751
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4840
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4752
4841
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4753
4842
|
readonly microgonCollateral: u128;
|
|
4754
4843
|
readonly micronotCollateral: u128;
|
|
@@ -4756,27 +4845,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4756
4845
|
readonly signature: U8aFixed;
|
|
4757
4846
|
}
|
|
4758
4847
|
|
|
4759
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4848
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4760
4849
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4761
4850
|
readonly isStarted: boolean;
|
|
4762
4851
|
readonly isReady: boolean;
|
|
4763
4852
|
readonly type: 'Started' | 'Ready';
|
|
4764
4853
|
}
|
|
4765
4854
|
|
|
4766
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4855
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4767
4856
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4768
4857
|
readonly transferId: H256;
|
|
4769
4858
|
readonly remainingCollateral: u128;
|
|
4770
4859
|
readonly remainingMintingAuthorityTip: u128;
|
|
4771
4860
|
}
|
|
4772
4861
|
|
|
4773
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4862
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4774
4863
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4775
4864
|
readonly argonCirculation: u128;
|
|
4776
4865
|
readonly argonotCirculation: u128;
|
|
4777
4866
|
}
|
|
4778
4867
|
|
|
4779
|
-
/** @name PalletCrosschainTransferError (
|
|
4868
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4780
4869
|
interface PalletCrosschainTransferError extends Enum {
|
|
4781
4870
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4782
4871
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4832,6 +4921,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4832
4921
|
readonly isInsufficientMintingAuthorityCollateral: boolean;
|
|
4833
4922
|
readonly isTransferCollateralIncrementTooSmall: boolean;
|
|
4834
4923
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
4924
|
+
readonly isCouncilSignerRotationPending: boolean;
|
|
4835
4925
|
readonly type:
|
|
4836
4926
|
| 'InvalidTransferToArgonActivity'
|
|
4837
4927
|
| 'NoGatewayProofBlocksProvided'
|
|
@@ -4886,48 +4976,49 @@ declare module '@polkadot/types/lookup' {
|
|
|
4886
4976
|
| 'InvalidTransferCollateralSignature'
|
|
4887
4977
|
| 'InsufficientMintingAuthorityCollateral'
|
|
4888
4978
|
| 'TransferCollateralIncrementTooSmall'
|
|
4889
|
-
| 'TooManyPendingTransferOuts'
|
|
4979
|
+
| 'TooManyPendingTransferOuts'
|
|
4980
|
+
| 'CouncilSignerRotationPending';
|
|
4890
4981
|
}
|
|
4891
4982
|
|
|
4892
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4983
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4893
4984
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4894
4985
|
|
|
4895
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4986
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4896
4987
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4897
4988
|
|
|
4898
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4989
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4899
4990
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4900
4991
|
|
|
4901
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4992
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4902
4993
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4903
4994
|
|
|
4904
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4995
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4905
4996
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4906
4997
|
|
|
4907
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4998
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
4908
4999
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4909
5000
|
|
|
4910
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5001
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
4911
5002
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4912
5003
|
|
|
4913
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5004
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
4914
5005
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4915
5006
|
|
|
4916
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5007
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
4917
5008
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4918
5009
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4919
5010
|
}
|
|
4920
5011
|
|
|
4921
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5012
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
4922
5013
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4923
5014
|
readonly isDisabled: boolean;
|
|
4924
5015
|
readonly isEnabled: boolean;
|
|
4925
5016
|
readonly type: 'Disabled' | 'Enabled';
|
|
4926
5017
|
}
|
|
4927
5018
|
|
|
4928
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5019
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
4929
5020
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4930
5021
|
|
|
4931
|
-
/** @name ArgonRuntimeRuntime (
|
|
5022
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
4932
5023
|
type ArgonRuntimeRuntime = Null;
|
|
4933
5024
|
} // declare module
|