@argonprotocol/mainchain 1.4.9-dev.bc5f3764 → 1.4.9-dev.cf22b187
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 +592 -381
- package/browser/index.js +18 -6
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +18 -6
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +592 -381
- package/lib/index.d.ts +592 -381
- package/lib/index.js +18 -6
- 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 +37 -9
- package/src/interfaces/augment-api-events.ts +107 -30
- package/src/interfaces/augment-api-query.ts +76 -51
- package/src/interfaces/augment-api-tx.ts +26 -12
- package/src/interfaces/lookup.ts +341 -260
- package/src/interfaces/registry.ts +12 -2
- package/src/interfaces/types-lookup.ts +359 -266
|
@@ -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,7 +2995,7 @@ 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: {
|
|
@@ -2974,10 +3008,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2974
3008
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2975
3009
|
}
|
|
2976
3010
|
|
|
2977
|
-
/** @name PalletMintCall (
|
|
3011
|
+
/** @name PalletMintCall (263) */
|
|
2978
3012
|
type PalletMintCall = Null;
|
|
2979
3013
|
|
|
2980
|
-
/** @name PalletBalancesCall (
|
|
3014
|
+
/** @name PalletBalancesCall (264) */
|
|
2981
3015
|
interface PalletBalancesCall extends Enum {
|
|
2982
3016
|
readonly isTransferAllowDeath: boolean;
|
|
2983
3017
|
readonly asTransferAllowDeath: {
|
|
@@ -3036,14 +3070,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
3070
|
| 'Burn';
|
|
3037
3071
|
}
|
|
3038
3072
|
|
|
3039
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3073
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3040
3074
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3041
3075
|
readonly isIncrease: boolean;
|
|
3042
3076
|
readonly isDecrease: boolean;
|
|
3043
3077
|
readonly type: 'Increase' | 'Decrease';
|
|
3044
3078
|
}
|
|
3045
3079
|
|
|
3046
|
-
/** @name PalletTxPauseCall (
|
|
3080
|
+
/** @name PalletTxPauseCall (267) */
|
|
3047
3081
|
interface PalletTxPauseCall extends Enum {
|
|
3048
3082
|
readonly isPause: boolean;
|
|
3049
3083
|
readonly asPause: {
|
|
@@ -3056,7 +3090,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3056
3090
|
readonly type: 'Pause' | 'Unpause';
|
|
3057
3091
|
}
|
|
3058
3092
|
|
|
3059
|
-
/** @name PalletUtilityCall (
|
|
3093
|
+
/** @name PalletUtilityCall (268) */
|
|
3060
3094
|
interface PalletUtilityCall extends Enum {
|
|
3061
3095
|
readonly isBatch: boolean;
|
|
3062
3096
|
readonly asBatch: {
|
|
@@ -3106,7 +3140,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3106
3140
|
| 'DispatchAsFallible';
|
|
3107
3141
|
}
|
|
3108
3142
|
|
|
3109
|
-
/** @name PalletSudoCall (
|
|
3143
|
+
/** @name PalletSudoCall (270) */
|
|
3110
3144
|
interface PalletSudoCall extends Enum {
|
|
3111
3145
|
readonly isSudo: boolean;
|
|
3112
3146
|
readonly asSudo: {
|
|
@@ -3130,7 +3164,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3130
3164
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3131
3165
|
}
|
|
3132
3166
|
|
|
3133
|
-
/** @name PalletTreasuryCall (
|
|
3167
|
+
/** @name PalletTreasuryCall (271) */
|
|
3134
3168
|
interface PalletTreasuryCall extends Enum {
|
|
3135
3169
|
readonly isBuyBonds: boolean;
|
|
3136
3170
|
readonly asBuyBonds: {
|
|
@@ -3142,10 +3176,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3142
3176
|
readonly asLiquidateBondLot: {
|
|
3143
3177
|
readonly bondLotId: u64;
|
|
3144
3178
|
} & Struct;
|
|
3145
|
-
readonly
|
|
3179
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3180
|
+
readonly asBuyArgonotBonds: {
|
|
3181
|
+
readonly bonds: u32;
|
|
3182
|
+
} & Struct;
|
|
3183
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3146
3184
|
}
|
|
3147
3185
|
|
|
3148
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3186
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3149
3187
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3150
3188
|
readonly vaultId: Compact<u32>;
|
|
3151
3189
|
readonly beneficiary: AccountId32;
|
|
@@ -3153,16 +3191,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
3153
3191
|
readonly signature: SpRuntimeMultiSignature;
|
|
3154
3192
|
}
|
|
3155
3193
|
|
|
3156
|
-
/** @name PalletOperationalAccountsCall (
|
|
3194
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3157
3195
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3158
3196
|
readonly isRegister: boolean;
|
|
3159
3197
|
readonly asRegister: {
|
|
3160
3198
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3161
3199
|
} & Struct;
|
|
3200
|
+
readonly isUpgradeAccount: boolean;
|
|
3201
|
+
readonly asUpgradeAccount: {
|
|
3202
|
+
readonly accountId: AccountId32;
|
|
3203
|
+
} & Struct;
|
|
3162
3204
|
readonly isSetRewardConfig: boolean;
|
|
3163
3205
|
readonly asSetRewardConfig: {
|
|
3164
|
-
readonly
|
|
3165
|
-
readonly
|
|
3206
|
+
readonly operationalActivationReward: u128;
|
|
3207
|
+
readonly operationalReferralBonusReward: u128;
|
|
3166
3208
|
} & Struct;
|
|
3167
3209
|
readonly isForceSetProgress: boolean;
|
|
3168
3210
|
readonly asForceSetProgress: {
|
|
@@ -3170,9 +3212,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
3170
3212
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3171
3213
|
readonly updateOperationalProgress: bool;
|
|
3172
3214
|
} & Struct;
|
|
3173
|
-
readonly
|
|
3174
|
-
readonly
|
|
3175
|
-
readonly
|
|
3215
|
+
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3216
|
+
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3217
|
+
readonly downstreamAccount: AccountId32;
|
|
3176
3218
|
readonly encryptedServer: Bytes;
|
|
3177
3219
|
} & Struct;
|
|
3178
3220
|
readonly isActivate: boolean;
|
|
@@ -3182,61 +3224,52 @@ declare module '@polkadot/types/lookup' {
|
|
|
3182
3224
|
} & Struct;
|
|
3183
3225
|
readonly type:
|
|
3184
3226
|
| 'Register'
|
|
3227
|
+
| 'UpgradeAccount'
|
|
3185
3228
|
| 'SetRewardConfig'
|
|
3186
3229
|
| 'ForceSetProgress'
|
|
3187
|
-
| '
|
|
3230
|
+
| 'SetEncryptedServerForDownstreamAccount'
|
|
3188
3231
|
| 'Activate'
|
|
3189
3232
|
| 'ClaimRewards';
|
|
3190
3233
|
}
|
|
3191
3234
|
|
|
3192
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3235
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3193
3236
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3194
3237
|
readonly isV1: boolean;
|
|
3195
3238
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3196
3239
|
readonly type: 'V1';
|
|
3197
3240
|
}
|
|
3198
3241
|
|
|
3199
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3242
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3200
3243
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3201
3244
|
readonly operationalAccount: AccountId32;
|
|
3202
3245
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
3203
3246
|
readonly operationalAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3204
3247
|
readonly vaultAccount: AccountId32;
|
|
3205
|
-
readonly
|
|
3206
|
-
readonly miningBotAccount: AccountId32;
|
|
3248
|
+
readonly miningAccount: AccountId32;
|
|
3207
3249
|
readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3208
|
-
readonly
|
|
3209
|
-
readonly
|
|
3210
|
-
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3250
|
+
readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
|
|
3251
|
+
readonly referrer: Option<AccountId32>;
|
|
3211
3252
|
}
|
|
3212
3253
|
|
|
3213
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3254
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3214
3255
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3215
3256
|
|
|
3216
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3257
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3217
3258
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3218
3259
|
readonly signature: SpRuntimeMultiSignature;
|
|
3219
3260
|
}
|
|
3220
3261
|
|
|
3221
|
-
/** @name
|
|
3222
|
-
interface PalletOperationalAccountsReferralProof extends Struct {
|
|
3223
|
-
readonly referralCode: U8aFixed;
|
|
3224
|
-
readonly referralSignature: U8aFixed;
|
|
3225
|
-
readonly sponsor: AccountId32;
|
|
3226
|
-
readonly expiresAtFrame: Compact<u64>;
|
|
3227
|
-
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3228
|
-
}
|
|
3229
|
-
|
|
3230
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (280) */
|
|
3262
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (279) */
|
|
3231
3263
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3232
|
-
readonly
|
|
3264
|
+
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3265
|
+
readonly accountBitcoinAmount: Option<u128>;
|
|
3266
|
+
readonly accountVaultBondAmount: Option<u128>;
|
|
3233
3267
|
readonly vaultCreated: Option<bool>;
|
|
3234
|
-
readonly
|
|
3235
|
-
readonly
|
|
3236
|
-
readonly observedMiningSeatTotal: Option<u32>;
|
|
3268
|
+
readonly vaultBitcoinAmount: Option<u128>;
|
|
3269
|
+
readonly miningSeatCount: Option<u32>;
|
|
3237
3270
|
}
|
|
3238
3271
|
|
|
3239
|
-
/** @name PalletEthereumVerifierCall (
|
|
3272
|
+
/** @name PalletEthereumVerifierCall (281) */
|
|
3240
3273
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3241
3274
|
readonly isForceCheckpoint: boolean;
|
|
3242
3275
|
readonly asForceCheckpoint: {
|
|
@@ -3264,7 +3297,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3297
|
| 'SetOperatingMode';
|
|
3265
3298
|
}
|
|
3266
3299
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3300
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (282) */
|
|
3268
3301
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3269
3302
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3270
3303
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3273,7 +3306,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3273
3306
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3274
3307
|
}
|
|
3275
3308
|
|
|
3276
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3309
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (283) */
|
|
3277
3310
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3278
3311
|
readonly slot: u64;
|
|
3279
3312
|
readonly proposerIndex: u64;
|
|
@@ -3282,22 +3315,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3282
3315
|
readonly bodyRoot: H256;
|
|
3283
3316
|
}
|
|
3284
3317
|
|
|
3285
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3318
|
+
/** @name PalletEthereumVerifierSyncCommittee (284) */
|
|
3286
3319
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3287
3320
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3288
3321
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3289
3322
|
}
|
|
3290
3323
|
|
|
3291
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3324
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (286) */
|
|
3292
3325
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3293
3326
|
|
|
3294
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3327
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (290) */
|
|
3295
3328
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3296
3329
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3297
3330
|
readonly executionBranch: Vec<H256>;
|
|
3298
3331
|
}
|
|
3299
3332
|
|
|
3300
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3333
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
|
|
3301
3334
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3302
3335
|
readonly isCapella: boolean;
|
|
3303
3336
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3306,7 +3339,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3306
3339
|
readonly type: 'Capella' | 'Deneb';
|
|
3307
3340
|
}
|
|
3308
3341
|
|
|
3309
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3342
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
|
|
3310
3343
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3311
3344
|
readonly parentHash: H256;
|
|
3312
3345
|
readonly feeRecipient: H160;
|
|
@@ -3325,7 +3358,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3325
3358
|
readonly withdrawalsRoot: H256;
|
|
3326
3359
|
}
|
|
3327
3360
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3361
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
|
|
3329
3362
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3330
3363
|
readonly parentHash: H256;
|
|
3331
3364
|
readonly feeRecipient: H160;
|
|
@@ -3346,7 +3379,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3379
|
readonly excessBlobGas: u64;
|
|
3347
3380
|
}
|
|
3348
3381
|
|
|
3349
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3382
|
+
/** @name PalletEthereumVerifierForkVersions (294) */
|
|
3350
3383
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3351
3384
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3352
3385
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3357,13 +3390,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3357
3390
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3358
3391
|
}
|
|
3359
3392
|
|
|
3360
|
-
/** @name PalletEthereumVerifierFork (
|
|
3393
|
+
/** @name PalletEthereumVerifierFork (295) */
|
|
3361
3394
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3362
3395
|
readonly version: U8aFixed;
|
|
3363
3396
|
readonly epoch: Compact<u64>;
|
|
3364
3397
|
}
|
|
3365
3398
|
|
|
3366
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3399
|
+
/** @name PalletEthereumVerifierUpdate (296) */
|
|
3367
3400
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3368
3401
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3402
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3374,22 +3407,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3407
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3375
3408
|
}
|
|
3376
3409
|
|
|
3377
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3410
|
+
/** @name PalletEthereumVerifierSyncAggregate (297) */
|
|
3378
3411
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3379
3412
|
readonly syncCommitteeBits: Bytes;
|
|
3380
3413
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3381
3414
|
}
|
|
3382
3415
|
|
|
3383
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3416
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (299) */
|
|
3384
3417
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3385
3418
|
|
|
3386
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3419
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (302) */
|
|
3387
3420
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3388
3421
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3389
3422
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3390
3423
|
}
|
|
3391
3424
|
|
|
3392
|
-
/** @name PalletCrosschainTransferCall (
|
|
3425
|
+
/** @name PalletCrosschainTransferCall (303) */
|
|
3393
3426
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3394
3427
|
readonly isSetChainConfig: boolean;
|
|
3395
3428
|
readonly asSetChainConfig: {
|
|
@@ -3479,7 +3512,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3479
3512
|
| 'CollateralizeTransfer';
|
|
3480
3513
|
}
|
|
3481
3514
|
|
|
3482
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3515
|
+
/** @name PalletCrosschainTransferChainConfig (304) */
|
|
3483
3516
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3484
3517
|
readonly isEvm: boolean;
|
|
3485
3518
|
readonly asEvm: {
|
|
@@ -3491,7 +3524,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3491
3524
|
readonly type: 'Evm';
|
|
3492
3525
|
}
|
|
3493
3526
|
|
|
3494
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3527
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (306) */
|
|
3495
3528
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3496
3529
|
readonly activationGasCost: Compact<u128>;
|
|
3497
3530
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3499,56 +3532,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3499
3532
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3500
3533
|
}
|
|
3501
3534
|
|
|
3502
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3535
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (309) */
|
|
3503
3536
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3504
3537
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3505
3538
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3506
3539
|
}
|
|
3507
3540
|
|
|
3508
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3541
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (310) */
|
|
3509
3542
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3510
3543
|
readonly anchorBlockHash: H256;
|
|
3511
3544
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3512
3545
|
}
|
|
3513
3546
|
|
|
3514
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3547
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (312) */
|
|
3515
3548
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3516
3549
|
readonly rlp: Bytes;
|
|
3517
3550
|
}
|
|
3518
3551
|
|
|
3519
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3552
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (316) */
|
|
3520
3553
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3521
3554
|
readonly targetBlockNumber: Compact<u64>;
|
|
3522
3555
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3523
3556
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3524
3557
|
}
|
|
3525
3558
|
|
|
3526
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3559
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (317) */
|
|
3527
3560
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3528
3561
|
readonly nodes: Vec<Bytes>;
|
|
3529
3562
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3530
3563
|
}
|
|
3531
3564
|
|
|
3532
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3565
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (321) */
|
|
3533
3566
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3534
3567
|
readonly transactionIndex: Compact<u64>;
|
|
3535
3568
|
readonly nodeIndexes: Vec<u16>;
|
|
3536
3569
|
}
|
|
3537
3570
|
|
|
3538
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3571
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (326) */
|
|
3539
3572
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3540
3573
|
readonly transactionIndex: Compact<u64>;
|
|
3541
3574
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3542
3575
|
}
|
|
3543
3576
|
|
|
3544
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3577
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (327) */
|
|
3545
3578
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3546
3579
|
readonly address: H160;
|
|
3547
3580
|
readonly topics: Vec<H256>;
|
|
3548
3581
|
readonly data: Bytes;
|
|
3549
3582
|
}
|
|
3550
3583
|
|
|
3551
|
-
/** @name PalletMultisigError (
|
|
3584
|
+
/** @name PalletMultisigError (333) */
|
|
3552
3585
|
interface PalletMultisigError extends Enum {
|
|
3553
3586
|
readonly isMinimumThreshold: boolean;
|
|
3554
3587
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3581,21 +3614,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3581
3614
|
| 'AlreadyStored';
|
|
3582
3615
|
}
|
|
3583
3616
|
|
|
3584
|
-
/** @name PalletProxyProxyDefinition (
|
|
3617
|
+
/** @name PalletProxyProxyDefinition (336) */
|
|
3585
3618
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3586
3619
|
readonly delegate: AccountId32;
|
|
3587
3620
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3588
3621
|
readonly delay: u32;
|
|
3589
3622
|
}
|
|
3590
3623
|
|
|
3591
|
-
/** @name PalletProxyAnnouncement (
|
|
3624
|
+
/** @name PalletProxyAnnouncement (340) */
|
|
3592
3625
|
interface PalletProxyAnnouncement extends Struct {
|
|
3593
3626
|
readonly real: AccountId32;
|
|
3594
3627
|
readonly callHash: H256;
|
|
3595
3628
|
readonly height: u32;
|
|
3596
3629
|
}
|
|
3597
3630
|
|
|
3598
|
-
/** @name PalletProxyError (
|
|
3631
|
+
/** @name PalletProxyError (342) */
|
|
3599
3632
|
interface PalletProxyError extends Enum {
|
|
3600
3633
|
readonly isTooMany: boolean;
|
|
3601
3634
|
readonly isNotFound: boolean;
|
|
@@ -3616,16 +3649,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3616
3649
|
| 'NoSelfProxy';
|
|
3617
3650
|
}
|
|
3618
3651
|
|
|
3619
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3652
|
+
/** @name ArgonPrimitivesTickTicker (343) */
|
|
3620
3653
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3621
3654
|
readonly tickDurationMillis: Compact<u64>;
|
|
3622
3655
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3623
3656
|
}
|
|
3624
3657
|
|
|
3625
|
-
/** @name PalletTicksError (
|
|
3658
|
+
/** @name PalletTicksError (345) */
|
|
3626
3659
|
type PalletTicksError = Null;
|
|
3627
3660
|
|
|
3628
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3661
|
+
/** @name PalletMiningSlotMinerNonceScoring (348) */
|
|
3629
3662
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3630
3663
|
readonly nonce: U256;
|
|
3631
3664
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3633,7 +3666,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3633
3666
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3634
3667
|
}
|
|
3635
3668
|
|
|
3636
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3669
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (360) */
|
|
3637
3670
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3638
3671
|
readonly bidsCount: u32;
|
|
3639
3672
|
readonly bidAmountMin: u128;
|
|
@@ -3641,14 +3674,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3641
3674
|
readonly bidAmountSum: u128;
|
|
3642
3675
|
}
|
|
3643
3676
|
|
|
3644
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3677
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (364) */
|
|
3645
3678
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3646
3679
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3647
3680
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3648
3681
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3649
3682
|
}
|
|
3650
3683
|
|
|
3651
|
-
/** @name PalletMiningSlotError (
|
|
3684
|
+
/** @name PalletMiningSlotError (374) */
|
|
3652
3685
|
interface PalletMiningSlotError extends Enum {
|
|
3653
3686
|
readonly isSlotNotTakingBids: boolean;
|
|
3654
3687
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3675,7 +3708,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3675
3708
|
| 'UnrecoverableHold';
|
|
3676
3709
|
}
|
|
3677
3710
|
|
|
3678
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3711
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (375) */
|
|
3679
3712
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3680
3713
|
readonly utxoId: u64;
|
|
3681
3714
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3684,7 +3717,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3684
3717
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3685
3718
|
}
|
|
3686
3719
|
|
|
3687
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3720
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
|
|
3688
3721
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3689
3722
|
readonly isP2wsh: boolean;
|
|
3690
3723
|
readonly asP2wsh: {
|
|
@@ -3693,7 +3726,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3693
3726
|
readonly type: 'P2wsh';
|
|
3694
3727
|
}
|
|
3695
3728
|
|
|
3696
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3729
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
|
|
3697
3730
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3698
3731
|
readonly isBitcoin: boolean;
|
|
3699
3732
|
readonly isTestnet: boolean;
|
|
@@ -3702,7 +3735,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3702
3735
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3703
3736
|
}
|
|
3704
3737
|
|
|
3705
|
-
/** @name PalletBitcoinUtxosError (
|
|
3738
|
+
/** @name PalletBitcoinUtxosError (386) */
|
|
3706
3739
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3707
3740
|
readonly isNoPermissions: boolean;
|
|
3708
3741
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3737,7 +3770,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3737
3770
|
| 'LockAlreadyFunded';
|
|
3738
3771
|
}
|
|
3739
3772
|
|
|
3740
|
-
/** @name ArgonPrimitivesVault (
|
|
3773
|
+
/** @name ArgonPrimitivesVault (387) */
|
|
3741
3774
|
interface ArgonPrimitivesVault extends Struct {
|
|
3742
3775
|
readonly operatorAccountId: AccountId32;
|
|
3743
3776
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3758,13 +3791,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3758
3791
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3759
3792
|
}
|
|
3760
3793
|
|
|
3761
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3794
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
|
|
3762
3795
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3763
3796
|
readonly committedMicronots: Compact<u128>;
|
|
3764
3797
|
readonly encumberedMicronots: Compact<u128>;
|
|
3765
3798
|
}
|
|
3766
3799
|
|
|
3767
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3800
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
|
|
3768
3801
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3769
3802
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3770
3803
|
readonly depth: Compact<u8>;
|
|
@@ -3774,14 +3807,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3774
3807
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3775
3808
|
}
|
|
3776
3809
|
|
|
3777
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3810
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (398) */
|
|
3778
3811
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3779
3812
|
readonly isMain: boolean;
|
|
3780
3813
|
readonly isTest: boolean;
|
|
3781
3814
|
readonly type: 'Main' | 'Test';
|
|
3782
3815
|
}
|
|
3783
3816
|
|
|
3784
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3817
|
+
/** @name PalletVaultsVaultFrameRevenue (407) */
|
|
3785
3818
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3786
3819
|
readonly frameId: Compact<u64>;
|
|
3787
3820
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3801,7 +3834,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3801
3834
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3802
3835
|
}
|
|
3803
3836
|
|
|
3804
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3837
|
+
/** @name PalletVaultsRecentCapacityDrop (410) */
|
|
3805
3838
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3806
3839
|
readonly blockNumber: Compact<u32>;
|
|
3807
3840
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3809,7 +3842,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3809
3842
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3810
3843
|
}
|
|
3811
3844
|
|
|
3812
|
-
/** @name PalletVaultsError (
|
|
3845
|
+
/** @name PalletVaultsError (412) */
|
|
3813
3846
|
interface PalletVaultsError extends Enum {
|
|
3814
3847
|
readonly isNoMoreVaultIds: boolean;
|
|
3815
3848
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3882,7 +3915,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3882
3915
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3883
3916
|
}
|
|
3884
3917
|
|
|
3885
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3918
|
+
/** @name PalletBitcoinLocksLockedBitcoin (413) */
|
|
3886
3919
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3887
3920
|
readonly vaultId: Compact<u32>;
|
|
3888
3921
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -4296,6 +4329,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4296
4329
|
/** @name PalletBlockRewardsError (481) */
|
|
4297
4330
|
type PalletBlockRewardsError = Null;
|
|
4298
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
|
+
|
|
4299
4347
|
/** @name PalletMintMintAction (487) */
|
|
4300
4348
|
interface PalletMintMintAction extends Struct {
|
|
4301
4349
|
readonly argonBurned: u128;
|
|
@@ -4303,20 +4351,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4303
4351
|
readonly bitcoinMinted: u128;
|
|
4304
4352
|
}
|
|
4305
4353
|
|
|
4306
|
-
/** @name PalletMintError (
|
|
4354
|
+
/** @name PalletMintError (489) */
|
|
4307
4355
|
interface PalletMintError extends Enum {
|
|
4308
4356
|
readonly isTooManyPendingMints: boolean;
|
|
4309
4357
|
readonly type: 'TooManyPendingMints';
|
|
4310
4358
|
}
|
|
4311
4359
|
|
|
4312
|
-
/** @name PalletBalancesBalanceLock (
|
|
4360
|
+
/** @name PalletBalancesBalanceLock (491) */
|
|
4313
4361
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4314
4362
|
readonly id: U8aFixed;
|
|
4315
4363
|
readonly amount: u128;
|
|
4316
4364
|
readonly reasons: PalletBalancesReasons;
|
|
4317
4365
|
}
|
|
4318
4366
|
|
|
4319
|
-
/** @name PalletBalancesReasons (
|
|
4367
|
+
/** @name PalletBalancesReasons (492) */
|
|
4320
4368
|
interface PalletBalancesReasons extends Enum {
|
|
4321
4369
|
readonly isFee: boolean;
|
|
4322
4370
|
readonly isMisc: boolean;
|
|
@@ -4324,38 +4372,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4324
4372
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4325
4373
|
}
|
|
4326
4374
|
|
|
4327
|
-
/** @name PalletBalancesReserveData (
|
|
4375
|
+
/** @name PalletBalancesReserveData (495) */
|
|
4328
4376
|
interface PalletBalancesReserveData extends Struct {
|
|
4329
4377
|
readonly id: U8aFixed;
|
|
4330
4378
|
readonly amount: u128;
|
|
4331
4379
|
}
|
|
4332
4380
|
|
|
4333
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4381
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (498) */
|
|
4334
4382
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4335
4383
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4336
4384
|
readonly amount: u128;
|
|
4337
4385
|
}
|
|
4338
4386
|
|
|
4339
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4387
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (501) */
|
|
4340
4388
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4341
4389
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4342
4390
|
readonly amount: u128;
|
|
4343
4391
|
}
|
|
4344
4392
|
|
|
4345
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4393
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (502) */
|
|
4346
4394
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4347
4395
|
readonly isBlockRewards: boolean;
|
|
4348
4396
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4349
4397
|
readonly type: 'BlockRewards';
|
|
4350
4398
|
}
|
|
4351
4399
|
|
|
4352
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4400
|
+
/** @name PalletBlockRewardsFreezeReason (503) */
|
|
4353
4401
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4354
4402
|
readonly isMaturationPeriod: boolean;
|
|
4355
4403
|
readonly type: 'MaturationPeriod';
|
|
4356
4404
|
}
|
|
4357
4405
|
|
|
4358
|
-
/** @name PalletBalancesError (
|
|
4406
|
+
/** @name PalletBalancesError (505) */
|
|
4359
4407
|
interface PalletBalancesError extends Enum {
|
|
4360
4408
|
readonly isVestingBalance: boolean;
|
|
4361
4409
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4384,7 +4432,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4384
4432
|
| 'DeltaZero';
|
|
4385
4433
|
}
|
|
4386
4434
|
|
|
4387
|
-
/** @name PalletTxPauseError (
|
|
4435
|
+
/** @name PalletTxPauseError (507) */
|
|
4388
4436
|
interface PalletTxPauseError extends Enum {
|
|
4389
4437
|
readonly isIsPaused: boolean;
|
|
4390
4438
|
readonly isIsUnpaused: boolean;
|
|
@@ -4393,58 +4441,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4393
4441
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4394
4442
|
}
|
|
4395
4443
|
|
|
4396
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4444
|
+
/** @name PalletTransactionPaymentReleases (508) */
|
|
4397
4445
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4398
4446
|
readonly isV1Ancient: boolean;
|
|
4399
4447
|
readonly isV2: boolean;
|
|
4400
4448
|
readonly type: 'V1Ancient' | 'V2';
|
|
4401
4449
|
}
|
|
4402
4450
|
|
|
4403
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4451
|
+
/** @name FrameSupportStorageNoDrop (509) */
|
|
4404
4452
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4405
4453
|
|
|
4406
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4454
|
+
/** @name FrameSupportTokensFungibleImbalance (510) */
|
|
4407
4455
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4408
4456
|
readonly amount: u128;
|
|
4409
4457
|
}
|
|
4410
4458
|
|
|
4411
|
-
/** @name PalletUtilityError (
|
|
4459
|
+
/** @name PalletUtilityError (511) */
|
|
4412
4460
|
interface PalletUtilityError extends Enum {
|
|
4413
4461
|
readonly isTooManyCalls: boolean;
|
|
4414
4462
|
readonly type: 'TooManyCalls';
|
|
4415
4463
|
}
|
|
4416
4464
|
|
|
4417
|
-
/** @name PalletSudoError (
|
|
4465
|
+
/** @name PalletSudoError (512) */
|
|
4418
4466
|
interface PalletSudoError extends Enum {
|
|
4419
4467
|
readonly isRequireSudo: boolean;
|
|
4420
4468
|
readonly type: 'RequireSudo';
|
|
4421
4469
|
}
|
|
4422
4470
|
|
|
4423
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4471
|
+
/** @name PalletTreasuryFrameVaultCapital (513) */
|
|
4424
4472
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4425
4473
|
readonly frameId: Compact<u64>;
|
|
4426
4474
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4427
4475
|
}
|
|
4428
4476
|
|
|
4429
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4477
|
+
/** @name PalletTreasuryVaultCapital (515) */
|
|
4430
4478
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4431
4479
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4432
4480
|
readonly eligibleBonds: Compact<u32>;
|
|
4433
4481
|
}
|
|
4434
4482
|
|
|
4435
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4483
|
+
/** @name PalletTreasuryBondLotAllocation (517) */
|
|
4436
4484
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4437
4485
|
readonly bondLotId: Compact<u64>;
|
|
4438
4486
|
readonly prorata: u128;
|
|
4439
4487
|
}
|
|
4440
4488
|
|
|
4441
|
-
/** @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) */
|
|
4442
4503
|
interface PalletTreasuryBondLot extends Struct {
|
|
4443
4504
|
readonly owner: AccountId32;
|
|
4444
|
-
readonly
|
|
4505
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4445
4506
|
readonly bonds: Compact<u32>;
|
|
4446
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4447
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4448
4507
|
readonly createdFrameId: Compact<u64>;
|
|
4449
4508
|
readonly participatedFrames: Compact<u32>;
|
|
4450
4509
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4454,13 +4513,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4454
4513
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4455
4514
|
}
|
|
4456
4515
|
|
|
4457
|
-
/** @name
|
|
4458
|
-
interface
|
|
4459
|
-
readonly
|
|
4460
|
-
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';
|
|
4461
4526
|
}
|
|
4462
4527
|
|
|
4463
|
-
/** @name PalletTreasuryError (
|
|
4528
|
+
/** @name PalletTreasuryError (531) */
|
|
4464
4529
|
interface PalletTreasuryError extends Enum {
|
|
4465
4530
|
readonly isBondPurchaseRejected: boolean;
|
|
4466
4531
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4478,6 +4543,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4478
4543
|
readonly isBonusApprovalExpired: boolean;
|
|
4479
4544
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4480
4545
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4546
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4547
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4481
4548
|
readonly type:
|
|
4482
4549
|
| 'BondPurchaseRejected'
|
|
4483
4550
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4494,57 +4561,66 @@ declare module '@polkadot/types/lookup' {
|
|
|
4494
4561
|
| 'BonusApprovalWrongAccount'
|
|
4495
4562
|
| 'BonusApprovalExpired'
|
|
4496
4563
|
| 'BonusApprovalExistingBondLot'
|
|
4497
|
-
| 'InvalidBonusApprovalSignature'
|
|
4564
|
+
| 'InvalidBonusApprovalSignature'
|
|
4565
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4566
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4498
4567
|
}
|
|
4499
4568
|
|
|
4500
|
-
/** @name PalletFeeControlError (
|
|
4569
|
+
/** @name PalletFeeControlError (532) */
|
|
4501
4570
|
interface PalletFeeControlError extends Enum {
|
|
4502
4571
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4503
4572
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4504
4573
|
}
|
|
4505
4574
|
|
|
4506
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4575
|
+
/** @name PalletOperationalAccountsOperationalAccount (533) */
|
|
4507
4576
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4508
4577
|
readonly vaultAccount: AccountId32;
|
|
4509
|
-
readonly
|
|
4510
|
-
readonly miningBotAccount: AccountId32;
|
|
4578
|
+
readonly miningAccount: AccountId32;
|
|
4511
4579
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4512
|
-
readonly
|
|
4513
|
-
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;
|
|
4514
4586
|
readonly vaultCreated: bool;
|
|
4515
|
-
readonly
|
|
4516
|
-
readonly
|
|
4517
|
-
readonly hasTreasuryPoolParticipation: bool;
|
|
4587
|
+
readonly vaultBitcoinAccrual: u128;
|
|
4588
|
+
readonly vaultBitcoinAppliedTotal: u128;
|
|
4518
4589
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4519
4590
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4520
4591
|
readonly operationalReferralsCount: Compact<u32>;
|
|
4521
|
-
readonly
|
|
4522
|
-
readonly
|
|
4592
|
+
readonly upgradeCodePending: bool;
|
|
4593
|
+
readonly availableUpgradeCodes: Compact<u32>;
|
|
4523
4594
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4524
4595
|
readonly rewardsEarnedAmount: u128;
|
|
4525
4596
|
readonly rewardsCollectedAmount: u128;
|
|
4526
|
-
readonly
|
|
4597
|
+
readonly isOperationallyCertified: bool;
|
|
4527
4598
|
}
|
|
4528
4599
|
|
|
4529
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4600
|
+
/** @name PalletOperationalAccountsRewardsConfig (534) */
|
|
4530
4601
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4602
|
+
readonly operationalActivationReward: Compact<u128>;
|
|
4603
|
+
readonly operationalReferralBonusReward: Compact<u128>;
|
|
4533
4604
|
}
|
|
4534
4605
|
|
|
4535
|
-
/** @name PalletOperationalAccountsError (
|
|
4606
|
+
/** @name PalletOperationalAccountsError (536) */
|
|
4536
4607
|
interface PalletOperationalAccountsError extends Enum {
|
|
4537
4608
|
readonly isAlreadyRegistered: boolean;
|
|
4538
4609
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
4539
4610
|
readonly isAccountAlreadyLinked: boolean;
|
|
4540
4611
|
readonly isInvalidAccountProof: boolean;
|
|
4541
4612
|
readonly isNotOperationalAccount: boolean;
|
|
4542
|
-
readonly isInvalidReferralProof: boolean;
|
|
4543
|
-
readonly isReferralProofExpired: boolean;
|
|
4544
4613
|
readonly isRegistrationInviteRequired: boolean;
|
|
4614
|
+
readonly 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;
|
|
4545
4621
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4546
4622
|
readonly isEncryptedServerTooLong: boolean;
|
|
4547
|
-
readonly
|
|
4623
|
+
readonly isNotReferrerOfAccount: boolean;
|
|
4548
4624
|
readonly isNoPendingRewards: boolean;
|
|
4549
4625
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4550
4626
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4558,12 +4634,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
4558
4634
|
| 'AccountAlreadyLinked'
|
|
4559
4635
|
| 'InvalidAccountProof'
|
|
4560
4636
|
| 'NotOperationalAccount'
|
|
4561
|
-
| 'InvalidReferralProof'
|
|
4562
|
-
| 'ReferralProofExpired'
|
|
4563
4637
|
| 'RegistrationInviteRequired'
|
|
4638
|
+
| 'ReferrerNotOperationalAccount'
|
|
4639
|
+
| 'RegisteredReferrerMismatch'
|
|
4640
|
+
| 'NotTreasuryCertified'
|
|
4641
|
+
| 'TreasuryCertificationNoLongerMet'
|
|
4642
|
+
| 'AccountAlreadyUpgraded'
|
|
4643
|
+
| 'NoAvailableUpgrades'
|
|
4644
|
+
| 'CannotUpgradeSelf'
|
|
4564
4645
|
| 'NoProgressUpdateProvided'
|
|
4565
4646
|
| 'EncryptedServerTooLong'
|
|
4566
|
-
| '
|
|
4647
|
+
| 'NotReferrerOfAccount'
|
|
4567
4648
|
| 'NoPendingRewards'
|
|
4568
4649
|
| 'RewardClaimBelowMinimum'
|
|
4569
4650
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4573,12 +4654,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4573
4654
|
| 'NotEligibleForActivation';
|
|
4574
4655
|
}
|
|
4575
4656
|
|
|
4576
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4657
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (537) */
|
|
4577
4658
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4578
4659
|
readonly slot: Compact<u64>;
|
|
4579
4660
|
}
|
|
4580
4661
|
|
|
4581
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4662
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (538) */
|
|
4582
4663
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4583
4664
|
readonly blockNumber: Compact<u64>;
|
|
4584
4665
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4588,44 +4669,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4588
4669
|
readonly receiptsRoot: H256;
|
|
4589
4670
|
}
|
|
4590
4671
|
|
|
4591
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4672
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (539) */
|
|
4592
4673
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4593
4674
|
readonly root: H256;
|
|
4594
4675
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4595
4676
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4596
4677
|
}
|
|
4597
4678
|
|
|
4598
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4679
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (541) */
|
|
4599
4680
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4600
4681
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4601
4682
|
}
|
|
4602
4683
|
|
|
4603
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4684
|
+
/** @name SnowbridgeAmclBls381Ecp (542) */
|
|
4604
4685
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4605
4686
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4606
4687
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4607
4688
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4608
4689
|
}
|
|
4609
4690
|
|
|
4610
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4691
|
+
/** @name SnowbridgeAmclBls381Fp (543) */
|
|
4611
4692
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4612
4693
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4613
4694
|
readonly xes: i32;
|
|
4614
4695
|
}
|
|
4615
4696
|
|
|
4616
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4697
|
+
/** @name SnowbridgeAmclBls381Big (544) */
|
|
4617
4698
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4618
4699
|
readonly w: Vec<i32>;
|
|
4619
4700
|
}
|
|
4620
4701
|
|
|
4621
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4702
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (548) */
|
|
4622
4703
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4623
4704
|
readonly isMainnet: boolean;
|
|
4624
4705
|
readonly isMinimal: boolean;
|
|
4625
4706
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4626
4707
|
}
|
|
4627
4708
|
|
|
4628
|
-
/** @name PalletEthereumVerifierError (
|
|
4709
|
+
/** @name PalletEthereumVerifierError (549) */
|
|
4629
4710
|
interface PalletEthereumVerifierError extends Enum {
|
|
4630
4711
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4631
4712
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4678,21 +4759,33 @@ declare module '@polkadot/types/lookup' {
|
|
|
4678
4759
|
| 'Halted';
|
|
4679
4760
|
}
|
|
4680
4761
|
|
|
4681
|
-
/** @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) */
|
|
4682
4775
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4683
4776
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4684
4777
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4685
4778
|
readonly totalWeight: u128;
|
|
4686
4779
|
}
|
|
4687
4780
|
|
|
4688
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4781
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (554) */
|
|
4689
4782
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4690
4783
|
readonly accountId: AccountId32;
|
|
4691
4784
|
readonly signer: H160;
|
|
4692
4785
|
readonly weight: u128;
|
|
4693
4786
|
}
|
|
4694
4787
|
|
|
4695
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4788
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (559) */
|
|
4696
4789
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4697
4790
|
readonly approvingCouncilHash: H256;
|
|
4698
4791
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4704,7 +4797,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4704
4797
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4705
4798
|
}
|
|
4706
4799
|
|
|
4707
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4800
|
+
/** @name PalletCrosschainTransferMintingAuthority (564) */
|
|
4708
4801
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4709
4802
|
readonly accountId: AccountId32;
|
|
4710
4803
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4721,7 +4814,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4721
4814
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4722
4815
|
}
|
|
4723
4816
|
|
|
4724
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4817
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (565) */
|
|
4725
4818
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4726
4819
|
readonly isPendingActivation: boolean;
|
|
4727
4820
|
readonly isActive: boolean;
|
|
@@ -4729,7 +4822,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4729
4822
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4730
4823
|
}
|
|
4731
4824
|
|
|
4732
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4825
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (567) */
|
|
4733
4826
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4734
4827
|
readonly argonAccountId: AccountId32;
|
|
4735
4828
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4748,7 +4841,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4841
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4749
4842
|
}
|
|
4750
4843
|
|
|
4751
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4844
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (569) */
|
|
4752
4845
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4753
4846
|
readonly microgonCollateral: u128;
|
|
4754
4847
|
readonly micronotCollateral: u128;
|
|
@@ -4756,27 +4849,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4756
4849
|
readonly signature: U8aFixed;
|
|
4757
4850
|
}
|
|
4758
4851
|
|
|
4759
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4852
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (573) */
|
|
4760
4853
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4761
4854
|
readonly isStarted: boolean;
|
|
4762
4855
|
readonly isReady: boolean;
|
|
4763
4856
|
readonly type: 'Started' | 'Ready';
|
|
4764
4857
|
}
|
|
4765
4858
|
|
|
4766
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4859
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (575) */
|
|
4767
4860
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4768
4861
|
readonly transferId: H256;
|
|
4769
4862
|
readonly remainingCollateral: u128;
|
|
4770
4863
|
readonly remainingMintingAuthorityTip: u128;
|
|
4771
4864
|
}
|
|
4772
4865
|
|
|
4773
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4866
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (577) */
|
|
4774
4867
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4775
4868
|
readonly argonCirculation: u128;
|
|
4776
4869
|
readonly argonotCirculation: u128;
|
|
4777
4870
|
}
|
|
4778
4871
|
|
|
4779
|
-
/** @name PalletCrosschainTransferError (
|
|
4872
|
+
/** @name PalletCrosschainTransferError (578) */
|
|
4780
4873
|
interface PalletCrosschainTransferError extends Enum {
|
|
4781
4874
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4782
4875
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4889,45 +4982,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4889
4982
|
| 'TooManyPendingTransferOuts';
|
|
4890
4983
|
}
|
|
4891
4984
|
|
|
4892
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4985
|
+
/** @name FrameSystemExtensionsAuthorizeCall (581) */
|
|
4893
4986
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4894
4987
|
|
|
4895
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4988
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (582) */
|
|
4896
4989
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4897
4990
|
|
|
4898
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4991
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (583) */
|
|
4899
4992
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4900
4993
|
|
|
4901
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4994
|
+
/** @name FrameSystemExtensionsCheckTxVersion (584) */
|
|
4902
4995
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4903
4996
|
|
|
4904
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4997
|
+
/** @name FrameSystemExtensionsCheckGenesis (585) */
|
|
4905
4998
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4906
4999
|
|
|
4907
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5000
|
+
/** @name FrameSystemExtensionsCheckNonce (588) */
|
|
4908
5001
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4909
5002
|
|
|
4910
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5003
|
+
/** @name FrameSystemExtensionsCheckWeight (589) */
|
|
4911
5004
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4912
5005
|
|
|
4913
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5006
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (590) */
|
|
4914
5007
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4915
5008
|
|
|
4916
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5009
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (591) */
|
|
4917
5010
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4918
5011
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4919
5012
|
}
|
|
4920
5013
|
|
|
4921
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5014
|
+
/** @name FrameMetadataHashExtensionMode (592) */
|
|
4922
5015
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4923
5016
|
readonly isDisabled: boolean;
|
|
4924
5017
|
readonly isEnabled: boolean;
|
|
4925
5018
|
readonly type: 'Disabled' | 'Enabled';
|
|
4926
5019
|
}
|
|
4927
5020
|
|
|
4928
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5021
|
+
/** @name FrameSystemExtensionsWeightReclaim (593) */
|
|
4929
5022
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4930
5023
|
|
|
4931
|
-
/** @name ArgonRuntimeRuntime (
|
|
5024
|
+
/** @name ArgonRuntimeRuntime (595) */
|
|
4932
5025
|
type ArgonRuntimeRuntime = Null;
|
|
4933
5026
|
} // declare module
|