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