@argonprotocol/mainchain 1.4.9 → 1.4.10
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 +608 -426
- package/browser/index.js +117 -27
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +140 -51
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +608 -426
- package/lib/index.d.ts +608 -426
- package/lib/index.js +116 -27
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +56 -25
- package/src/interfaces/augment-api-errors.ts +35 -15
- package/src/interfaces/augment-api-events.ts +101 -32
- package/src/interfaces/augment-api-query.ts +76 -52
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +20 -13
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +361 -286
- package/src/interfaces/registry.ts +14 -3
- package/src/interfaces/types-lookup.ts +378 -296
|
@@ -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
|
-
readonly sponsor: Option<AccountId32>;
|
|
1798
|
+
readonly miningAccount: AccountId32;
|
|
1799
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
1779
1800
|
} & Struct;
|
|
1780
|
-
readonly
|
|
1781
|
-
readonly
|
|
1801
|
+
readonly isAccountMeetsMinimums: boolean;
|
|
1802
|
+
readonly asAccountMeetsMinimums: {
|
|
1803
|
+
readonly account: AccountId32;
|
|
1804
|
+
} & Struct;
|
|
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: {
|
|
@@ -2022,13 +2050,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2022
2050
|
| 'TransferCollateralInvalidated';
|
|
2023
2051
|
}
|
|
2024
2052
|
|
|
2025
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2053
|
+
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
2026
2054
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2027
2055
|
readonly isEthereum: boolean;
|
|
2028
2056
|
readonly type: 'Ethereum';
|
|
2029
2057
|
}
|
|
2030
2058
|
|
|
2031
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2059
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (131) */
|
|
2032
2060
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2033
2061
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2034
2062
|
readonly from: H160;
|
|
@@ -2037,14 +2065,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2037
2065
|
readonly amount: Compact<u128>;
|
|
2038
2066
|
}
|
|
2039
2067
|
|
|
2040
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2068
|
+
/** @name PalletCrosschainTransferAssetKind (134) */
|
|
2041
2069
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2042
2070
|
readonly isArgon: boolean;
|
|
2043
2071
|
readonly isArgonot: boolean;
|
|
2044
2072
|
readonly type: 'Argon' | 'Argonot';
|
|
2045
2073
|
}
|
|
2046
2074
|
|
|
2047
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2075
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (135) */
|
|
2048
2076
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2049
2077
|
readonly isMintingAuthorityActivation: boolean;
|
|
2050
2078
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2058,14 +2086,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2058
2086
|
| 'GlobalIssuanceCouncilRotation';
|
|
2059
2087
|
}
|
|
2060
2088
|
|
|
2061
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2089
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (136) */
|
|
2062
2090
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2063
2091
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2064
2092
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2065
2093
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2066
2094
|
}
|
|
2067
2095
|
|
|
2068
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2096
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (137) */
|
|
2069
2097
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2070
2098
|
readonly isManual: boolean;
|
|
2071
2099
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2090,7 +2118,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2090
2118
|
| 'GatewayStateDrift';
|
|
2091
2119
|
}
|
|
2092
2120
|
|
|
2093
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2121
|
+
/** @name PalletCrosschainTransferGatewayState (138) */
|
|
2094
2122
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2095
2123
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2096
2124
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2098,7 +2126,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2098
2126
|
readonly argonotCirculation: u128;
|
|
2099
2127
|
}
|
|
2100
2128
|
|
|
2101
|
-
/** @name FrameSystemPhase (
|
|
2129
|
+
/** @name FrameSystemPhase (139) */
|
|
2102
2130
|
interface FrameSystemPhase extends Enum {
|
|
2103
2131
|
readonly isApplyExtrinsic: boolean;
|
|
2104
2132
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2107,19 +2135,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2107
2135
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2108
2136
|
}
|
|
2109
2137
|
|
|
2110
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2138
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (143) */
|
|
2111
2139
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2112
2140
|
readonly specVersion: Compact<u32>;
|
|
2113
2141
|
readonly specName: Text;
|
|
2114
2142
|
}
|
|
2115
2143
|
|
|
2116
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2144
|
+
/** @name FrameSystemCodeUpgradeAuthorization (146) */
|
|
2117
2145
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2118
2146
|
readonly codeHash: H256;
|
|
2119
2147
|
readonly checkVersion: bool;
|
|
2120
2148
|
}
|
|
2121
2149
|
|
|
2122
|
-
/** @name FrameSystemCall (
|
|
2150
|
+
/** @name FrameSystemCall (147) */
|
|
2123
2151
|
interface FrameSystemCall extends Enum {
|
|
2124
2152
|
readonly isRemark: boolean;
|
|
2125
2153
|
readonly asRemark: {
|
|
@@ -2180,21 +2208,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2180
2208
|
| 'ApplyAuthorizedUpgrade';
|
|
2181
2209
|
}
|
|
2182
2210
|
|
|
2183
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2211
|
+
/** @name FrameSystemLimitsBlockWeights (151) */
|
|
2184
2212
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2185
2213
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2186
2214
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2187
2215
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2188
2216
|
}
|
|
2189
2217
|
|
|
2190
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2218
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
|
|
2191
2219
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2192
2220
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2193
2221
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2194
2222
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2195
2223
|
}
|
|
2196
2224
|
|
|
2197
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2225
|
+
/** @name FrameSystemLimitsWeightsPerClass (153) */
|
|
2198
2226
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2199
2227
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2200
2228
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2202,26 +2230,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2202
2230
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2203
2231
|
}
|
|
2204
2232
|
|
|
2205
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2233
|
+
/** @name FrameSystemLimitsBlockLength (155) */
|
|
2206
2234
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2207
2235
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2208
2236
|
readonly maxHeaderSize: Option<u32>;
|
|
2209
2237
|
}
|
|
2210
2238
|
|
|
2211
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2239
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (156) */
|
|
2212
2240
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2213
2241
|
readonly normal: u32;
|
|
2214
2242
|
readonly operational: u32;
|
|
2215
2243
|
readonly mandatory: u32;
|
|
2216
2244
|
}
|
|
2217
2245
|
|
|
2218
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2246
|
+
/** @name SpWeightsRuntimeDbWeight (158) */
|
|
2219
2247
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2220
2248
|
readonly read: u64;
|
|
2221
2249
|
readonly write: u64;
|
|
2222
2250
|
}
|
|
2223
2251
|
|
|
2224
|
-
/** @name SpVersionRuntimeVersion (
|
|
2252
|
+
/** @name SpVersionRuntimeVersion (159) */
|
|
2225
2253
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2226
2254
|
readonly specName: Text;
|
|
2227
2255
|
readonly implName: Text;
|
|
@@ -2233,7 +2261,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2233
2261
|
readonly systemVersion: u8;
|
|
2234
2262
|
}
|
|
2235
2263
|
|
|
2236
|
-
/** @name FrameSystemError (
|
|
2264
|
+
/** @name FrameSystemError (164) */
|
|
2237
2265
|
interface FrameSystemError extends Enum {
|
|
2238
2266
|
readonly isInvalidSpecName: boolean;
|
|
2239
2267
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2256,7 +2284,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2256
2284
|
| 'Unauthorized';
|
|
2257
2285
|
}
|
|
2258
2286
|
|
|
2259
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2287
|
+
/** @name ArgonPrimitivesDigestsDigestset (165) */
|
|
2260
2288
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2261
2289
|
readonly author: AccountId32;
|
|
2262
2290
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2267,18 +2295,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2267
2295
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2268
2296
|
}
|
|
2269
2297
|
|
|
2270
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2298
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
|
|
2271
2299
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2272
2300
|
readonly votingPower: Compact<u128>;
|
|
2273
2301
|
readonly votesCount: Compact<u32>;
|
|
2274
2302
|
}
|
|
2275
2303
|
|
|
2276
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2304
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
|
|
2277
2305
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2278
2306
|
readonly parentVotingKey: Option<H256>;
|
|
2279
2307
|
}
|
|
2280
2308
|
|
|
2281
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2309
|
+
/** @name ArgonPrimitivesForkPower (171) */
|
|
2282
2310
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2283
2311
|
readonly isLatestVote: bool;
|
|
2284
2312
|
readonly notebooks: Compact<u64>;
|
|
@@ -2289,19 +2317,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2289
2317
|
readonly minerNonceScore: Option<U256>;
|
|
2290
2318
|
}
|
|
2291
2319
|
|
|
2292
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2320
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (176) */
|
|
2293
2321
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2294
2322
|
readonly frameId: Compact<u64>;
|
|
2295
2323
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2296
2324
|
readonly isNewFrame: bool;
|
|
2297
2325
|
}
|
|
2298
2326
|
|
|
2299
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2327
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (178) */
|
|
2300
2328
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2301
2329
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2302
2330
|
}
|
|
2303
2331
|
|
|
2304
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2332
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
|
|
2305
2333
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2306
2334
|
readonly notaryId: Compact<u32>;
|
|
2307
2335
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2309,7 +2337,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2309
2337
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2310
2338
|
}
|
|
2311
2339
|
|
|
2312
|
-
/** @name PalletDigestsError (
|
|
2340
|
+
/** @name PalletDigestsError (183) */
|
|
2313
2341
|
interface PalletDigestsError extends Enum {
|
|
2314
2342
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2315
2343
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2340,7 +2368,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2340
2368
|
| 'DuplicateFrameInfoDigest';
|
|
2341
2369
|
}
|
|
2342
2370
|
|
|
2343
|
-
/** @name PalletTimestampCall (
|
|
2371
|
+
/** @name PalletTimestampCall (184) */
|
|
2344
2372
|
interface PalletTimestampCall extends Enum {
|
|
2345
2373
|
readonly isSet: boolean;
|
|
2346
2374
|
readonly asSet: {
|
|
@@ -2349,7 +2377,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2349
2377
|
readonly type: 'Set';
|
|
2350
2378
|
}
|
|
2351
2379
|
|
|
2352
|
-
/** @name PalletMultisigMultisig (
|
|
2380
|
+
/** @name PalletMultisigMultisig (186) */
|
|
2353
2381
|
interface PalletMultisigMultisig extends Struct {
|
|
2354
2382
|
readonly when: PalletMultisigTimepoint;
|
|
2355
2383
|
readonly deposit: u128;
|
|
@@ -2357,7 +2385,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2357
2385
|
readonly approvals: Vec<AccountId32>;
|
|
2358
2386
|
}
|
|
2359
2387
|
|
|
2360
|
-
/** @name PalletMultisigCall (
|
|
2388
|
+
/** @name PalletMultisigCall (189) */
|
|
2361
2389
|
interface PalletMultisigCall extends Enum {
|
|
2362
2390
|
readonly isAsMultiThreshold1: boolean;
|
|
2363
2391
|
readonly asAsMultiThreshold1: {
|
|
@@ -2401,7 +2429,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2401
2429
|
| 'PokeDeposit';
|
|
2402
2430
|
}
|
|
2403
2431
|
|
|
2404
|
-
/** @name PalletProxyCall (
|
|
2432
|
+
/** @name PalletProxyCall (191) */
|
|
2405
2433
|
interface PalletProxyCall extends Enum {
|
|
2406
2434
|
readonly isProxy: boolean;
|
|
2407
2435
|
readonly asProxy: {
|
|
@@ -2473,10 +2501,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2473
2501
|
| 'PokeDeposit';
|
|
2474
2502
|
}
|
|
2475
2503
|
|
|
2476
|
-
/** @name PalletTicksCall (
|
|
2504
|
+
/** @name PalletTicksCall (195) */
|
|
2477
2505
|
type PalletTicksCall = Null;
|
|
2478
2506
|
|
|
2479
|
-
/** @name PalletMiningSlotCall (
|
|
2507
|
+
/** @name PalletMiningSlotCall (196) */
|
|
2480
2508
|
interface PalletMiningSlotCall extends Enum {
|
|
2481
2509
|
readonly isBid: boolean;
|
|
2482
2510
|
readonly asBid: {
|
|
@@ -2492,7 +2520,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2492
2520
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2493
2521
|
}
|
|
2494
2522
|
|
|
2495
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2523
|
+
/** @name PalletBitcoinUtxosCall (197) */
|
|
2496
2524
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2497
2525
|
readonly isSync: boolean;
|
|
2498
2526
|
readonly asSync: {
|
|
@@ -2525,21 +2553,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2525
2553
|
| 'RejectUtxoCandidate';
|
|
2526
2554
|
}
|
|
2527
2555
|
|
|
2528
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2556
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
|
|
2529
2557
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2530
2558
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2531
2559
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2532
2560
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2533
2561
|
}
|
|
2534
2562
|
|
|
2535
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2563
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
|
|
2536
2564
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2537
2565
|
readonly utxoId: Compact<u64>;
|
|
2538
2566
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2539
2567
|
readonly bitcoinHeight: Compact<u64>;
|
|
2540
2568
|
}
|
|
2541
2569
|
|
|
2542
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2570
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
|
|
2543
2571
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2544
2572
|
readonly utxoId: Compact<u64>;
|
|
2545
2573
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2548,13 +2576,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2548
2576
|
readonly bitcoinHeight: Compact<u64>;
|
|
2549
2577
|
}
|
|
2550
2578
|
|
|
2551
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2579
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
|
|
2552
2580
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2553
2581
|
readonly blockHeight: Compact<u64>;
|
|
2554
2582
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2555
2583
|
}
|
|
2556
2584
|
|
|
2557
|
-
/** @name PalletVaultsCall (
|
|
2585
|
+
/** @name PalletVaultsCall (205) */
|
|
2558
2586
|
interface PalletVaultsCall extends Enum {
|
|
2559
2587
|
readonly isCreate: boolean;
|
|
2560
2588
|
readonly asCreate: {
|
|
@@ -2608,7 +2636,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2608
2636
|
| 'SetCommittedArgonots';
|
|
2609
2637
|
}
|
|
2610
2638
|
|
|
2611
|
-
/** @name PalletVaultsVaultConfig (
|
|
2639
|
+
/** @name PalletVaultsVaultConfig (206) */
|
|
2612
2640
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2613
2641
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2614
2642
|
readonly name: Option<Bytes>;
|
|
@@ -2618,7 +2646,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2618
2646
|
readonly securitizationRatio: Compact<u128>;
|
|
2619
2647
|
}
|
|
2620
2648
|
|
|
2621
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2649
|
+
/** @name ArgonPrimitivesVaultVaultTerms (207) */
|
|
2622
2650
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2623
2651
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2624
2652
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -2626,10 +2654,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2626
2654
|
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2627
2655
|
}
|
|
2628
2656
|
|
|
2629
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2657
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
|
|
2630
2658
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2631
2659
|
|
|
2632
|
-
/** @name PalletBitcoinLocksCall (
|
|
2660
|
+
/** @name PalletBitcoinLocksCall (215) */
|
|
2633
2661
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2634
2662
|
readonly isInitialize: boolean;
|
|
2635
2663
|
readonly asInitialize: {
|
|
@@ -2695,10 +2723,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2695
2723
|
| 'IncreaseSecuritization';
|
|
2696
2724
|
}
|
|
2697
2725
|
|
|
2698
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2726
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
|
|
2699
2727
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2700
2728
|
|
|
2701
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2729
|
+
/** @name PalletBitcoinLocksLockOptions (219) */
|
|
2702
2730
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2703
2731
|
readonly isV1: boolean;
|
|
2704
2732
|
readonly asV1: {
|
|
@@ -2707,7 +2735,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2707
2735
|
readonly type: 'V1';
|
|
2708
2736
|
}
|
|
2709
2737
|
|
|
2710
|
-
/** @name PalletNotariesCall (
|
|
2738
|
+
/** @name PalletNotariesCall (222) */
|
|
2711
2739
|
interface PalletNotariesCall extends Enum {
|
|
2712
2740
|
readonly isPropose: boolean;
|
|
2713
2741
|
readonly asPropose: {
|
|
@@ -2726,7 +2754,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2726
2754
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2727
2755
|
}
|
|
2728
2756
|
|
|
2729
|
-
/** @name PalletNotebookCall (
|
|
2757
|
+
/** @name PalletNotebookCall (223) */
|
|
2730
2758
|
interface PalletNotebookCall extends Enum {
|
|
2731
2759
|
readonly isSubmit: boolean;
|
|
2732
2760
|
readonly asSubmit: {
|
|
@@ -2739,13 +2767,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2739
2767
|
readonly type: 'Submit' | 'Unlock';
|
|
2740
2768
|
}
|
|
2741
2769
|
|
|
2742
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2770
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
|
|
2743
2771
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2744
2772
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2745
2773
|
readonly signature: U8aFixed;
|
|
2746
2774
|
}
|
|
2747
2775
|
|
|
2748
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2776
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (226) */
|
|
2749
2777
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2750
2778
|
readonly version: Compact<u16>;
|
|
2751
2779
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2764,7 +2792,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2764
2792
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2765
2793
|
}
|
|
2766
2794
|
|
|
2767
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2795
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (229) */
|
|
2768
2796
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2769
2797
|
readonly isToMainchain: boolean;
|
|
2770
2798
|
readonly asToMainchain: {
|
|
@@ -2778,13 +2806,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2778
2806
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2779
2807
|
}
|
|
2780
2808
|
|
|
2781
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2809
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
|
|
2782
2810
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2783
2811
|
readonly notebookNumber: Compact<u32>;
|
|
2784
2812
|
readonly accountUid: Compact<u32>;
|
|
2785
2813
|
}
|
|
2786
2814
|
|
|
2787
|
-
/** @name PalletLocalchainTransferCall (
|
|
2815
|
+
/** @name PalletLocalchainTransferCall (239) */
|
|
2788
2816
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2789
2817
|
readonly isSendToLocalchain: boolean;
|
|
2790
2818
|
readonly asSendToLocalchain: {
|
|
@@ -2794,7 +2822,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2794
2822
|
readonly type: 'SendToLocalchain';
|
|
2795
2823
|
}
|
|
2796
2824
|
|
|
2797
|
-
/** @name PalletBlockSealSpecCall (
|
|
2825
|
+
/** @name PalletBlockSealSpecCall (240) */
|
|
2798
2826
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2799
2827
|
readonly isConfigure: boolean;
|
|
2800
2828
|
readonly asConfigure: {
|
|
@@ -2804,7 +2832,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2804
2832
|
readonly type: 'Configure';
|
|
2805
2833
|
}
|
|
2806
2834
|
|
|
2807
|
-
/** @name PalletDomainsCall (
|
|
2835
|
+
/** @name PalletDomainsCall (241) */
|
|
2808
2836
|
interface PalletDomainsCall extends Enum {
|
|
2809
2837
|
readonly isSetZoneRecord: boolean;
|
|
2810
2838
|
readonly asSetZoneRecord: {
|
|
@@ -2814,7 +2842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2814
2842
|
readonly type: 'SetZoneRecord';
|
|
2815
2843
|
}
|
|
2816
2844
|
|
|
2817
|
-
/** @name PalletPriceIndexCall (
|
|
2845
|
+
/** @name PalletPriceIndexCall (242) */
|
|
2818
2846
|
interface PalletPriceIndexCall extends Enum {
|
|
2819
2847
|
readonly isSubmit: boolean;
|
|
2820
2848
|
readonly asSubmit: {
|
|
@@ -2827,7 +2855,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2827
2855
|
readonly type: 'Submit' | 'SetOperator';
|
|
2828
2856
|
}
|
|
2829
2857
|
|
|
2830
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2858
|
+
/** @name PalletPriceIndexPriceIndex (243) */
|
|
2831
2859
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2832
2860
|
readonly btcUsdPrice: Compact<u128>;
|
|
2833
2861
|
readonly argonotUsdPrice: u128;
|
|
@@ -2837,7 +2865,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2865
|
readonly tick: Compact<u64>;
|
|
2838
2866
|
}
|
|
2839
2867
|
|
|
2840
|
-
/** @name PalletGrandpaCall (
|
|
2868
|
+
/** @name PalletGrandpaCall (244) */
|
|
2841
2869
|
interface PalletGrandpaCall extends Enum {
|
|
2842
2870
|
readonly isReportEquivocation: boolean;
|
|
2843
2871
|
readonly asReportEquivocation: {
|
|
@@ -2857,13 +2885,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2857
2885
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2858
2886
|
}
|
|
2859
2887
|
|
|
2860
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2888
|
+
/** @name SpConsensusGrandpaEquivocationProof (245) */
|
|
2861
2889
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2862
2890
|
readonly setId: u64;
|
|
2863
2891
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2864
2892
|
}
|
|
2865
2893
|
|
|
2866
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2894
|
+
/** @name SpConsensusGrandpaEquivocation (246) */
|
|
2867
2895
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2868
2896
|
readonly isPrevote: boolean;
|
|
2869
2897
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2872,7 +2900,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2872
2900
|
readonly type: 'Prevote' | 'Precommit';
|
|
2873
2901
|
}
|
|
2874
2902
|
|
|
2875
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2903
|
+
/** @name FinalityGrandpaEquivocationPrevote (247) */
|
|
2876
2904
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2877
2905
|
readonly roundNumber: u64;
|
|
2878
2906
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2880,16 +2908,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2880
2908
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2881
2909
|
}
|
|
2882
2910
|
|
|
2883
|
-
/** @name FinalityGrandpaPrevote (
|
|
2911
|
+
/** @name FinalityGrandpaPrevote (248) */
|
|
2884
2912
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2885
2913
|
readonly targetHash: H256;
|
|
2886
2914
|
readonly targetNumber: u32;
|
|
2887
2915
|
}
|
|
2888
2916
|
|
|
2889
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2917
|
+
/** @name SpConsensusGrandpaAppSignature (249) */
|
|
2890
2918
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2891
2919
|
|
|
2892
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2920
|
+
/** @name FinalityGrandpaEquivocationPrecommit (251) */
|
|
2893
2921
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2894
2922
|
readonly roundNumber: u64;
|
|
2895
2923
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2897,16 +2925,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2897
2925
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2898
2926
|
}
|
|
2899
2927
|
|
|
2900
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2928
|
+
/** @name FinalityGrandpaPrecommit (252) */
|
|
2901
2929
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2902
2930
|
readonly targetHash: H256;
|
|
2903
2931
|
readonly targetNumber: u32;
|
|
2904
2932
|
}
|
|
2905
2933
|
|
|
2906
|
-
/** @name SpCoreVoid (
|
|
2934
|
+
/** @name SpCoreVoid (254) */
|
|
2907
2935
|
type SpCoreVoid = Null;
|
|
2908
2936
|
|
|
2909
|
-
/** @name PalletBlockSealCall (
|
|
2937
|
+
/** @name PalletBlockSealCall (255) */
|
|
2910
2938
|
interface PalletBlockSealCall extends Enum {
|
|
2911
2939
|
readonly isApply: boolean;
|
|
2912
2940
|
readonly asApply: {
|
|
@@ -2915,7 +2943,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2915
2943
|
readonly type: 'Apply';
|
|
2916
2944
|
}
|
|
2917
2945
|
|
|
2918
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2946
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
|
|
2919
2947
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2920
2948
|
readonly isVote: boolean;
|
|
2921
2949
|
readonly asVote: {
|
|
@@ -2930,14 +2958,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2930
2958
|
readonly type: 'Vote' | 'Compute';
|
|
2931
2959
|
}
|
|
2932
2960
|
|
|
2933
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
2961
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
|
|
2934
2962
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2935
2963
|
readonly proof: Vec<H256>;
|
|
2936
2964
|
readonly numberOfLeaves: Compact<u32>;
|
|
2937
2965
|
readonly leafIndex: Compact<u32>;
|
|
2938
2966
|
}
|
|
2939
2967
|
|
|
2940
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
2968
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
|
|
2941
2969
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2942
2970
|
readonly accountId: AccountId32;
|
|
2943
2971
|
readonly blockHash: H256;
|
|
@@ -2948,7 +2976,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2948
2976
|
readonly tick: Compact<u64>;
|
|
2949
2977
|
}
|
|
2950
2978
|
|
|
2951
|
-
/** @name SpRuntimeMultiSignature (
|
|
2979
|
+
/** @name SpRuntimeMultiSignature (260) */
|
|
2952
2980
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2953
2981
|
readonly isEd25519: boolean;
|
|
2954
2982
|
readonly asEd25519: U8aFixed;
|
|
@@ -2961,7 +2989,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2989
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2962
2990
|
}
|
|
2963
2991
|
|
|
2964
|
-
/** @name PalletBlockRewardsCall (
|
|
2992
|
+
/** @name PalletBlockRewardsCall (262) */
|
|
2965
2993
|
interface PalletBlockRewardsCall extends Enum {
|
|
2966
2994
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2967
2995
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -2974,10 +3002,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2974
3002
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2975
3003
|
}
|
|
2976
3004
|
|
|
2977
|
-
/** @name PalletMintCall (
|
|
3005
|
+
/** @name PalletMintCall (263) */
|
|
2978
3006
|
type PalletMintCall = Null;
|
|
2979
3007
|
|
|
2980
|
-
/** @name PalletBalancesCall (
|
|
3008
|
+
/** @name PalletBalancesCall (264) */
|
|
2981
3009
|
interface PalletBalancesCall extends Enum {
|
|
2982
3010
|
readonly isTransferAllowDeath: boolean;
|
|
2983
3011
|
readonly asTransferAllowDeath: {
|
|
@@ -3036,14 +3064,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
3064
|
| 'Burn';
|
|
3037
3065
|
}
|
|
3038
3066
|
|
|
3039
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3067
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3040
3068
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3041
3069
|
readonly isIncrease: boolean;
|
|
3042
3070
|
readonly isDecrease: boolean;
|
|
3043
3071
|
readonly type: 'Increase' | 'Decrease';
|
|
3044
3072
|
}
|
|
3045
3073
|
|
|
3046
|
-
/** @name PalletTxPauseCall (
|
|
3074
|
+
/** @name PalletTxPauseCall (267) */
|
|
3047
3075
|
interface PalletTxPauseCall extends Enum {
|
|
3048
3076
|
readonly isPause: boolean;
|
|
3049
3077
|
readonly asPause: {
|
|
@@ -3056,7 +3084,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3056
3084
|
readonly type: 'Pause' | 'Unpause';
|
|
3057
3085
|
}
|
|
3058
3086
|
|
|
3059
|
-
/** @name PalletUtilityCall (
|
|
3087
|
+
/** @name PalletUtilityCall (268) */
|
|
3060
3088
|
interface PalletUtilityCall extends Enum {
|
|
3061
3089
|
readonly isBatch: boolean;
|
|
3062
3090
|
readonly asBatch: {
|
|
@@ -3106,7 +3134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3106
3134
|
| 'DispatchAsFallible';
|
|
3107
3135
|
}
|
|
3108
3136
|
|
|
3109
|
-
/** @name PalletSudoCall (
|
|
3137
|
+
/** @name PalletSudoCall (270) */
|
|
3110
3138
|
interface PalletSudoCall extends Enum {
|
|
3111
3139
|
readonly isSudo: boolean;
|
|
3112
3140
|
readonly asSudo: {
|
|
@@ -3130,7 +3158,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3130
3158
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3131
3159
|
}
|
|
3132
3160
|
|
|
3133
|
-
/** @name PalletTreasuryCall (
|
|
3161
|
+
/** @name PalletTreasuryCall (271) */
|
|
3134
3162
|
interface PalletTreasuryCall extends Enum {
|
|
3135
3163
|
readonly isBuyBonds: boolean;
|
|
3136
3164
|
readonly asBuyBonds: {
|
|
@@ -3142,10 +3170,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3142
3170
|
readonly asLiquidateBondLot: {
|
|
3143
3171
|
readonly bondLotId: u64;
|
|
3144
3172
|
} & Struct;
|
|
3145
|
-
readonly
|
|
3173
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3174
|
+
readonly asBuyArgonotBonds: {
|
|
3175
|
+
readonly bonds: u32;
|
|
3176
|
+
} & Struct;
|
|
3177
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3146
3178
|
}
|
|
3147
3179
|
|
|
3148
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3180
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3149
3181
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3150
3182
|
readonly vaultId: Compact<u32>;
|
|
3151
3183
|
readonly beneficiary: AccountId32;
|
|
@@ -3153,7 +3185,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3153
3185
|
readonly signature: SpRuntimeMultiSignature;
|
|
3154
3186
|
}
|
|
3155
3187
|
|
|
3156
|
-
/** @name PalletOperationalAccountsCall (
|
|
3188
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3157
3189
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3158
3190
|
readonly isRegister: boolean;
|
|
3159
3191
|
readonly asRegister: {
|
|
@@ -3161,8 +3193,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3161
3193
|
} & Struct;
|
|
3162
3194
|
readonly isSetRewardConfig: boolean;
|
|
3163
3195
|
readonly asSetRewardConfig: {
|
|
3164
|
-
readonly
|
|
3165
|
-
readonly
|
|
3196
|
+
readonly operationalCertificationReward: u128;
|
|
3197
|
+
readonly operationalCertificationBonusReward: u128;
|
|
3166
3198
|
} & Struct;
|
|
3167
3199
|
readonly isForceSetProgress: boolean;
|
|
3168
3200
|
readonly asForceSetProgress: {
|
|
@@ -3170,9 +3202,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3170
3202
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3171
3203
|
readonly updateOperationalProgress: bool;
|
|
3172
3204
|
} & Struct;
|
|
3173
|
-
readonly
|
|
3174
|
-
readonly
|
|
3175
|
-
readonly
|
|
3205
|
+
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3206
|
+
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3207
|
+
readonly downstreamAccount: AccountId32;
|
|
3176
3208
|
readonly encryptedServer: Bytes;
|
|
3177
3209
|
} & Struct;
|
|
3178
3210
|
readonly isActivate: boolean;
|
|
@@ -3184,59 +3216,55 @@ declare module '@polkadot/types/lookup' {
|
|
|
3184
3216
|
| 'Register'
|
|
3185
3217
|
| 'SetRewardConfig'
|
|
3186
3218
|
| 'ForceSetProgress'
|
|
3187
|
-
| '
|
|
3219
|
+
| 'SetEncryptedServerForDownstreamAccount'
|
|
3188
3220
|
| 'Activate'
|
|
3189
3221
|
| 'ClaimRewards';
|
|
3190
3222
|
}
|
|
3191
3223
|
|
|
3192
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3224
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3193
3225
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3194
3226
|
readonly isV1: boolean;
|
|
3195
3227
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3196
3228
|
readonly type: 'V1';
|
|
3197
3229
|
}
|
|
3198
3230
|
|
|
3199
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3231
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3200
3232
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3201
3233
|
readonly operationalAccount: AccountId32;
|
|
3202
3234
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
3203
3235
|
readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3204
3236
|
readonly vaultAccount: AccountId32;
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly miningBotAccount: AccountId32;
|
|
3237
|
+
readonly miningAccount: AccountId32;
|
|
3207
3238
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3208
|
-
readonly
|
|
3209
|
-
readonly
|
|
3210
|
-
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3239
|
+
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3240
|
+
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3211
3241
|
}
|
|
3212
3242
|
|
|
3213
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3243
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3214
3244
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3215
3245
|
|
|
3216
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3246
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3217
3247
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3218
3248
|
readonly signature: SpRuntimeMultiSignature;
|
|
3219
3249
|
}
|
|
3220
3250
|
|
|
3221
|
-
/** @name
|
|
3222
|
-
interface
|
|
3223
|
-
readonly
|
|
3224
|
-
readonly
|
|
3225
|
-
readonly sponsor: AccountId32;
|
|
3226
|
-
readonly expiresAtFrame: Compact<u64>;
|
|
3227
|
-
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3251
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (280) */
|
|
3252
|
+
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
|
+
readonly upstreamAccount: AccountId32;
|
|
3254
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3228
3255
|
}
|
|
3229
3256
|
|
|
3230
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3257
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3231
3258
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3232
|
-
readonly
|
|
3259
|
+
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3260
|
+
readonly accountBitcoinAmount: Option<u128>;
|
|
3261
|
+
readonly accountVaultBondAmount: Option<u128>;
|
|
3233
3262
|
readonly vaultCreated: Option<bool>;
|
|
3234
|
-
readonly
|
|
3235
|
-
readonly
|
|
3236
|
-
readonly observedMiningSeatTotal: Option<u32>;
|
|
3263
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3264
|
+
readonly miningSeatCount: Option<u32>;
|
|
3237
3265
|
}
|
|
3238
3266
|
|
|
3239
|
-
/** @name PalletEthereumVerifierCall (
|
|
3267
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3240
3268
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3241
3269
|
readonly isForceCheckpoint: boolean;
|
|
3242
3270
|
readonly asForceCheckpoint: {
|
|
@@ -3264,7 +3292,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3292
|
| 'SetOperatingMode';
|
|
3265
3293
|
}
|
|
3266
3294
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3295
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3268
3296
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3269
3297
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3270
3298
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3273,7 +3301,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3273
3301
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3274
3302
|
}
|
|
3275
3303
|
|
|
3276
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3304
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3277
3305
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3278
3306
|
readonly slot: u64;
|
|
3279
3307
|
readonly proposerIndex: u64;
|
|
@@ -3282,22 +3310,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3282
3310
|
readonly bodyRoot: H256;
|
|
3283
3311
|
}
|
|
3284
3312
|
|
|
3285
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3313
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3286
3314
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3287
3315
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3288
3316
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3289
3317
|
}
|
|
3290
3318
|
|
|
3291
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3319
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3292
3320
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3293
3321
|
|
|
3294
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3322
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3295
3323
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3296
3324
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3297
3325
|
readonly executionBranch: Vec<H256>;
|
|
3298
3326
|
}
|
|
3299
3327
|
|
|
3300
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3328
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3301
3329
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3302
3330
|
readonly isCapella: boolean;
|
|
3303
3331
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3306,7 +3334,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3306
3334
|
readonly type: 'Capella' | 'Deneb';
|
|
3307
3335
|
}
|
|
3308
3336
|
|
|
3309
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3337
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3310
3338
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3311
3339
|
readonly parentHash: H256;
|
|
3312
3340
|
readonly feeRecipient: H160;
|
|
@@ -3325,7 +3353,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3325
3353
|
readonly withdrawalsRoot: H256;
|
|
3326
3354
|
}
|
|
3327
3355
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3356
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3329
3357
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3330
3358
|
readonly parentHash: H256;
|
|
3331
3359
|
readonly feeRecipient: H160;
|
|
@@ -3346,7 +3374,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3374
|
readonly excessBlobGas: u64;
|
|
3347
3375
|
}
|
|
3348
3376
|
|
|
3349
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3377
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3350
3378
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3351
3379
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3352
3380
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3357,13 +3385,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3357
3385
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3358
3386
|
}
|
|
3359
3387
|
|
|
3360
|
-
/** @name PalletEthereumVerifierFork (
|
|
3388
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3361
3389
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3362
3390
|
readonly version: U8aFixed;
|
|
3363
3391
|
readonly epoch: Compact<u64>;
|
|
3364
3392
|
}
|
|
3365
3393
|
|
|
3366
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3394
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3367
3395
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3368
3396
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3397
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3374,22 +3402,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3402
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3375
3403
|
}
|
|
3376
3404
|
|
|
3377
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3405
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3378
3406
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3379
3407
|
readonly syncCommitteeBits: Bytes;
|
|
3380
3408
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3381
3409
|
}
|
|
3382
3410
|
|
|
3383
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3411
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3384
3412
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3385
3413
|
|
|
3386
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3414
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3387
3415
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3388
3416
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3389
3417
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3390
3418
|
}
|
|
3391
3419
|
|
|
3392
|
-
/** @name PalletCrosschainTransferCall (
|
|
3420
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3393
3421
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3394
3422
|
readonly isSetChainConfig: boolean;
|
|
3395
3423
|
readonly asSetChainConfig: {
|
|
@@ -3479,7 +3507,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3479
3507
|
| 'CollateralizeTransfer';
|
|
3480
3508
|
}
|
|
3481
3509
|
|
|
3482
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3510
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3483
3511
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3484
3512
|
readonly isEvm: boolean;
|
|
3485
3513
|
readonly asEvm: {
|
|
@@ -3491,7 +3519,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3491
3519
|
readonly type: 'Evm';
|
|
3492
3520
|
}
|
|
3493
3521
|
|
|
3494
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3522
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3495
3523
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3496
3524
|
readonly activationGasCost: Compact<u128>;
|
|
3497
3525
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3499,56 +3527,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3499
3527
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3500
3528
|
}
|
|
3501
3529
|
|
|
3502
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3530
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3503
3531
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3504
3532
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3505
3533
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3506
3534
|
}
|
|
3507
3535
|
|
|
3508
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3536
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3509
3537
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3510
3538
|
readonly anchorBlockHash: H256;
|
|
3511
3539
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3512
3540
|
}
|
|
3513
3541
|
|
|
3514
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3542
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3515
3543
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3516
3544
|
readonly rlp: Bytes;
|
|
3517
3545
|
}
|
|
3518
3546
|
|
|
3519
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3547
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3520
3548
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3521
3549
|
readonly targetBlockNumber: Compact<u64>;
|
|
3522
3550
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3523
3551
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3524
3552
|
}
|
|
3525
3553
|
|
|
3526
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3554
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3527
3555
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3528
3556
|
readonly nodes: Vec<Bytes>;
|
|
3529
3557
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3530
3558
|
}
|
|
3531
3559
|
|
|
3532
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3560
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3533
3561
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3534
3562
|
readonly transactionIndex: Compact<u64>;
|
|
3535
3563
|
readonly nodeIndexes: Vec<u16>;
|
|
3536
3564
|
}
|
|
3537
3565
|
|
|
3538
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3566
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3539
3567
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3540
3568
|
readonly transactionIndex: Compact<u64>;
|
|
3541
3569
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3542
3570
|
}
|
|
3543
3571
|
|
|
3544
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3572
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3545
3573
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3546
3574
|
readonly address: H160;
|
|
3547
3575
|
readonly topics: Vec<H256>;
|
|
3548
3576
|
readonly data: Bytes;
|
|
3549
3577
|
}
|
|
3550
3578
|
|
|
3551
|
-
/** @name PalletMultisigError (
|
|
3579
|
+
/** @name PalletMultisigError (335) */
|
|
3552
3580
|
interface PalletMultisigError extends Enum {
|
|
3553
3581
|
readonly isMinimumThreshold: boolean;
|
|
3554
3582
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3581,21 +3609,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3581
3609
|
| 'AlreadyStored';
|
|
3582
3610
|
}
|
|
3583
3611
|
|
|
3584
|
-
/** @name PalletProxyProxyDefinition (
|
|
3612
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3585
3613
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3586
3614
|
readonly delegate: AccountId32;
|
|
3587
3615
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3588
3616
|
readonly delay: u32;
|
|
3589
3617
|
}
|
|
3590
3618
|
|
|
3591
|
-
/** @name PalletProxyAnnouncement (
|
|
3619
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3592
3620
|
interface PalletProxyAnnouncement extends Struct {
|
|
3593
3621
|
readonly real: AccountId32;
|
|
3594
3622
|
readonly callHash: H256;
|
|
3595
3623
|
readonly height: u32;
|
|
3596
3624
|
}
|
|
3597
3625
|
|
|
3598
|
-
/** @name PalletProxyError (
|
|
3626
|
+
/** @name PalletProxyError (344) */
|
|
3599
3627
|
interface PalletProxyError extends Enum {
|
|
3600
3628
|
readonly isTooMany: boolean;
|
|
3601
3629
|
readonly isNotFound: boolean;
|
|
@@ -3616,16 +3644,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3616
3644
|
| 'NoSelfProxy';
|
|
3617
3645
|
}
|
|
3618
3646
|
|
|
3619
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3647
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3620
3648
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3621
3649
|
readonly tickDurationMillis: Compact<u64>;
|
|
3622
3650
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3623
3651
|
}
|
|
3624
3652
|
|
|
3625
|
-
/** @name PalletTicksError (
|
|
3653
|
+
/** @name PalletTicksError (347) */
|
|
3626
3654
|
type PalletTicksError = Null;
|
|
3627
3655
|
|
|
3628
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3656
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3629
3657
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3630
3658
|
readonly nonce: U256;
|
|
3631
3659
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3633,7 +3661,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3633
3661
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3634
3662
|
}
|
|
3635
3663
|
|
|
3636
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3664
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3637
3665
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3638
3666
|
readonly bidsCount: u32;
|
|
3639
3667
|
readonly bidAmountMin: u128;
|
|
@@ -3641,14 +3669,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3641
3669
|
readonly bidAmountSum: u128;
|
|
3642
3670
|
}
|
|
3643
3671
|
|
|
3644
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3672
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3645
3673
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3646
3674
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3647
3675
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3648
3676
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3649
3677
|
}
|
|
3650
3678
|
|
|
3651
|
-
/** @name PalletMiningSlotError (
|
|
3679
|
+
/** @name PalletMiningSlotError (376) */
|
|
3652
3680
|
interface PalletMiningSlotError extends Enum {
|
|
3653
3681
|
readonly isSlotNotTakingBids: boolean;
|
|
3654
3682
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3675,7 +3703,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3675
3703
|
| 'UnrecoverableHold';
|
|
3676
3704
|
}
|
|
3677
3705
|
|
|
3678
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3706
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3679
3707
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3680
3708
|
readonly utxoId: u64;
|
|
3681
3709
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3684,7 +3712,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3684
3712
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3685
3713
|
}
|
|
3686
3714
|
|
|
3687
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3715
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3688
3716
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3689
3717
|
readonly isP2wsh: boolean;
|
|
3690
3718
|
readonly asP2wsh: {
|
|
@@ -3693,7 +3721,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3693
3721
|
readonly type: 'P2wsh';
|
|
3694
3722
|
}
|
|
3695
3723
|
|
|
3696
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3724
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3697
3725
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3698
3726
|
readonly isBitcoin: boolean;
|
|
3699
3727
|
readonly isTestnet: boolean;
|
|
@@ -3702,7 +3730,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3702
3730
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3703
3731
|
}
|
|
3704
3732
|
|
|
3705
|
-
/** @name PalletBitcoinUtxosError (
|
|
3733
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3706
3734
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3707
3735
|
readonly isNoPermissions: boolean;
|
|
3708
3736
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3737,7 +3765,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3737
3765
|
| 'LockAlreadyFunded';
|
|
3738
3766
|
}
|
|
3739
3767
|
|
|
3740
|
-
/** @name ArgonPrimitivesVault (
|
|
3768
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3741
3769
|
interface ArgonPrimitivesVault extends Struct {
|
|
3742
3770
|
readonly operatorAccountId: AccountId32;
|
|
3743
3771
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3758,13 +3786,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3758
3786
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3759
3787
|
}
|
|
3760
3788
|
|
|
3761
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3789
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3762
3790
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3763
3791
|
readonly committedMicronots: Compact<u128>;
|
|
3764
3792
|
readonly encumberedMicronots: Compact<u128>;
|
|
3765
3793
|
}
|
|
3766
3794
|
|
|
3767
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3795
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3768
3796
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3769
3797
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3770
3798
|
readonly depth: Compact<u8>;
|
|
@@ -3774,14 +3802,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3774
3802
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3775
3803
|
}
|
|
3776
3804
|
|
|
3777
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3805
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3778
3806
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3779
3807
|
readonly isMain: boolean;
|
|
3780
3808
|
readonly isTest: boolean;
|
|
3781
3809
|
readonly type: 'Main' | 'Test';
|
|
3782
3810
|
}
|
|
3783
3811
|
|
|
3784
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3812
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3785
3813
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3786
3814
|
readonly frameId: Compact<u64>;
|
|
3787
3815
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3801,7 +3829,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3801
3829
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3802
3830
|
}
|
|
3803
3831
|
|
|
3804
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3832
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3805
3833
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3806
3834
|
readonly blockNumber: Compact<u32>;
|
|
3807
3835
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3809,7 +3837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3809
3837
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3810
3838
|
}
|
|
3811
3839
|
|
|
3812
|
-
/** @name PalletVaultsError (
|
|
3840
|
+
/** @name PalletVaultsError (414) */
|
|
3813
3841
|
interface PalletVaultsError extends Enum {
|
|
3814
3842
|
readonly isNoMoreVaultIds: boolean;
|
|
3815
3843
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3882,7 +3910,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3882
3910
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3883
3911
|
}
|
|
3884
3912
|
|
|
3885
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3913
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3886
3914
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3887
3915
|
readonly vaultId: Compact<u32>;
|
|
3888
3916
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3906,7 +3934,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3906
3934
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3907
3935
|
}
|
|
3908
3936
|
|
|
3909
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3937
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (419) */
|
|
3910
3938
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3911
3939
|
readonly utxoId: Compact<u64>;
|
|
3912
3940
|
readonly vaultId: Compact<u32>;
|
|
@@ -3916,7 +3944,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3916
3944
|
readonly redemptionAmount: Compact<u128>;
|
|
3917
3945
|
}
|
|
3918
3946
|
|
|
3919
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3947
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (421) */
|
|
3920
3948
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3921
3949
|
readonly utxoId: Compact<u64>;
|
|
3922
3950
|
readonly vaultId: Compact<u32>;
|
|
@@ -3925,14 +3953,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3925
3953
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3926
3954
|
}
|
|
3927
3955
|
|
|
3928
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3956
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
|
|
3929
3957
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3930
3958
|
readonly bitcoinNetworkFee: u64;
|
|
3931
3959
|
readonly toScriptPubkey: Bytes;
|
|
3932
3960
|
readonly createdAtArgonBlockNumber: u32;
|
|
3933
3961
|
}
|
|
3934
3962
|
|
|
3935
|
-
/** @name PalletBitcoinLocksError (
|
|
3963
|
+
/** @name PalletBitcoinLocksError (430) */
|
|
3936
3964
|
interface PalletBitcoinLocksError extends Enum {
|
|
3937
3965
|
readonly isInsufficientFunds: boolean;
|
|
3938
3966
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4008,7 +4036,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4008
4036
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4009
4037
|
}
|
|
4010
4038
|
|
|
4011
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4039
|
+
/** @name ArgonPrimitivesVaultVaultError (431) */
|
|
4012
4040
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4013
4041
|
readonly isVaultClosed: boolean;
|
|
4014
4042
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4039,7 +4067,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4039
4067
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4040
4068
|
}
|
|
4041
4069
|
|
|
4042
|
-
/** @name PalletNotariesError (
|
|
4070
|
+
/** @name PalletNotariesError (443) */
|
|
4043
4071
|
interface PalletNotariesError extends Enum {
|
|
4044
4072
|
readonly isProposalNotFound: boolean;
|
|
4045
4073
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4062,7 +4090,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4062
4090
|
| 'InvalidNotary';
|
|
4063
4091
|
}
|
|
4064
4092
|
|
|
4065
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4093
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
|
|
4066
4094
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4067
4095
|
readonly notebookNumber: Compact<u32>;
|
|
4068
4096
|
readonly tick: Compact<u64>;
|
|
@@ -4071,7 +4099,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4071
4099
|
readonly parentSecret: Option<H256>;
|
|
4072
4100
|
}
|
|
4073
4101
|
|
|
4074
|
-
/** @name PalletNotebookError (
|
|
4102
|
+
/** @name PalletNotebookError (450) */
|
|
4075
4103
|
interface PalletNotebookError extends Enum {
|
|
4076
4104
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4077
4105
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4106,7 +4134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4106
4134
|
| 'InvalidNotebookSubmissionTick';
|
|
4107
4135
|
}
|
|
4108
4136
|
|
|
4109
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4137
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (451) */
|
|
4110
4138
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4111
4139
|
readonly accountId: AccountId32;
|
|
4112
4140
|
readonly amount: u128;
|
|
@@ -4114,10 +4142,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4114
4142
|
readonly notaryId: u32;
|
|
4115
4143
|
}
|
|
4116
4144
|
|
|
4117
|
-
/** @name FrameSupportPalletId (
|
|
4145
|
+
/** @name FrameSupportPalletId (453) */
|
|
4118
4146
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4119
4147
|
|
|
4120
|
-
/** @name PalletLocalchainTransferError (
|
|
4148
|
+
/** @name PalletLocalchainTransferError (454) */
|
|
4121
4149
|
interface PalletLocalchainTransferError extends Enum {
|
|
4122
4150
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4123
4151
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4138,7 +4166,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4138
4166
|
| 'NoAvailableTransferId';
|
|
4139
4167
|
}
|
|
4140
4168
|
|
|
4141
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4169
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
|
|
4142
4170
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4143
4171
|
readonly notaryId: Compact<u32>;
|
|
4144
4172
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4147,13 +4175,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4175
|
readonly blockVotingPower: Compact<u128>;
|
|
4148
4176
|
}
|
|
4149
4177
|
|
|
4150
|
-
/** @name PalletBlockSealSpecError (
|
|
4178
|
+
/** @name PalletBlockSealSpecError (463) */
|
|
4151
4179
|
interface PalletBlockSealSpecError extends Enum {
|
|
4152
4180
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4153
4181
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4154
4182
|
}
|
|
4155
4183
|
|
|
4156
|
-
/** @name PalletDomainsError (
|
|
4184
|
+
/** @name PalletDomainsError (465) */
|
|
4157
4185
|
interface PalletDomainsError extends Enum {
|
|
4158
4186
|
readonly isDomainNotRegistered: boolean;
|
|
4159
4187
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4168,21 +4196,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
4196
|
| 'AccountDecodingError';
|
|
4169
4197
|
}
|
|
4170
4198
|
|
|
4171
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4199
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (467) */
|
|
4172
4200
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4173
4201
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4174
4202
|
readonly totalCpi: i128;
|
|
4175
4203
|
readonly measurementsCount: u32;
|
|
4176
4204
|
}
|
|
4177
4205
|
|
|
4178
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4206
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
|
|
4179
4207
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4180
4208
|
readonly frameId: Compact<u64>;
|
|
4181
4209
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4182
4210
|
readonly sampleCount: Compact<u32>;
|
|
4183
4211
|
}
|
|
4184
4212
|
|
|
4185
|
-
/** @name PalletPriceIndexError (
|
|
4213
|
+
/** @name PalletPriceIndexError (472) */
|
|
4186
4214
|
interface PalletPriceIndexError extends Enum {
|
|
4187
4215
|
readonly isNotAuthorizedOperator: boolean;
|
|
4188
4216
|
readonly isMissingValue: boolean;
|
|
@@ -4195,7 +4223,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4195
4223
|
| 'MaxPriceChangePerTickExceeded';
|
|
4196
4224
|
}
|
|
4197
4225
|
|
|
4198
|
-
/** @name PalletGrandpaStoredState (
|
|
4226
|
+
/** @name PalletGrandpaStoredState (473) */
|
|
4199
4227
|
interface PalletGrandpaStoredState extends Enum {
|
|
4200
4228
|
readonly isLive: boolean;
|
|
4201
4229
|
readonly isPendingPause: boolean;
|
|
@@ -4212,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4212
4240
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4213
4241
|
}
|
|
4214
4242
|
|
|
4215
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4243
|
+
/** @name PalletGrandpaStoredPendingChange (474) */
|
|
4216
4244
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4217
4245
|
readonly scheduledAt: u32;
|
|
4218
4246
|
readonly delay: u32;
|
|
@@ -4220,7 +4248,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4220
4248
|
readonly forced: Option<u32>;
|
|
4221
4249
|
}
|
|
4222
4250
|
|
|
4223
|
-
/** @name PalletGrandpaError (
|
|
4251
|
+
/** @name PalletGrandpaError (476) */
|
|
4224
4252
|
interface PalletGrandpaError extends Enum {
|
|
4225
4253
|
readonly isPauseFailed: boolean;
|
|
4226
4254
|
readonly isResumeFailed: boolean;
|
|
@@ -4239,14 +4267,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4239
4267
|
| 'DuplicateOffenceReport';
|
|
4240
4268
|
}
|
|
4241
4269
|
|
|
4242
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4270
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
|
|
4243
4271
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4244
4272
|
readonly blockAuthorAccountId: AccountId32;
|
|
4245
4273
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4246
4274
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4247
4275
|
}
|
|
4248
4276
|
|
|
4249
|
-
/** @name PalletBlockSealError (
|
|
4277
|
+
/** @name PalletBlockSealError (479) */
|
|
4250
4278
|
interface PalletBlockSealError extends Enum {
|
|
4251
4279
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4252
4280
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4293,30 +4321,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4293
4321
|
| 'DuplicateVoteBlockAtTick';
|
|
4294
4322
|
}
|
|
4295
4323
|
|
|
4296
|
-
/** @name PalletBlockRewardsError (
|
|
4324
|
+
/** @name PalletBlockRewardsError (483) */
|
|
4297
4325
|
type PalletBlockRewardsError = Null;
|
|
4298
4326
|
|
|
4299
|
-
/** @name
|
|
4327
|
+
/** @name PalletMintPendingMintUtxo (484) */
|
|
4328
|
+
interface PalletMintPendingMintUtxo extends Struct {
|
|
4329
|
+
readonly utxoId: Compact<u64>;
|
|
4330
|
+
readonly accountId: AccountId32;
|
|
4331
|
+
readonly remainingAmount: Compact<u128>;
|
|
4332
|
+
readonly maxAmountPerFrame: Compact<u128>;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
/** @name PalletMintMintQueueCursor (486) */
|
|
4336
|
+
interface PalletMintMintQueueCursor extends Struct {
|
|
4337
|
+
readonly payoutStartIndex: Compact<u64>;
|
|
4338
|
+
readonly payoutCursorIndex: Compact<u64>;
|
|
4339
|
+
readonly payoutCursorFrameId: Option<u64>;
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
/** @name PalletMintMintAction (489) */
|
|
4300
4343
|
interface PalletMintMintAction extends Struct {
|
|
4301
4344
|
readonly argonBurned: u128;
|
|
4302
4345
|
readonly argonMinted: u128;
|
|
4303
4346
|
readonly bitcoinMinted: u128;
|
|
4304
4347
|
}
|
|
4305
4348
|
|
|
4306
|
-
/** @name PalletMintError (
|
|
4349
|
+
/** @name PalletMintError (491) */
|
|
4307
4350
|
interface PalletMintError extends Enum {
|
|
4308
4351
|
readonly isTooManyPendingMints: boolean;
|
|
4309
4352
|
readonly type: 'TooManyPendingMints';
|
|
4310
4353
|
}
|
|
4311
4354
|
|
|
4312
|
-
/** @name PalletBalancesBalanceLock (
|
|
4355
|
+
/** @name PalletBalancesBalanceLock (493) */
|
|
4313
4356
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4314
4357
|
readonly id: U8aFixed;
|
|
4315
4358
|
readonly amount: u128;
|
|
4316
4359
|
readonly reasons: PalletBalancesReasons;
|
|
4317
4360
|
}
|
|
4318
4361
|
|
|
4319
|
-
/** @name PalletBalancesReasons (
|
|
4362
|
+
/** @name PalletBalancesReasons (494) */
|
|
4320
4363
|
interface PalletBalancesReasons extends Enum {
|
|
4321
4364
|
readonly isFee: boolean;
|
|
4322
4365
|
readonly isMisc: boolean;
|
|
@@ -4324,38 +4367,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4324
4367
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4325
4368
|
}
|
|
4326
4369
|
|
|
4327
|
-
/** @name PalletBalancesReserveData (
|
|
4370
|
+
/** @name PalletBalancesReserveData (497) */
|
|
4328
4371
|
interface PalletBalancesReserveData extends Struct {
|
|
4329
4372
|
readonly id: U8aFixed;
|
|
4330
4373
|
readonly amount: u128;
|
|
4331
4374
|
}
|
|
4332
4375
|
|
|
4333
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4376
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
|
|
4334
4377
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4335
4378
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4336
4379
|
readonly amount: u128;
|
|
4337
4380
|
}
|
|
4338
4381
|
|
|
4339
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4382
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
|
|
4340
4383
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4341
4384
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4342
4385
|
readonly amount: u128;
|
|
4343
4386
|
}
|
|
4344
4387
|
|
|
4345
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4388
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (504) */
|
|
4346
4389
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4347
4390
|
readonly isBlockRewards: boolean;
|
|
4348
4391
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4349
4392
|
readonly type: 'BlockRewards';
|
|
4350
4393
|
}
|
|
4351
4394
|
|
|
4352
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4395
|
+
/** @name PalletBlockRewardsFreezeReason (505) */
|
|
4353
4396
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4354
4397
|
readonly isMaturationPeriod: boolean;
|
|
4355
4398
|
readonly type: 'MaturationPeriod';
|
|
4356
4399
|
}
|
|
4357
4400
|
|
|
4358
|
-
/** @name PalletBalancesError (
|
|
4401
|
+
/** @name PalletBalancesError (507) */
|
|
4359
4402
|
interface PalletBalancesError extends Enum {
|
|
4360
4403
|
readonly isVestingBalance: boolean;
|
|
4361
4404
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4384,7 +4427,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4384
4427
|
| 'DeltaZero';
|
|
4385
4428
|
}
|
|
4386
4429
|
|
|
4387
|
-
/** @name PalletTxPauseError (
|
|
4430
|
+
/** @name PalletTxPauseError (509) */
|
|
4388
4431
|
interface PalletTxPauseError extends Enum {
|
|
4389
4432
|
readonly isIsPaused: boolean;
|
|
4390
4433
|
readonly isIsUnpaused: boolean;
|
|
@@ -4393,58 +4436,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4393
4436
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4394
4437
|
}
|
|
4395
4438
|
|
|
4396
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4439
|
+
/** @name PalletTransactionPaymentReleases (510) */
|
|
4397
4440
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4398
4441
|
readonly isV1Ancient: boolean;
|
|
4399
4442
|
readonly isV2: boolean;
|
|
4400
4443
|
readonly type: 'V1Ancient' | 'V2';
|
|
4401
4444
|
}
|
|
4402
4445
|
|
|
4403
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4446
|
+
/** @name FrameSupportStorageNoDrop (511) */
|
|
4404
4447
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4405
4448
|
|
|
4406
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4449
|
+
/** @name FrameSupportTokensFungibleImbalance (512) */
|
|
4407
4450
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4408
4451
|
readonly amount: u128;
|
|
4409
4452
|
}
|
|
4410
4453
|
|
|
4411
|
-
/** @name PalletUtilityError (
|
|
4454
|
+
/** @name PalletUtilityError (513) */
|
|
4412
4455
|
interface PalletUtilityError extends Enum {
|
|
4413
4456
|
readonly isTooManyCalls: boolean;
|
|
4414
4457
|
readonly type: 'TooManyCalls';
|
|
4415
4458
|
}
|
|
4416
4459
|
|
|
4417
|
-
/** @name PalletSudoError (
|
|
4460
|
+
/** @name PalletSudoError (514) */
|
|
4418
4461
|
interface PalletSudoError extends Enum {
|
|
4419
4462
|
readonly isRequireSudo: boolean;
|
|
4420
4463
|
readonly type: 'RequireSudo';
|
|
4421
4464
|
}
|
|
4422
4465
|
|
|
4423
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4466
|
+
/** @name PalletTreasuryFrameVaultCapital (515) */
|
|
4424
4467
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4425
4468
|
readonly frameId: Compact<u64>;
|
|
4426
4469
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4427
4470
|
}
|
|
4428
4471
|
|
|
4429
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4472
|
+
/** @name PalletTreasuryVaultCapital (517) */
|
|
4430
4473
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4431
4474
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4432
4475
|
readonly eligibleBonds: Compact<u32>;
|
|
4433
4476
|
}
|
|
4434
4477
|
|
|
4435
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4478
|
+
/** @name PalletTreasuryBondLotAllocation (519) */
|
|
4436
4479
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4437
4480
|
readonly bondLotId: Compact<u64>;
|
|
4438
4481
|
readonly prorata: u128;
|
|
4439
4482
|
}
|
|
4440
4483
|
|
|
4441
|
-
/** @name
|
|
4484
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (524) */
|
|
4485
|
+
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4486
|
+
readonly frameId: Compact<u64>;
|
|
4487
|
+
readonly totalBonds: Compact<u32>;
|
|
4488
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4489
|
+
}
|
|
4490
|
+
|
|
4491
|
+
/** @name PalletTreasuryBondLotSummary (526) */
|
|
4492
|
+
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4493
|
+
readonly bondLotId: Compact<u64>;
|
|
4494
|
+
readonly bonds: Compact<u32>;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
/** @name PalletTreasuryBondLot (528) */
|
|
4442
4498
|
interface PalletTreasuryBondLot extends Struct {
|
|
4443
4499
|
readonly owner: AccountId32;
|
|
4444
|
-
readonly
|
|
4500
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4445
4501
|
readonly bonds: Compact<u32>;
|
|
4446
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4447
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4448
4502
|
readonly createdFrameId: Compact<u64>;
|
|
4449
4503
|
readonly participatedFrames: Compact<u32>;
|
|
4450
4504
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4454,13 +4508,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4454
4508
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4455
4509
|
}
|
|
4456
4510
|
|
|
4457
|
-
/** @name
|
|
4458
|
-
interface
|
|
4459
|
-
readonly
|
|
4460
|
-
readonly
|
|
4511
|
+
/** @name PalletTreasuryBondProgram (529) */
|
|
4512
|
+
interface PalletTreasuryBondProgram extends Enum {
|
|
4513
|
+
readonly isVault: boolean;
|
|
4514
|
+
readonly asVault: {
|
|
4515
|
+
readonly vaultId: Compact<u32>;
|
|
4516
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4517
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4518
|
+
} & Struct;
|
|
4519
|
+
readonly isArgonot: boolean;
|
|
4520
|
+
readonly type: 'Vault' | 'Argonot';
|
|
4461
4521
|
}
|
|
4462
4522
|
|
|
4463
|
-
/** @name PalletTreasuryError (
|
|
4523
|
+
/** @name PalletTreasuryError (533) */
|
|
4464
4524
|
interface PalletTreasuryError extends Enum {
|
|
4465
4525
|
readonly isBondPurchaseRejected: boolean;
|
|
4466
4526
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4478,6 +4538,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4478
4538
|
readonly isBonusApprovalExpired: boolean;
|
|
4479
4539
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4480
4540
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4541
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4542
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4481
4543
|
readonly type:
|
|
4482
4544
|
| 'BondPurchaseRejected'
|
|
4483
4545
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4494,91 +4556,99 @@ declare module '@polkadot/types/lookup' {
|
|
|
4494
4556
|
| 'BonusApprovalWrongAccount'
|
|
4495
4557
|
| 'BonusApprovalExpired'
|
|
4496
4558
|
| 'BonusApprovalExistingBondLot'
|
|
4497
|
-
| 'InvalidBonusApprovalSignature'
|
|
4559
|
+
| 'InvalidBonusApprovalSignature'
|
|
4560
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4561
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4498
4562
|
}
|
|
4499
4563
|
|
|
4500
|
-
/** @name PalletFeeControlError (
|
|
4564
|
+
/** @name PalletFeeControlError (534) */
|
|
4501
4565
|
interface PalletFeeControlError extends Enum {
|
|
4502
4566
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4503
4567
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4504
4568
|
}
|
|
4505
4569
|
|
|
4506
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4570
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4507
4571
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4508
4572
|
readonly vaultAccount: AccountId32;
|
|
4509
|
-
readonly
|
|
4510
|
-
readonly miningBotAccount: AccountId32;
|
|
4573
|
+
readonly miningAccount: AccountId32;
|
|
4511
4574
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4512
|
-
readonly
|
|
4513
|
-
readonly
|
|
4575
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
4576
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
4577
|
+
readonly accountBitcoinAmount: u128;
|
|
4578
|
+
readonly accountVaultBondAmount: u128;
|
|
4514
4579
|
readonly vaultCreated: bool;
|
|
4515
|
-
readonly
|
|
4516
|
-
readonly
|
|
4517
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4580
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4581
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4518
4582
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4519
4583
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4520
|
-
readonly
|
|
4521
|
-
readonly
|
|
4522
|
-
readonly
|
|
4584
|
+
readonly operationalCertificationsCount: Compact<u32>;
|
|
4585
|
+
readonly accessCodePending: bool;
|
|
4586
|
+
readonly availableAccessCodes: Compact<u32>;
|
|
4523
4587
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4524
4588
|
readonly rewardsEarnedAmount: u128;
|
|
4525
4589
|
readonly rewardsCollectedAmount: u128;
|
|
4526
|
-
readonly
|
|
4590
|
+
readonly isOperationallyCertified: bool;
|
|
4527
4591
|
}
|
|
4528
4592
|
|
|
4529
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4593
|
+
/** @name PalletOperationalAccountsRewardsConfig (536) */
|
|
4530
4594
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4595
|
+
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
|
+
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4533
4597
|
}
|
|
4534
4598
|
|
|
4535
|
-
/** @name PalletOperationalAccountsError (
|
|
4599
|
+
/** @name PalletOperationalAccountsError (538) */
|
|
4536
4600
|
interface PalletOperationalAccountsError extends Enum {
|
|
4537
4601
|
readonly isAlreadyRegistered: boolean;
|
|
4538
4602
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4539
4603
|
readonly isAccountAlreadyLinked: boolean;
|
|
4540
4604
|
readonly isInvalidAccountProof: boolean;
|
|
4541
4605
|
readonly isNotOperationalAccount: boolean;
|
|
4542
|
-
readonly isInvalidReferralProof: boolean;
|
|
4543
|
-
readonly isReferralProofExpired: boolean;
|
|
4544
4606
|
readonly isRegistrationInviteRequired: boolean;
|
|
4607
|
+
readonly isInvalidAccessProof: boolean;
|
|
4608
|
+
readonly isUpstreamNotOperationalAccount: boolean;
|
|
4609
|
+
readonly isMinimumsNotMet: boolean;
|
|
4610
|
+
readonly isCannotGrantAccessToSelf: boolean;
|
|
4545
4611
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4546
4612
|
readonly isEncryptedServerTooLong: boolean;
|
|
4547
|
-
readonly
|
|
4613
|
+
readonly isNotUpstreamOfDownstream: boolean;
|
|
4548
4614
|
readonly isNoPendingRewards: boolean;
|
|
4549
4615
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4550
4616
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
4551
4617
|
readonly isRewardClaimExceedsPending: boolean;
|
|
4552
4618
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
4553
|
-
readonly
|
|
4619
|
+
readonly isAlreadyOperationallyCertified: boolean;
|
|
4554
4620
|
readonly isNotEligibleForActivation: boolean;
|
|
4621
|
+
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4555
4622
|
readonly type:
|
|
4556
4623
|
| 'AlreadyRegistered'
|
|
4557
4624
|
| 'InvalidRegistrationSubmitter'
|
|
4558
4625
|
| 'AccountAlreadyLinked'
|
|
4559
4626
|
| 'InvalidAccountProof'
|
|
4560
4627
|
| 'NotOperationalAccount'
|
|
4561
|
-
| 'InvalidReferralProof'
|
|
4562
|
-
| 'ReferralProofExpired'
|
|
4563
4628
|
| 'RegistrationInviteRequired'
|
|
4629
|
+
| 'InvalidAccessProof'
|
|
4630
|
+
| 'UpstreamNotOperationalAccount'
|
|
4631
|
+
| 'MinimumsNotMet'
|
|
4632
|
+
| 'CannotGrantAccessToSelf'
|
|
4564
4633
|
| 'NoProgressUpdateProvided'
|
|
4565
4634
|
| 'EncryptedServerTooLong'
|
|
4566
|
-
| '
|
|
4635
|
+
| 'NotUpstreamOfDownstream'
|
|
4567
4636
|
| 'NoPendingRewards'
|
|
4568
4637
|
| 'RewardClaimBelowMinimum'
|
|
4569
4638
|
| 'RewardClaimNotWholeArgon'
|
|
4570
4639
|
| 'RewardClaimExceedsPending'
|
|
4571
4640
|
| 'TreasuryInsufficientFunds'
|
|
4572
|
-
| '
|
|
4573
|
-
| 'NotEligibleForActivation'
|
|
4641
|
+
| 'AlreadyOperationallyCertified'
|
|
4642
|
+
| 'NotEligibleForActivation'
|
|
4643
|
+
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4574
4644
|
}
|
|
4575
4645
|
|
|
4576
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4646
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
|
|
4577
4647
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4578
4648
|
readonly slot: Compact<u64>;
|
|
4579
4649
|
}
|
|
4580
4650
|
|
|
4581
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4651
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
|
|
4582
4652
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4583
4653
|
readonly blockNumber: Compact<u64>;
|
|
4584
4654
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4588,44 +4658,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4588
4658
|
readonly receiptsRoot: H256;
|
|
4589
4659
|
}
|
|
4590
4660
|
|
|
4591
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4661
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
|
|
4592
4662
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4593
4663
|
readonly root: H256;
|
|
4594
4664
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4595
4665
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4596
4666
|
}
|
|
4597
4667
|
|
|
4598
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4668
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
|
|
4599
4669
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4600
4670
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4601
4671
|
}
|
|
4602
4672
|
|
|
4603
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4673
|
+
/** @name SnowbridgeAmclBls381Ecp (544) */
|
|
4604
4674
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4605
4675
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4606
4676
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4607
4677
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4608
4678
|
}
|
|
4609
4679
|
|
|
4610
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4680
|
+
/** @name SnowbridgeAmclBls381Fp (545) */
|
|
4611
4681
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4612
4682
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4613
4683
|
readonly xes: i32;
|
|
4614
4684
|
}
|
|
4615
4685
|
|
|
4616
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4686
|
+
/** @name SnowbridgeAmclBls381Big (546) */
|
|
4617
4687
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4618
4688
|
readonly w: Vec<i32>;
|
|
4619
4689
|
}
|
|
4620
4690
|
|
|
4621
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4691
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
|
|
4622
4692
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4623
4693
|
readonly isMainnet: boolean;
|
|
4624
4694
|
readonly isMinimal: boolean;
|
|
4625
4695
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4626
4696
|
}
|
|
4627
4697
|
|
|
4628
|
-
/** @name PalletEthereumVerifierError (
|
|
4698
|
+
/** @name PalletEthereumVerifierError (551) */
|
|
4629
4699
|
interface PalletEthereumVerifierError extends Enum {
|
|
4630
4700
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4631
4701
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4678,21 +4748,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4678
4748
|
| 'Halted';
|
|
4679
4749
|
}
|
|
4680
4750
|
|
|
4681
|
-
/** @name
|
|
4751
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (552) */
|
|
4752
|
+
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4753
|
+
readonly microgonsIn: u128;
|
|
4754
|
+
readonly microgonsOut: u128;
|
|
4755
|
+
readonly argonTransfersInCount: Compact<u32>;
|
|
4756
|
+
readonly argonTransfersOutCount: Compact<u32>;
|
|
4757
|
+
readonly micronotsIn: u128;
|
|
4758
|
+
readonly micronotsOut: u128;
|
|
4759
|
+
readonly argonotTransfersInCount: Compact<u32>;
|
|
4760
|
+
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4761
|
+
}
|
|
4762
|
+
|
|
4763
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
4682
4764
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4683
4765
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4684
4766
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4685
4767
|
readonly totalWeight: u128;
|
|
4686
4768
|
}
|
|
4687
4769
|
|
|
4688
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4770
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4689
4771
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4690
4772
|
readonly accountId: AccountId32;
|
|
4691
4773
|
readonly signer: H160;
|
|
4692
4774
|
readonly weight: u128;
|
|
4693
4775
|
}
|
|
4694
4776
|
|
|
4695
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4777
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4696
4778
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4697
4779
|
readonly approvingCouncilHash: H256;
|
|
4698
4780
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4704,7 +4786,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4704
4786
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4705
4787
|
}
|
|
4706
4788
|
|
|
4707
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4789
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4708
4790
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4709
4791
|
readonly accountId: AccountId32;
|
|
4710
4792
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4721,7 +4803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4721
4803
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4722
4804
|
}
|
|
4723
4805
|
|
|
4724
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4806
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4725
4807
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4726
4808
|
readonly isPendingActivation: boolean;
|
|
4727
4809
|
readonly isActive: boolean;
|
|
@@ -4729,7 +4811,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4729
4811
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4730
4812
|
}
|
|
4731
4813
|
|
|
4732
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4814
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4733
4815
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4734
4816
|
readonly argonAccountId: AccountId32;
|
|
4735
4817
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4748,7 +4830,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4830
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4749
4831
|
}
|
|
4750
4832
|
|
|
4751
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4833
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4752
4834
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4753
4835
|
readonly microgonCollateral: u128;
|
|
4754
4836
|
readonly micronotCollateral: u128;
|
|
@@ -4756,27 +4838,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4756
4838
|
readonly signature: U8aFixed;
|
|
4757
4839
|
}
|
|
4758
4840
|
|
|
4759
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4841
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4760
4842
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4761
4843
|
readonly isStarted: boolean;
|
|
4762
4844
|
readonly isReady: boolean;
|
|
4763
4845
|
readonly type: 'Started' | 'Ready';
|
|
4764
4846
|
}
|
|
4765
4847
|
|
|
4766
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4848
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4767
4849
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4768
4850
|
readonly transferId: H256;
|
|
4769
4851
|
readonly remainingCollateral: u128;
|
|
4770
4852
|
readonly remainingMintingAuthorityTip: u128;
|
|
4771
4853
|
}
|
|
4772
4854
|
|
|
4773
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4855
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4774
4856
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4775
4857
|
readonly argonCirculation: u128;
|
|
4776
4858
|
readonly argonotCirculation: u128;
|
|
4777
4859
|
}
|
|
4778
4860
|
|
|
4779
|
-
/** @name PalletCrosschainTransferError (
|
|
4861
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4780
4862
|
interface PalletCrosschainTransferError extends Enum {
|
|
4781
4863
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4782
4864
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4889,45 +4971,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4889
4971
|
| 'TooManyPendingTransferOuts';
|
|
4890
4972
|
}
|
|
4891
4973
|
|
|
4892
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4974
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4893
4975
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4894
4976
|
|
|
4895
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4977
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4896
4978
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4897
4979
|
|
|
4898
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4980
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4899
4981
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4900
4982
|
|
|
4901
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4983
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4902
4984
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4903
4985
|
|
|
4904
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4986
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4905
4987
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4906
4988
|
|
|
4907
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4989
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
4908
4990
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4909
4991
|
|
|
4910
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4992
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
4911
4993
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4912
4994
|
|
|
4913
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4995
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
4914
4996
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4915
4997
|
|
|
4916
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4998
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
4917
4999
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4918
5000
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4919
5001
|
}
|
|
4920
5002
|
|
|
4921
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5003
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
4922
5004
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4923
5005
|
readonly isDisabled: boolean;
|
|
4924
5006
|
readonly isEnabled: boolean;
|
|
4925
5007
|
readonly type: 'Disabled' | 'Enabled';
|
|
4926
5008
|
}
|
|
4927
5009
|
|
|
4928
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5010
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
4929
5011
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4930
5012
|
|
|
4931
|
-
/** @name ArgonRuntimeRuntime (
|
|
5013
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
4932
5014
|
type ArgonRuntimeRuntime = Null;
|
|
4933
5015
|
} // declare module
|