@argonprotocol/mainchain 1.4.8 → 1.4.9-dev.8f82736f
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 +630 -382
- package/browser/index.js +26 -11
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +26 -11
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +630 -382
- package/lib/index.d.ts +630 -382
- package/lib/index.js +26 -11
- 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 +30 -11
- package/src/interfaces/lookup.ts +347 -260
- package/src/interfaces/registry.ts +12 -2
- package/src/interfaces/types-lookup.ts +370 -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,52 @@ 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 observedMiningSeatTotal: Option<u32>;
|
|
3268
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3269
|
+
readonly miningSeatCount: Option<u32>;
|
|
3233
3270
|
}
|
|
3234
3271
|
|
|
3235
|
-
/** @name PalletEthereumVerifierCall (
|
|
3272
|
+
/** @name PalletEthereumVerifierCall (281) */
|
|
3236
3273
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3237
3274
|
readonly isForceCheckpoint: boolean;
|
|
3238
3275
|
readonly asForceCheckpoint: {
|
|
@@ -3260,7 +3297,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3260
3297
|
| 'SetOperatingMode';
|
|
3261
3298
|
}
|
|
3262
3299
|
|
|
3263
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3300
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (282) */
|
|
3264
3301
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3265
3302
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3266
3303
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3269,7 +3306,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3269
3306
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3270
3307
|
}
|
|
3271
3308
|
|
|
3272
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3309
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (283) */
|
|
3273
3310
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3274
3311
|
readonly slot: u64;
|
|
3275
3312
|
readonly proposerIndex: u64;
|
|
@@ -3278,22 +3315,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3278
3315
|
readonly bodyRoot: H256;
|
|
3279
3316
|
}
|
|
3280
3317
|
|
|
3281
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3318
|
+
/** @name PalletEthereumVerifierSyncCommittee (284) */
|
|
3282
3319
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3283
3320
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3284
3321
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3285
3322
|
}
|
|
3286
3323
|
|
|
3287
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3324
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (286) */
|
|
3288
3325
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3289
3326
|
|
|
3290
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3327
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (290) */
|
|
3291
3328
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3292
3329
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3293
3330
|
readonly executionBranch: Vec<H256>;
|
|
3294
3331
|
}
|
|
3295
3332
|
|
|
3296
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3333
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
|
|
3297
3334
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3298
3335
|
readonly isCapella: boolean;
|
|
3299
3336
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3302,7 +3339,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3302
3339
|
readonly type: 'Capella' | 'Deneb';
|
|
3303
3340
|
}
|
|
3304
3341
|
|
|
3305
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3342
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
|
|
3306
3343
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3307
3344
|
readonly parentHash: H256;
|
|
3308
3345
|
readonly feeRecipient: H160;
|
|
@@ -3321,7 +3358,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3321
3358
|
readonly withdrawalsRoot: H256;
|
|
3322
3359
|
}
|
|
3323
3360
|
|
|
3324
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3361
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
|
|
3325
3362
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3326
3363
|
readonly parentHash: H256;
|
|
3327
3364
|
readonly feeRecipient: H160;
|
|
@@ -3342,7 +3379,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3342
3379
|
readonly excessBlobGas: u64;
|
|
3343
3380
|
}
|
|
3344
3381
|
|
|
3345
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3382
|
+
/** @name PalletEthereumVerifierForkVersions (294) */
|
|
3346
3383
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3347
3384
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3348
3385
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3353,13 +3390,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3390
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3354
3391
|
}
|
|
3355
3392
|
|
|
3356
|
-
/** @name PalletEthereumVerifierFork (
|
|
3393
|
+
/** @name PalletEthereumVerifierFork (295) */
|
|
3357
3394
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3358
3395
|
readonly version: U8aFixed;
|
|
3359
3396
|
readonly epoch: Compact<u64>;
|
|
3360
3397
|
}
|
|
3361
3398
|
|
|
3362
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3399
|
+
/** @name PalletEthereumVerifierUpdate (296) */
|
|
3363
3400
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3364
3401
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3365
3402
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3370,22 +3407,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3370
3407
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3371
3408
|
}
|
|
3372
3409
|
|
|
3373
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3410
|
+
/** @name PalletEthereumVerifierSyncAggregate (297) */
|
|
3374
3411
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3375
3412
|
readonly syncCommitteeBits: Bytes;
|
|
3376
3413
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3377
3414
|
}
|
|
3378
3415
|
|
|
3379
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3416
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (299) */
|
|
3380
3417
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3381
3418
|
|
|
3382
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3419
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (302) */
|
|
3383
3420
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3384
3421
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3385
3422
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3386
3423
|
}
|
|
3387
3424
|
|
|
3388
|
-
/** @name PalletCrosschainTransferCall (
|
|
3425
|
+
/** @name PalletCrosschainTransferCall (303) */
|
|
3389
3426
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3390
3427
|
readonly isSetChainConfig: boolean;
|
|
3391
3428
|
readonly asSetChainConfig: {
|
|
@@ -3475,7 +3512,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3475
3512
|
| 'CollateralizeTransfer';
|
|
3476
3513
|
}
|
|
3477
3514
|
|
|
3478
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3515
|
+
/** @name PalletCrosschainTransferChainConfig (304) */
|
|
3479
3516
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3480
3517
|
readonly isEvm: boolean;
|
|
3481
3518
|
readonly asEvm: {
|
|
@@ -3487,7 +3524,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3487
3524
|
readonly type: 'Evm';
|
|
3488
3525
|
}
|
|
3489
3526
|
|
|
3490
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3527
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (306) */
|
|
3491
3528
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3492
3529
|
readonly activationGasCost: Compact<u128>;
|
|
3493
3530
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3495,56 +3532,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3495
3532
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3496
3533
|
}
|
|
3497
3534
|
|
|
3498
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3535
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (309) */
|
|
3499
3536
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3500
3537
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3501
3538
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3502
3539
|
}
|
|
3503
3540
|
|
|
3504
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3541
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (310) */
|
|
3505
3542
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3506
3543
|
readonly anchorBlockHash: H256;
|
|
3507
3544
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3508
3545
|
}
|
|
3509
3546
|
|
|
3510
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3547
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (312) */
|
|
3511
3548
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3512
3549
|
readonly rlp: Bytes;
|
|
3513
3550
|
}
|
|
3514
3551
|
|
|
3515
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3552
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (316) */
|
|
3516
3553
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3517
3554
|
readonly targetBlockNumber: Compact<u64>;
|
|
3518
3555
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3519
3556
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3520
3557
|
}
|
|
3521
3558
|
|
|
3522
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3559
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (317) */
|
|
3523
3560
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3524
3561
|
readonly nodes: Vec<Bytes>;
|
|
3525
3562
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3526
3563
|
}
|
|
3527
3564
|
|
|
3528
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3565
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (321) */
|
|
3529
3566
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3530
3567
|
readonly transactionIndex: Compact<u64>;
|
|
3531
3568
|
readonly nodeIndexes: Vec<u16>;
|
|
3532
3569
|
}
|
|
3533
3570
|
|
|
3534
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3571
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (326) */
|
|
3535
3572
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3536
3573
|
readonly transactionIndex: Compact<u64>;
|
|
3537
3574
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3538
3575
|
}
|
|
3539
3576
|
|
|
3540
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3577
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (327) */
|
|
3541
3578
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3542
3579
|
readonly address: H160;
|
|
3543
3580
|
readonly topics: Vec<H256>;
|
|
3544
3581
|
readonly data: Bytes;
|
|
3545
3582
|
}
|
|
3546
3583
|
|
|
3547
|
-
/** @name PalletMultisigError (
|
|
3584
|
+
/** @name PalletMultisigError (333) */
|
|
3548
3585
|
interface PalletMultisigError extends Enum {
|
|
3549
3586
|
readonly isMinimumThreshold: boolean;
|
|
3550
3587
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3577,21 +3614,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3577
3614
|
| 'AlreadyStored';
|
|
3578
3615
|
}
|
|
3579
3616
|
|
|
3580
|
-
/** @name PalletProxyProxyDefinition (
|
|
3617
|
+
/** @name PalletProxyProxyDefinition (336) */
|
|
3581
3618
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3582
3619
|
readonly delegate: AccountId32;
|
|
3583
3620
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3584
3621
|
readonly delay: u32;
|
|
3585
3622
|
}
|
|
3586
3623
|
|
|
3587
|
-
/** @name PalletProxyAnnouncement (
|
|
3624
|
+
/** @name PalletProxyAnnouncement (340) */
|
|
3588
3625
|
interface PalletProxyAnnouncement extends Struct {
|
|
3589
3626
|
readonly real: AccountId32;
|
|
3590
3627
|
readonly callHash: H256;
|
|
3591
3628
|
readonly height: u32;
|
|
3592
3629
|
}
|
|
3593
3630
|
|
|
3594
|
-
/** @name PalletProxyError (
|
|
3631
|
+
/** @name PalletProxyError (342) */
|
|
3595
3632
|
interface PalletProxyError extends Enum {
|
|
3596
3633
|
readonly isTooMany: boolean;
|
|
3597
3634
|
readonly isNotFound: boolean;
|
|
@@ -3612,16 +3649,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3612
3649
|
| 'NoSelfProxy';
|
|
3613
3650
|
}
|
|
3614
3651
|
|
|
3615
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3652
|
+
/** @name ArgonPrimitivesTickTicker (343) */
|
|
3616
3653
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3617
3654
|
readonly tickDurationMillis: Compact<u64>;
|
|
3618
3655
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3619
3656
|
}
|
|
3620
3657
|
|
|
3621
|
-
/** @name PalletTicksError (
|
|
3658
|
+
/** @name PalletTicksError (345) */
|
|
3622
3659
|
type PalletTicksError = Null;
|
|
3623
3660
|
|
|
3624
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3661
|
+
/** @name PalletMiningSlotMinerNonceScoring (348) */
|
|
3625
3662
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3626
3663
|
readonly nonce: U256;
|
|
3627
3664
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3629,7 +3666,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3629
3666
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3630
3667
|
}
|
|
3631
3668
|
|
|
3632
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3669
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (360) */
|
|
3633
3670
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3634
3671
|
readonly bidsCount: u32;
|
|
3635
3672
|
readonly bidAmountMin: u128;
|
|
@@ -3637,14 +3674,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3637
3674
|
readonly bidAmountSum: u128;
|
|
3638
3675
|
}
|
|
3639
3676
|
|
|
3640
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3677
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (364) */
|
|
3641
3678
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3642
3679
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3643
3680
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3644
3681
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3645
3682
|
}
|
|
3646
3683
|
|
|
3647
|
-
/** @name PalletMiningSlotError (
|
|
3684
|
+
/** @name PalletMiningSlotError (374) */
|
|
3648
3685
|
interface PalletMiningSlotError extends Enum {
|
|
3649
3686
|
readonly isSlotNotTakingBids: boolean;
|
|
3650
3687
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3655,6 +3692,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3655
3692
|
readonly isInsufficientFunds: boolean;
|
|
3656
3693
|
readonly isBidCannotBeReduced: boolean;
|
|
3657
3694
|
readonly isInvalidBidAmount: boolean;
|
|
3695
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3658
3696
|
readonly isUnrecoverableHold: boolean;
|
|
3659
3697
|
readonly type:
|
|
3660
3698
|
| 'SlotNotTakingBids'
|
|
@@ -3666,10 +3704,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3666
3704
|
| 'InsufficientFunds'
|
|
3667
3705
|
| 'BidCannotBeReduced'
|
|
3668
3706
|
| 'InvalidBidAmount'
|
|
3707
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3669
3708
|
| 'UnrecoverableHold';
|
|
3670
3709
|
}
|
|
3671
3710
|
|
|
3672
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3711
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (375) */
|
|
3673
3712
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3674
3713
|
readonly utxoId: u64;
|
|
3675
3714
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3678,7 +3717,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3678
3717
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3679
3718
|
}
|
|
3680
3719
|
|
|
3681
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3720
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
|
|
3682
3721
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3683
3722
|
readonly isP2wsh: boolean;
|
|
3684
3723
|
readonly asP2wsh: {
|
|
@@ -3687,7 +3726,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3687
3726
|
readonly type: 'P2wsh';
|
|
3688
3727
|
}
|
|
3689
3728
|
|
|
3690
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3729
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
|
|
3691
3730
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3692
3731
|
readonly isBitcoin: boolean;
|
|
3693
3732
|
readonly isTestnet: boolean;
|
|
@@ -3696,7 +3735,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3696
3735
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3697
3736
|
}
|
|
3698
3737
|
|
|
3699
|
-
/** @name PalletBitcoinUtxosError (
|
|
3738
|
+
/** @name PalletBitcoinUtxosError (386) */
|
|
3700
3739
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3701
3740
|
readonly isNoPermissions: boolean;
|
|
3702
3741
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3731,7 +3770,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3731
3770
|
| 'LockAlreadyFunded';
|
|
3732
3771
|
}
|
|
3733
3772
|
|
|
3734
|
-
/** @name ArgonPrimitivesVault (
|
|
3773
|
+
/** @name ArgonPrimitivesVault (387) */
|
|
3735
3774
|
interface ArgonPrimitivesVault extends Struct {
|
|
3736
3775
|
readonly operatorAccountId: AccountId32;
|
|
3737
3776
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3752,13 +3791,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3752
3791
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3753
3792
|
}
|
|
3754
3793
|
|
|
3755
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3794
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
|
|
3756
3795
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3757
3796
|
readonly committedMicronots: Compact<u128>;
|
|
3758
3797
|
readonly encumberedMicronots: Compact<u128>;
|
|
3759
3798
|
}
|
|
3760
3799
|
|
|
3761
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3800
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
|
|
3762
3801
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3763
3802
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3764
3803
|
readonly depth: Compact<u8>;
|
|
@@ -3768,14 +3807,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3768
3807
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3769
3808
|
}
|
|
3770
3809
|
|
|
3771
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3810
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (398) */
|
|
3772
3811
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3773
3812
|
readonly isMain: boolean;
|
|
3774
3813
|
readonly isTest: boolean;
|
|
3775
3814
|
readonly type: 'Main' | 'Test';
|
|
3776
3815
|
}
|
|
3777
3816
|
|
|
3778
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3817
|
+
/** @name PalletVaultsVaultFrameRevenue (407) */
|
|
3779
3818
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3780
3819
|
readonly frameId: Compact<u64>;
|
|
3781
3820
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3795,7 +3834,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3834
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3796
3835
|
}
|
|
3797
3836
|
|
|
3798
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3837
|
+
/** @name PalletVaultsRecentCapacityDrop (410) */
|
|
3799
3838
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3800
3839
|
readonly blockNumber: Compact<u32>;
|
|
3801
3840
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3803,7 +3842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3803
3842
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3804
3843
|
}
|
|
3805
3844
|
|
|
3806
|
-
/** @name PalletVaultsError (
|
|
3845
|
+
/** @name PalletVaultsError (412) */
|
|
3807
3846
|
interface PalletVaultsError extends Enum {
|
|
3808
3847
|
readonly isNoMoreVaultIds: boolean;
|
|
3809
3848
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3837,6 +3876,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3876
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3838
3877
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
3839
3878
|
readonly isAccountAlreadyHasVault: boolean;
|
|
3879
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3840
3880
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
3841
3881
|
readonly type:
|
|
3842
3882
|
| 'NoMoreVaultIds'
|
|
@@ -3871,10 +3911,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3871
3911
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3872
3912
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
3873
3913
|
| 'AccountAlreadyHasVault'
|
|
3914
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3874
3915
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3875
3916
|
}
|
|
3876
3917
|
|
|
3877
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3918
|
+
/** @name PalletBitcoinLocksLockedBitcoin (413) */
|
|
3878
3919
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3879
3920
|
readonly vaultId: Compact<u32>;
|
|
3880
3921
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4288,6 +4329,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4288
4329
|
/** @name PalletBlockRewardsError (481) */
|
|
4289
4330
|
type PalletBlockRewardsError = Null;
|
|
4290
4331
|
|
|
4332
|
+
/** @name PalletMintPendingMintUtxo (482) */
|
|
4333
|
+
interface PalletMintPendingMintUtxo extends Struct {
|
|
4334
|
+
readonly utxoId: Compact<u64>;
|
|
4335
|
+
readonly accountId: AccountId32;
|
|
4336
|
+
readonly remainingAmount: Compact<u128>;
|
|
4337
|
+
readonly maxAmountPerFrame: Compact<u128>;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
/** @name PalletMintMintQueueCursor (484) */
|
|
4341
|
+
interface PalletMintMintQueueCursor extends Struct {
|
|
4342
|
+
readonly payoutStartIndex: Compact<u64>;
|
|
4343
|
+
readonly payoutCursorIndex: Compact<u64>;
|
|
4344
|
+
readonly payoutCursorFrameId: Option<u64>;
|
|
4345
|
+
}
|
|
4346
|
+
|
|
4291
4347
|
/** @name PalletMintMintAction (487) */
|
|
4292
4348
|
interface PalletMintMintAction extends Struct {
|
|
4293
4349
|
readonly argonBurned: u128;
|
|
@@ -4295,20 +4351,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4295
4351
|
readonly bitcoinMinted: u128;
|
|
4296
4352
|
}
|
|
4297
4353
|
|
|
4298
|
-
/** @name PalletMintError (
|
|
4354
|
+
/** @name PalletMintError (489) */
|
|
4299
4355
|
interface PalletMintError extends Enum {
|
|
4300
4356
|
readonly isTooManyPendingMints: boolean;
|
|
4301
4357
|
readonly type: 'TooManyPendingMints';
|
|
4302
4358
|
}
|
|
4303
4359
|
|
|
4304
|
-
/** @name PalletBalancesBalanceLock (
|
|
4360
|
+
/** @name PalletBalancesBalanceLock (491) */
|
|
4305
4361
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4306
4362
|
readonly id: U8aFixed;
|
|
4307
4363
|
readonly amount: u128;
|
|
4308
4364
|
readonly reasons: PalletBalancesReasons;
|
|
4309
4365
|
}
|
|
4310
4366
|
|
|
4311
|
-
/** @name PalletBalancesReasons (
|
|
4367
|
+
/** @name PalletBalancesReasons (492) */
|
|
4312
4368
|
interface PalletBalancesReasons extends Enum {
|
|
4313
4369
|
readonly isFee: boolean;
|
|
4314
4370
|
readonly isMisc: boolean;
|
|
@@ -4316,38 +4372,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4316
4372
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4317
4373
|
}
|
|
4318
4374
|
|
|
4319
|
-
/** @name PalletBalancesReserveData (
|
|
4375
|
+
/** @name PalletBalancesReserveData (495) */
|
|
4320
4376
|
interface PalletBalancesReserveData extends Struct {
|
|
4321
4377
|
readonly id: U8aFixed;
|
|
4322
4378
|
readonly amount: u128;
|
|
4323
4379
|
}
|
|
4324
4380
|
|
|
4325
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4381
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (498) */
|
|
4326
4382
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4327
4383
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4328
4384
|
readonly amount: u128;
|
|
4329
4385
|
}
|
|
4330
4386
|
|
|
4331
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4387
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (501) */
|
|
4332
4388
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4333
4389
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4334
4390
|
readonly amount: u128;
|
|
4335
4391
|
}
|
|
4336
4392
|
|
|
4337
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4393
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (502) */
|
|
4338
4394
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4339
4395
|
readonly isBlockRewards: boolean;
|
|
4340
4396
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4341
4397
|
readonly type: 'BlockRewards';
|
|
4342
4398
|
}
|
|
4343
4399
|
|
|
4344
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4400
|
+
/** @name PalletBlockRewardsFreezeReason (503) */
|
|
4345
4401
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4346
4402
|
readonly isMaturationPeriod: boolean;
|
|
4347
4403
|
readonly type: 'MaturationPeriod';
|
|
4348
4404
|
}
|
|
4349
4405
|
|
|
4350
|
-
/** @name PalletBalancesError (
|
|
4406
|
+
/** @name PalletBalancesError (505) */
|
|
4351
4407
|
interface PalletBalancesError extends Enum {
|
|
4352
4408
|
readonly isVestingBalance: boolean;
|
|
4353
4409
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4376,7 +4432,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4376
4432
|
| 'DeltaZero';
|
|
4377
4433
|
}
|
|
4378
4434
|
|
|
4379
|
-
/** @name PalletTxPauseError (
|
|
4435
|
+
/** @name PalletTxPauseError (507) */
|
|
4380
4436
|
interface PalletTxPauseError extends Enum {
|
|
4381
4437
|
readonly isIsPaused: boolean;
|
|
4382
4438
|
readonly isIsUnpaused: boolean;
|
|
@@ -4385,58 +4441,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4385
4441
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4386
4442
|
}
|
|
4387
4443
|
|
|
4388
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4444
|
+
/** @name PalletTransactionPaymentReleases (508) */
|
|
4389
4445
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4390
4446
|
readonly isV1Ancient: boolean;
|
|
4391
4447
|
readonly isV2: boolean;
|
|
4392
4448
|
readonly type: 'V1Ancient' | 'V2';
|
|
4393
4449
|
}
|
|
4394
4450
|
|
|
4395
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4451
|
+
/** @name FrameSupportStorageNoDrop (509) */
|
|
4396
4452
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4397
4453
|
|
|
4398
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4454
|
+
/** @name FrameSupportTokensFungibleImbalance (510) */
|
|
4399
4455
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4400
4456
|
readonly amount: u128;
|
|
4401
4457
|
}
|
|
4402
4458
|
|
|
4403
|
-
/** @name PalletUtilityError (
|
|
4459
|
+
/** @name PalletUtilityError (511) */
|
|
4404
4460
|
interface PalletUtilityError extends Enum {
|
|
4405
4461
|
readonly isTooManyCalls: boolean;
|
|
4406
4462
|
readonly type: 'TooManyCalls';
|
|
4407
4463
|
}
|
|
4408
4464
|
|
|
4409
|
-
/** @name PalletSudoError (
|
|
4465
|
+
/** @name PalletSudoError (512) */
|
|
4410
4466
|
interface PalletSudoError extends Enum {
|
|
4411
4467
|
readonly isRequireSudo: boolean;
|
|
4412
4468
|
readonly type: 'RequireSudo';
|
|
4413
4469
|
}
|
|
4414
4470
|
|
|
4415
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4471
|
+
/** @name PalletTreasuryFrameVaultCapital (513) */
|
|
4416
4472
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4417
4473
|
readonly frameId: Compact<u64>;
|
|
4418
4474
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4419
4475
|
}
|
|
4420
4476
|
|
|
4421
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4477
|
+
/** @name PalletTreasuryVaultCapital (515) */
|
|
4422
4478
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4423
4479
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4424
4480
|
readonly eligibleBonds: Compact<u32>;
|
|
4425
4481
|
}
|
|
4426
4482
|
|
|
4427
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4483
|
+
/** @name PalletTreasuryBondLotAllocation (517) */
|
|
4428
4484
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4429
4485
|
readonly bondLotId: Compact<u64>;
|
|
4430
4486
|
readonly prorata: u128;
|
|
4431
4487
|
}
|
|
4432
4488
|
|
|
4433
|
-
/** @name
|
|
4489
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (522) */
|
|
4490
|
+
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4491
|
+
readonly frameId: Compact<u64>;
|
|
4492
|
+
readonly totalBonds: Compact<u32>;
|
|
4493
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4494
|
+
}
|
|
4495
|
+
|
|
4496
|
+
/** @name PalletTreasuryBondLotSummary (524) */
|
|
4497
|
+
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4498
|
+
readonly bondLotId: Compact<u64>;
|
|
4499
|
+
readonly bonds: Compact<u32>;
|
|
4500
|
+
}
|
|
4501
|
+
|
|
4502
|
+
/** @name PalletTreasuryBondLot (526) */
|
|
4434
4503
|
interface PalletTreasuryBondLot extends Struct {
|
|
4435
4504
|
readonly owner: AccountId32;
|
|
4436
|
-
readonly
|
|
4505
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4437
4506
|
readonly bonds: Compact<u32>;
|
|
4438
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4439
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4440
4507
|
readonly createdFrameId: Compact<u64>;
|
|
4441
4508
|
readonly participatedFrames: Compact<u32>;
|
|
4442
4509
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4446,13 +4513,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4446
4513
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4447
4514
|
}
|
|
4448
4515
|
|
|
4449
|
-
/** @name
|
|
4450
|
-
interface
|
|
4451
|
-
readonly
|
|
4452
|
-
readonly
|
|
4516
|
+
/** @name PalletTreasuryBondProgram (527) */
|
|
4517
|
+
interface PalletTreasuryBondProgram extends Enum {
|
|
4518
|
+
readonly isVault: boolean;
|
|
4519
|
+
readonly asVault: {
|
|
4520
|
+
readonly vaultId: Compact<u32>;
|
|
4521
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4522
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4523
|
+
} & Struct;
|
|
4524
|
+
readonly isArgonot: boolean;
|
|
4525
|
+
readonly type: 'Vault' | 'Argonot';
|
|
4453
4526
|
}
|
|
4454
4527
|
|
|
4455
|
-
/** @name PalletTreasuryError (
|
|
4528
|
+
/** @name PalletTreasuryError (531) */
|
|
4456
4529
|
interface PalletTreasuryError extends Enum {
|
|
4457
4530
|
readonly isBondPurchaseRejected: boolean;
|
|
4458
4531
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4470,6 +4543,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4470
4543
|
readonly isBonusApprovalExpired: boolean;
|
|
4471
4544
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4472
4545
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4546
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4547
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4473
4548
|
readonly type:
|
|
4474
4549
|
| 'BondPurchaseRejected'
|
|
4475
4550
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4486,56 +4561,66 @@ declare module '@polkadot/types/lookup' {
|
|
|
4486
4561
|
| 'BonusApprovalWrongAccount'
|
|
4487
4562
|
| 'BonusApprovalExpired'
|
|
4488
4563
|
| 'BonusApprovalExistingBondLot'
|
|
4489
|
-
| 'InvalidBonusApprovalSignature'
|
|
4564
|
+
| 'InvalidBonusApprovalSignature'
|
|
4565
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4566
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4490
4567
|
}
|
|
4491
4568
|
|
|
4492
|
-
/** @name PalletFeeControlError (
|
|
4569
|
+
/** @name PalletFeeControlError (532) */
|
|
4493
4570
|
interface PalletFeeControlError extends Enum {
|
|
4494
4571
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4495
4572
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4496
4573
|
}
|
|
4497
4574
|
|
|
4498
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4575
|
+
/** @name PalletOperationalAccountsOperationalAccount (533) */
|
|
4499
4576
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4500
4577
|
readonly vaultAccount: AccountId32;
|
|
4501
|
-
readonly
|
|
4502
|
-
readonly miningBotAccount: AccountId32;
|
|
4578
|
+
readonly miningAccount: AccountId32;
|
|
4503
4579
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4504
|
-
readonly
|
|
4505
|
-
readonly
|
|
4580
|
+
readonly referrer: Option<AccountId32>;
|
|
4581
|
+
readonly isTreasuryCertified: bool;
|
|
4582
|
+
readonly isUpgradedToOperations: bool;
|
|
4583
|
+
readonly uniswapArgonTransfersInAmount: u128;
|
|
4584
|
+
readonly accountBitcoinAmount: u128;
|
|
4585
|
+
readonly accountVaultBondAmount: u128;
|
|
4506
4586
|
readonly vaultCreated: bool;
|
|
4507
|
-
readonly
|
|
4508
|
-
readonly
|
|
4509
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4587
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4588
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4510
4589
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4511
4590
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4512
4591
|
readonly operationalReferralsCount: Compact<u32>;
|
|
4513
|
-
readonly
|
|
4514
|
-
readonly
|
|
4592
|
+
readonly upgradeCodePending: bool;
|
|
4593
|
+
readonly availableUpgradeCodes: Compact<u32>;
|
|
4515
4594
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4516
4595
|
readonly rewardsEarnedAmount: u128;
|
|
4517
4596
|
readonly rewardsCollectedAmount: u128;
|
|
4518
|
-
readonly
|
|
4597
|
+
readonly isOperationallyCertified: bool;
|
|
4519
4598
|
}
|
|
4520
4599
|
|
|
4521
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4600
|
+
/** @name PalletOperationalAccountsRewardsConfig (534) */
|
|
4522
4601
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4523
|
-
readonly
|
|
4524
|
-
readonly
|
|
4602
|
+
readonly operationalActivationReward: Compact<u128>;
|
|
4603
|
+
readonly operationalReferralBonusReward: Compact<u128>;
|
|
4525
4604
|
}
|
|
4526
4605
|
|
|
4527
|
-
/** @name PalletOperationalAccountsError (
|
|
4606
|
+
/** @name PalletOperationalAccountsError (536) */
|
|
4528
4607
|
interface PalletOperationalAccountsError extends Enum {
|
|
4529
4608
|
readonly isAlreadyRegistered: boolean;
|
|
4530
4609
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4531
4610
|
readonly isAccountAlreadyLinked: boolean;
|
|
4532
4611
|
readonly isInvalidAccountProof: boolean;
|
|
4533
4612
|
readonly isNotOperationalAccount: boolean;
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4613
|
+
readonly isRegistrationInviteRequired: boolean;
|
|
4614
|
+
readonly isReferrerNotOperationalAccount: boolean;
|
|
4615
|
+
readonly isRegisteredReferrerMismatch: boolean;
|
|
4616
|
+
readonly isNotTreasuryCertified: boolean;
|
|
4617
|
+
readonly isTreasuryCertificationNoLongerMet: boolean;
|
|
4618
|
+
readonly isAccountAlreadyUpgraded: boolean;
|
|
4619
|
+
readonly isNoAvailableUpgrades: boolean;
|
|
4620
|
+
readonly isCannotUpgradeSelf: boolean;
|
|
4536
4621
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4537
4622
|
readonly isEncryptedServerTooLong: boolean;
|
|
4538
|
-
readonly
|
|
4623
|
+
readonly isNotReferrerOfAccount: boolean;
|
|
4539
4624
|
readonly isNoPendingRewards: boolean;
|
|
4540
4625
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4541
4626
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4549,11 +4634,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
4549
4634
|
| 'AccountAlreadyLinked'
|
|
4550
4635
|
| 'InvalidAccountProof'
|
|
4551
4636
|
| 'NotOperationalAccount'
|
|
4552
|
-
| '
|
|
4553
|
-
| '
|
|
4637
|
+
| 'RegistrationInviteRequired'
|
|
4638
|
+
| 'ReferrerNotOperationalAccount'
|
|
4639
|
+
| 'RegisteredReferrerMismatch'
|
|
4640
|
+
| 'NotTreasuryCertified'
|
|
4641
|
+
| 'TreasuryCertificationNoLongerMet'
|
|
4642
|
+
| 'AccountAlreadyUpgraded'
|
|
4643
|
+
| 'NoAvailableUpgrades'
|
|
4644
|
+
| 'CannotUpgradeSelf'
|
|
4554
4645
|
| 'NoProgressUpdateProvided'
|
|
4555
4646
|
| 'EncryptedServerTooLong'
|
|
4556
|
-
| '
|
|
4647
|
+
| 'NotReferrerOfAccount'
|
|
4557
4648
|
| 'NoPendingRewards'
|
|
4558
4649
|
| 'RewardClaimBelowMinimum'
|
|
4559
4650
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4563,12 +4654,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4563
4654
|
| 'NotEligibleForActivation';
|
|
4564
4655
|
}
|
|
4565
4656
|
|
|
4566
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4657
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (537) */
|
|
4567
4658
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4568
4659
|
readonly slot: Compact<u64>;
|
|
4569
4660
|
}
|
|
4570
4661
|
|
|
4571
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4662
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (538) */
|
|
4572
4663
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4573
4664
|
readonly blockNumber: Compact<u64>;
|
|
4574
4665
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4578,44 +4669,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4578
4669
|
readonly receiptsRoot: H256;
|
|
4579
4670
|
}
|
|
4580
4671
|
|
|
4581
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4672
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (539) */
|
|
4582
4673
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4583
4674
|
readonly root: H256;
|
|
4584
4675
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4585
4676
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4586
4677
|
}
|
|
4587
4678
|
|
|
4588
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4679
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (541) */
|
|
4589
4680
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4590
4681
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4591
4682
|
}
|
|
4592
4683
|
|
|
4593
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4684
|
+
/** @name SnowbridgeAmclBls381Ecp (542) */
|
|
4594
4685
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4595
4686
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4596
4687
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4597
4688
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4598
4689
|
}
|
|
4599
4690
|
|
|
4600
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4691
|
+
/** @name SnowbridgeAmclBls381Fp (543) */
|
|
4601
4692
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4602
4693
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4603
4694
|
readonly xes: i32;
|
|
4604
4695
|
}
|
|
4605
4696
|
|
|
4606
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4697
|
+
/** @name SnowbridgeAmclBls381Big (544) */
|
|
4607
4698
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4608
4699
|
readonly w: Vec<i32>;
|
|
4609
4700
|
}
|
|
4610
4701
|
|
|
4611
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4702
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (548) */
|
|
4612
4703
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4613
4704
|
readonly isMainnet: boolean;
|
|
4614
4705
|
readonly isMinimal: boolean;
|
|
4615
4706
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4616
4707
|
}
|
|
4617
4708
|
|
|
4618
|
-
/** @name PalletEthereumVerifierError (
|
|
4709
|
+
/** @name PalletEthereumVerifierError (549) */
|
|
4619
4710
|
interface PalletEthereumVerifierError extends Enum {
|
|
4620
4711
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4621
4712
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4668,21 +4759,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4668
4759
|
| 'Halted';
|
|
4669
4760
|
}
|
|
4670
4761
|
|
|
4671
|
-
/** @name
|
|
4762
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (550) */
|
|
4763
|
+
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4764
|
+
readonly microgonsIn: u128;
|
|
4765
|
+
readonly microgonsOut: u128;
|
|
4766
|
+
readonly argonTransfersInCount: Compact<u32>;
|
|
4767
|
+
readonly argonTransfersOutCount: Compact<u32>;
|
|
4768
|
+
readonly micronotsIn: u128;
|
|
4769
|
+
readonly micronotsOut: u128;
|
|
4770
|
+
readonly argonotTransfersInCount: Compact<u32>;
|
|
4771
|
+
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4772
|
+
}
|
|
4773
|
+
|
|
4774
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (552) */
|
|
4672
4775
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4673
4776
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4674
4777
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4675
4778
|
readonly totalWeight: u128;
|
|
4676
4779
|
}
|
|
4677
4780
|
|
|
4678
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4781
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (554) */
|
|
4679
4782
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4680
4783
|
readonly accountId: AccountId32;
|
|
4681
4784
|
readonly signer: H160;
|
|
4682
4785
|
readonly weight: u128;
|
|
4683
4786
|
}
|
|
4684
4787
|
|
|
4685
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4788
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (559) */
|
|
4686
4789
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4687
4790
|
readonly approvingCouncilHash: H256;
|
|
4688
4791
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4694,7 +4797,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4694
4797
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4695
4798
|
}
|
|
4696
4799
|
|
|
4697
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4800
|
+
/** @name PalletCrosschainTransferMintingAuthority (564) */
|
|
4698
4801
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4699
4802
|
readonly accountId: AccountId32;
|
|
4700
4803
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4711,7 +4814,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4711
4814
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4712
4815
|
}
|
|
4713
4816
|
|
|
4714
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4817
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (565) */
|
|
4715
4818
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4716
4819
|
readonly isPendingActivation: boolean;
|
|
4717
4820
|
readonly isActive: boolean;
|
|
@@ -4719,7 +4822,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4719
4822
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4720
4823
|
}
|
|
4721
4824
|
|
|
4722
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4825
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (567) */
|
|
4723
4826
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4724
4827
|
readonly argonAccountId: AccountId32;
|
|
4725
4828
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4738,7 +4841,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4738
4841
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4739
4842
|
}
|
|
4740
4843
|
|
|
4741
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4844
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (569) */
|
|
4742
4845
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4743
4846
|
readonly microgonCollateral: u128;
|
|
4744
4847
|
readonly micronotCollateral: u128;
|
|
@@ -4746,27 +4849,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4746
4849
|
readonly signature: U8aFixed;
|
|
4747
4850
|
}
|
|
4748
4851
|
|
|
4749
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4852
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (573) */
|
|
4750
4853
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4751
4854
|
readonly isStarted: boolean;
|
|
4752
4855
|
readonly isReady: boolean;
|
|
4753
4856
|
readonly type: 'Started' | 'Ready';
|
|
4754
4857
|
}
|
|
4755
4858
|
|
|
4756
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4859
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (575) */
|
|
4757
4860
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4758
4861
|
readonly transferId: H256;
|
|
4759
4862
|
readonly remainingCollateral: u128;
|
|
4760
4863
|
readonly remainingMintingAuthorityTip: u128;
|
|
4761
4864
|
}
|
|
4762
4865
|
|
|
4763
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4866
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (577) */
|
|
4764
4867
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4765
4868
|
readonly argonCirculation: u128;
|
|
4766
4869
|
readonly argonotCirculation: u128;
|
|
4767
4870
|
}
|
|
4768
4871
|
|
|
4769
|
-
/** @name PalletCrosschainTransferError (
|
|
4872
|
+
/** @name PalletCrosschainTransferError (578) */
|
|
4770
4873
|
interface PalletCrosschainTransferError extends Enum {
|
|
4771
4874
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4772
4875
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4879,45 +4982,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4879
4982
|
| 'TooManyPendingTransferOuts';
|
|
4880
4983
|
}
|
|
4881
4984
|
|
|
4882
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4985
|
+
/** @name FrameSystemExtensionsAuthorizeCall (581) */
|
|
4883
4986
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4884
4987
|
|
|
4885
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4988
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (582) */
|
|
4886
4989
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4887
4990
|
|
|
4888
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4991
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (583) */
|
|
4889
4992
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4890
4993
|
|
|
4891
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4994
|
+
/** @name FrameSystemExtensionsCheckTxVersion (584) */
|
|
4892
4995
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4893
4996
|
|
|
4894
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4997
|
+
/** @name FrameSystemExtensionsCheckGenesis (585) */
|
|
4895
4998
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4896
4999
|
|
|
4897
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5000
|
+
/** @name FrameSystemExtensionsCheckNonce (588) */
|
|
4898
5001
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4899
5002
|
|
|
4900
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5003
|
+
/** @name FrameSystemExtensionsCheckWeight (589) */
|
|
4901
5004
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4902
5005
|
|
|
4903
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5006
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (590) */
|
|
4904
5007
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4905
5008
|
|
|
4906
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5009
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (591) */
|
|
4907
5010
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4908
5011
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4909
5012
|
}
|
|
4910
5013
|
|
|
4911
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5014
|
+
/** @name FrameMetadataHashExtensionMode (592) */
|
|
4912
5015
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4913
5016
|
readonly isDisabled: boolean;
|
|
4914
5017
|
readonly isEnabled: boolean;
|
|
4915
5018
|
readonly type: 'Disabled' | 'Enabled';
|
|
4916
5019
|
}
|
|
4917
5020
|
|
|
4918
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5021
|
+
/** @name FrameSystemExtensionsWeightReclaim (593) */
|
|
4919
5022
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4920
5023
|
|
|
4921
|
-
/** @name ArgonRuntimeRuntime (
|
|
5024
|
+
/** @name ArgonRuntimeRuntime (595) */
|
|
4922
5025
|
type ArgonRuntimeRuntime = Null;
|
|
4923
5026
|
} // declare module
|