@argonprotocol/mainchain 1.4.8 → 1.4.9-dev.0147366f
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 +642 -423
- package/browser/index.js +125 -32
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +148 -56
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +642 -423
- package/lib/index.d.ts +642 -423
- package/lib/index.js +124 -32
- 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 +43 -11
- package/src/interfaces/augment-api-events.ts +101 -32
- package/src/interfaces/augment-api-query.ts +87 -49
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +24 -12
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +367 -286
- package/src/interfaces/registry.ts +14 -3
- package/src/interfaces/types-lookup.ts +389 -297
|
@@ -1657,6 +1657,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1657
1657
|
readonly amount: u128;
|
|
1658
1658
|
readonly dispatchError: SpRuntimeDispatchError;
|
|
1659
1659
|
} & Struct;
|
|
1660
|
+
readonly isCouldNotDistributeEarningsToArgonotBondLot: boolean;
|
|
1661
|
+
readonly asCouldNotDistributeEarningsToArgonotBondLot: {
|
|
1662
|
+
readonly frameId: u64;
|
|
1663
|
+
readonly bondLotId: u64;
|
|
1664
|
+
readonly accountId: AccountId32;
|
|
1665
|
+
readonly amount: u128;
|
|
1666
|
+
readonly dispatchError: SpRuntimeDispatchError;
|
|
1667
|
+
} & Struct;
|
|
1660
1668
|
readonly isCouldNotTransferToTreasuryReserves: boolean;
|
|
1661
1669
|
readonly asCouldNotTransferToTreasuryReserves: {
|
|
1662
1670
|
readonly frameId: u64;
|
|
@@ -1667,6 +1675,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
1667
1675
|
readonly asFrameEarningsDistributed: {
|
|
1668
1676
|
readonly frameId: u64;
|
|
1669
1677
|
readonly bidPoolDistributed: u128;
|
|
1678
|
+
readonly argonotBondPoolDistributed: u128;
|
|
1679
|
+
readonly vaultBidPoolDistributed: u128;
|
|
1680
|
+
readonly treasuryRefunds: u128;
|
|
1670
1681
|
readonly treasuryReserves: u128;
|
|
1671
1682
|
readonly participatingVaults: u32;
|
|
1672
1683
|
} & Struct;
|
|
@@ -1679,7 +1690,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1679
1690
|
readonly isCouldNotReleaseBondLot: boolean;
|
|
1680
1691
|
readonly asCouldNotReleaseBondLot: {
|
|
1681
1692
|
readonly frameId: u64;
|
|
1682
|
-
readonly
|
|
1693
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1683
1694
|
readonly bondLotId: u64;
|
|
1684
1695
|
readonly amount: u128;
|
|
1685
1696
|
readonly accountId: AccountId32;
|
|
@@ -1687,14 +1698,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1687
1698
|
} & Struct;
|
|
1688
1699
|
readonly isBondLotPurchased: boolean;
|
|
1689
1700
|
readonly asBondLotPurchased: {
|
|
1690
|
-
readonly
|
|
1701
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1691
1702
|
readonly bondLotId: u64;
|
|
1692
1703
|
readonly accountId: AccountId32;
|
|
1693
1704
|
readonly bonds: u32;
|
|
1694
1705
|
} & Struct;
|
|
1695
1706
|
readonly isBondLotReleaseScheduled: boolean;
|
|
1696
1707
|
readonly asBondLotReleaseScheduled: {
|
|
1697
|
-
readonly
|
|
1708
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1698
1709
|
readonly bondLotId: u64;
|
|
1699
1710
|
readonly accountId: AccountId32;
|
|
1700
1711
|
readonly bonds: u32;
|
|
@@ -1704,7 +1715,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1704
1715
|
readonly isBondLotReleased: boolean;
|
|
1705
1716
|
readonly asBondLotReleased: {
|
|
1706
1717
|
readonly frameId: u64;
|
|
1707
|
-
readonly
|
|
1718
|
+
readonly programId: PalletTreasuryBondProgramId;
|
|
1708
1719
|
readonly bondLotId: u64;
|
|
1709
1720
|
readonly accountId: AccountId32;
|
|
1710
1721
|
readonly bonds: u32;
|
|
@@ -1717,6 +1728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1717
1728
|
} & Struct;
|
|
1718
1729
|
readonly type:
|
|
1719
1730
|
| 'CouldNotDistributeEarningsToBondLot'
|
|
1731
|
+
| 'CouldNotDistributeEarningsToArgonotBondLot'
|
|
1720
1732
|
| 'CouldNotTransferToTreasuryReserves'
|
|
1721
1733
|
| 'FrameEarningsDistributed'
|
|
1722
1734
|
| 'FrameVaultCapitalLocked'
|
|
@@ -1727,7 +1739,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1727
1739
|
| 'EncumberedBondMicrogonsBurned';
|
|
1728
1740
|
}
|
|
1729
1741
|
|
|
1730
|
-
/** @name
|
|
1742
|
+
/** @name PalletTreasuryBondProgramId (120) */
|
|
1743
|
+
interface PalletTreasuryBondProgramId extends Enum {
|
|
1744
|
+
readonly isVault: boolean;
|
|
1745
|
+
readonly asVault: {
|
|
1746
|
+
readonly vaultId: Compact<u32>;
|
|
1747
|
+
} & Struct;
|
|
1748
|
+
readonly isArgonot: boolean;
|
|
1749
|
+
readonly type: 'Vault' | 'Argonot';
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
/** @name PalletTreasuryBondReleaseReason (121) */
|
|
1731
1753
|
interface PalletTreasuryBondReleaseReason extends Enum {
|
|
1732
1754
|
readonly isUserLiquidation: boolean;
|
|
1733
1755
|
readonly isBumped: boolean;
|
|
@@ -1735,7 +1757,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1735
1757
|
readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
|
|
1736
1758
|
}
|
|
1737
1759
|
|
|
1738
|
-
/** @name PalletFeeControlEvent (
|
|
1760
|
+
/** @name PalletFeeControlEvent (122) */
|
|
1739
1761
|
interface PalletFeeControlEvent extends Enum {
|
|
1740
1762
|
readonly isFeeSkipped: boolean;
|
|
1741
1763
|
readonly asFeeSkipped: {
|
|
@@ -1750,14 +1772,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1750
1772
|
readonly type: 'FeeSkipped' | 'FeeDelegated';
|
|
1751
1773
|
}
|
|
1752
1774
|
|
|
1753
|
-
/** @name ArgonRuntimeOriginCaller (
|
|
1775
|
+
/** @name ArgonRuntimeOriginCaller (123) */
|
|
1754
1776
|
interface ArgonRuntimeOriginCaller extends Enum {
|
|
1755
1777
|
readonly isSystem: boolean;
|
|
1756
1778
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
1757
1779
|
readonly type: 'System';
|
|
1758
1780
|
}
|
|
1759
1781
|
|
|
1760
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
1782
|
+
/** @name FrameSupportDispatchRawOrigin (124) */
|
|
1761
1783
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
1762
1784
|
readonly isRoot: boolean;
|
|
1763
1785
|
readonly isSigned: boolean;
|
|
@@ -1767,18 +1789,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
1767
1789
|
readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
|
|
1768
1790
|
}
|
|
1769
1791
|
|
|
1770
|
-
/** @name PalletOperationalAccountsEvent (
|
|
1792
|
+
/** @name PalletOperationalAccountsEvent (125) */
|
|
1771
1793
|
interface PalletOperationalAccountsEvent extends Enum {
|
|
1772
1794
|
readonly isOperationalAccountRegistered: boolean;
|
|
1773
1795
|
readonly asOperationalAccountRegistered: {
|
|
1774
1796
|
readonly operationalAccount: AccountId32;
|
|
1775
1797
|
readonly vaultAccount: AccountId32;
|
|
1776
|
-
readonly
|
|
1777
|
-
readonly
|
|
1778
|
-
|
|
1798
|
+
readonly miningAccount: AccountId32;
|
|
1799
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
1800
|
+
} & Struct;
|
|
1801
|
+
readonly isAccountMeetsMinimums: boolean;
|
|
1802
|
+
readonly asAccountMeetsMinimums: {
|
|
1803
|
+
readonly account: AccountId32;
|
|
1779
1804
|
} & Struct;
|
|
1780
|
-
readonly
|
|
1781
|
-
readonly
|
|
1805
|
+
readonly isAccountOperationallyCertified: boolean;
|
|
1806
|
+
readonly asAccountOperationallyCertified: {
|
|
1782
1807
|
readonly account: AccountId32;
|
|
1783
1808
|
} & Struct;
|
|
1784
1809
|
readonly isOperationalRewardEarned: boolean;
|
|
@@ -1796,27 +1821,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
1796
1821
|
} & Struct;
|
|
1797
1822
|
readonly isRewardsConfigUpdated: boolean;
|
|
1798
1823
|
readonly asRewardsConfigUpdated: {
|
|
1799
|
-
readonly
|
|
1800
|
-
readonly
|
|
1824
|
+
readonly operationalCertificationReward: u128;
|
|
1825
|
+
readonly operationalCertificationBonusReward: u128;
|
|
1801
1826
|
} & Struct;
|
|
1802
1827
|
readonly isOperationalProgressForced: boolean;
|
|
1803
1828
|
readonly asOperationalProgressForced: {
|
|
1804
1829
|
readonly account: AccountId32;
|
|
1805
1830
|
readonly updateOperationalProgress: bool;
|
|
1806
|
-
readonly
|
|
1831
|
+
readonly meetsMinimums: bool;
|
|
1832
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
1833
|
+
readonly accountBitcoinAmount: u128;
|
|
1834
|
+
readonly accountVaultBondAmount: u128;
|
|
1807
1835
|
readonly vaultCreated: bool;
|
|
1808
|
-
readonly
|
|
1809
|
-
readonly
|
|
1810
|
-
readonly observedMiningSeatTotal: u32;
|
|
1836
|
+
readonly operatorVaultBitcoinAmount: u128;
|
|
1837
|
+
readonly miningSeatCount: u32;
|
|
1811
1838
|
} & Struct;
|
|
1812
1839
|
readonly isEncryptedServerUpdated: boolean;
|
|
1813
1840
|
readonly asEncryptedServerUpdated: {
|
|
1814
|
-
readonly
|
|
1815
|
-
readonly
|
|
1841
|
+
readonly upstreamAccount: AccountId32;
|
|
1842
|
+
readonly downstreamAccount: AccountId32;
|
|
1816
1843
|
} & Struct;
|
|
1817
1844
|
readonly type:
|
|
1818
1845
|
| 'OperationalAccountRegistered'
|
|
1819
|
-
| '
|
|
1846
|
+
| 'AccountMeetsMinimums'
|
|
1847
|
+
| 'AccountOperationallyCertified'
|
|
1820
1848
|
| 'OperationalRewardEarned'
|
|
1821
1849
|
| 'OperationalRewardsClaimed'
|
|
1822
1850
|
| 'RewardsConfigUpdated'
|
|
@@ -1824,14 +1852,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1824
1852
|
| 'EncryptedServerUpdated';
|
|
1825
1853
|
}
|
|
1826
1854
|
|
|
1827
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1855
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1828
1856
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1829
|
-
readonly
|
|
1830
|
-
readonly
|
|
1831
|
-
readonly type: '
|
|
1857
|
+
readonly isCertification: boolean;
|
|
1858
|
+
readonly isOperationalCertificationBonus: boolean;
|
|
1859
|
+
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
1832
1860
|
}
|
|
1833
1861
|
|
|
1834
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1862
|
+
/** @name PalletEthereumVerifierEvent (127) */
|
|
1835
1863
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1836
1864
|
readonly isBeaconHeaderImported: boolean;
|
|
1837
1865
|
readonly asBeaconHeaderImported: {
|
|
@@ -1866,14 +1894,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1866
1894
|
| 'OperatingModeChanged';
|
|
1867
1895
|
}
|
|
1868
1896
|
|
|
1869
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1897
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (128) */
|
|
1870
1898
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1871
1899
|
readonly isNormal: boolean;
|
|
1872
1900
|
readonly isHalted: boolean;
|
|
1873
1901
|
readonly type: 'Normal' | 'Halted';
|
|
1874
1902
|
}
|
|
1875
1903
|
|
|
1876
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1904
|
+
/** @name PalletCrosschainTransferEvent (129) */
|
|
1877
1905
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1878
1906
|
readonly isTransferToArgonSettled: boolean;
|
|
1879
1907
|
readonly asTransferToArgonSettled: {
|
|
@@ -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,19 +2989,23 @@ 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: {
|
|
2968
2996
|
readonly paused: bool;
|
|
2969
2997
|
} & Struct;
|
|
2970
|
-
readonly
|
|
2998
|
+
readonly isSetBlockVoterRewardsEnabled: boolean;
|
|
2999
|
+
readonly asSetBlockVoterRewardsEnabled: {
|
|
3000
|
+
readonly enabled: bool;
|
|
3001
|
+
} & Struct;
|
|
3002
|
+
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2971
3003
|
}
|
|
2972
3004
|
|
|
2973
|
-
/** @name PalletMintCall (
|
|
3005
|
+
/** @name PalletMintCall (263) */
|
|
2974
3006
|
type PalletMintCall = Null;
|
|
2975
3007
|
|
|
2976
|
-
/** @name PalletBalancesCall (
|
|
3008
|
+
/** @name PalletBalancesCall (264) */
|
|
2977
3009
|
interface PalletBalancesCall extends Enum {
|
|
2978
3010
|
readonly isTransferAllowDeath: boolean;
|
|
2979
3011
|
readonly asTransferAllowDeath: {
|
|
@@ -3032,14 +3064,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3032
3064
|
| 'Burn';
|
|
3033
3065
|
}
|
|
3034
3066
|
|
|
3035
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3067
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3036
3068
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3037
3069
|
readonly isIncrease: boolean;
|
|
3038
3070
|
readonly isDecrease: boolean;
|
|
3039
3071
|
readonly type: 'Increase' | 'Decrease';
|
|
3040
3072
|
}
|
|
3041
3073
|
|
|
3042
|
-
/** @name PalletTxPauseCall (
|
|
3074
|
+
/** @name PalletTxPauseCall (267) */
|
|
3043
3075
|
interface PalletTxPauseCall extends Enum {
|
|
3044
3076
|
readonly isPause: boolean;
|
|
3045
3077
|
readonly asPause: {
|
|
@@ -3052,7 +3084,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3052
3084
|
readonly type: 'Pause' | 'Unpause';
|
|
3053
3085
|
}
|
|
3054
3086
|
|
|
3055
|
-
/** @name PalletUtilityCall (
|
|
3087
|
+
/** @name PalletUtilityCall (268) */
|
|
3056
3088
|
interface PalletUtilityCall extends Enum {
|
|
3057
3089
|
readonly isBatch: boolean;
|
|
3058
3090
|
readonly asBatch: {
|
|
@@ -3102,7 +3134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3102
3134
|
| 'DispatchAsFallible';
|
|
3103
3135
|
}
|
|
3104
3136
|
|
|
3105
|
-
/** @name PalletSudoCall (
|
|
3137
|
+
/** @name PalletSudoCall (270) */
|
|
3106
3138
|
interface PalletSudoCall extends Enum {
|
|
3107
3139
|
readonly isSudo: boolean;
|
|
3108
3140
|
readonly asSudo: {
|
|
@@ -3126,7 +3158,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3126
3158
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3127
3159
|
}
|
|
3128
3160
|
|
|
3129
|
-
/** @name PalletTreasuryCall (
|
|
3161
|
+
/** @name PalletTreasuryCall (271) */
|
|
3130
3162
|
interface PalletTreasuryCall extends Enum {
|
|
3131
3163
|
readonly isBuyBonds: boolean;
|
|
3132
3164
|
readonly asBuyBonds: {
|
|
@@ -3138,10 +3170,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3138
3170
|
readonly asLiquidateBondLot: {
|
|
3139
3171
|
readonly bondLotId: u64;
|
|
3140
3172
|
} & Struct;
|
|
3141
|
-
readonly
|
|
3173
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3174
|
+
readonly asBuyArgonotBonds: {
|
|
3175
|
+
readonly bonds: u32;
|
|
3176
|
+
} & Struct;
|
|
3177
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3142
3178
|
}
|
|
3143
3179
|
|
|
3144
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3180
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3145
3181
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3146
3182
|
readonly vaultId: Compact<u32>;
|
|
3147
3183
|
readonly beneficiary: AccountId32;
|
|
@@ -3149,7 +3185,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3185
|
readonly signature: SpRuntimeMultiSignature;
|
|
3150
3186
|
}
|
|
3151
3187
|
|
|
3152
|
-
/** @name PalletOperationalAccountsCall (
|
|
3188
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3153
3189
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3154
3190
|
readonly isRegister: boolean;
|
|
3155
3191
|
readonly asRegister: {
|
|
@@ -3157,8 +3193,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3157
3193
|
} & Struct;
|
|
3158
3194
|
readonly isSetRewardConfig: boolean;
|
|
3159
3195
|
readonly asSetRewardConfig: {
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3196
|
+
readonly operationalCertificationReward: u128;
|
|
3197
|
+
readonly operationalCertificationBonusReward: u128;
|
|
3162
3198
|
} & Struct;
|
|
3163
3199
|
readonly isForceSetProgress: boolean;
|
|
3164
3200
|
readonly asForceSetProgress: {
|
|
@@ -3166,9 +3202,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3166
3202
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3167
3203
|
readonly updateOperationalProgress: bool;
|
|
3168
3204
|
} & Struct;
|
|
3169
|
-
readonly
|
|
3170
|
-
readonly
|
|
3171
|
-
readonly
|
|
3205
|
+
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3206
|
+
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3207
|
+
readonly downstreamAccount: AccountId32;
|
|
3172
3208
|
readonly encryptedServer: Bytes;
|
|
3173
3209
|
} & Struct;
|
|
3174
3210
|
readonly isActivate: boolean;
|
|
@@ -3180,59 +3216,55 @@ declare module '@polkadot/types/lookup' {
|
|
|
3180
3216
|
| 'Register'
|
|
3181
3217
|
| 'SetRewardConfig'
|
|
3182
3218
|
| 'ForceSetProgress'
|
|
3183
|
-
| '
|
|
3219
|
+
| 'SetEncryptedServerForDownstreamAccount'
|
|
3184
3220
|
| 'Activate'
|
|
3185
3221
|
| 'ClaimRewards';
|
|
3186
3222
|
}
|
|
3187
3223
|
|
|
3188
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3224
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3189
3225
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3190
3226
|
readonly isV1: boolean;
|
|
3191
3227
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3192
3228
|
readonly type: 'V1';
|
|
3193
3229
|
}
|
|
3194
3230
|
|
|
3195
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3231
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3196
3232
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3197
3233
|
readonly operationalAccount: AccountId32;
|
|
3198
3234
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
3199
3235
|
readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3200
3236
|
readonly vaultAccount: AccountId32;
|
|
3201
|
-
readonly
|
|
3202
|
-
readonly miningBotAccount: AccountId32;
|
|
3237
|
+
readonly miningAccount: AccountId32;
|
|
3203
3238
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3204
|
-
readonly
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3239
|
+
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3240
|
+
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3207
3241
|
}
|
|
3208
3242
|
|
|
3209
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3243
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3210
3244
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3211
3245
|
|
|
3212
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3246
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3213
3247
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3214
3248
|
readonly signature: SpRuntimeMultiSignature;
|
|
3215
3249
|
}
|
|
3216
3250
|
|
|
3217
|
-
/** @name
|
|
3218
|
-
interface
|
|
3219
|
-
readonly
|
|
3220
|
-
readonly
|
|
3221
|
-
readonly sponsor: AccountId32;
|
|
3222
|
-
readonly expiresAtFrame: Compact<u64>;
|
|
3223
|
-
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3251
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (280) */
|
|
3252
|
+
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
|
+
readonly upstreamAccount: AccountId32;
|
|
3254
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
3224
3255
|
}
|
|
3225
3256
|
|
|
3226
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3257
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3227
3258
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3228
|
-
readonly
|
|
3259
|
+
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3260
|
+
readonly accountBitcoinAmount: Option<u128>;
|
|
3261
|
+
readonly accountVaultBondAmount: Option<u128>;
|
|
3229
3262
|
readonly vaultCreated: Option<bool>;
|
|
3230
|
-
readonly
|
|
3231
|
-
readonly
|
|
3232
|
-
readonly observedMiningSeatTotal: Option<u32>;
|
|
3263
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3264
|
+
readonly miningSeatCount: Option<u32>;
|
|
3233
3265
|
}
|
|
3234
3266
|
|
|
3235
|
-
/** @name PalletEthereumVerifierCall (
|
|
3267
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3236
3268
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3237
3269
|
readonly isForceCheckpoint: boolean;
|
|
3238
3270
|
readonly asForceCheckpoint: {
|
|
@@ -3260,7 +3292,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3260
3292
|
| 'SetOperatingMode';
|
|
3261
3293
|
}
|
|
3262
3294
|
|
|
3263
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3295
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3264
3296
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3265
3297
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3266
3298
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3269,7 +3301,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3269
3301
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3270
3302
|
}
|
|
3271
3303
|
|
|
3272
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3304
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3273
3305
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3274
3306
|
readonly slot: u64;
|
|
3275
3307
|
readonly proposerIndex: u64;
|
|
@@ -3278,22 +3310,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3278
3310
|
readonly bodyRoot: H256;
|
|
3279
3311
|
}
|
|
3280
3312
|
|
|
3281
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3313
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3282
3314
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3283
3315
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3284
3316
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3285
3317
|
}
|
|
3286
3318
|
|
|
3287
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3319
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3288
3320
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3289
3321
|
|
|
3290
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3322
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3291
3323
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3292
3324
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3293
3325
|
readonly executionBranch: Vec<H256>;
|
|
3294
3326
|
}
|
|
3295
3327
|
|
|
3296
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3328
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3297
3329
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3298
3330
|
readonly isCapella: boolean;
|
|
3299
3331
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3302,7 +3334,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3302
3334
|
readonly type: 'Capella' | 'Deneb';
|
|
3303
3335
|
}
|
|
3304
3336
|
|
|
3305
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3337
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3306
3338
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3307
3339
|
readonly parentHash: H256;
|
|
3308
3340
|
readonly feeRecipient: H160;
|
|
@@ -3321,7 +3353,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3321
3353
|
readonly withdrawalsRoot: H256;
|
|
3322
3354
|
}
|
|
3323
3355
|
|
|
3324
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3356
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3325
3357
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3326
3358
|
readonly parentHash: H256;
|
|
3327
3359
|
readonly feeRecipient: H160;
|
|
@@ -3342,7 +3374,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3342
3374
|
readonly excessBlobGas: u64;
|
|
3343
3375
|
}
|
|
3344
3376
|
|
|
3345
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3377
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3346
3378
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3347
3379
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3348
3380
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3353,13 +3385,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3385
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3354
3386
|
}
|
|
3355
3387
|
|
|
3356
|
-
/** @name PalletEthereumVerifierFork (
|
|
3388
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3357
3389
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3358
3390
|
readonly version: U8aFixed;
|
|
3359
3391
|
readonly epoch: Compact<u64>;
|
|
3360
3392
|
}
|
|
3361
3393
|
|
|
3362
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3394
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3363
3395
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3364
3396
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3365
3397
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3370,22 +3402,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3370
3402
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3371
3403
|
}
|
|
3372
3404
|
|
|
3373
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3405
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3374
3406
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3375
3407
|
readonly syncCommitteeBits: Bytes;
|
|
3376
3408
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3377
3409
|
}
|
|
3378
3410
|
|
|
3379
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3411
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3380
3412
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3381
3413
|
|
|
3382
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3414
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3383
3415
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3384
3416
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3385
3417
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3386
3418
|
}
|
|
3387
3419
|
|
|
3388
|
-
/** @name PalletCrosschainTransferCall (
|
|
3420
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3389
3421
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3390
3422
|
readonly isSetChainConfig: boolean;
|
|
3391
3423
|
readonly asSetChainConfig: {
|
|
@@ -3475,7 +3507,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3475
3507
|
| 'CollateralizeTransfer';
|
|
3476
3508
|
}
|
|
3477
3509
|
|
|
3478
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3510
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3479
3511
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3480
3512
|
readonly isEvm: boolean;
|
|
3481
3513
|
readonly asEvm: {
|
|
@@ -3487,7 +3519,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3487
3519
|
readonly type: 'Evm';
|
|
3488
3520
|
}
|
|
3489
3521
|
|
|
3490
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3522
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3491
3523
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3492
3524
|
readonly activationGasCost: Compact<u128>;
|
|
3493
3525
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3495,56 +3527,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3495
3527
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3496
3528
|
}
|
|
3497
3529
|
|
|
3498
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3530
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3499
3531
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3500
3532
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3501
3533
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3502
3534
|
}
|
|
3503
3535
|
|
|
3504
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3536
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3505
3537
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3506
3538
|
readonly anchorBlockHash: H256;
|
|
3507
3539
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3508
3540
|
}
|
|
3509
3541
|
|
|
3510
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3542
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3511
3543
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3512
3544
|
readonly rlp: Bytes;
|
|
3513
3545
|
}
|
|
3514
3546
|
|
|
3515
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3547
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3516
3548
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3517
3549
|
readonly targetBlockNumber: Compact<u64>;
|
|
3518
3550
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3519
3551
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3520
3552
|
}
|
|
3521
3553
|
|
|
3522
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3554
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3523
3555
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3524
3556
|
readonly nodes: Vec<Bytes>;
|
|
3525
3557
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3526
3558
|
}
|
|
3527
3559
|
|
|
3528
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3560
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3529
3561
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3530
3562
|
readonly transactionIndex: Compact<u64>;
|
|
3531
3563
|
readonly nodeIndexes: Vec<u16>;
|
|
3532
3564
|
}
|
|
3533
3565
|
|
|
3534
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3566
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3535
3567
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3536
3568
|
readonly transactionIndex: Compact<u64>;
|
|
3537
3569
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3538
3570
|
}
|
|
3539
3571
|
|
|
3540
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3572
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3541
3573
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3542
3574
|
readonly address: H160;
|
|
3543
3575
|
readonly topics: Vec<H256>;
|
|
3544
3576
|
readonly data: Bytes;
|
|
3545
3577
|
}
|
|
3546
3578
|
|
|
3547
|
-
/** @name PalletMultisigError (
|
|
3579
|
+
/** @name PalletMultisigError (335) */
|
|
3548
3580
|
interface PalletMultisigError extends Enum {
|
|
3549
3581
|
readonly isMinimumThreshold: boolean;
|
|
3550
3582
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3577,21 +3609,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3577
3609
|
| 'AlreadyStored';
|
|
3578
3610
|
}
|
|
3579
3611
|
|
|
3580
|
-
/** @name PalletProxyProxyDefinition (
|
|
3612
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3581
3613
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3582
3614
|
readonly delegate: AccountId32;
|
|
3583
3615
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3584
3616
|
readonly delay: u32;
|
|
3585
3617
|
}
|
|
3586
3618
|
|
|
3587
|
-
/** @name PalletProxyAnnouncement (
|
|
3619
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3588
3620
|
interface PalletProxyAnnouncement extends Struct {
|
|
3589
3621
|
readonly real: AccountId32;
|
|
3590
3622
|
readonly callHash: H256;
|
|
3591
3623
|
readonly height: u32;
|
|
3592
3624
|
}
|
|
3593
3625
|
|
|
3594
|
-
/** @name PalletProxyError (
|
|
3626
|
+
/** @name PalletProxyError (344) */
|
|
3595
3627
|
interface PalletProxyError extends Enum {
|
|
3596
3628
|
readonly isTooMany: boolean;
|
|
3597
3629
|
readonly isNotFound: boolean;
|
|
@@ -3612,16 +3644,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3612
3644
|
| 'NoSelfProxy';
|
|
3613
3645
|
}
|
|
3614
3646
|
|
|
3615
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3647
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3616
3648
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3617
3649
|
readonly tickDurationMillis: Compact<u64>;
|
|
3618
3650
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3619
3651
|
}
|
|
3620
3652
|
|
|
3621
|
-
/** @name PalletTicksError (
|
|
3653
|
+
/** @name PalletTicksError (347) */
|
|
3622
3654
|
type PalletTicksError = Null;
|
|
3623
3655
|
|
|
3624
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3656
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3625
3657
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3626
3658
|
readonly nonce: U256;
|
|
3627
3659
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3629,7 +3661,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3629
3661
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3630
3662
|
}
|
|
3631
3663
|
|
|
3632
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3664
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3633
3665
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3634
3666
|
readonly bidsCount: u32;
|
|
3635
3667
|
readonly bidAmountMin: u128;
|
|
@@ -3637,14 +3669,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3637
3669
|
readonly bidAmountSum: u128;
|
|
3638
3670
|
}
|
|
3639
3671
|
|
|
3640
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3672
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3641
3673
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3642
3674
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3643
3675
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3644
3676
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3645
3677
|
}
|
|
3646
3678
|
|
|
3647
|
-
/** @name PalletMiningSlotError (
|
|
3679
|
+
/** @name PalletMiningSlotError (376) */
|
|
3648
3680
|
interface PalletMiningSlotError extends Enum {
|
|
3649
3681
|
readonly isSlotNotTakingBids: boolean;
|
|
3650
3682
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3655,6 +3687,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3655
3687
|
readonly isInsufficientFunds: boolean;
|
|
3656
3688
|
readonly isBidCannotBeReduced: boolean;
|
|
3657
3689
|
readonly isInvalidBidAmount: boolean;
|
|
3690
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3658
3691
|
readonly isUnrecoverableHold: boolean;
|
|
3659
3692
|
readonly type:
|
|
3660
3693
|
| 'SlotNotTakingBids'
|
|
@@ -3666,10 +3699,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3666
3699
|
| 'InsufficientFunds'
|
|
3667
3700
|
| 'BidCannotBeReduced'
|
|
3668
3701
|
| 'InvalidBidAmount'
|
|
3702
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3669
3703
|
| 'UnrecoverableHold';
|
|
3670
3704
|
}
|
|
3671
3705
|
|
|
3672
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3706
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3673
3707
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3674
3708
|
readonly utxoId: u64;
|
|
3675
3709
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3678,7 +3712,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3678
3712
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3679
3713
|
}
|
|
3680
3714
|
|
|
3681
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3715
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3682
3716
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3683
3717
|
readonly isP2wsh: boolean;
|
|
3684
3718
|
readonly asP2wsh: {
|
|
@@ -3687,7 +3721,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3687
3721
|
readonly type: 'P2wsh';
|
|
3688
3722
|
}
|
|
3689
3723
|
|
|
3690
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3724
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3691
3725
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3692
3726
|
readonly isBitcoin: boolean;
|
|
3693
3727
|
readonly isTestnet: boolean;
|
|
@@ -3696,7 +3730,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3696
3730
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3697
3731
|
}
|
|
3698
3732
|
|
|
3699
|
-
/** @name PalletBitcoinUtxosError (
|
|
3733
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3700
3734
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3701
3735
|
readonly isNoPermissions: boolean;
|
|
3702
3736
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3731,7 +3765,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3731
3765
|
| 'LockAlreadyFunded';
|
|
3732
3766
|
}
|
|
3733
3767
|
|
|
3734
|
-
/** @name ArgonPrimitivesVault (
|
|
3768
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3735
3769
|
interface ArgonPrimitivesVault extends Struct {
|
|
3736
3770
|
readonly operatorAccountId: AccountId32;
|
|
3737
3771
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3752,13 +3786,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3752
3786
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3753
3787
|
}
|
|
3754
3788
|
|
|
3755
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3789
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3756
3790
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3757
3791
|
readonly committedMicronots: Compact<u128>;
|
|
3758
3792
|
readonly encumberedMicronots: Compact<u128>;
|
|
3759
3793
|
}
|
|
3760
3794
|
|
|
3761
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3795
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3762
3796
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3763
3797
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3764
3798
|
readonly depth: Compact<u8>;
|
|
@@ -3768,14 +3802,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3768
3802
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3769
3803
|
}
|
|
3770
3804
|
|
|
3771
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3805
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3772
3806
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3773
3807
|
readonly isMain: boolean;
|
|
3774
3808
|
readonly isTest: boolean;
|
|
3775
3809
|
readonly type: 'Main' | 'Test';
|
|
3776
3810
|
}
|
|
3777
3811
|
|
|
3778
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3812
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3779
3813
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3780
3814
|
readonly frameId: Compact<u64>;
|
|
3781
3815
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3795,7 +3829,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3829
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3796
3830
|
}
|
|
3797
3831
|
|
|
3798
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3832
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3799
3833
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3800
3834
|
readonly blockNumber: Compact<u32>;
|
|
3801
3835
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3803,7 +3837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3803
3837
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3804
3838
|
}
|
|
3805
3839
|
|
|
3806
|
-
/** @name PalletVaultsError (
|
|
3840
|
+
/** @name PalletVaultsError (414) */
|
|
3807
3841
|
interface PalletVaultsError extends Enum {
|
|
3808
3842
|
readonly isNoMoreVaultIds: boolean;
|
|
3809
3843
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3837,6 +3871,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3871
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3838
3872
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
3839
3873
|
readonly isAccountAlreadyHasVault: boolean;
|
|
3874
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3840
3875
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
3841
3876
|
readonly type:
|
|
3842
3877
|
| 'NoMoreVaultIds'
|
|
@@ -3871,10 +3906,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3871
3906
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3872
3907
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
3873
3908
|
| 'AccountAlreadyHasVault'
|
|
3909
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3874
3910
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3875
3911
|
}
|
|
3876
3912
|
|
|
3877
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3913
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3878
3914
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3879
3915
|
readonly vaultId: Compact<u32>;
|
|
3880
3916
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3898,7 +3934,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3898
3934
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3899
3935
|
}
|
|
3900
3936
|
|
|
3901
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3937
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (419) */
|
|
3902
3938
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3903
3939
|
readonly utxoId: Compact<u64>;
|
|
3904
3940
|
readonly vaultId: Compact<u32>;
|
|
@@ -3908,7 +3944,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3908
3944
|
readonly redemptionAmount: Compact<u128>;
|
|
3909
3945
|
}
|
|
3910
3946
|
|
|
3911
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3947
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (421) */
|
|
3912
3948
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3913
3949
|
readonly utxoId: Compact<u64>;
|
|
3914
3950
|
readonly vaultId: Compact<u32>;
|
|
@@ -3917,14 +3953,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3917
3953
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3918
3954
|
}
|
|
3919
3955
|
|
|
3920
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3956
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
|
|
3921
3957
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3922
3958
|
readonly bitcoinNetworkFee: u64;
|
|
3923
3959
|
readonly toScriptPubkey: Bytes;
|
|
3924
3960
|
readonly createdAtArgonBlockNumber: u32;
|
|
3925
3961
|
}
|
|
3926
3962
|
|
|
3927
|
-
/** @name PalletBitcoinLocksError (
|
|
3963
|
+
/** @name PalletBitcoinLocksError (430) */
|
|
3928
3964
|
interface PalletBitcoinLocksError extends Enum {
|
|
3929
3965
|
readonly isInsufficientFunds: boolean;
|
|
3930
3966
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4000,7 +4036,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4000
4036
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4001
4037
|
}
|
|
4002
4038
|
|
|
4003
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4039
|
+
/** @name ArgonPrimitivesVaultVaultError (431) */
|
|
4004
4040
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4005
4041
|
readonly isVaultClosed: boolean;
|
|
4006
4042
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4031,7 +4067,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4031
4067
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4032
4068
|
}
|
|
4033
4069
|
|
|
4034
|
-
/** @name PalletNotariesError (
|
|
4070
|
+
/** @name PalletNotariesError (443) */
|
|
4035
4071
|
interface PalletNotariesError extends Enum {
|
|
4036
4072
|
readonly isProposalNotFound: boolean;
|
|
4037
4073
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4054,7 +4090,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4054
4090
|
| 'InvalidNotary';
|
|
4055
4091
|
}
|
|
4056
4092
|
|
|
4057
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4093
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
|
|
4058
4094
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4059
4095
|
readonly notebookNumber: Compact<u32>;
|
|
4060
4096
|
readonly tick: Compact<u64>;
|
|
@@ -4063,7 +4099,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4063
4099
|
readonly parentSecret: Option<H256>;
|
|
4064
4100
|
}
|
|
4065
4101
|
|
|
4066
|
-
/** @name PalletNotebookError (
|
|
4102
|
+
/** @name PalletNotebookError (450) */
|
|
4067
4103
|
interface PalletNotebookError extends Enum {
|
|
4068
4104
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4069
4105
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4098,7 +4134,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4098
4134
|
| 'InvalidNotebookSubmissionTick';
|
|
4099
4135
|
}
|
|
4100
4136
|
|
|
4101
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4137
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (451) */
|
|
4102
4138
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4103
4139
|
readonly accountId: AccountId32;
|
|
4104
4140
|
readonly amount: u128;
|
|
@@ -4106,10 +4142,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4106
4142
|
readonly notaryId: u32;
|
|
4107
4143
|
}
|
|
4108
4144
|
|
|
4109
|
-
/** @name FrameSupportPalletId (
|
|
4145
|
+
/** @name FrameSupportPalletId (453) */
|
|
4110
4146
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4111
4147
|
|
|
4112
|
-
/** @name PalletLocalchainTransferError (
|
|
4148
|
+
/** @name PalletLocalchainTransferError (454) */
|
|
4113
4149
|
interface PalletLocalchainTransferError extends Enum {
|
|
4114
4150
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4115
4151
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4130,7 +4166,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4130
4166
|
| 'NoAvailableTransferId';
|
|
4131
4167
|
}
|
|
4132
4168
|
|
|
4133
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4169
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
|
|
4134
4170
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4135
4171
|
readonly notaryId: Compact<u32>;
|
|
4136
4172
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4139,13 +4175,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4139
4175
|
readonly blockVotingPower: Compact<u128>;
|
|
4140
4176
|
}
|
|
4141
4177
|
|
|
4142
|
-
/** @name PalletBlockSealSpecError (
|
|
4178
|
+
/** @name PalletBlockSealSpecError (463) */
|
|
4143
4179
|
interface PalletBlockSealSpecError extends Enum {
|
|
4144
4180
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4145
4181
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4146
4182
|
}
|
|
4147
4183
|
|
|
4148
|
-
/** @name PalletDomainsError (
|
|
4184
|
+
/** @name PalletDomainsError (465) */
|
|
4149
4185
|
interface PalletDomainsError extends Enum {
|
|
4150
4186
|
readonly isDomainNotRegistered: boolean;
|
|
4151
4187
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4160,21 +4196,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4160
4196
|
| 'AccountDecodingError';
|
|
4161
4197
|
}
|
|
4162
4198
|
|
|
4163
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4199
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (467) */
|
|
4164
4200
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4165
4201
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4166
4202
|
readonly totalCpi: i128;
|
|
4167
4203
|
readonly measurementsCount: u32;
|
|
4168
4204
|
}
|
|
4169
4205
|
|
|
4170
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4206
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
|
|
4171
4207
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4172
4208
|
readonly frameId: Compact<u64>;
|
|
4173
4209
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4174
4210
|
readonly sampleCount: Compact<u32>;
|
|
4175
4211
|
}
|
|
4176
4212
|
|
|
4177
|
-
/** @name PalletPriceIndexError (
|
|
4213
|
+
/** @name PalletPriceIndexError (472) */
|
|
4178
4214
|
interface PalletPriceIndexError extends Enum {
|
|
4179
4215
|
readonly isNotAuthorizedOperator: boolean;
|
|
4180
4216
|
readonly isMissingValue: boolean;
|
|
@@ -4187,7 +4223,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4187
4223
|
| 'MaxPriceChangePerTickExceeded';
|
|
4188
4224
|
}
|
|
4189
4225
|
|
|
4190
|
-
/** @name PalletGrandpaStoredState (
|
|
4226
|
+
/** @name PalletGrandpaStoredState (473) */
|
|
4191
4227
|
interface PalletGrandpaStoredState extends Enum {
|
|
4192
4228
|
readonly isLive: boolean;
|
|
4193
4229
|
readonly isPendingPause: boolean;
|
|
@@ -4204,7 +4240,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4204
4240
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4205
4241
|
}
|
|
4206
4242
|
|
|
4207
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4243
|
+
/** @name PalletGrandpaStoredPendingChange (474) */
|
|
4208
4244
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4209
4245
|
readonly scheduledAt: u32;
|
|
4210
4246
|
readonly delay: u32;
|
|
@@ -4212,7 +4248,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4212
4248
|
readonly forced: Option<u32>;
|
|
4213
4249
|
}
|
|
4214
4250
|
|
|
4215
|
-
/** @name PalletGrandpaError (
|
|
4251
|
+
/** @name PalletGrandpaError (476) */
|
|
4216
4252
|
interface PalletGrandpaError extends Enum {
|
|
4217
4253
|
readonly isPauseFailed: boolean;
|
|
4218
4254
|
readonly isResumeFailed: boolean;
|
|
@@ -4231,14 +4267,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4231
4267
|
| 'DuplicateOffenceReport';
|
|
4232
4268
|
}
|
|
4233
4269
|
|
|
4234
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4270
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
|
|
4235
4271
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4236
4272
|
readonly blockAuthorAccountId: AccountId32;
|
|
4237
4273
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4238
4274
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4239
4275
|
}
|
|
4240
4276
|
|
|
4241
|
-
/** @name PalletBlockSealError (
|
|
4277
|
+
/** @name PalletBlockSealError (479) */
|
|
4242
4278
|
interface PalletBlockSealError extends Enum {
|
|
4243
4279
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4244
4280
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4285,30 +4321,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4285
4321
|
| 'DuplicateVoteBlockAtTick';
|
|
4286
4322
|
}
|
|
4287
4323
|
|
|
4288
|
-
/** @name PalletBlockRewardsError (
|
|
4324
|
+
/** @name PalletBlockRewardsError (483) */
|
|
4289
4325
|
type PalletBlockRewardsError = Null;
|
|
4290
4326
|
|
|
4291
|
-
/** @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) */
|
|
4292
4343
|
interface PalletMintMintAction extends Struct {
|
|
4293
4344
|
readonly argonBurned: u128;
|
|
4294
4345
|
readonly argonMinted: u128;
|
|
4295
4346
|
readonly bitcoinMinted: u128;
|
|
4296
4347
|
}
|
|
4297
4348
|
|
|
4298
|
-
/** @name PalletMintError (
|
|
4349
|
+
/** @name PalletMintError (491) */
|
|
4299
4350
|
interface PalletMintError extends Enum {
|
|
4300
4351
|
readonly isTooManyPendingMints: boolean;
|
|
4301
4352
|
readonly type: 'TooManyPendingMints';
|
|
4302
4353
|
}
|
|
4303
4354
|
|
|
4304
|
-
/** @name PalletBalancesBalanceLock (
|
|
4355
|
+
/** @name PalletBalancesBalanceLock (493) */
|
|
4305
4356
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4306
4357
|
readonly id: U8aFixed;
|
|
4307
4358
|
readonly amount: u128;
|
|
4308
4359
|
readonly reasons: PalletBalancesReasons;
|
|
4309
4360
|
}
|
|
4310
4361
|
|
|
4311
|
-
/** @name PalletBalancesReasons (
|
|
4362
|
+
/** @name PalletBalancesReasons (494) */
|
|
4312
4363
|
interface PalletBalancesReasons extends Enum {
|
|
4313
4364
|
readonly isFee: boolean;
|
|
4314
4365
|
readonly isMisc: boolean;
|
|
@@ -4316,38 +4367,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4316
4367
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4317
4368
|
}
|
|
4318
4369
|
|
|
4319
|
-
/** @name PalletBalancesReserveData (
|
|
4370
|
+
/** @name PalletBalancesReserveData (497) */
|
|
4320
4371
|
interface PalletBalancesReserveData extends Struct {
|
|
4321
4372
|
readonly id: U8aFixed;
|
|
4322
4373
|
readonly amount: u128;
|
|
4323
4374
|
}
|
|
4324
4375
|
|
|
4325
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4376
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
|
|
4326
4377
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4327
4378
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4328
4379
|
readonly amount: u128;
|
|
4329
4380
|
}
|
|
4330
4381
|
|
|
4331
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4382
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
|
|
4332
4383
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4333
4384
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4334
4385
|
readonly amount: u128;
|
|
4335
4386
|
}
|
|
4336
4387
|
|
|
4337
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4388
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (504) */
|
|
4338
4389
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4339
4390
|
readonly isBlockRewards: boolean;
|
|
4340
4391
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4341
4392
|
readonly type: 'BlockRewards';
|
|
4342
4393
|
}
|
|
4343
4394
|
|
|
4344
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4395
|
+
/** @name PalletBlockRewardsFreezeReason (505) */
|
|
4345
4396
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4346
4397
|
readonly isMaturationPeriod: boolean;
|
|
4347
4398
|
readonly type: 'MaturationPeriod';
|
|
4348
4399
|
}
|
|
4349
4400
|
|
|
4350
|
-
/** @name PalletBalancesError (
|
|
4401
|
+
/** @name PalletBalancesError (507) */
|
|
4351
4402
|
interface PalletBalancesError extends Enum {
|
|
4352
4403
|
readonly isVestingBalance: boolean;
|
|
4353
4404
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4376,7 +4427,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4376
4427
|
| 'DeltaZero';
|
|
4377
4428
|
}
|
|
4378
4429
|
|
|
4379
|
-
/** @name PalletTxPauseError (
|
|
4430
|
+
/** @name PalletTxPauseError (509) */
|
|
4380
4431
|
interface PalletTxPauseError extends Enum {
|
|
4381
4432
|
readonly isIsPaused: boolean;
|
|
4382
4433
|
readonly isIsUnpaused: boolean;
|
|
@@ -4385,58 +4436,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4385
4436
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4386
4437
|
}
|
|
4387
4438
|
|
|
4388
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4439
|
+
/** @name PalletTransactionPaymentReleases (510) */
|
|
4389
4440
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4390
4441
|
readonly isV1Ancient: boolean;
|
|
4391
4442
|
readonly isV2: boolean;
|
|
4392
4443
|
readonly type: 'V1Ancient' | 'V2';
|
|
4393
4444
|
}
|
|
4394
4445
|
|
|
4395
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4446
|
+
/** @name FrameSupportStorageNoDrop (511) */
|
|
4396
4447
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4397
4448
|
|
|
4398
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4449
|
+
/** @name FrameSupportTokensFungibleImbalance (512) */
|
|
4399
4450
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4400
4451
|
readonly amount: u128;
|
|
4401
4452
|
}
|
|
4402
4453
|
|
|
4403
|
-
/** @name PalletUtilityError (
|
|
4454
|
+
/** @name PalletUtilityError (513) */
|
|
4404
4455
|
interface PalletUtilityError extends Enum {
|
|
4405
4456
|
readonly isTooManyCalls: boolean;
|
|
4406
4457
|
readonly type: 'TooManyCalls';
|
|
4407
4458
|
}
|
|
4408
4459
|
|
|
4409
|
-
/** @name PalletSudoError (
|
|
4460
|
+
/** @name PalletSudoError (514) */
|
|
4410
4461
|
interface PalletSudoError extends Enum {
|
|
4411
4462
|
readonly isRequireSudo: boolean;
|
|
4412
4463
|
readonly type: 'RequireSudo';
|
|
4413
4464
|
}
|
|
4414
4465
|
|
|
4415
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4466
|
+
/** @name PalletTreasuryFrameVaultCapital (515) */
|
|
4416
4467
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4417
4468
|
readonly frameId: Compact<u64>;
|
|
4418
4469
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4419
4470
|
}
|
|
4420
4471
|
|
|
4421
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4472
|
+
/** @name PalletTreasuryVaultCapital (517) */
|
|
4422
4473
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4423
4474
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4424
4475
|
readonly eligibleBonds: Compact<u32>;
|
|
4425
4476
|
}
|
|
4426
4477
|
|
|
4427
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4478
|
+
/** @name PalletTreasuryBondLotAllocation (519) */
|
|
4428
4479
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4429
4480
|
readonly bondLotId: Compact<u64>;
|
|
4430
4481
|
readonly prorata: u128;
|
|
4431
4482
|
}
|
|
4432
4483
|
|
|
4433
|
-
/** @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) */
|
|
4434
4498
|
interface PalletTreasuryBondLot extends Struct {
|
|
4435
4499
|
readonly owner: AccountId32;
|
|
4436
|
-
readonly
|
|
4500
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4437
4501
|
readonly bonds: Compact<u32>;
|
|
4438
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4439
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4440
4502
|
readonly createdFrameId: Compact<u64>;
|
|
4441
4503
|
readonly participatedFrames: Compact<u32>;
|
|
4442
4504
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4446,13 +4508,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4446
4508
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4447
4509
|
}
|
|
4448
4510
|
|
|
4449
|
-
/** @name
|
|
4450
|
-
interface
|
|
4451
|
-
readonly
|
|
4452
|
-
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';
|
|
4453
4521
|
}
|
|
4454
4522
|
|
|
4455
|
-
/** @name PalletTreasuryError (
|
|
4523
|
+
/** @name PalletTreasuryError (533) */
|
|
4456
4524
|
interface PalletTreasuryError extends Enum {
|
|
4457
4525
|
readonly isBondPurchaseRejected: boolean;
|
|
4458
4526
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4470,6 +4538,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4470
4538
|
readonly isBonusApprovalExpired: boolean;
|
|
4471
4539
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4472
4540
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4541
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4542
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4473
4543
|
readonly type:
|
|
4474
4544
|
| 'BondPurchaseRejected'
|
|
4475
4545
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4486,89 +4556,99 @@ declare module '@polkadot/types/lookup' {
|
|
|
4486
4556
|
| 'BonusApprovalWrongAccount'
|
|
4487
4557
|
| 'BonusApprovalExpired'
|
|
4488
4558
|
| 'BonusApprovalExistingBondLot'
|
|
4489
|
-
| 'InvalidBonusApprovalSignature'
|
|
4559
|
+
| 'InvalidBonusApprovalSignature'
|
|
4560
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4561
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4490
4562
|
}
|
|
4491
4563
|
|
|
4492
|
-
/** @name PalletFeeControlError (
|
|
4564
|
+
/** @name PalletFeeControlError (534) */
|
|
4493
4565
|
interface PalletFeeControlError extends Enum {
|
|
4494
4566
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4495
4567
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4496
4568
|
}
|
|
4497
4569
|
|
|
4498
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4570
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4499
4571
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4500
4572
|
readonly vaultAccount: AccountId32;
|
|
4501
|
-
readonly
|
|
4502
|
-
readonly miningBotAccount: AccountId32;
|
|
4573
|
+
readonly miningAccount: AccountId32;
|
|
4503
4574
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4504
|
-
readonly
|
|
4505
|
-
readonly
|
|
4575
|
+
readonly upstreamAccount: Option<AccountId32>;
|
|
4576
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
4577
|
+
readonly accountBitcoinAmount: u128;
|
|
4578
|
+
readonly accountVaultBondAmount: u128;
|
|
4506
4579
|
readonly vaultCreated: bool;
|
|
4507
|
-
readonly
|
|
4508
|
-
readonly
|
|
4509
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4580
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4581
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4510
4582
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4511
4583
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4512
|
-
readonly
|
|
4513
|
-
readonly
|
|
4514
|
-
readonly
|
|
4584
|
+
readonly operationalCertificationsCount: Compact<u32>;
|
|
4585
|
+
readonly accessCodePending: bool;
|
|
4586
|
+
readonly availableAccessCodes: Compact<u32>;
|
|
4515
4587
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4516
4588
|
readonly rewardsEarnedAmount: u128;
|
|
4517
4589
|
readonly rewardsCollectedAmount: u128;
|
|
4518
|
-
readonly
|
|
4590
|
+
readonly isOperationallyCertified: bool;
|
|
4519
4591
|
}
|
|
4520
4592
|
|
|
4521
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4593
|
+
/** @name PalletOperationalAccountsRewardsConfig (536) */
|
|
4522
4594
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4523
|
-
readonly
|
|
4524
|
-
readonly
|
|
4595
|
+
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
|
+
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4525
4597
|
}
|
|
4526
4598
|
|
|
4527
|
-
/** @name PalletOperationalAccountsError (
|
|
4599
|
+
/** @name PalletOperationalAccountsError (538) */
|
|
4528
4600
|
interface PalletOperationalAccountsError extends Enum {
|
|
4529
4601
|
readonly isAlreadyRegistered: boolean;
|
|
4530
4602
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4531
4603
|
readonly isAccountAlreadyLinked: boolean;
|
|
4532
4604
|
readonly isInvalidAccountProof: boolean;
|
|
4533
4605
|
readonly isNotOperationalAccount: boolean;
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4606
|
+
readonly isRegistrationInviteRequired: boolean;
|
|
4607
|
+
readonly isInvalidAccessProof: boolean;
|
|
4608
|
+
readonly isUpstreamNotOperationalAccount: boolean;
|
|
4609
|
+
readonly isMinimumsNotMet: boolean;
|
|
4610
|
+
readonly isCannotGrantAccessToSelf: boolean;
|
|
4536
4611
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4537
4612
|
readonly isEncryptedServerTooLong: boolean;
|
|
4538
|
-
readonly
|
|
4613
|
+
readonly isNotUpstreamOfDownstream: boolean;
|
|
4539
4614
|
readonly isNoPendingRewards: boolean;
|
|
4540
4615
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4541
4616
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
4542
4617
|
readonly isRewardClaimExceedsPending: boolean;
|
|
4543
4618
|
readonly isTreasuryInsufficientFunds: boolean;
|
|
4544
|
-
readonly
|
|
4619
|
+
readonly isAlreadyOperationallyCertified: boolean;
|
|
4545
4620
|
readonly isNotEligibleForActivation: boolean;
|
|
4621
|
+
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4546
4622
|
readonly type:
|
|
4547
4623
|
| 'AlreadyRegistered'
|
|
4548
4624
|
| 'InvalidRegistrationSubmitter'
|
|
4549
4625
|
| 'AccountAlreadyLinked'
|
|
4550
4626
|
| 'InvalidAccountProof'
|
|
4551
4627
|
| 'NotOperationalAccount'
|
|
4552
|
-
| '
|
|
4553
|
-
| '
|
|
4628
|
+
| 'RegistrationInviteRequired'
|
|
4629
|
+
| 'InvalidAccessProof'
|
|
4630
|
+
| 'UpstreamNotOperationalAccount'
|
|
4631
|
+
| 'MinimumsNotMet'
|
|
4632
|
+
| 'CannotGrantAccessToSelf'
|
|
4554
4633
|
| 'NoProgressUpdateProvided'
|
|
4555
4634
|
| 'EncryptedServerTooLong'
|
|
4556
|
-
| '
|
|
4635
|
+
| 'NotUpstreamOfDownstream'
|
|
4557
4636
|
| 'NoPendingRewards'
|
|
4558
4637
|
| 'RewardClaimBelowMinimum'
|
|
4559
4638
|
| 'RewardClaimNotWholeArgon'
|
|
4560
4639
|
| 'RewardClaimExceedsPending'
|
|
4561
4640
|
| 'TreasuryInsufficientFunds'
|
|
4562
|
-
| '
|
|
4563
|
-
| 'NotEligibleForActivation'
|
|
4641
|
+
| 'AlreadyOperationallyCertified'
|
|
4642
|
+
| 'NotEligibleForActivation'
|
|
4643
|
+
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4564
4644
|
}
|
|
4565
4645
|
|
|
4566
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4646
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
|
|
4567
4647
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4568
4648
|
readonly slot: Compact<u64>;
|
|
4569
4649
|
}
|
|
4570
4650
|
|
|
4571
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4651
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
|
|
4572
4652
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4573
4653
|
readonly blockNumber: Compact<u64>;
|
|
4574
4654
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4578,44 +4658,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4578
4658
|
readonly receiptsRoot: H256;
|
|
4579
4659
|
}
|
|
4580
4660
|
|
|
4581
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4661
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
|
|
4582
4662
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4583
4663
|
readonly root: H256;
|
|
4584
4664
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4585
4665
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4586
4666
|
}
|
|
4587
4667
|
|
|
4588
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4668
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
|
|
4589
4669
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4590
4670
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4591
4671
|
}
|
|
4592
4672
|
|
|
4593
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4673
|
+
/** @name SnowbridgeAmclBls381Ecp (544) */
|
|
4594
4674
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4595
4675
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4596
4676
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4597
4677
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4598
4678
|
}
|
|
4599
4679
|
|
|
4600
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4680
|
+
/** @name SnowbridgeAmclBls381Fp (545) */
|
|
4601
4681
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4602
4682
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4603
4683
|
readonly xes: i32;
|
|
4604
4684
|
}
|
|
4605
4685
|
|
|
4606
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4686
|
+
/** @name SnowbridgeAmclBls381Big (546) */
|
|
4607
4687
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4608
4688
|
readonly w: Vec<i32>;
|
|
4609
4689
|
}
|
|
4610
4690
|
|
|
4611
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4691
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
|
|
4612
4692
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4613
4693
|
readonly isMainnet: boolean;
|
|
4614
4694
|
readonly isMinimal: boolean;
|
|
4615
4695
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4616
4696
|
}
|
|
4617
4697
|
|
|
4618
|
-
/** @name PalletEthereumVerifierError (
|
|
4698
|
+
/** @name PalletEthereumVerifierError (551) */
|
|
4619
4699
|
interface PalletEthereumVerifierError extends Enum {
|
|
4620
4700
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4621
4701
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4668,21 +4748,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4668
4748
|
| 'Halted';
|
|
4669
4749
|
}
|
|
4670
4750
|
|
|
4671
|
-
/** @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) */
|
|
4672
4764
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4673
4765
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4674
4766
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4675
4767
|
readonly totalWeight: u128;
|
|
4676
4768
|
}
|
|
4677
4769
|
|
|
4678
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4770
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4679
4771
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4680
4772
|
readonly accountId: AccountId32;
|
|
4681
4773
|
readonly signer: H160;
|
|
4682
4774
|
readonly weight: u128;
|
|
4683
4775
|
}
|
|
4684
4776
|
|
|
4685
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4777
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4686
4778
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4687
4779
|
readonly approvingCouncilHash: H256;
|
|
4688
4780
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4694,7 +4786,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4694
4786
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4695
4787
|
}
|
|
4696
4788
|
|
|
4697
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4789
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4698
4790
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4699
4791
|
readonly accountId: AccountId32;
|
|
4700
4792
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4711,7 +4803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4711
4803
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4712
4804
|
}
|
|
4713
4805
|
|
|
4714
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4806
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4715
4807
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4716
4808
|
readonly isPendingActivation: boolean;
|
|
4717
4809
|
readonly isActive: boolean;
|
|
@@ -4719,7 +4811,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4719
4811
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4720
4812
|
}
|
|
4721
4813
|
|
|
4722
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4814
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4723
4815
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4724
4816
|
readonly argonAccountId: AccountId32;
|
|
4725
4817
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4738,7 +4830,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4738
4830
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4739
4831
|
}
|
|
4740
4832
|
|
|
4741
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4833
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4742
4834
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4743
4835
|
readonly microgonCollateral: u128;
|
|
4744
4836
|
readonly micronotCollateral: u128;
|
|
@@ -4746,27 +4838,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4746
4838
|
readonly signature: U8aFixed;
|
|
4747
4839
|
}
|
|
4748
4840
|
|
|
4749
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4841
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4750
4842
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4751
4843
|
readonly isStarted: boolean;
|
|
4752
4844
|
readonly isReady: boolean;
|
|
4753
4845
|
readonly type: 'Started' | 'Ready';
|
|
4754
4846
|
}
|
|
4755
4847
|
|
|
4756
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4848
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4757
4849
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4758
4850
|
readonly transferId: H256;
|
|
4759
4851
|
readonly remainingCollateral: u128;
|
|
4760
4852
|
readonly remainingMintingAuthorityTip: u128;
|
|
4761
4853
|
}
|
|
4762
4854
|
|
|
4763
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4855
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4764
4856
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4765
4857
|
readonly argonCirculation: u128;
|
|
4766
4858
|
readonly argonotCirculation: u128;
|
|
4767
4859
|
}
|
|
4768
4860
|
|
|
4769
|
-
/** @name PalletCrosschainTransferError (
|
|
4861
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4770
4862
|
interface PalletCrosschainTransferError extends Enum {
|
|
4771
4863
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4772
4864
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4879,45 +4971,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4879
4971
|
| 'TooManyPendingTransferOuts';
|
|
4880
4972
|
}
|
|
4881
4973
|
|
|
4882
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4974
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4883
4975
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4884
4976
|
|
|
4885
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4977
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4886
4978
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4887
4979
|
|
|
4888
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4980
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4889
4981
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4890
4982
|
|
|
4891
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4983
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4892
4984
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4893
4985
|
|
|
4894
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4986
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4895
4987
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4896
4988
|
|
|
4897
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4989
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
4898
4990
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4899
4991
|
|
|
4900
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4992
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
4901
4993
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4902
4994
|
|
|
4903
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4995
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
4904
4996
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4905
4997
|
|
|
4906
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4998
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
4907
4999
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4908
5000
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4909
5001
|
}
|
|
4910
5002
|
|
|
4911
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5003
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
4912
5004
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4913
5005
|
readonly isDisabled: boolean;
|
|
4914
5006
|
readonly isEnabled: boolean;
|
|
4915
5007
|
readonly type: 'Disabled' | 'Enabled';
|
|
4916
5008
|
}
|
|
4917
5009
|
|
|
4918
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5010
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
4919
5011
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4920
5012
|
|
|
4921
|
-
/** @name ArgonRuntimeRuntime (
|
|
5013
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
4922
5014
|
type ArgonRuntimeRuntime = Null;
|
|
4923
5015
|
} // declare module
|