@argonprotocol/mainchain 1.4.8 → 1.4.9-dev.5ffdfd6a
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 +641 -389
- 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 +641 -389
- package/lib/index.d.ts +641 -389
- 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 +54 -23
- package/src/interfaces/augment-api-errors.ts +49 -9
- package/src/interfaces/augment-api-events.ts +107 -30
- package/src/interfaces/augment-api-query.ts +87 -48
- package/src/interfaces/augment-api-tx.ts +31 -11
- package/src/interfaces/lookup.ts +348 -260
- package/src/interfaces/registry.ts +12 -2
- package/src/interfaces/types-lookup.ts +371 -267
|
@@ -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,15 +1789,23 @@ 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 referrer: Option<AccountId32>;
|
|
1800
|
+
} & Struct;
|
|
1801
|
+
readonly isAccountUpgradeGranted: boolean;
|
|
1802
|
+
readonly asAccountUpgradeGranted: {
|
|
1803
|
+
readonly account: AccountId32;
|
|
1804
|
+
readonly referrer: AccountId32;
|
|
1805
|
+
} & Struct;
|
|
1806
|
+
readonly isAccountBecameTreasuryCertified: boolean;
|
|
1807
|
+
readonly asAccountBecameTreasuryCertified: {
|
|
1808
|
+
readonly account: AccountId32;
|
|
1779
1809
|
} & Struct;
|
|
1780
1810
|
readonly isAccountWentOperational: boolean;
|
|
1781
1811
|
readonly asAccountWentOperational: {
|
|
@@ -1796,26 +1826,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
1796
1826
|
} & Struct;
|
|
1797
1827
|
readonly isRewardsConfigUpdated: boolean;
|
|
1798
1828
|
readonly asRewardsConfigUpdated: {
|
|
1799
|
-
readonly
|
|
1800
|
-
readonly
|
|
1829
|
+
readonly operationalActivationReward: u128;
|
|
1830
|
+
readonly operationalReferralBonusReward: u128;
|
|
1801
1831
|
} & Struct;
|
|
1802
1832
|
readonly isOperationalProgressForced: boolean;
|
|
1803
1833
|
readonly asOperationalProgressForced: {
|
|
1804
1834
|
readonly account: AccountId32;
|
|
1805
1835
|
readonly updateOperationalProgress: bool;
|
|
1806
|
-
readonly
|
|
1836
|
+
readonly isTreasuryCertified: bool;
|
|
1837
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
1838
|
+
readonly accountBitcoinAmount: u128;
|
|
1839
|
+
readonly accountVaultBondAmount: u128;
|
|
1807
1840
|
readonly vaultCreated: bool;
|
|
1808
|
-
readonly
|
|
1809
|
-
readonly
|
|
1810
|
-
readonly observedMiningSeatTotal: u32;
|
|
1841
|
+
readonly operatorVaultBitcoinAmount: u128;
|
|
1842
|
+
readonly miningSeatCount: u32;
|
|
1811
1843
|
} & Struct;
|
|
1812
1844
|
readonly isEncryptedServerUpdated: boolean;
|
|
1813
1845
|
readonly asEncryptedServerUpdated: {
|
|
1814
|
-
readonly
|
|
1815
|
-
readonly
|
|
1846
|
+
readonly referrer: AccountId32;
|
|
1847
|
+
readonly downstreamAccount: AccountId32;
|
|
1816
1848
|
} & Struct;
|
|
1817
1849
|
readonly type:
|
|
1818
1850
|
| 'OperationalAccountRegistered'
|
|
1851
|
+
| 'AccountUpgradeGranted'
|
|
1852
|
+
| 'AccountBecameTreasuryCertified'
|
|
1819
1853
|
| 'AccountWentOperational'
|
|
1820
1854
|
| 'OperationalRewardEarned'
|
|
1821
1855
|
| 'OperationalRewardsClaimed'
|
|
@@ -1824,14 +1858,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1824
1858
|
| 'EncryptedServerUpdated';
|
|
1825
1859
|
}
|
|
1826
1860
|
|
|
1827
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1861
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1828
1862
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1829
1863
|
readonly isActivation: boolean;
|
|
1830
|
-
readonly
|
|
1831
|
-
readonly type: 'Activation' | '
|
|
1864
|
+
readonly isOperationalReferralBonus: boolean;
|
|
1865
|
+
readonly type: 'Activation' | 'OperationalReferralBonus';
|
|
1832
1866
|
}
|
|
1833
1867
|
|
|
1834
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1868
|
+
/** @name PalletEthereumVerifierEvent (127) */
|
|
1835
1869
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1836
1870
|
readonly isBeaconHeaderImported: boolean;
|
|
1837
1871
|
readonly asBeaconHeaderImported: {
|
|
@@ -1866,14 +1900,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1866
1900
|
| 'OperatingModeChanged';
|
|
1867
1901
|
}
|
|
1868
1902
|
|
|
1869
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1903
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (128) */
|
|
1870
1904
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1871
1905
|
readonly isNormal: boolean;
|
|
1872
1906
|
readonly isHalted: boolean;
|
|
1873
1907
|
readonly type: 'Normal' | 'Halted';
|
|
1874
1908
|
}
|
|
1875
1909
|
|
|
1876
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1910
|
+
/** @name PalletCrosschainTransferEvent (129) */
|
|
1877
1911
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1878
1912
|
readonly isTransferToArgonSettled: boolean;
|
|
1879
1913
|
readonly asTransferToArgonSettled: {
|
|
@@ -2022,13 +2056,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2022
2056
|
| 'TransferCollateralInvalidated';
|
|
2023
2057
|
}
|
|
2024
2058
|
|
|
2025
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2059
|
+
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
2026
2060
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2027
2061
|
readonly isEthereum: boolean;
|
|
2028
2062
|
readonly type: 'Ethereum';
|
|
2029
2063
|
}
|
|
2030
2064
|
|
|
2031
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2065
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (131) */
|
|
2032
2066
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2033
2067
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2034
2068
|
readonly from: H160;
|
|
@@ -2037,14 +2071,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2037
2071
|
readonly amount: Compact<u128>;
|
|
2038
2072
|
}
|
|
2039
2073
|
|
|
2040
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2074
|
+
/** @name PalletCrosschainTransferAssetKind (134) */
|
|
2041
2075
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2042
2076
|
readonly isArgon: boolean;
|
|
2043
2077
|
readonly isArgonot: boolean;
|
|
2044
2078
|
readonly type: 'Argon' | 'Argonot';
|
|
2045
2079
|
}
|
|
2046
2080
|
|
|
2047
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2081
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (135) */
|
|
2048
2082
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2049
2083
|
readonly isMintingAuthorityActivation: boolean;
|
|
2050
2084
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2058,14 +2092,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2058
2092
|
| 'GlobalIssuanceCouncilRotation';
|
|
2059
2093
|
}
|
|
2060
2094
|
|
|
2061
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2095
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (136) */
|
|
2062
2096
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2063
2097
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2064
2098
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2065
2099
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2066
2100
|
}
|
|
2067
2101
|
|
|
2068
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2102
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (137) */
|
|
2069
2103
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2070
2104
|
readonly isManual: boolean;
|
|
2071
2105
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2090,7 +2124,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2090
2124
|
| 'GatewayStateDrift';
|
|
2091
2125
|
}
|
|
2092
2126
|
|
|
2093
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2127
|
+
/** @name PalletCrosschainTransferGatewayState (138) */
|
|
2094
2128
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2095
2129
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2096
2130
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2098,7 +2132,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2098
2132
|
readonly argonotCirculation: u128;
|
|
2099
2133
|
}
|
|
2100
2134
|
|
|
2101
|
-
/** @name FrameSystemPhase (
|
|
2135
|
+
/** @name FrameSystemPhase (139) */
|
|
2102
2136
|
interface FrameSystemPhase extends Enum {
|
|
2103
2137
|
readonly isApplyExtrinsic: boolean;
|
|
2104
2138
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2107,19 +2141,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2107
2141
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2108
2142
|
}
|
|
2109
2143
|
|
|
2110
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2144
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (143) */
|
|
2111
2145
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2112
2146
|
readonly specVersion: Compact<u32>;
|
|
2113
2147
|
readonly specName: Text;
|
|
2114
2148
|
}
|
|
2115
2149
|
|
|
2116
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2150
|
+
/** @name FrameSystemCodeUpgradeAuthorization (146) */
|
|
2117
2151
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2118
2152
|
readonly codeHash: H256;
|
|
2119
2153
|
readonly checkVersion: bool;
|
|
2120
2154
|
}
|
|
2121
2155
|
|
|
2122
|
-
/** @name FrameSystemCall (
|
|
2156
|
+
/** @name FrameSystemCall (147) */
|
|
2123
2157
|
interface FrameSystemCall extends Enum {
|
|
2124
2158
|
readonly isRemark: boolean;
|
|
2125
2159
|
readonly asRemark: {
|
|
@@ -2180,21 +2214,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2180
2214
|
| 'ApplyAuthorizedUpgrade';
|
|
2181
2215
|
}
|
|
2182
2216
|
|
|
2183
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2217
|
+
/** @name FrameSystemLimitsBlockWeights (151) */
|
|
2184
2218
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2185
2219
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2186
2220
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2187
2221
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2188
2222
|
}
|
|
2189
2223
|
|
|
2190
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2224
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
|
|
2191
2225
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2192
2226
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2193
2227
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2194
2228
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2195
2229
|
}
|
|
2196
2230
|
|
|
2197
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2231
|
+
/** @name FrameSystemLimitsWeightsPerClass (153) */
|
|
2198
2232
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2199
2233
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2200
2234
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2202,26 +2236,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2202
2236
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2203
2237
|
}
|
|
2204
2238
|
|
|
2205
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2239
|
+
/** @name FrameSystemLimitsBlockLength (155) */
|
|
2206
2240
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2207
2241
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2208
2242
|
readonly maxHeaderSize: Option<u32>;
|
|
2209
2243
|
}
|
|
2210
2244
|
|
|
2211
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2245
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (156) */
|
|
2212
2246
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2213
2247
|
readonly normal: u32;
|
|
2214
2248
|
readonly operational: u32;
|
|
2215
2249
|
readonly mandatory: u32;
|
|
2216
2250
|
}
|
|
2217
2251
|
|
|
2218
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2252
|
+
/** @name SpWeightsRuntimeDbWeight (158) */
|
|
2219
2253
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2220
2254
|
readonly read: u64;
|
|
2221
2255
|
readonly write: u64;
|
|
2222
2256
|
}
|
|
2223
2257
|
|
|
2224
|
-
/** @name SpVersionRuntimeVersion (
|
|
2258
|
+
/** @name SpVersionRuntimeVersion (159) */
|
|
2225
2259
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2226
2260
|
readonly specName: Text;
|
|
2227
2261
|
readonly implName: Text;
|
|
@@ -2233,7 +2267,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2233
2267
|
readonly systemVersion: u8;
|
|
2234
2268
|
}
|
|
2235
2269
|
|
|
2236
|
-
/** @name FrameSystemError (
|
|
2270
|
+
/** @name FrameSystemError (164) */
|
|
2237
2271
|
interface FrameSystemError extends Enum {
|
|
2238
2272
|
readonly isInvalidSpecName: boolean;
|
|
2239
2273
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2256,7 +2290,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2256
2290
|
| 'Unauthorized';
|
|
2257
2291
|
}
|
|
2258
2292
|
|
|
2259
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2293
|
+
/** @name ArgonPrimitivesDigestsDigestset (165) */
|
|
2260
2294
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2261
2295
|
readonly author: AccountId32;
|
|
2262
2296
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2267,18 +2301,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2267
2301
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2268
2302
|
}
|
|
2269
2303
|
|
|
2270
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2304
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
|
|
2271
2305
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2272
2306
|
readonly votingPower: Compact<u128>;
|
|
2273
2307
|
readonly votesCount: Compact<u32>;
|
|
2274
2308
|
}
|
|
2275
2309
|
|
|
2276
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2310
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
|
|
2277
2311
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2278
2312
|
readonly parentVotingKey: Option<H256>;
|
|
2279
2313
|
}
|
|
2280
2314
|
|
|
2281
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2315
|
+
/** @name ArgonPrimitivesForkPower (171) */
|
|
2282
2316
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2283
2317
|
readonly isLatestVote: bool;
|
|
2284
2318
|
readonly notebooks: Compact<u64>;
|
|
@@ -2289,19 +2323,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2289
2323
|
readonly minerNonceScore: Option<U256>;
|
|
2290
2324
|
}
|
|
2291
2325
|
|
|
2292
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2326
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (176) */
|
|
2293
2327
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2294
2328
|
readonly frameId: Compact<u64>;
|
|
2295
2329
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2296
2330
|
readonly isNewFrame: bool;
|
|
2297
2331
|
}
|
|
2298
2332
|
|
|
2299
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2333
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (178) */
|
|
2300
2334
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2301
2335
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2302
2336
|
}
|
|
2303
2337
|
|
|
2304
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2338
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
|
|
2305
2339
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2306
2340
|
readonly notaryId: Compact<u32>;
|
|
2307
2341
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2309,7 +2343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2309
2343
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2310
2344
|
}
|
|
2311
2345
|
|
|
2312
|
-
/** @name PalletDigestsError (
|
|
2346
|
+
/** @name PalletDigestsError (183) */
|
|
2313
2347
|
interface PalletDigestsError extends Enum {
|
|
2314
2348
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2315
2349
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2340,7 +2374,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2340
2374
|
| 'DuplicateFrameInfoDigest';
|
|
2341
2375
|
}
|
|
2342
2376
|
|
|
2343
|
-
/** @name PalletTimestampCall (
|
|
2377
|
+
/** @name PalletTimestampCall (184) */
|
|
2344
2378
|
interface PalletTimestampCall extends Enum {
|
|
2345
2379
|
readonly isSet: boolean;
|
|
2346
2380
|
readonly asSet: {
|
|
@@ -2349,7 +2383,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2349
2383
|
readonly type: 'Set';
|
|
2350
2384
|
}
|
|
2351
2385
|
|
|
2352
|
-
/** @name PalletMultisigMultisig (
|
|
2386
|
+
/** @name PalletMultisigMultisig (186) */
|
|
2353
2387
|
interface PalletMultisigMultisig extends Struct {
|
|
2354
2388
|
readonly when: PalletMultisigTimepoint;
|
|
2355
2389
|
readonly deposit: u128;
|
|
@@ -2357,7 +2391,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2357
2391
|
readonly approvals: Vec<AccountId32>;
|
|
2358
2392
|
}
|
|
2359
2393
|
|
|
2360
|
-
/** @name PalletMultisigCall (
|
|
2394
|
+
/** @name PalletMultisigCall (189) */
|
|
2361
2395
|
interface PalletMultisigCall extends Enum {
|
|
2362
2396
|
readonly isAsMultiThreshold1: boolean;
|
|
2363
2397
|
readonly asAsMultiThreshold1: {
|
|
@@ -2401,7 +2435,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2401
2435
|
| 'PokeDeposit';
|
|
2402
2436
|
}
|
|
2403
2437
|
|
|
2404
|
-
/** @name PalletProxyCall (
|
|
2438
|
+
/** @name PalletProxyCall (191) */
|
|
2405
2439
|
interface PalletProxyCall extends Enum {
|
|
2406
2440
|
readonly isProxy: boolean;
|
|
2407
2441
|
readonly asProxy: {
|
|
@@ -2473,10 +2507,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2473
2507
|
| 'PokeDeposit';
|
|
2474
2508
|
}
|
|
2475
2509
|
|
|
2476
|
-
/** @name PalletTicksCall (
|
|
2510
|
+
/** @name PalletTicksCall (195) */
|
|
2477
2511
|
type PalletTicksCall = Null;
|
|
2478
2512
|
|
|
2479
|
-
/** @name PalletMiningSlotCall (
|
|
2513
|
+
/** @name PalletMiningSlotCall (196) */
|
|
2480
2514
|
interface PalletMiningSlotCall extends Enum {
|
|
2481
2515
|
readonly isBid: boolean;
|
|
2482
2516
|
readonly asBid: {
|
|
@@ -2492,7 +2526,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2492
2526
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2493
2527
|
}
|
|
2494
2528
|
|
|
2495
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2529
|
+
/** @name PalletBitcoinUtxosCall (197) */
|
|
2496
2530
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2497
2531
|
readonly isSync: boolean;
|
|
2498
2532
|
readonly asSync: {
|
|
@@ -2525,21 +2559,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2525
2559
|
| 'RejectUtxoCandidate';
|
|
2526
2560
|
}
|
|
2527
2561
|
|
|
2528
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2562
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
|
|
2529
2563
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2530
2564
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2531
2565
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2532
2566
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2533
2567
|
}
|
|
2534
2568
|
|
|
2535
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2569
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
|
|
2536
2570
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2537
2571
|
readonly utxoId: Compact<u64>;
|
|
2538
2572
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2539
2573
|
readonly bitcoinHeight: Compact<u64>;
|
|
2540
2574
|
}
|
|
2541
2575
|
|
|
2542
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2576
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
|
|
2543
2577
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2544
2578
|
readonly utxoId: Compact<u64>;
|
|
2545
2579
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2548,13 +2582,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2548
2582
|
readonly bitcoinHeight: Compact<u64>;
|
|
2549
2583
|
}
|
|
2550
2584
|
|
|
2551
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2585
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
|
|
2552
2586
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2553
2587
|
readonly blockHeight: Compact<u64>;
|
|
2554
2588
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2555
2589
|
}
|
|
2556
2590
|
|
|
2557
|
-
/** @name PalletVaultsCall (
|
|
2591
|
+
/** @name PalletVaultsCall (205) */
|
|
2558
2592
|
interface PalletVaultsCall extends Enum {
|
|
2559
2593
|
readonly isCreate: boolean;
|
|
2560
2594
|
readonly asCreate: {
|
|
@@ -2608,7 +2642,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2608
2642
|
| 'SetCommittedArgonots';
|
|
2609
2643
|
}
|
|
2610
2644
|
|
|
2611
|
-
/** @name PalletVaultsVaultConfig (
|
|
2645
|
+
/** @name PalletVaultsVaultConfig (206) */
|
|
2612
2646
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2613
2647
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2614
2648
|
readonly name: Option<Bytes>;
|
|
@@ -2618,7 +2652,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2618
2652
|
readonly securitizationRatio: Compact<u128>;
|
|
2619
2653
|
}
|
|
2620
2654
|
|
|
2621
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2655
|
+
/** @name ArgonPrimitivesVaultVaultTerms (207) */
|
|
2622
2656
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2623
2657
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2624
2658
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -2626,10 +2660,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2626
2660
|
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2627
2661
|
}
|
|
2628
2662
|
|
|
2629
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2663
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
|
|
2630
2664
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2631
2665
|
|
|
2632
|
-
/** @name PalletBitcoinLocksCall (
|
|
2666
|
+
/** @name PalletBitcoinLocksCall (215) */
|
|
2633
2667
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2634
2668
|
readonly isInitialize: boolean;
|
|
2635
2669
|
readonly asInitialize: {
|
|
@@ -2695,10 +2729,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2695
2729
|
| 'IncreaseSecuritization';
|
|
2696
2730
|
}
|
|
2697
2731
|
|
|
2698
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2732
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
|
|
2699
2733
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2700
2734
|
|
|
2701
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2735
|
+
/** @name PalletBitcoinLocksLockOptions (219) */
|
|
2702
2736
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2703
2737
|
readonly isV1: boolean;
|
|
2704
2738
|
readonly asV1: {
|
|
@@ -2707,7 +2741,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2707
2741
|
readonly type: 'V1';
|
|
2708
2742
|
}
|
|
2709
2743
|
|
|
2710
|
-
/** @name PalletNotariesCall (
|
|
2744
|
+
/** @name PalletNotariesCall (222) */
|
|
2711
2745
|
interface PalletNotariesCall extends Enum {
|
|
2712
2746
|
readonly isPropose: boolean;
|
|
2713
2747
|
readonly asPropose: {
|
|
@@ -2726,7 +2760,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2726
2760
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2727
2761
|
}
|
|
2728
2762
|
|
|
2729
|
-
/** @name PalletNotebookCall (
|
|
2763
|
+
/** @name PalletNotebookCall (223) */
|
|
2730
2764
|
interface PalletNotebookCall extends Enum {
|
|
2731
2765
|
readonly isSubmit: boolean;
|
|
2732
2766
|
readonly asSubmit: {
|
|
@@ -2739,13 +2773,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2739
2773
|
readonly type: 'Submit' | 'Unlock';
|
|
2740
2774
|
}
|
|
2741
2775
|
|
|
2742
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2776
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
|
|
2743
2777
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2744
2778
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2745
2779
|
readonly signature: U8aFixed;
|
|
2746
2780
|
}
|
|
2747
2781
|
|
|
2748
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2782
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (226) */
|
|
2749
2783
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2750
2784
|
readonly version: Compact<u16>;
|
|
2751
2785
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2764,7 +2798,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2764
2798
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2765
2799
|
}
|
|
2766
2800
|
|
|
2767
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2801
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (229) */
|
|
2768
2802
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2769
2803
|
readonly isToMainchain: boolean;
|
|
2770
2804
|
readonly asToMainchain: {
|
|
@@ -2778,13 +2812,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2778
2812
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2779
2813
|
}
|
|
2780
2814
|
|
|
2781
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2815
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
|
|
2782
2816
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2783
2817
|
readonly notebookNumber: Compact<u32>;
|
|
2784
2818
|
readonly accountUid: Compact<u32>;
|
|
2785
2819
|
}
|
|
2786
2820
|
|
|
2787
|
-
/** @name PalletLocalchainTransferCall (
|
|
2821
|
+
/** @name PalletLocalchainTransferCall (239) */
|
|
2788
2822
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2789
2823
|
readonly isSendToLocalchain: boolean;
|
|
2790
2824
|
readonly asSendToLocalchain: {
|
|
@@ -2794,7 +2828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2794
2828
|
readonly type: 'SendToLocalchain';
|
|
2795
2829
|
}
|
|
2796
2830
|
|
|
2797
|
-
/** @name PalletBlockSealSpecCall (
|
|
2831
|
+
/** @name PalletBlockSealSpecCall (240) */
|
|
2798
2832
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2799
2833
|
readonly isConfigure: boolean;
|
|
2800
2834
|
readonly asConfigure: {
|
|
@@ -2804,7 +2838,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2804
2838
|
readonly type: 'Configure';
|
|
2805
2839
|
}
|
|
2806
2840
|
|
|
2807
|
-
/** @name PalletDomainsCall (
|
|
2841
|
+
/** @name PalletDomainsCall (241) */
|
|
2808
2842
|
interface PalletDomainsCall extends Enum {
|
|
2809
2843
|
readonly isSetZoneRecord: boolean;
|
|
2810
2844
|
readonly asSetZoneRecord: {
|
|
@@ -2814,7 +2848,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2814
2848
|
readonly type: 'SetZoneRecord';
|
|
2815
2849
|
}
|
|
2816
2850
|
|
|
2817
|
-
/** @name PalletPriceIndexCall (
|
|
2851
|
+
/** @name PalletPriceIndexCall (242) */
|
|
2818
2852
|
interface PalletPriceIndexCall extends Enum {
|
|
2819
2853
|
readonly isSubmit: boolean;
|
|
2820
2854
|
readonly asSubmit: {
|
|
@@ -2827,7 +2861,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2827
2861
|
readonly type: 'Submit' | 'SetOperator';
|
|
2828
2862
|
}
|
|
2829
2863
|
|
|
2830
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2864
|
+
/** @name PalletPriceIndexPriceIndex (243) */
|
|
2831
2865
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2832
2866
|
readonly btcUsdPrice: Compact<u128>;
|
|
2833
2867
|
readonly argonotUsdPrice: u128;
|
|
@@ -2837,7 +2871,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2871
|
readonly tick: Compact<u64>;
|
|
2838
2872
|
}
|
|
2839
2873
|
|
|
2840
|
-
/** @name PalletGrandpaCall (
|
|
2874
|
+
/** @name PalletGrandpaCall (244) */
|
|
2841
2875
|
interface PalletGrandpaCall extends Enum {
|
|
2842
2876
|
readonly isReportEquivocation: boolean;
|
|
2843
2877
|
readonly asReportEquivocation: {
|
|
@@ -2857,13 +2891,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2857
2891
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2858
2892
|
}
|
|
2859
2893
|
|
|
2860
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2894
|
+
/** @name SpConsensusGrandpaEquivocationProof (245) */
|
|
2861
2895
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2862
2896
|
readonly setId: u64;
|
|
2863
2897
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2864
2898
|
}
|
|
2865
2899
|
|
|
2866
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2900
|
+
/** @name SpConsensusGrandpaEquivocation (246) */
|
|
2867
2901
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2868
2902
|
readonly isPrevote: boolean;
|
|
2869
2903
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2872,7 +2906,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2872
2906
|
readonly type: 'Prevote' | 'Precommit';
|
|
2873
2907
|
}
|
|
2874
2908
|
|
|
2875
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2909
|
+
/** @name FinalityGrandpaEquivocationPrevote (247) */
|
|
2876
2910
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2877
2911
|
readonly roundNumber: u64;
|
|
2878
2912
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2880,16 +2914,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2880
2914
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2881
2915
|
}
|
|
2882
2916
|
|
|
2883
|
-
/** @name FinalityGrandpaPrevote (
|
|
2917
|
+
/** @name FinalityGrandpaPrevote (248) */
|
|
2884
2918
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2885
2919
|
readonly targetHash: H256;
|
|
2886
2920
|
readonly targetNumber: u32;
|
|
2887
2921
|
}
|
|
2888
2922
|
|
|
2889
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2923
|
+
/** @name SpConsensusGrandpaAppSignature (249) */
|
|
2890
2924
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2891
2925
|
|
|
2892
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2926
|
+
/** @name FinalityGrandpaEquivocationPrecommit (251) */
|
|
2893
2927
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2894
2928
|
readonly roundNumber: u64;
|
|
2895
2929
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2897,16 +2931,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2897
2931
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2898
2932
|
}
|
|
2899
2933
|
|
|
2900
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2934
|
+
/** @name FinalityGrandpaPrecommit (252) */
|
|
2901
2935
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2902
2936
|
readonly targetHash: H256;
|
|
2903
2937
|
readonly targetNumber: u32;
|
|
2904
2938
|
}
|
|
2905
2939
|
|
|
2906
|
-
/** @name SpCoreVoid (
|
|
2940
|
+
/** @name SpCoreVoid (254) */
|
|
2907
2941
|
type SpCoreVoid = Null;
|
|
2908
2942
|
|
|
2909
|
-
/** @name PalletBlockSealCall (
|
|
2943
|
+
/** @name PalletBlockSealCall (255) */
|
|
2910
2944
|
interface PalletBlockSealCall extends Enum {
|
|
2911
2945
|
readonly isApply: boolean;
|
|
2912
2946
|
readonly asApply: {
|
|
@@ -2915,7 +2949,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2915
2949
|
readonly type: 'Apply';
|
|
2916
2950
|
}
|
|
2917
2951
|
|
|
2918
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2952
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
|
|
2919
2953
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2920
2954
|
readonly isVote: boolean;
|
|
2921
2955
|
readonly asVote: {
|
|
@@ -2930,14 +2964,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2930
2964
|
readonly type: 'Vote' | 'Compute';
|
|
2931
2965
|
}
|
|
2932
2966
|
|
|
2933
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
2967
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
|
|
2934
2968
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2935
2969
|
readonly proof: Vec<H256>;
|
|
2936
2970
|
readonly numberOfLeaves: Compact<u32>;
|
|
2937
2971
|
readonly leafIndex: Compact<u32>;
|
|
2938
2972
|
}
|
|
2939
2973
|
|
|
2940
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
2974
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
|
|
2941
2975
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2942
2976
|
readonly accountId: AccountId32;
|
|
2943
2977
|
readonly blockHash: H256;
|
|
@@ -2948,7 +2982,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2948
2982
|
readonly tick: Compact<u64>;
|
|
2949
2983
|
}
|
|
2950
2984
|
|
|
2951
|
-
/** @name SpRuntimeMultiSignature (
|
|
2985
|
+
/** @name SpRuntimeMultiSignature (260) */
|
|
2952
2986
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2953
2987
|
readonly isEd25519: boolean;
|
|
2954
2988
|
readonly asEd25519: U8aFixed;
|
|
@@ -2961,19 +2995,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2995
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2962
2996
|
}
|
|
2963
2997
|
|
|
2964
|
-
/** @name PalletBlockRewardsCall (
|
|
2998
|
+
/** @name PalletBlockRewardsCall (262) */
|
|
2965
2999
|
interface PalletBlockRewardsCall extends Enum {
|
|
2966
3000
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2967
3001
|
readonly asSetBlockRewardsPaused: {
|
|
2968
3002
|
readonly paused: bool;
|
|
2969
3003
|
} & Struct;
|
|
2970
|
-
readonly
|
|
3004
|
+
readonly isSetBlockVoterRewardsEnabled: boolean;
|
|
3005
|
+
readonly asSetBlockVoterRewardsEnabled: {
|
|
3006
|
+
readonly enabled: bool;
|
|
3007
|
+
} & Struct;
|
|
3008
|
+
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2971
3009
|
}
|
|
2972
3010
|
|
|
2973
|
-
/** @name PalletMintCall (
|
|
3011
|
+
/** @name PalletMintCall (263) */
|
|
2974
3012
|
type PalletMintCall = Null;
|
|
2975
3013
|
|
|
2976
|
-
/** @name PalletBalancesCall (
|
|
3014
|
+
/** @name PalletBalancesCall (264) */
|
|
2977
3015
|
interface PalletBalancesCall extends Enum {
|
|
2978
3016
|
readonly isTransferAllowDeath: boolean;
|
|
2979
3017
|
readonly asTransferAllowDeath: {
|
|
@@ -3032,14 +3070,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3032
3070
|
| 'Burn';
|
|
3033
3071
|
}
|
|
3034
3072
|
|
|
3035
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3073
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3036
3074
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3037
3075
|
readonly isIncrease: boolean;
|
|
3038
3076
|
readonly isDecrease: boolean;
|
|
3039
3077
|
readonly type: 'Increase' | 'Decrease';
|
|
3040
3078
|
}
|
|
3041
3079
|
|
|
3042
|
-
/** @name PalletTxPauseCall (
|
|
3080
|
+
/** @name PalletTxPauseCall (267) */
|
|
3043
3081
|
interface PalletTxPauseCall extends Enum {
|
|
3044
3082
|
readonly isPause: boolean;
|
|
3045
3083
|
readonly asPause: {
|
|
@@ -3052,7 +3090,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3052
3090
|
readonly type: 'Pause' | 'Unpause';
|
|
3053
3091
|
}
|
|
3054
3092
|
|
|
3055
|
-
/** @name PalletUtilityCall (
|
|
3093
|
+
/** @name PalletUtilityCall (268) */
|
|
3056
3094
|
interface PalletUtilityCall extends Enum {
|
|
3057
3095
|
readonly isBatch: boolean;
|
|
3058
3096
|
readonly asBatch: {
|
|
@@ -3102,7 +3140,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3102
3140
|
| 'DispatchAsFallible';
|
|
3103
3141
|
}
|
|
3104
3142
|
|
|
3105
|
-
/** @name PalletSudoCall (
|
|
3143
|
+
/** @name PalletSudoCall (270) */
|
|
3106
3144
|
interface PalletSudoCall extends Enum {
|
|
3107
3145
|
readonly isSudo: boolean;
|
|
3108
3146
|
readonly asSudo: {
|
|
@@ -3126,7 +3164,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3126
3164
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3127
3165
|
}
|
|
3128
3166
|
|
|
3129
|
-
/** @name PalletTreasuryCall (
|
|
3167
|
+
/** @name PalletTreasuryCall (271) */
|
|
3130
3168
|
interface PalletTreasuryCall extends Enum {
|
|
3131
3169
|
readonly isBuyBonds: boolean;
|
|
3132
3170
|
readonly asBuyBonds: {
|
|
@@ -3138,10 +3176,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3138
3176
|
readonly asLiquidateBondLot: {
|
|
3139
3177
|
readonly bondLotId: u64;
|
|
3140
3178
|
} & Struct;
|
|
3141
|
-
readonly
|
|
3179
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3180
|
+
readonly asBuyArgonotBonds: {
|
|
3181
|
+
readonly bonds: u32;
|
|
3182
|
+
} & Struct;
|
|
3183
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3142
3184
|
}
|
|
3143
3185
|
|
|
3144
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3186
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3145
3187
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3146
3188
|
readonly vaultId: Compact<u32>;
|
|
3147
3189
|
readonly beneficiary: AccountId32;
|
|
@@ -3149,16 +3191,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3191
|
readonly signature: SpRuntimeMultiSignature;
|
|
3150
3192
|
}
|
|
3151
3193
|
|
|
3152
|
-
/** @name PalletOperationalAccountsCall (
|
|
3194
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3153
3195
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3154
3196
|
readonly isRegister: boolean;
|
|
3155
3197
|
readonly asRegister: {
|
|
3156
3198
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3157
3199
|
} & Struct;
|
|
3200
|
+
readonly isUpgradeAccount: boolean;
|
|
3201
|
+
readonly asUpgradeAccount: {
|
|
3202
|
+
readonly accountId: AccountId32;
|
|
3203
|
+
} & Struct;
|
|
3158
3204
|
readonly isSetRewardConfig: boolean;
|
|
3159
3205
|
readonly asSetRewardConfig: {
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3206
|
+
readonly operationalActivationReward: u128;
|
|
3207
|
+
readonly operationalReferralBonusReward: u128;
|
|
3162
3208
|
} & Struct;
|
|
3163
3209
|
readonly isForceSetProgress: boolean;
|
|
3164
3210
|
readonly asForceSetProgress: {
|
|
@@ -3166,9 +3212,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3166
3212
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3167
3213
|
readonly updateOperationalProgress: bool;
|
|
3168
3214
|
} & Struct;
|
|
3169
|
-
readonly
|
|
3170
|
-
readonly
|
|
3171
|
-
readonly
|
|
3215
|
+
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3216
|
+
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3217
|
+
readonly downstreamAccount: AccountId32;
|
|
3172
3218
|
readonly encryptedServer: Bytes;
|
|
3173
3219
|
} & Struct;
|
|
3174
3220
|
readonly isActivate: boolean;
|
|
@@ -3178,61 +3224,53 @@ declare module '@polkadot/types/lookup' {
|
|
|
3178
3224
|
} & Struct;
|
|
3179
3225
|
readonly type:
|
|
3180
3226
|
| 'Register'
|
|
3227
|
+
| 'UpgradeAccount'
|
|
3181
3228
|
| 'SetRewardConfig'
|
|
3182
3229
|
| 'ForceSetProgress'
|
|
3183
|
-
| '
|
|
3230
|
+
| 'SetEncryptedServerForDownstreamAccount'
|
|
3184
3231
|
| 'Activate'
|
|
3185
3232
|
| 'ClaimRewards';
|
|
3186
3233
|
}
|
|
3187
3234
|
|
|
3188
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3235
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3189
3236
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3190
3237
|
readonly isV1: boolean;
|
|
3191
3238
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3192
3239
|
readonly type: 'V1';
|
|
3193
3240
|
}
|
|
3194
3241
|
|
|
3195
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3242
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3196
3243
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3197
3244
|
readonly operationalAccount: AccountId32;
|
|
3198
3245
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
3199
3246
|
readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3200
3247
|
readonly vaultAccount: AccountId32;
|
|
3201
|
-
readonly
|
|
3202
|
-
readonly miningBotAccount: AccountId32;
|
|
3248
|
+
readonly miningAccount: AccountId32;
|
|
3203
3249
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3204
|
-
readonly
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3250
|
+
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3251
|
+
readonly referrer: Option<AccountId32>;
|
|
3207
3252
|
}
|
|
3208
3253
|
|
|
3209
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3254
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3210
3255
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3211
3256
|
|
|
3212
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3257
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3213
3258
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3214
3259
|
readonly signature: SpRuntimeMultiSignature;
|
|
3215
3260
|
}
|
|
3216
3261
|
|
|
3217
|
-
/** @name
|
|
3218
|
-
interface PalletOperationalAccountsReferralProof extends Struct {
|
|
3219
|
-
readonly referralCode: U8aFixed;
|
|
3220
|
-
readonly referralSignature: U8aFixed;
|
|
3221
|
-
readonly sponsor: AccountId32;
|
|
3222
|
-
readonly expiresAtFrame: Compact<u64>;
|
|
3223
|
-
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3224
|
-
}
|
|
3225
|
-
|
|
3226
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (280) */
|
|
3262
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (279) */
|
|
3227
3263
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3228
|
-
readonly
|
|
3264
|
+
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3265
|
+
readonly accountBitcoinAmount: Option<u128>;
|
|
3266
|
+
readonly accountVaultBondAmount: Option<u128>;
|
|
3229
3267
|
readonly vaultCreated: Option<bool>;
|
|
3230
|
-
readonly
|
|
3231
|
-
readonly
|
|
3232
|
-
readonly
|
|
3268
|
+
readonly isUpgradedToOperations: Option<bool>;
|
|
3269
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3270
|
+
readonly miningSeatCount: Option<u32>;
|
|
3233
3271
|
}
|
|
3234
3272
|
|
|
3235
|
-
/** @name PalletEthereumVerifierCall (
|
|
3273
|
+
/** @name PalletEthereumVerifierCall (281) */
|
|
3236
3274
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3237
3275
|
readonly isForceCheckpoint: boolean;
|
|
3238
3276
|
readonly asForceCheckpoint: {
|
|
@@ -3260,7 +3298,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3260
3298
|
| 'SetOperatingMode';
|
|
3261
3299
|
}
|
|
3262
3300
|
|
|
3263
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3301
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (282) */
|
|
3264
3302
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3265
3303
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3266
3304
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3269,7 +3307,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3269
3307
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3270
3308
|
}
|
|
3271
3309
|
|
|
3272
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3310
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (283) */
|
|
3273
3311
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3274
3312
|
readonly slot: u64;
|
|
3275
3313
|
readonly proposerIndex: u64;
|
|
@@ -3278,22 +3316,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3278
3316
|
readonly bodyRoot: H256;
|
|
3279
3317
|
}
|
|
3280
3318
|
|
|
3281
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3319
|
+
/** @name PalletEthereumVerifierSyncCommittee (284) */
|
|
3282
3320
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3283
3321
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3284
3322
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3285
3323
|
}
|
|
3286
3324
|
|
|
3287
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3325
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (286) */
|
|
3288
3326
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3289
3327
|
|
|
3290
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3328
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (290) */
|
|
3291
3329
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3292
3330
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3293
3331
|
readonly executionBranch: Vec<H256>;
|
|
3294
3332
|
}
|
|
3295
3333
|
|
|
3296
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3334
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
|
|
3297
3335
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3298
3336
|
readonly isCapella: boolean;
|
|
3299
3337
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3302,7 +3340,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3302
3340
|
readonly type: 'Capella' | 'Deneb';
|
|
3303
3341
|
}
|
|
3304
3342
|
|
|
3305
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3343
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
|
|
3306
3344
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3307
3345
|
readonly parentHash: H256;
|
|
3308
3346
|
readonly feeRecipient: H160;
|
|
@@ -3321,7 +3359,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3321
3359
|
readonly withdrawalsRoot: H256;
|
|
3322
3360
|
}
|
|
3323
3361
|
|
|
3324
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3362
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
|
|
3325
3363
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3326
3364
|
readonly parentHash: H256;
|
|
3327
3365
|
readonly feeRecipient: H160;
|
|
@@ -3342,7 +3380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3342
3380
|
readonly excessBlobGas: u64;
|
|
3343
3381
|
}
|
|
3344
3382
|
|
|
3345
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3383
|
+
/** @name PalletEthereumVerifierForkVersions (294) */
|
|
3346
3384
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3347
3385
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3348
3386
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3353,13 +3391,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3391
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3354
3392
|
}
|
|
3355
3393
|
|
|
3356
|
-
/** @name PalletEthereumVerifierFork (
|
|
3394
|
+
/** @name PalletEthereumVerifierFork (295) */
|
|
3357
3395
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3358
3396
|
readonly version: U8aFixed;
|
|
3359
3397
|
readonly epoch: Compact<u64>;
|
|
3360
3398
|
}
|
|
3361
3399
|
|
|
3362
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3400
|
+
/** @name PalletEthereumVerifierUpdate (296) */
|
|
3363
3401
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3364
3402
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3365
3403
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3370,22 +3408,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3370
3408
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3371
3409
|
}
|
|
3372
3410
|
|
|
3373
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3411
|
+
/** @name PalletEthereumVerifierSyncAggregate (297) */
|
|
3374
3412
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3375
3413
|
readonly syncCommitteeBits: Bytes;
|
|
3376
3414
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3377
3415
|
}
|
|
3378
3416
|
|
|
3379
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3417
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (299) */
|
|
3380
3418
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3381
3419
|
|
|
3382
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3420
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (302) */
|
|
3383
3421
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3384
3422
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3385
3423
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3386
3424
|
}
|
|
3387
3425
|
|
|
3388
|
-
/** @name PalletCrosschainTransferCall (
|
|
3426
|
+
/** @name PalletCrosschainTransferCall (303) */
|
|
3389
3427
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3390
3428
|
readonly isSetChainConfig: boolean;
|
|
3391
3429
|
readonly asSetChainConfig: {
|
|
@@ -3475,7 +3513,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3475
3513
|
| 'CollateralizeTransfer';
|
|
3476
3514
|
}
|
|
3477
3515
|
|
|
3478
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3516
|
+
/** @name PalletCrosschainTransferChainConfig (304) */
|
|
3479
3517
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3480
3518
|
readonly isEvm: boolean;
|
|
3481
3519
|
readonly asEvm: {
|
|
@@ -3487,7 +3525,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3487
3525
|
readonly type: 'Evm';
|
|
3488
3526
|
}
|
|
3489
3527
|
|
|
3490
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3528
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (306) */
|
|
3491
3529
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3492
3530
|
readonly activationGasCost: Compact<u128>;
|
|
3493
3531
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3495,56 +3533,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3495
3533
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3496
3534
|
}
|
|
3497
3535
|
|
|
3498
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3536
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (309) */
|
|
3499
3537
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3500
3538
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3501
3539
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3502
3540
|
}
|
|
3503
3541
|
|
|
3504
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3542
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (310) */
|
|
3505
3543
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3506
3544
|
readonly anchorBlockHash: H256;
|
|
3507
3545
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3508
3546
|
}
|
|
3509
3547
|
|
|
3510
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3548
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (312) */
|
|
3511
3549
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3512
3550
|
readonly rlp: Bytes;
|
|
3513
3551
|
}
|
|
3514
3552
|
|
|
3515
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3553
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (316) */
|
|
3516
3554
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3517
3555
|
readonly targetBlockNumber: Compact<u64>;
|
|
3518
3556
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3519
3557
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3520
3558
|
}
|
|
3521
3559
|
|
|
3522
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3560
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (317) */
|
|
3523
3561
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3524
3562
|
readonly nodes: Vec<Bytes>;
|
|
3525
3563
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3526
3564
|
}
|
|
3527
3565
|
|
|
3528
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3566
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (321) */
|
|
3529
3567
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3530
3568
|
readonly transactionIndex: Compact<u64>;
|
|
3531
3569
|
readonly nodeIndexes: Vec<u16>;
|
|
3532
3570
|
}
|
|
3533
3571
|
|
|
3534
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3572
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (326) */
|
|
3535
3573
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3536
3574
|
readonly transactionIndex: Compact<u64>;
|
|
3537
3575
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3538
3576
|
}
|
|
3539
3577
|
|
|
3540
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3578
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (327) */
|
|
3541
3579
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3542
3580
|
readonly address: H160;
|
|
3543
3581
|
readonly topics: Vec<H256>;
|
|
3544
3582
|
readonly data: Bytes;
|
|
3545
3583
|
}
|
|
3546
3584
|
|
|
3547
|
-
/** @name PalletMultisigError (
|
|
3585
|
+
/** @name PalletMultisigError (333) */
|
|
3548
3586
|
interface PalletMultisigError extends Enum {
|
|
3549
3587
|
readonly isMinimumThreshold: boolean;
|
|
3550
3588
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3577,21 +3615,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3577
3615
|
| 'AlreadyStored';
|
|
3578
3616
|
}
|
|
3579
3617
|
|
|
3580
|
-
/** @name PalletProxyProxyDefinition (
|
|
3618
|
+
/** @name PalletProxyProxyDefinition (336) */
|
|
3581
3619
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3582
3620
|
readonly delegate: AccountId32;
|
|
3583
3621
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3584
3622
|
readonly delay: u32;
|
|
3585
3623
|
}
|
|
3586
3624
|
|
|
3587
|
-
/** @name PalletProxyAnnouncement (
|
|
3625
|
+
/** @name PalletProxyAnnouncement (340) */
|
|
3588
3626
|
interface PalletProxyAnnouncement extends Struct {
|
|
3589
3627
|
readonly real: AccountId32;
|
|
3590
3628
|
readonly callHash: H256;
|
|
3591
3629
|
readonly height: u32;
|
|
3592
3630
|
}
|
|
3593
3631
|
|
|
3594
|
-
/** @name PalletProxyError (
|
|
3632
|
+
/** @name PalletProxyError (342) */
|
|
3595
3633
|
interface PalletProxyError extends Enum {
|
|
3596
3634
|
readonly isTooMany: boolean;
|
|
3597
3635
|
readonly isNotFound: boolean;
|
|
@@ -3612,16 +3650,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3612
3650
|
| 'NoSelfProxy';
|
|
3613
3651
|
}
|
|
3614
3652
|
|
|
3615
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3653
|
+
/** @name ArgonPrimitivesTickTicker (343) */
|
|
3616
3654
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3617
3655
|
readonly tickDurationMillis: Compact<u64>;
|
|
3618
3656
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3619
3657
|
}
|
|
3620
3658
|
|
|
3621
|
-
/** @name PalletTicksError (
|
|
3659
|
+
/** @name PalletTicksError (345) */
|
|
3622
3660
|
type PalletTicksError = Null;
|
|
3623
3661
|
|
|
3624
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3662
|
+
/** @name PalletMiningSlotMinerNonceScoring (348) */
|
|
3625
3663
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3626
3664
|
readonly nonce: U256;
|
|
3627
3665
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3629,7 +3667,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3629
3667
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3630
3668
|
}
|
|
3631
3669
|
|
|
3632
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3670
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (360) */
|
|
3633
3671
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3634
3672
|
readonly bidsCount: u32;
|
|
3635
3673
|
readonly bidAmountMin: u128;
|
|
@@ -3637,14 +3675,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3637
3675
|
readonly bidAmountSum: u128;
|
|
3638
3676
|
}
|
|
3639
3677
|
|
|
3640
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3678
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (364) */
|
|
3641
3679
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3642
3680
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3643
3681
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3644
3682
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3645
3683
|
}
|
|
3646
3684
|
|
|
3647
|
-
/** @name PalletMiningSlotError (
|
|
3685
|
+
/** @name PalletMiningSlotError (374) */
|
|
3648
3686
|
interface PalletMiningSlotError extends Enum {
|
|
3649
3687
|
readonly isSlotNotTakingBids: boolean;
|
|
3650
3688
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3655,6 +3693,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3655
3693
|
readonly isInsufficientFunds: boolean;
|
|
3656
3694
|
readonly isBidCannotBeReduced: boolean;
|
|
3657
3695
|
readonly isInvalidBidAmount: boolean;
|
|
3696
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3658
3697
|
readonly isUnrecoverableHold: boolean;
|
|
3659
3698
|
readonly type:
|
|
3660
3699
|
| 'SlotNotTakingBids'
|
|
@@ -3666,10 +3705,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3666
3705
|
| 'InsufficientFunds'
|
|
3667
3706
|
| 'BidCannotBeReduced'
|
|
3668
3707
|
| 'InvalidBidAmount'
|
|
3708
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3669
3709
|
| 'UnrecoverableHold';
|
|
3670
3710
|
}
|
|
3671
3711
|
|
|
3672
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3712
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (375) */
|
|
3673
3713
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3674
3714
|
readonly utxoId: u64;
|
|
3675
3715
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3678,7 +3718,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3678
3718
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3679
3719
|
}
|
|
3680
3720
|
|
|
3681
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3721
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
|
|
3682
3722
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3683
3723
|
readonly isP2wsh: boolean;
|
|
3684
3724
|
readonly asP2wsh: {
|
|
@@ -3687,7 +3727,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3687
3727
|
readonly type: 'P2wsh';
|
|
3688
3728
|
}
|
|
3689
3729
|
|
|
3690
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3730
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
|
|
3691
3731
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3692
3732
|
readonly isBitcoin: boolean;
|
|
3693
3733
|
readonly isTestnet: boolean;
|
|
@@ -3696,7 +3736,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3696
3736
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3697
3737
|
}
|
|
3698
3738
|
|
|
3699
|
-
/** @name PalletBitcoinUtxosError (
|
|
3739
|
+
/** @name PalletBitcoinUtxosError (386) */
|
|
3700
3740
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3701
3741
|
readonly isNoPermissions: boolean;
|
|
3702
3742
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3731,7 +3771,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3731
3771
|
| 'LockAlreadyFunded';
|
|
3732
3772
|
}
|
|
3733
3773
|
|
|
3734
|
-
/** @name ArgonPrimitivesVault (
|
|
3774
|
+
/** @name ArgonPrimitivesVault (387) */
|
|
3735
3775
|
interface ArgonPrimitivesVault extends Struct {
|
|
3736
3776
|
readonly operatorAccountId: AccountId32;
|
|
3737
3777
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3752,13 +3792,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3752
3792
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3753
3793
|
}
|
|
3754
3794
|
|
|
3755
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3795
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
|
|
3756
3796
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3757
3797
|
readonly committedMicronots: Compact<u128>;
|
|
3758
3798
|
readonly encumberedMicronots: Compact<u128>;
|
|
3759
3799
|
}
|
|
3760
3800
|
|
|
3761
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3801
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
|
|
3762
3802
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3763
3803
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3764
3804
|
readonly depth: Compact<u8>;
|
|
@@ -3768,14 +3808,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3768
3808
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3769
3809
|
}
|
|
3770
3810
|
|
|
3771
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3811
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (398) */
|
|
3772
3812
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3773
3813
|
readonly isMain: boolean;
|
|
3774
3814
|
readonly isTest: boolean;
|
|
3775
3815
|
readonly type: 'Main' | 'Test';
|
|
3776
3816
|
}
|
|
3777
3817
|
|
|
3778
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3818
|
+
/** @name PalletVaultsVaultFrameRevenue (407) */
|
|
3779
3819
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3780
3820
|
readonly frameId: Compact<u64>;
|
|
3781
3821
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3795,7 +3835,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3835
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3796
3836
|
}
|
|
3797
3837
|
|
|
3798
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3838
|
+
/** @name PalletVaultsRecentCapacityDrop (410) */
|
|
3799
3839
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3800
3840
|
readonly blockNumber: Compact<u32>;
|
|
3801
3841
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3803,7 +3843,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3803
3843
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3804
3844
|
}
|
|
3805
3845
|
|
|
3806
|
-
/** @name PalletVaultsError (
|
|
3846
|
+
/** @name PalletVaultsError (412) */
|
|
3807
3847
|
interface PalletVaultsError extends Enum {
|
|
3808
3848
|
readonly isNoMoreVaultIds: boolean;
|
|
3809
3849
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3837,6 +3877,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3877
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3838
3878
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
3839
3879
|
readonly isAccountAlreadyHasVault: boolean;
|
|
3880
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3840
3881
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
3841
3882
|
readonly type:
|
|
3842
3883
|
| 'NoMoreVaultIds'
|
|
@@ -3871,10 +3912,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3871
3912
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3872
3913
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
3873
3914
|
| 'AccountAlreadyHasVault'
|
|
3915
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3874
3916
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3875
3917
|
}
|
|
3876
3918
|
|
|
3877
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3919
|
+
/** @name PalletBitcoinLocksLockedBitcoin (413) */
|
|
3878
3920
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3879
3921
|
readonly vaultId: Compact<u32>;
|
|
3880
3922
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4288,6 +4330,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4288
4330
|
/** @name PalletBlockRewardsError (481) */
|
|
4289
4331
|
type PalletBlockRewardsError = Null;
|
|
4290
4332
|
|
|
4333
|
+
/** @name PalletMintPendingMintUtxo (482) */
|
|
4334
|
+
interface PalletMintPendingMintUtxo extends Struct {
|
|
4335
|
+
readonly utxoId: Compact<u64>;
|
|
4336
|
+
readonly accountId: AccountId32;
|
|
4337
|
+
readonly remainingAmount: Compact<u128>;
|
|
4338
|
+
readonly maxAmountPerFrame: Compact<u128>;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
/** @name PalletMintMintQueueCursor (484) */
|
|
4342
|
+
interface PalletMintMintQueueCursor extends Struct {
|
|
4343
|
+
readonly payoutStartIndex: Compact<u64>;
|
|
4344
|
+
readonly payoutCursorIndex: Compact<u64>;
|
|
4345
|
+
readonly payoutCursorFrameId: Option<u64>;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4291
4348
|
/** @name PalletMintMintAction (487) */
|
|
4292
4349
|
interface PalletMintMintAction extends Struct {
|
|
4293
4350
|
readonly argonBurned: u128;
|
|
@@ -4295,20 +4352,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4295
4352
|
readonly bitcoinMinted: u128;
|
|
4296
4353
|
}
|
|
4297
4354
|
|
|
4298
|
-
/** @name PalletMintError (
|
|
4355
|
+
/** @name PalletMintError (489) */
|
|
4299
4356
|
interface PalletMintError extends Enum {
|
|
4300
4357
|
readonly isTooManyPendingMints: boolean;
|
|
4301
4358
|
readonly type: 'TooManyPendingMints';
|
|
4302
4359
|
}
|
|
4303
4360
|
|
|
4304
|
-
/** @name PalletBalancesBalanceLock (
|
|
4361
|
+
/** @name PalletBalancesBalanceLock (491) */
|
|
4305
4362
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4306
4363
|
readonly id: U8aFixed;
|
|
4307
4364
|
readonly amount: u128;
|
|
4308
4365
|
readonly reasons: PalletBalancesReasons;
|
|
4309
4366
|
}
|
|
4310
4367
|
|
|
4311
|
-
/** @name PalletBalancesReasons (
|
|
4368
|
+
/** @name PalletBalancesReasons (492) */
|
|
4312
4369
|
interface PalletBalancesReasons extends Enum {
|
|
4313
4370
|
readonly isFee: boolean;
|
|
4314
4371
|
readonly isMisc: boolean;
|
|
@@ -4316,38 +4373,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4316
4373
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4317
4374
|
}
|
|
4318
4375
|
|
|
4319
|
-
/** @name PalletBalancesReserveData (
|
|
4376
|
+
/** @name PalletBalancesReserveData (495) */
|
|
4320
4377
|
interface PalletBalancesReserveData extends Struct {
|
|
4321
4378
|
readonly id: U8aFixed;
|
|
4322
4379
|
readonly amount: u128;
|
|
4323
4380
|
}
|
|
4324
4381
|
|
|
4325
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4382
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (498) */
|
|
4326
4383
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4327
4384
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4328
4385
|
readonly amount: u128;
|
|
4329
4386
|
}
|
|
4330
4387
|
|
|
4331
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4388
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (501) */
|
|
4332
4389
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4333
4390
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4334
4391
|
readonly amount: u128;
|
|
4335
4392
|
}
|
|
4336
4393
|
|
|
4337
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4394
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (502) */
|
|
4338
4395
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4339
4396
|
readonly isBlockRewards: boolean;
|
|
4340
4397
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4341
4398
|
readonly type: 'BlockRewards';
|
|
4342
4399
|
}
|
|
4343
4400
|
|
|
4344
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4401
|
+
/** @name PalletBlockRewardsFreezeReason (503) */
|
|
4345
4402
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4346
4403
|
readonly isMaturationPeriod: boolean;
|
|
4347
4404
|
readonly type: 'MaturationPeriod';
|
|
4348
4405
|
}
|
|
4349
4406
|
|
|
4350
|
-
/** @name PalletBalancesError (
|
|
4407
|
+
/** @name PalletBalancesError (505) */
|
|
4351
4408
|
interface PalletBalancesError extends Enum {
|
|
4352
4409
|
readonly isVestingBalance: boolean;
|
|
4353
4410
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4376,7 +4433,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4376
4433
|
| 'DeltaZero';
|
|
4377
4434
|
}
|
|
4378
4435
|
|
|
4379
|
-
/** @name PalletTxPauseError (
|
|
4436
|
+
/** @name PalletTxPauseError (507) */
|
|
4380
4437
|
interface PalletTxPauseError extends Enum {
|
|
4381
4438
|
readonly isIsPaused: boolean;
|
|
4382
4439
|
readonly isIsUnpaused: boolean;
|
|
@@ -4385,58 +4442,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4385
4442
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4386
4443
|
}
|
|
4387
4444
|
|
|
4388
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4445
|
+
/** @name PalletTransactionPaymentReleases (508) */
|
|
4389
4446
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4390
4447
|
readonly isV1Ancient: boolean;
|
|
4391
4448
|
readonly isV2: boolean;
|
|
4392
4449
|
readonly type: 'V1Ancient' | 'V2';
|
|
4393
4450
|
}
|
|
4394
4451
|
|
|
4395
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4452
|
+
/** @name FrameSupportStorageNoDrop (509) */
|
|
4396
4453
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4397
4454
|
|
|
4398
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4455
|
+
/** @name FrameSupportTokensFungibleImbalance (510) */
|
|
4399
4456
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4400
4457
|
readonly amount: u128;
|
|
4401
4458
|
}
|
|
4402
4459
|
|
|
4403
|
-
/** @name PalletUtilityError (
|
|
4460
|
+
/** @name PalletUtilityError (511) */
|
|
4404
4461
|
interface PalletUtilityError extends Enum {
|
|
4405
4462
|
readonly isTooManyCalls: boolean;
|
|
4406
4463
|
readonly type: 'TooManyCalls';
|
|
4407
4464
|
}
|
|
4408
4465
|
|
|
4409
|
-
/** @name PalletSudoError (
|
|
4466
|
+
/** @name PalletSudoError (512) */
|
|
4410
4467
|
interface PalletSudoError extends Enum {
|
|
4411
4468
|
readonly isRequireSudo: boolean;
|
|
4412
4469
|
readonly type: 'RequireSudo';
|
|
4413
4470
|
}
|
|
4414
4471
|
|
|
4415
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4472
|
+
/** @name PalletTreasuryFrameVaultCapital (513) */
|
|
4416
4473
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4417
4474
|
readonly frameId: Compact<u64>;
|
|
4418
4475
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4419
4476
|
}
|
|
4420
4477
|
|
|
4421
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4478
|
+
/** @name PalletTreasuryVaultCapital (515) */
|
|
4422
4479
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4423
4480
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4424
4481
|
readonly eligibleBonds: Compact<u32>;
|
|
4425
4482
|
}
|
|
4426
4483
|
|
|
4427
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4484
|
+
/** @name PalletTreasuryBondLotAllocation (517) */
|
|
4428
4485
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4429
4486
|
readonly bondLotId: Compact<u64>;
|
|
4430
4487
|
readonly prorata: u128;
|
|
4431
4488
|
}
|
|
4432
4489
|
|
|
4433
|
-
/** @name
|
|
4490
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (522) */
|
|
4491
|
+
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4492
|
+
readonly frameId: Compact<u64>;
|
|
4493
|
+
readonly totalBonds: Compact<u32>;
|
|
4494
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
/** @name PalletTreasuryBondLotSummary (524) */
|
|
4498
|
+
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4499
|
+
readonly bondLotId: Compact<u64>;
|
|
4500
|
+
readonly bonds: Compact<u32>;
|
|
4501
|
+
}
|
|
4502
|
+
|
|
4503
|
+
/** @name PalletTreasuryBondLot (526) */
|
|
4434
4504
|
interface PalletTreasuryBondLot extends Struct {
|
|
4435
4505
|
readonly owner: AccountId32;
|
|
4436
|
-
readonly
|
|
4506
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4437
4507
|
readonly bonds: Compact<u32>;
|
|
4438
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4439
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4440
4508
|
readonly createdFrameId: Compact<u64>;
|
|
4441
4509
|
readonly participatedFrames: Compact<u32>;
|
|
4442
4510
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4446,13 +4514,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4446
4514
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4447
4515
|
}
|
|
4448
4516
|
|
|
4449
|
-
/** @name
|
|
4450
|
-
interface
|
|
4451
|
-
readonly
|
|
4452
|
-
readonly
|
|
4517
|
+
/** @name PalletTreasuryBondProgram (527) */
|
|
4518
|
+
interface PalletTreasuryBondProgram extends Enum {
|
|
4519
|
+
readonly isVault: boolean;
|
|
4520
|
+
readonly asVault: {
|
|
4521
|
+
readonly vaultId: Compact<u32>;
|
|
4522
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4523
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4524
|
+
} & Struct;
|
|
4525
|
+
readonly isArgonot: boolean;
|
|
4526
|
+
readonly type: 'Vault' | 'Argonot';
|
|
4453
4527
|
}
|
|
4454
4528
|
|
|
4455
|
-
/** @name PalletTreasuryError (
|
|
4529
|
+
/** @name PalletTreasuryError (531) */
|
|
4456
4530
|
interface PalletTreasuryError extends Enum {
|
|
4457
4531
|
readonly isBondPurchaseRejected: boolean;
|
|
4458
4532
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4470,6 +4544,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4470
4544
|
readonly isBonusApprovalExpired: boolean;
|
|
4471
4545
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4472
4546
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4547
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4548
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4473
4549
|
readonly type:
|
|
4474
4550
|
| 'BondPurchaseRejected'
|
|
4475
4551
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4486,56 +4562,66 @@ declare module '@polkadot/types/lookup' {
|
|
|
4486
4562
|
| 'BonusApprovalWrongAccount'
|
|
4487
4563
|
| 'BonusApprovalExpired'
|
|
4488
4564
|
| 'BonusApprovalExistingBondLot'
|
|
4489
|
-
| 'InvalidBonusApprovalSignature'
|
|
4565
|
+
| 'InvalidBonusApprovalSignature'
|
|
4566
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4567
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4490
4568
|
}
|
|
4491
4569
|
|
|
4492
|
-
/** @name PalletFeeControlError (
|
|
4570
|
+
/** @name PalletFeeControlError (532) */
|
|
4493
4571
|
interface PalletFeeControlError extends Enum {
|
|
4494
4572
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4495
4573
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4496
4574
|
}
|
|
4497
4575
|
|
|
4498
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4576
|
+
/** @name PalletOperationalAccountsOperationalAccount (533) */
|
|
4499
4577
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4500
4578
|
readonly vaultAccount: AccountId32;
|
|
4501
|
-
readonly
|
|
4502
|
-
readonly miningBotAccount: AccountId32;
|
|
4579
|
+
readonly miningAccount: AccountId32;
|
|
4503
4580
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4504
|
-
readonly
|
|
4505
|
-
readonly
|
|
4581
|
+
readonly referrer: Option<AccountId32>;
|
|
4582
|
+
readonly isTreasuryCertified: bool;
|
|
4583
|
+
readonly isUpgradedToOperations: bool;
|
|
4584
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
4585
|
+
readonly accountBitcoinAmount: u128;
|
|
4586
|
+
readonly accountVaultBondAmount: u128;
|
|
4506
4587
|
readonly vaultCreated: bool;
|
|
4507
|
-
readonly
|
|
4508
|
-
readonly
|
|
4509
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4588
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4589
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4510
4590
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4511
4591
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4512
4592
|
readonly operationalReferralsCount: Compact<u32>;
|
|
4513
|
-
readonly
|
|
4514
|
-
readonly
|
|
4593
|
+
readonly upgradeCodePending: bool;
|
|
4594
|
+
readonly availableUpgradeCodes: Compact<u32>;
|
|
4515
4595
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4516
4596
|
readonly rewardsEarnedAmount: u128;
|
|
4517
4597
|
readonly rewardsCollectedAmount: u128;
|
|
4518
|
-
readonly
|
|
4598
|
+
readonly isOperationallyCertified: bool;
|
|
4519
4599
|
}
|
|
4520
4600
|
|
|
4521
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4601
|
+
/** @name PalletOperationalAccountsRewardsConfig (534) */
|
|
4522
4602
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4523
|
-
readonly
|
|
4524
|
-
readonly
|
|
4603
|
+
readonly operationalActivationReward: Compact<u128>;
|
|
4604
|
+
readonly operationalReferralBonusReward: Compact<u128>;
|
|
4525
4605
|
}
|
|
4526
4606
|
|
|
4527
|
-
/** @name PalletOperationalAccountsError (
|
|
4607
|
+
/** @name PalletOperationalAccountsError (536) */
|
|
4528
4608
|
interface PalletOperationalAccountsError extends Enum {
|
|
4529
4609
|
readonly isAlreadyRegistered: boolean;
|
|
4530
4610
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4531
4611
|
readonly isAccountAlreadyLinked: boolean;
|
|
4532
4612
|
readonly isInvalidAccountProof: boolean;
|
|
4533
4613
|
readonly isNotOperationalAccount: boolean;
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4614
|
+
readonly isRegistrationInviteRequired: boolean;
|
|
4615
|
+
readonly isReferrerNotOperationalAccount: boolean;
|
|
4616
|
+
readonly isRegisteredReferrerMismatch: boolean;
|
|
4617
|
+
readonly isNotTreasuryCertified: boolean;
|
|
4618
|
+
readonly isTreasuryCertificationNoLongerMet: boolean;
|
|
4619
|
+
readonly isAccountAlreadyUpgraded: boolean;
|
|
4620
|
+
readonly isNoAvailableUpgrades: boolean;
|
|
4621
|
+
readonly isCannotUpgradeSelf: boolean;
|
|
4536
4622
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4537
4623
|
readonly isEncryptedServerTooLong: boolean;
|
|
4538
|
-
readonly
|
|
4624
|
+
readonly isNotReferrerOfAccount: boolean;
|
|
4539
4625
|
readonly isNoPendingRewards: boolean;
|
|
4540
4626
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4541
4627
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4549,11 +4635,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
4549
4635
|
| 'AccountAlreadyLinked'
|
|
4550
4636
|
| 'InvalidAccountProof'
|
|
4551
4637
|
| 'NotOperationalAccount'
|
|
4552
|
-
| '
|
|
4553
|
-
| '
|
|
4638
|
+
| 'RegistrationInviteRequired'
|
|
4639
|
+
| 'ReferrerNotOperationalAccount'
|
|
4640
|
+
| 'RegisteredReferrerMismatch'
|
|
4641
|
+
| 'NotTreasuryCertified'
|
|
4642
|
+
| 'TreasuryCertificationNoLongerMet'
|
|
4643
|
+
| 'AccountAlreadyUpgraded'
|
|
4644
|
+
| 'NoAvailableUpgrades'
|
|
4645
|
+
| 'CannotUpgradeSelf'
|
|
4554
4646
|
| 'NoProgressUpdateProvided'
|
|
4555
4647
|
| 'EncryptedServerTooLong'
|
|
4556
|
-
| '
|
|
4648
|
+
| 'NotReferrerOfAccount'
|
|
4557
4649
|
| 'NoPendingRewards'
|
|
4558
4650
|
| 'RewardClaimBelowMinimum'
|
|
4559
4651
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4563,12 +4655,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4563
4655
|
| 'NotEligibleForActivation';
|
|
4564
4656
|
}
|
|
4565
4657
|
|
|
4566
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4658
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (537) */
|
|
4567
4659
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4568
4660
|
readonly slot: Compact<u64>;
|
|
4569
4661
|
}
|
|
4570
4662
|
|
|
4571
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4663
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (538) */
|
|
4572
4664
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4573
4665
|
readonly blockNumber: Compact<u64>;
|
|
4574
4666
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4578,44 +4670,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4578
4670
|
readonly receiptsRoot: H256;
|
|
4579
4671
|
}
|
|
4580
4672
|
|
|
4581
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4673
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (539) */
|
|
4582
4674
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4583
4675
|
readonly root: H256;
|
|
4584
4676
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4585
4677
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4586
4678
|
}
|
|
4587
4679
|
|
|
4588
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4680
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (541) */
|
|
4589
4681
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4590
4682
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4591
4683
|
}
|
|
4592
4684
|
|
|
4593
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4685
|
+
/** @name SnowbridgeAmclBls381Ecp (542) */
|
|
4594
4686
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4595
4687
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4596
4688
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4597
4689
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4598
4690
|
}
|
|
4599
4691
|
|
|
4600
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4692
|
+
/** @name SnowbridgeAmclBls381Fp (543) */
|
|
4601
4693
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4602
4694
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4603
4695
|
readonly xes: i32;
|
|
4604
4696
|
}
|
|
4605
4697
|
|
|
4606
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4698
|
+
/** @name SnowbridgeAmclBls381Big (544) */
|
|
4607
4699
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4608
4700
|
readonly w: Vec<i32>;
|
|
4609
4701
|
}
|
|
4610
4702
|
|
|
4611
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4703
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (548) */
|
|
4612
4704
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4613
4705
|
readonly isMainnet: boolean;
|
|
4614
4706
|
readonly isMinimal: boolean;
|
|
4615
4707
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4616
4708
|
}
|
|
4617
4709
|
|
|
4618
|
-
/** @name PalletEthereumVerifierError (
|
|
4710
|
+
/** @name PalletEthereumVerifierError (549) */
|
|
4619
4711
|
interface PalletEthereumVerifierError extends Enum {
|
|
4620
4712
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4621
4713
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4668,21 +4760,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4668
4760
|
| 'Halted';
|
|
4669
4761
|
}
|
|
4670
4762
|
|
|
4671
|
-
/** @name
|
|
4763
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (550) */
|
|
4764
|
+
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4765
|
+
readonly microgonsIn: u128;
|
|
4766
|
+
readonly microgonsOut: u128;
|
|
4767
|
+
readonly argonTransfersInCount: Compact<u32>;
|
|
4768
|
+
readonly argonTransfersOutCount: Compact<u32>;
|
|
4769
|
+
readonly micronotsIn: u128;
|
|
4770
|
+
readonly micronotsOut: u128;
|
|
4771
|
+
readonly argonotTransfersInCount: Compact<u32>;
|
|
4772
|
+
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4773
|
+
}
|
|
4774
|
+
|
|
4775
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (552) */
|
|
4672
4776
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4673
4777
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4674
4778
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4675
4779
|
readonly totalWeight: u128;
|
|
4676
4780
|
}
|
|
4677
4781
|
|
|
4678
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4782
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (554) */
|
|
4679
4783
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4680
4784
|
readonly accountId: AccountId32;
|
|
4681
4785
|
readonly signer: H160;
|
|
4682
4786
|
readonly weight: u128;
|
|
4683
4787
|
}
|
|
4684
4788
|
|
|
4685
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4789
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (559) */
|
|
4686
4790
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4687
4791
|
readonly approvingCouncilHash: H256;
|
|
4688
4792
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4694,7 +4798,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4694
4798
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4695
4799
|
}
|
|
4696
4800
|
|
|
4697
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4801
|
+
/** @name PalletCrosschainTransferMintingAuthority (564) */
|
|
4698
4802
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4699
4803
|
readonly accountId: AccountId32;
|
|
4700
4804
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4711,7 +4815,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4711
4815
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4712
4816
|
}
|
|
4713
4817
|
|
|
4714
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4818
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (565) */
|
|
4715
4819
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4716
4820
|
readonly isPendingActivation: boolean;
|
|
4717
4821
|
readonly isActive: boolean;
|
|
@@ -4719,7 +4823,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4719
4823
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4720
4824
|
}
|
|
4721
4825
|
|
|
4722
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4826
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (567) */
|
|
4723
4827
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4724
4828
|
readonly argonAccountId: AccountId32;
|
|
4725
4829
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4738,7 +4842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4738
4842
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4739
4843
|
}
|
|
4740
4844
|
|
|
4741
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4845
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (569) */
|
|
4742
4846
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4743
4847
|
readonly microgonCollateral: u128;
|
|
4744
4848
|
readonly micronotCollateral: u128;
|
|
@@ -4746,27 +4850,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4746
4850
|
readonly signature: U8aFixed;
|
|
4747
4851
|
}
|
|
4748
4852
|
|
|
4749
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4853
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (573) */
|
|
4750
4854
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4751
4855
|
readonly isStarted: boolean;
|
|
4752
4856
|
readonly isReady: boolean;
|
|
4753
4857
|
readonly type: 'Started' | 'Ready';
|
|
4754
4858
|
}
|
|
4755
4859
|
|
|
4756
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4860
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (575) */
|
|
4757
4861
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4758
4862
|
readonly transferId: H256;
|
|
4759
4863
|
readonly remainingCollateral: u128;
|
|
4760
4864
|
readonly remainingMintingAuthorityTip: u128;
|
|
4761
4865
|
}
|
|
4762
4866
|
|
|
4763
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4867
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (577) */
|
|
4764
4868
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4765
4869
|
readonly argonCirculation: u128;
|
|
4766
4870
|
readonly argonotCirculation: u128;
|
|
4767
4871
|
}
|
|
4768
4872
|
|
|
4769
|
-
/** @name PalletCrosschainTransferError (
|
|
4873
|
+
/** @name PalletCrosschainTransferError (578) */
|
|
4770
4874
|
interface PalletCrosschainTransferError extends Enum {
|
|
4771
4875
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4772
4876
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4879,45 +4983,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4879
4983
|
| 'TooManyPendingTransferOuts';
|
|
4880
4984
|
}
|
|
4881
4985
|
|
|
4882
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4986
|
+
/** @name FrameSystemExtensionsAuthorizeCall (581) */
|
|
4883
4987
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4884
4988
|
|
|
4885
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4989
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (582) */
|
|
4886
4990
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4887
4991
|
|
|
4888
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4992
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (583) */
|
|
4889
4993
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4890
4994
|
|
|
4891
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4995
|
+
/** @name FrameSystemExtensionsCheckTxVersion (584) */
|
|
4892
4996
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4893
4997
|
|
|
4894
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4998
|
+
/** @name FrameSystemExtensionsCheckGenesis (585) */
|
|
4895
4999
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4896
5000
|
|
|
4897
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5001
|
+
/** @name FrameSystemExtensionsCheckNonce (588) */
|
|
4898
5002
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4899
5003
|
|
|
4900
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5004
|
+
/** @name FrameSystemExtensionsCheckWeight (589) */
|
|
4901
5005
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4902
5006
|
|
|
4903
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5007
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (590) */
|
|
4904
5008
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4905
5009
|
|
|
4906
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5010
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (591) */
|
|
4907
5011
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4908
5012
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4909
5013
|
}
|
|
4910
5014
|
|
|
4911
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5015
|
+
/** @name FrameMetadataHashExtensionMode (592) */
|
|
4912
5016
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4913
5017
|
readonly isDisabled: boolean;
|
|
4914
5018
|
readonly isEnabled: boolean;
|
|
4915
5019
|
readonly type: 'Disabled' | 'Enabled';
|
|
4916
5020
|
}
|
|
4917
5021
|
|
|
4918
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5022
|
+
/** @name FrameSystemExtensionsWeightReclaim (593) */
|
|
4919
5023
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4920
5024
|
|
|
4921
|
-
/** @name ArgonRuntimeRuntime (
|
|
5025
|
+
/** @name ArgonRuntimeRuntime (595) */
|
|
4922
5026
|
type ArgonRuntimeRuntime = Null;
|
|
4923
5027
|
} // declare module
|