@argonprotocol/mainchain 1.4.8 → 1.4.9-dev.c62e171b
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 +451 -260
- package/browser/index.js +26 -11
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +26 -11
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +451 -260
- package/lib/index.d.ts +451 -260
- package/lib/index.js +26 -11
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +25 -2
- package/src/interfaces/augment-api-errors.ts +20 -0
- package/src/interfaces/augment-api-events.ts +70 -11
- package/src/interfaces/augment-api-query.ts +65 -5
- package/src/interfaces/augment-api-tx.ts +12 -0
- package/src/interfaces/lookup.ts +302 -234
- package/src/interfaces/registry.ts +10 -0
- package/src/interfaces/types-lookup.ts +309 -237
|
@@ -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,7 +1789,7 @@ 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: {
|
|
@@ -1824,14 +1846,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1824
1846
|
| 'EncryptedServerUpdated';
|
|
1825
1847
|
}
|
|
1826
1848
|
|
|
1827
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1849
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1828
1850
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1829
1851
|
readonly isActivation: boolean;
|
|
1830
1852
|
readonly isReferralBonus: boolean;
|
|
1831
1853
|
readonly type: 'Activation' | 'ReferralBonus';
|
|
1832
1854
|
}
|
|
1833
1855
|
|
|
1834
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1856
|
+
/** @name PalletEthereumVerifierEvent (127) */
|
|
1835
1857
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1836
1858
|
readonly isBeaconHeaderImported: boolean;
|
|
1837
1859
|
readonly asBeaconHeaderImported: {
|
|
@@ -1866,14 +1888,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1866
1888
|
| 'OperatingModeChanged';
|
|
1867
1889
|
}
|
|
1868
1890
|
|
|
1869
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1891
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (128) */
|
|
1870
1892
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1871
1893
|
readonly isNormal: boolean;
|
|
1872
1894
|
readonly isHalted: boolean;
|
|
1873
1895
|
readonly type: 'Normal' | 'Halted';
|
|
1874
1896
|
}
|
|
1875
1897
|
|
|
1876
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1898
|
+
/** @name PalletCrosschainTransferEvent (129) */
|
|
1877
1899
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1878
1900
|
readonly isTransferToArgonSettled: boolean;
|
|
1879
1901
|
readonly asTransferToArgonSettled: {
|
|
@@ -2022,13 +2044,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2022
2044
|
| 'TransferCollateralInvalidated';
|
|
2023
2045
|
}
|
|
2024
2046
|
|
|
2025
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2047
|
+
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
2026
2048
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2027
2049
|
readonly isEthereum: boolean;
|
|
2028
2050
|
readonly type: 'Ethereum';
|
|
2029
2051
|
}
|
|
2030
2052
|
|
|
2031
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2053
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (131) */
|
|
2032
2054
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2033
2055
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2034
2056
|
readonly from: H160;
|
|
@@ -2037,14 +2059,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2037
2059
|
readonly amount: Compact<u128>;
|
|
2038
2060
|
}
|
|
2039
2061
|
|
|
2040
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2062
|
+
/** @name PalletCrosschainTransferAssetKind (134) */
|
|
2041
2063
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2042
2064
|
readonly isArgon: boolean;
|
|
2043
2065
|
readonly isArgonot: boolean;
|
|
2044
2066
|
readonly type: 'Argon' | 'Argonot';
|
|
2045
2067
|
}
|
|
2046
2068
|
|
|
2047
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2069
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (135) */
|
|
2048
2070
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2049
2071
|
readonly isMintingAuthorityActivation: boolean;
|
|
2050
2072
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2058,14 +2080,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2058
2080
|
| 'GlobalIssuanceCouncilRotation';
|
|
2059
2081
|
}
|
|
2060
2082
|
|
|
2061
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2083
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (136) */
|
|
2062
2084
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2063
2085
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2064
2086
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2065
2087
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2066
2088
|
}
|
|
2067
2089
|
|
|
2068
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2090
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (137) */
|
|
2069
2091
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2070
2092
|
readonly isManual: boolean;
|
|
2071
2093
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2090,7 +2112,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2090
2112
|
| 'GatewayStateDrift';
|
|
2091
2113
|
}
|
|
2092
2114
|
|
|
2093
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2115
|
+
/** @name PalletCrosschainTransferGatewayState (138) */
|
|
2094
2116
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2095
2117
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2096
2118
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2098,7 +2120,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2098
2120
|
readonly argonotCirculation: u128;
|
|
2099
2121
|
}
|
|
2100
2122
|
|
|
2101
|
-
/** @name FrameSystemPhase (
|
|
2123
|
+
/** @name FrameSystemPhase (139) */
|
|
2102
2124
|
interface FrameSystemPhase extends Enum {
|
|
2103
2125
|
readonly isApplyExtrinsic: boolean;
|
|
2104
2126
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2107,19 +2129,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2107
2129
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2108
2130
|
}
|
|
2109
2131
|
|
|
2110
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2132
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (143) */
|
|
2111
2133
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2112
2134
|
readonly specVersion: Compact<u32>;
|
|
2113
2135
|
readonly specName: Text;
|
|
2114
2136
|
}
|
|
2115
2137
|
|
|
2116
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2138
|
+
/** @name FrameSystemCodeUpgradeAuthorization (146) */
|
|
2117
2139
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2118
2140
|
readonly codeHash: H256;
|
|
2119
2141
|
readonly checkVersion: bool;
|
|
2120
2142
|
}
|
|
2121
2143
|
|
|
2122
|
-
/** @name FrameSystemCall (
|
|
2144
|
+
/** @name FrameSystemCall (147) */
|
|
2123
2145
|
interface FrameSystemCall extends Enum {
|
|
2124
2146
|
readonly isRemark: boolean;
|
|
2125
2147
|
readonly asRemark: {
|
|
@@ -2180,21 +2202,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2180
2202
|
| 'ApplyAuthorizedUpgrade';
|
|
2181
2203
|
}
|
|
2182
2204
|
|
|
2183
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2205
|
+
/** @name FrameSystemLimitsBlockWeights (151) */
|
|
2184
2206
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2185
2207
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2186
2208
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2187
2209
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2188
2210
|
}
|
|
2189
2211
|
|
|
2190
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2212
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
|
|
2191
2213
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2192
2214
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2193
2215
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2194
2216
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2195
2217
|
}
|
|
2196
2218
|
|
|
2197
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2219
|
+
/** @name FrameSystemLimitsWeightsPerClass (153) */
|
|
2198
2220
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2199
2221
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2200
2222
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2202,26 +2224,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2202
2224
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2203
2225
|
}
|
|
2204
2226
|
|
|
2205
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2227
|
+
/** @name FrameSystemLimitsBlockLength (155) */
|
|
2206
2228
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2207
2229
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2208
2230
|
readonly maxHeaderSize: Option<u32>;
|
|
2209
2231
|
}
|
|
2210
2232
|
|
|
2211
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2233
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (156) */
|
|
2212
2234
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2213
2235
|
readonly normal: u32;
|
|
2214
2236
|
readonly operational: u32;
|
|
2215
2237
|
readonly mandatory: u32;
|
|
2216
2238
|
}
|
|
2217
2239
|
|
|
2218
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2240
|
+
/** @name SpWeightsRuntimeDbWeight (158) */
|
|
2219
2241
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2220
2242
|
readonly read: u64;
|
|
2221
2243
|
readonly write: u64;
|
|
2222
2244
|
}
|
|
2223
2245
|
|
|
2224
|
-
/** @name SpVersionRuntimeVersion (
|
|
2246
|
+
/** @name SpVersionRuntimeVersion (159) */
|
|
2225
2247
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2226
2248
|
readonly specName: Text;
|
|
2227
2249
|
readonly implName: Text;
|
|
@@ -2233,7 +2255,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2233
2255
|
readonly systemVersion: u8;
|
|
2234
2256
|
}
|
|
2235
2257
|
|
|
2236
|
-
/** @name FrameSystemError (
|
|
2258
|
+
/** @name FrameSystemError (164) */
|
|
2237
2259
|
interface FrameSystemError extends Enum {
|
|
2238
2260
|
readonly isInvalidSpecName: boolean;
|
|
2239
2261
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2256,7 +2278,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2256
2278
|
| 'Unauthorized';
|
|
2257
2279
|
}
|
|
2258
2280
|
|
|
2259
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2281
|
+
/** @name ArgonPrimitivesDigestsDigestset (165) */
|
|
2260
2282
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2261
2283
|
readonly author: AccountId32;
|
|
2262
2284
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2267,18 +2289,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2267
2289
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2268
2290
|
}
|
|
2269
2291
|
|
|
2270
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2292
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
|
|
2271
2293
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2272
2294
|
readonly votingPower: Compact<u128>;
|
|
2273
2295
|
readonly votesCount: Compact<u32>;
|
|
2274
2296
|
}
|
|
2275
2297
|
|
|
2276
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2298
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
|
|
2277
2299
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2278
2300
|
readonly parentVotingKey: Option<H256>;
|
|
2279
2301
|
}
|
|
2280
2302
|
|
|
2281
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2303
|
+
/** @name ArgonPrimitivesForkPower (171) */
|
|
2282
2304
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2283
2305
|
readonly isLatestVote: bool;
|
|
2284
2306
|
readonly notebooks: Compact<u64>;
|
|
@@ -2289,19 +2311,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2289
2311
|
readonly minerNonceScore: Option<U256>;
|
|
2290
2312
|
}
|
|
2291
2313
|
|
|
2292
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2314
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (176) */
|
|
2293
2315
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2294
2316
|
readonly frameId: Compact<u64>;
|
|
2295
2317
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2296
2318
|
readonly isNewFrame: bool;
|
|
2297
2319
|
}
|
|
2298
2320
|
|
|
2299
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2321
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (178) */
|
|
2300
2322
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2301
2323
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2302
2324
|
}
|
|
2303
2325
|
|
|
2304
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2326
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
|
|
2305
2327
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2306
2328
|
readonly notaryId: Compact<u32>;
|
|
2307
2329
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2309,7 +2331,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2309
2331
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2310
2332
|
}
|
|
2311
2333
|
|
|
2312
|
-
/** @name PalletDigestsError (
|
|
2334
|
+
/** @name PalletDigestsError (183) */
|
|
2313
2335
|
interface PalletDigestsError extends Enum {
|
|
2314
2336
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2315
2337
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2340,7 +2362,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2340
2362
|
| 'DuplicateFrameInfoDigest';
|
|
2341
2363
|
}
|
|
2342
2364
|
|
|
2343
|
-
/** @name PalletTimestampCall (
|
|
2365
|
+
/** @name PalletTimestampCall (184) */
|
|
2344
2366
|
interface PalletTimestampCall extends Enum {
|
|
2345
2367
|
readonly isSet: boolean;
|
|
2346
2368
|
readonly asSet: {
|
|
@@ -2349,7 +2371,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2349
2371
|
readonly type: 'Set';
|
|
2350
2372
|
}
|
|
2351
2373
|
|
|
2352
|
-
/** @name PalletMultisigMultisig (
|
|
2374
|
+
/** @name PalletMultisigMultisig (186) */
|
|
2353
2375
|
interface PalletMultisigMultisig extends Struct {
|
|
2354
2376
|
readonly when: PalletMultisigTimepoint;
|
|
2355
2377
|
readonly deposit: u128;
|
|
@@ -2357,7 +2379,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2357
2379
|
readonly approvals: Vec<AccountId32>;
|
|
2358
2380
|
}
|
|
2359
2381
|
|
|
2360
|
-
/** @name PalletMultisigCall (
|
|
2382
|
+
/** @name PalletMultisigCall (189) */
|
|
2361
2383
|
interface PalletMultisigCall extends Enum {
|
|
2362
2384
|
readonly isAsMultiThreshold1: boolean;
|
|
2363
2385
|
readonly asAsMultiThreshold1: {
|
|
@@ -2401,7 +2423,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2401
2423
|
| 'PokeDeposit';
|
|
2402
2424
|
}
|
|
2403
2425
|
|
|
2404
|
-
/** @name PalletProxyCall (
|
|
2426
|
+
/** @name PalletProxyCall (191) */
|
|
2405
2427
|
interface PalletProxyCall extends Enum {
|
|
2406
2428
|
readonly isProxy: boolean;
|
|
2407
2429
|
readonly asProxy: {
|
|
@@ -2473,10 +2495,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2473
2495
|
| 'PokeDeposit';
|
|
2474
2496
|
}
|
|
2475
2497
|
|
|
2476
|
-
/** @name PalletTicksCall (
|
|
2498
|
+
/** @name PalletTicksCall (195) */
|
|
2477
2499
|
type PalletTicksCall = Null;
|
|
2478
2500
|
|
|
2479
|
-
/** @name PalletMiningSlotCall (
|
|
2501
|
+
/** @name PalletMiningSlotCall (196) */
|
|
2480
2502
|
interface PalletMiningSlotCall extends Enum {
|
|
2481
2503
|
readonly isBid: boolean;
|
|
2482
2504
|
readonly asBid: {
|
|
@@ -2492,7 +2514,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2492
2514
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2493
2515
|
}
|
|
2494
2516
|
|
|
2495
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2517
|
+
/** @name PalletBitcoinUtxosCall (197) */
|
|
2496
2518
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2497
2519
|
readonly isSync: boolean;
|
|
2498
2520
|
readonly asSync: {
|
|
@@ -2525,21 +2547,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2525
2547
|
| 'RejectUtxoCandidate';
|
|
2526
2548
|
}
|
|
2527
2549
|
|
|
2528
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2550
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
|
|
2529
2551
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2530
2552
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2531
2553
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2532
2554
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2533
2555
|
}
|
|
2534
2556
|
|
|
2535
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2557
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
|
|
2536
2558
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2537
2559
|
readonly utxoId: Compact<u64>;
|
|
2538
2560
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2539
2561
|
readonly bitcoinHeight: Compact<u64>;
|
|
2540
2562
|
}
|
|
2541
2563
|
|
|
2542
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2564
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
|
|
2543
2565
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2544
2566
|
readonly utxoId: Compact<u64>;
|
|
2545
2567
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2548,13 +2570,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2548
2570
|
readonly bitcoinHeight: Compact<u64>;
|
|
2549
2571
|
}
|
|
2550
2572
|
|
|
2551
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2573
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
|
|
2552
2574
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2553
2575
|
readonly blockHeight: Compact<u64>;
|
|
2554
2576
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2555
2577
|
}
|
|
2556
2578
|
|
|
2557
|
-
/** @name PalletVaultsCall (
|
|
2579
|
+
/** @name PalletVaultsCall (205) */
|
|
2558
2580
|
interface PalletVaultsCall extends Enum {
|
|
2559
2581
|
readonly isCreate: boolean;
|
|
2560
2582
|
readonly asCreate: {
|
|
@@ -2608,7 +2630,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2608
2630
|
| 'SetCommittedArgonots';
|
|
2609
2631
|
}
|
|
2610
2632
|
|
|
2611
|
-
/** @name PalletVaultsVaultConfig (
|
|
2633
|
+
/** @name PalletVaultsVaultConfig (206) */
|
|
2612
2634
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2613
2635
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2614
2636
|
readonly name: Option<Bytes>;
|
|
@@ -2618,7 +2640,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2618
2640
|
readonly securitizationRatio: Compact<u128>;
|
|
2619
2641
|
}
|
|
2620
2642
|
|
|
2621
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2643
|
+
/** @name ArgonPrimitivesVaultVaultTerms (207) */
|
|
2622
2644
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2623
2645
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2624
2646
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -2626,10 +2648,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2626
2648
|
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2627
2649
|
}
|
|
2628
2650
|
|
|
2629
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2651
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
|
|
2630
2652
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2631
2653
|
|
|
2632
|
-
/** @name PalletBitcoinLocksCall (
|
|
2654
|
+
/** @name PalletBitcoinLocksCall (215) */
|
|
2633
2655
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2634
2656
|
readonly isInitialize: boolean;
|
|
2635
2657
|
readonly asInitialize: {
|
|
@@ -2695,10 +2717,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2695
2717
|
| 'IncreaseSecuritization';
|
|
2696
2718
|
}
|
|
2697
2719
|
|
|
2698
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2720
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
|
|
2699
2721
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2700
2722
|
|
|
2701
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2723
|
+
/** @name PalletBitcoinLocksLockOptions (219) */
|
|
2702
2724
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2703
2725
|
readonly isV1: boolean;
|
|
2704
2726
|
readonly asV1: {
|
|
@@ -2707,7 +2729,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2707
2729
|
readonly type: 'V1';
|
|
2708
2730
|
}
|
|
2709
2731
|
|
|
2710
|
-
/** @name PalletNotariesCall (
|
|
2732
|
+
/** @name PalletNotariesCall (222) */
|
|
2711
2733
|
interface PalletNotariesCall extends Enum {
|
|
2712
2734
|
readonly isPropose: boolean;
|
|
2713
2735
|
readonly asPropose: {
|
|
@@ -2726,7 +2748,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2726
2748
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2727
2749
|
}
|
|
2728
2750
|
|
|
2729
|
-
/** @name PalletNotebookCall (
|
|
2751
|
+
/** @name PalletNotebookCall (223) */
|
|
2730
2752
|
interface PalletNotebookCall extends Enum {
|
|
2731
2753
|
readonly isSubmit: boolean;
|
|
2732
2754
|
readonly asSubmit: {
|
|
@@ -2739,13 +2761,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2739
2761
|
readonly type: 'Submit' | 'Unlock';
|
|
2740
2762
|
}
|
|
2741
2763
|
|
|
2742
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2764
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
|
|
2743
2765
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2744
2766
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2745
2767
|
readonly signature: U8aFixed;
|
|
2746
2768
|
}
|
|
2747
2769
|
|
|
2748
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2770
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (226) */
|
|
2749
2771
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2750
2772
|
readonly version: Compact<u16>;
|
|
2751
2773
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2764,7 +2786,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2764
2786
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2765
2787
|
}
|
|
2766
2788
|
|
|
2767
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2789
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (229) */
|
|
2768
2790
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2769
2791
|
readonly isToMainchain: boolean;
|
|
2770
2792
|
readonly asToMainchain: {
|
|
@@ -2778,13 +2800,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2778
2800
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2779
2801
|
}
|
|
2780
2802
|
|
|
2781
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2803
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
|
|
2782
2804
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2783
2805
|
readonly notebookNumber: Compact<u32>;
|
|
2784
2806
|
readonly accountUid: Compact<u32>;
|
|
2785
2807
|
}
|
|
2786
2808
|
|
|
2787
|
-
/** @name PalletLocalchainTransferCall (
|
|
2809
|
+
/** @name PalletLocalchainTransferCall (239) */
|
|
2788
2810
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2789
2811
|
readonly isSendToLocalchain: boolean;
|
|
2790
2812
|
readonly asSendToLocalchain: {
|
|
@@ -2794,7 +2816,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2794
2816
|
readonly type: 'SendToLocalchain';
|
|
2795
2817
|
}
|
|
2796
2818
|
|
|
2797
|
-
/** @name PalletBlockSealSpecCall (
|
|
2819
|
+
/** @name PalletBlockSealSpecCall (240) */
|
|
2798
2820
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2799
2821
|
readonly isConfigure: boolean;
|
|
2800
2822
|
readonly asConfigure: {
|
|
@@ -2804,7 +2826,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2804
2826
|
readonly type: 'Configure';
|
|
2805
2827
|
}
|
|
2806
2828
|
|
|
2807
|
-
/** @name PalletDomainsCall (
|
|
2829
|
+
/** @name PalletDomainsCall (241) */
|
|
2808
2830
|
interface PalletDomainsCall extends Enum {
|
|
2809
2831
|
readonly isSetZoneRecord: boolean;
|
|
2810
2832
|
readonly asSetZoneRecord: {
|
|
@@ -2814,7 +2836,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2814
2836
|
readonly type: 'SetZoneRecord';
|
|
2815
2837
|
}
|
|
2816
2838
|
|
|
2817
|
-
/** @name PalletPriceIndexCall (
|
|
2839
|
+
/** @name PalletPriceIndexCall (242) */
|
|
2818
2840
|
interface PalletPriceIndexCall extends Enum {
|
|
2819
2841
|
readonly isSubmit: boolean;
|
|
2820
2842
|
readonly asSubmit: {
|
|
@@ -2827,7 +2849,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2827
2849
|
readonly type: 'Submit' | 'SetOperator';
|
|
2828
2850
|
}
|
|
2829
2851
|
|
|
2830
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2852
|
+
/** @name PalletPriceIndexPriceIndex (243) */
|
|
2831
2853
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2832
2854
|
readonly btcUsdPrice: Compact<u128>;
|
|
2833
2855
|
readonly argonotUsdPrice: u128;
|
|
@@ -2837,7 +2859,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2837
2859
|
readonly tick: Compact<u64>;
|
|
2838
2860
|
}
|
|
2839
2861
|
|
|
2840
|
-
/** @name PalletGrandpaCall (
|
|
2862
|
+
/** @name PalletGrandpaCall (244) */
|
|
2841
2863
|
interface PalletGrandpaCall extends Enum {
|
|
2842
2864
|
readonly isReportEquivocation: boolean;
|
|
2843
2865
|
readonly asReportEquivocation: {
|
|
@@ -2857,13 +2879,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2857
2879
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2858
2880
|
}
|
|
2859
2881
|
|
|
2860
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2882
|
+
/** @name SpConsensusGrandpaEquivocationProof (245) */
|
|
2861
2883
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2862
2884
|
readonly setId: u64;
|
|
2863
2885
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2864
2886
|
}
|
|
2865
2887
|
|
|
2866
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2888
|
+
/** @name SpConsensusGrandpaEquivocation (246) */
|
|
2867
2889
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2868
2890
|
readonly isPrevote: boolean;
|
|
2869
2891
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2872,7 +2894,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2872
2894
|
readonly type: 'Prevote' | 'Precommit';
|
|
2873
2895
|
}
|
|
2874
2896
|
|
|
2875
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2897
|
+
/** @name FinalityGrandpaEquivocationPrevote (247) */
|
|
2876
2898
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2877
2899
|
readonly roundNumber: u64;
|
|
2878
2900
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2880,16 +2902,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2880
2902
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2881
2903
|
}
|
|
2882
2904
|
|
|
2883
|
-
/** @name FinalityGrandpaPrevote (
|
|
2905
|
+
/** @name FinalityGrandpaPrevote (248) */
|
|
2884
2906
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2885
2907
|
readonly targetHash: H256;
|
|
2886
2908
|
readonly targetNumber: u32;
|
|
2887
2909
|
}
|
|
2888
2910
|
|
|
2889
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2911
|
+
/** @name SpConsensusGrandpaAppSignature (249) */
|
|
2890
2912
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2891
2913
|
|
|
2892
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2914
|
+
/** @name FinalityGrandpaEquivocationPrecommit (251) */
|
|
2893
2915
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2894
2916
|
readonly roundNumber: u64;
|
|
2895
2917
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2897,16 +2919,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2897
2919
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2898
2920
|
}
|
|
2899
2921
|
|
|
2900
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2922
|
+
/** @name FinalityGrandpaPrecommit (252) */
|
|
2901
2923
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2902
2924
|
readonly targetHash: H256;
|
|
2903
2925
|
readonly targetNumber: u32;
|
|
2904
2926
|
}
|
|
2905
2927
|
|
|
2906
|
-
/** @name SpCoreVoid (
|
|
2928
|
+
/** @name SpCoreVoid (254) */
|
|
2907
2929
|
type SpCoreVoid = Null;
|
|
2908
2930
|
|
|
2909
|
-
/** @name PalletBlockSealCall (
|
|
2931
|
+
/** @name PalletBlockSealCall (255) */
|
|
2910
2932
|
interface PalletBlockSealCall extends Enum {
|
|
2911
2933
|
readonly isApply: boolean;
|
|
2912
2934
|
readonly asApply: {
|
|
@@ -2915,7 +2937,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2915
2937
|
readonly type: 'Apply';
|
|
2916
2938
|
}
|
|
2917
2939
|
|
|
2918
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2940
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
|
|
2919
2941
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2920
2942
|
readonly isVote: boolean;
|
|
2921
2943
|
readonly asVote: {
|
|
@@ -2930,14 +2952,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2930
2952
|
readonly type: 'Vote' | 'Compute';
|
|
2931
2953
|
}
|
|
2932
2954
|
|
|
2933
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
2955
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
|
|
2934
2956
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2935
2957
|
readonly proof: Vec<H256>;
|
|
2936
2958
|
readonly numberOfLeaves: Compact<u32>;
|
|
2937
2959
|
readonly leafIndex: Compact<u32>;
|
|
2938
2960
|
}
|
|
2939
2961
|
|
|
2940
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
2962
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
|
|
2941
2963
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2942
2964
|
readonly accountId: AccountId32;
|
|
2943
2965
|
readonly blockHash: H256;
|
|
@@ -2948,7 +2970,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2948
2970
|
readonly tick: Compact<u64>;
|
|
2949
2971
|
}
|
|
2950
2972
|
|
|
2951
|
-
/** @name SpRuntimeMultiSignature (
|
|
2973
|
+
/** @name SpRuntimeMultiSignature (260) */
|
|
2952
2974
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2953
2975
|
readonly isEd25519: boolean;
|
|
2954
2976
|
readonly asEd25519: U8aFixed;
|
|
@@ -2961,19 +2983,23 @@ declare module '@polkadot/types/lookup' {
|
|
|
2961
2983
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2962
2984
|
}
|
|
2963
2985
|
|
|
2964
|
-
/** @name PalletBlockRewardsCall (
|
|
2986
|
+
/** @name PalletBlockRewardsCall (262) */
|
|
2965
2987
|
interface PalletBlockRewardsCall extends Enum {
|
|
2966
2988
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2967
2989
|
readonly asSetBlockRewardsPaused: {
|
|
2968
2990
|
readonly paused: bool;
|
|
2969
2991
|
} & Struct;
|
|
2970
|
-
readonly
|
|
2992
|
+
readonly isSetBlockVoterRewardsEnabled: boolean;
|
|
2993
|
+
readonly asSetBlockVoterRewardsEnabled: {
|
|
2994
|
+
readonly enabled: bool;
|
|
2995
|
+
} & Struct;
|
|
2996
|
+
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2971
2997
|
}
|
|
2972
2998
|
|
|
2973
|
-
/** @name PalletMintCall (
|
|
2999
|
+
/** @name PalletMintCall (263) */
|
|
2974
3000
|
type PalletMintCall = Null;
|
|
2975
3001
|
|
|
2976
|
-
/** @name PalletBalancesCall (
|
|
3002
|
+
/** @name PalletBalancesCall (264) */
|
|
2977
3003
|
interface PalletBalancesCall extends Enum {
|
|
2978
3004
|
readonly isTransferAllowDeath: boolean;
|
|
2979
3005
|
readonly asTransferAllowDeath: {
|
|
@@ -3032,14 +3058,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3032
3058
|
| 'Burn';
|
|
3033
3059
|
}
|
|
3034
3060
|
|
|
3035
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3061
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3036
3062
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3037
3063
|
readonly isIncrease: boolean;
|
|
3038
3064
|
readonly isDecrease: boolean;
|
|
3039
3065
|
readonly type: 'Increase' | 'Decrease';
|
|
3040
3066
|
}
|
|
3041
3067
|
|
|
3042
|
-
/** @name PalletTxPauseCall (
|
|
3068
|
+
/** @name PalletTxPauseCall (267) */
|
|
3043
3069
|
interface PalletTxPauseCall extends Enum {
|
|
3044
3070
|
readonly isPause: boolean;
|
|
3045
3071
|
readonly asPause: {
|
|
@@ -3052,7 +3078,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3052
3078
|
readonly type: 'Pause' | 'Unpause';
|
|
3053
3079
|
}
|
|
3054
3080
|
|
|
3055
|
-
/** @name PalletUtilityCall (
|
|
3081
|
+
/** @name PalletUtilityCall (268) */
|
|
3056
3082
|
interface PalletUtilityCall extends Enum {
|
|
3057
3083
|
readonly isBatch: boolean;
|
|
3058
3084
|
readonly asBatch: {
|
|
@@ -3102,7 +3128,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3102
3128
|
| 'DispatchAsFallible';
|
|
3103
3129
|
}
|
|
3104
3130
|
|
|
3105
|
-
/** @name PalletSudoCall (
|
|
3131
|
+
/** @name PalletSudoCall (270) */
|
|
3106
3132
|
interface PalletSudoCall extends Enum {
|
|
3107
3133
|
readonly isSudo: boolean;
|
|
3108
3134
|
readonly asSudo: {
|
|
@@ -3126,7 +3152,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3126
3152
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3127
3153
|
}
|
|
3128
3154
|
|
|
3129
|
-
/** @name PalletTreasuryCall (
|
|
3155
|
+
/** @name PalletTreasuryCall (271) */
|
|
3130
3156
|
interface PalletTreasuryCall extends Enum {
|
|
3131
3157
|
readonly isBuyBonds: boolean;
|
|
3132
3158
|
readonly asBuyBonds: {
|
|
@@ -3138,10 +3164,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3138
3164
|
readonly asLiquidateBondLot: {
|
|
3139
3165
|
readonly bondLotId: u64;
|
|
3140
3166
|
} & Struct;
|
|
3141
|
-
readonly
|
|
3167
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3168
|
+
readonly asBuyArgonotBonds: {
|
|
3169
|
+
readonly bonds: u32;
|
|
3170
|
+
} & Struct;
|
|
3171
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3142
3172
|
}
|
|
3143
3173
|
|
|
3144
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3174
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3145
3175
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3146
3176
|
readonly vaultId: Compact<u32>;
|
|
3147
3177
|
readonly beneficiary: AccountId32;
|
|
@@ -3149,7 +3179,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3149
3179
|
readonly signature: SpRuntimeMultiSignature;
|
|
3150
3180
|
}
|
|
3151
3181
|
|
|
3152
|
-
/** @name PalletOperationalAccountsCall (
|
|
3182
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3153
3183
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3154
3184
|
readonly isRegister: boolean;
|
|
3155
3185
|
readonly asRegister: {
|
|
@@ -3185,14 +3215,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3185
3215
|
| 'ClaimRewards';
|
|
3186
3216
|
}
|
|
3187
3217
|
|
|
3188
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3218
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3189
3219
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3190
3220
|
readonly isV1: boolean;
|
|
3191
3221
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3192
3222
|
readonly type: 'V1';
|
|
3193
3223
|
}
|
|
3194
3224
|
|
|
3195
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3225
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3196
3226
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3197
3227
|
readonly operationalAccount: AccountId32;
|
|
3198
3228
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3206,15 +3236,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3206
3236
|
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3207
3237
|
}
|
|
3208
3238
|
|
|
3209
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3239
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3210
3240
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3211
3241
|
|
|
3212
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3242
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3213
3243
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3214
3244
|
readonly signature: SpRuntimeMultiSignature;
|
|
3215
3245
|
}
|
|
3216
3246
|
|
|
3217
|
-
/** @name PalletOperationalAccountsReferralProof (
|
|
3247
|
+
/** @name PalletOperationalAccountsReferralProof (280) */
|
|
3218
3248
|
interface PalletOperationalAccountsReferralProof extends Struct {
|
|
3219
3249
|
readonly referralCode: U8aFixed;
|
|
3220
3250
|
readonly referralSignature: U8aFixed;
|
|
@@ -3223,7 +3253,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3223
3253
|
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3224
3254
|
}
|
|
3225
3255
|
|
|
3226
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3256
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3227
3257
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3228
3258
|
readonly hasUniswapTransfer: Option<bool>;
|
|
3229
3259
|
readonly vaultCreated: Option<bool>;
|
|
@@ -3232,7 +3262,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3232
3262
|
readonly observedMiningSeatTotal: Option<u32>;
|
|
3233
3263
|
}
|
|
3234
3264
|
|
|
3235
|
-
/** @name PalletEthereumVerifierCall (
|
|
3265
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3236
3266
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3237
3267
|
readonly isForceCheckpoint: boolean;
|
|
3238
3268
|
readonly asForceCheckpoint: {
|
|
@@ -3260,7 +3290,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3260
3290
|
| 'SetOperatingMode';
|
|
3261
3291
|
}
|
|
3262
3292
|
|
|
3263
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3293
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3264
3294
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3265
3295
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3266
3296
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3269,7 +3299,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3269
3299
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3270
3300
|
}
|
|
3271
3301
|
|
|
3272
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3302
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3273
3303
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3274
3304
|
readonly slot: u64;
|
|
3275
3305
|
readonly proposerIndex: u64;
|
|
@@ -3278,22 +3308,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3278
3308
|
readonly bodyRoot: H256;
|
|
3279
3309
|
}
|
|
3280
3310
|
|
|
3281
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3311
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3282
3312
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3283
3313
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3284
3314
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3285
3315
|
}
|
|
3286
3316
|
|
|
3287
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3317
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3288
3318
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3289
3319
|
|
|
3290
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3320
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3291
3321
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3292
3322
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3293
3323
|
readonly executionBranch: Vec<H256>;
|
|
3294
3324
|
}
|
|
3295
3325
|
|
|
3296
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3326
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3297
3327
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3298
3328
|
readonly isCapella: boolean;
|
|
3299
3329
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3302,7 +3332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3302
3332
|
readonly type: 'Capella' | 'Deneb';
|
|
3303
3333
|
}
|
|
3304
3334
|
|
|
3305
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3335
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3306
3336
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3307
3337
|
readonly parentHash: H256;
|
|
3308
3338
|
readonly feeRecipient: H160;
|
|
@@ -3321,7 +3351,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3321
3351
|
readonly withdrawalsRoot: H256;
|
|
3322
3352
|
}
|
|
3323
3353
|
|
|
3324
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3354
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3325
3355
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3326
3356
|
readonly parentHash: H256;
|
|
3327
3357
|
readonly feeRecipient: H160;
|
|
@@ -3342,7 +3372,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3342
3372
|
readonly excessBlobGas: u64;
|
|
3343
3373
|
}
|
|
3344
3374
|
|
|
3345
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3375
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3346
3376
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3347
3377
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3348
3378
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3353,13 +3383,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3383
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3354
3384
|
}
|
|
3355
3385
|
|
|
3356
|
-
/** @name PalletEthereumVerifierFork (
|
|
3386
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3357
3387
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3358
3388
|
readonly version: U8aFixed;
|
|
3359
3389
|
readonly epoch: Compact<u64>;
|
|
3360
3390
|
}
|
|
3361
3391
|
|
|
3362
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3392
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3363
3393
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3364
3394
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3365
3395
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3370,22 +3400,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3370
3400
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3371
3401
|
}
|
|
3372
3402
|
|
|
3373
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3403
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3374
3404
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3375
3405
|
readonly syncCommitteeBits: Bytes;
|
|
3376
3406
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3377
3407
|
}
|
|
3378
3408
|
|
|
3379
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3409
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3380
3410
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3381
3411
|
|
|
3382
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3412
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3383
3413
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3384
3414
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3385
3415
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3386
3416
|
}
|
|
3387
3417
|
|
|
3388
|
-
/** @name PalletCrosschainTransferCall (
|
|
3418
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3389
3419
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3390
3420
|
readonly isSetChainConfig: boolean;
|
|
3391
3421
|
readonly asSetChainConfig: {
|
|
@@ -3475,7 +3505,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3475
3505
|
| 'CollateralizeTransfer';
|
|
3476
3506
|
}
|
|
3477
3507
|
|
|
3478
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3508
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3479
3509
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3480
3510
|
readonly isEvm: boolean;
|
|
3481
3511
|
readonly asEvm: {
|
|
@@ -3487,7 +3517,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3487
3517
|
readonly type: 'Evm';
|
|
3488
3518
|
}
|
|
3489
3519
|
|
|
3490
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3520
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3491
3521
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3492
3522
|
readonly activationGasCost: Compact<u128>;
|
|
3493
3523
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3495,56 +3525,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3495
3525
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3496
3526
|
}
|
|
3497
3527
|
|
|
3498
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3528
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3499
3529
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3500
3530
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3501
3531
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3502
3532
|
}
|
|
3503
3533
|
|
|
3504
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3534
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3505
3535
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3506
3536
|
readonly anchorBlockHash: H256;
|
|
3507
3537
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3508
3538
|
}
|
|
3509
3539
|
|
|
3510
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3540
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3511
3541
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3512
3542
|
readonly rlp: Bytes;
|
|
3513
3543
|
}
|
|
3514
3544
|
|
|
3515
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3545
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3516
3546
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3517
3547
|
readonly targetBlockNumber: Compact<u64>;
|
|
3518
3548
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3519
3549
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3520
3550
|
}
|
|
3521
3551
|
|
|
3522
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3552
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3523
3553
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3524
3554
|
readonly nodes: Vec<Bytes>;
|
|
3525
3555
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3526
3556
|
}
|
|
3527
3557
|
|
|
3528
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3558
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3529
3559
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3530
3560
|
readonly transactionIndex: Compact<u64>;
|
|
3531
3561
|
readonly nodeIndexes: Vec<u16>;
|
|
3532
3562
|
}
|
|
3533
3563
|
|
|
3534
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3564
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3535
3565
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3536
3566
|
readonly transactionIndex: Compact<u64>;
|
|
3537
3567
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3538
3568
|
}
|
|
3539
3569
|
|
|
3540
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3570
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3541
3571
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3542
3572
|
readonly address: H160;
|
|
3543
3573
|
readonly topics: Vec<H256>;
|
|
3544
3574
|
readonly data: Bytes;
|
|
3545
3575
|
}
|
|
3546
3576
|
|
|
3547
|
-
/** @name PalletMultisigError (
|
|
3577
|
+
/** @name PalletMultisigError (335) */
|
|
3548
3578
|
interface PalletMultisigError extends Enum {
|
|
3549
3579
|
readonly isMinimumThreshold: boolean;
|
|
3550
3580
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3577,21 +3607,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3577
3607
|
| 'AlreadyStored';
|
|
3578
3608
|
}
|
|
3579
3609
|
|
|
3580
|
-
/** @name PalletProxyProxyDefinition (
|
|
3610
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3581
3611
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3582
3612
|
readonly delegate: AccountId32;
|
|
3583
3613
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3584
3614
|
readonly delay: u32;
|
|
3585
3615
|
}
|
|
3586
3616
|
|
|
3587
|
-
/** @name PalletProxyAnnouncement (
|
|
3617
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3588
3618
|
interface PalletProxyAnnouncement extends Struct {
|
|
3589
3619
|
readonly real: AccountId32;
|
|
3590
3620
|
readonly callHash: H256;
|
|
3591
3621
|
readonly height: u32;
|
|
3592
3622
|
}
|
|
3593
3623
|
|
|
3594
|
-
/** @name PalletProxyError (
|
|
3624
|
+
/** @name PalletProxyError (344) */
|
|
3595
3625
|
interface PalletProxyError extends Enum {
|
|
3596
3626
|
readonly isTooMany: boolean;
|
|
3597
3627
|
readonly isNotFound: boolean;
|
|
@@ -3612,16 +3642,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3612
3642
|
| 'NoSelfProxy';
|
|
3613
3643
|
}
|
|
3614
3644
|
|
|
3615
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3645
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3616
3646
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3617
3647
|
readonly tickDurationMillis: Compact<u64>;
|
|
3618
3648
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3619
3649
|
}
|
|
3620
3650
|
|
|
3621
|
-
/** @name PalletTicksError (
|
|
3651
|
+
/** @name PalletTicksError (347) */
|
|
3622
3652
|
type PalletTicksError = Null;
|
|
3623
3653
|
|
|
3624
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3654
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3625
3655
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3626
3656
|
readonly nonce: U256;
|
|
3627
3657
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3629,7 +3659,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3629
3659
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3630
3660
|
}
|
|
3631
3661
|
|
|
3632
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3662
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3633
3663
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3634
3664
|
readonly bidsCount: u32;
|
|
3635
3665
|
readonly bidAmountMin: u128;
|
|
@@ -3637,14 +3667,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3637
3667
|
readonly bidAmountSum: u128;
|
|
3638
3668
|
}
|
|
3639
3669
|
|
|
3640
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3670
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3641
3671
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3642
3672
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3643
3673
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3644
3674
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3645
3675
|
}
|
|
3646
3676
|
|
|
3647
|
-
/** @name PalletMiningSlotError (
|
|
3677
|
+
/** @name PalletMiningSlotError (376) */
|
|
3648
3678
|
interface PalletMiningSlotError extends Enum {
|
|
3649
3679
|
readonly isSlotNotTakingBids: boolean;
|
|
3650
3680
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3655,6 +3685,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3655
3685
|
readonly isInsufficientFunds: boolean;
|
|
3656
3686
|
readonly isBidCannotBeReduced: boolean;
|
|
3657
3687
|
readonly isInvalidBidAmount: boolean;
|
|
3688
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3658
3689
|
readonly isUnrecoverableHold: boolean;
|
|
3659
3690
|
readonly type:
|
|
3660
3691
|
| 'SlotNotTakingBids'
|
|
@@ -3666,10 +3697,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3666
3697
|
| 'InsufficientFunds'
|
|
3667
3698
|
| 'BidCannotBeReduced'
|
|
3668
3699
|
| 'InvalidBidAmount'
|
|
3700
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3669
3701
|
| 'UnrecoverableHold';
|
|
3670
3702
|
}
|
|
3671
3703
|
|
|
3672
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3704
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3673
3705
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3674
3706
|
readonly utxoId: u64;
|
|
3675
3707
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3678,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3678
3710
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3679
3711
|
}
|
|
3680
3712
|
|
|
3681
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3713
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3682
3714
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3683
3715
|
readonly isP2wsh: boolean;
|
|
3684
3716
|
readonly asP2wsh: {
|
|
@@ -3687,7 +3719,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3687
3719
|
readonly type: 'P2wsh';
|
|
3688
3720
|
}
|
|
3689
3721
|
|
|
3690
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3722
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3691
3723
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3692
3724
|
readonly isBitcoin: boolean;
|
|
3693
3725
|
readonly isTestnet: boolean;
|
|
@@ -3696,7 +3728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3696
3728
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3697
3729
|
}
|
|
3698
3730
|
|
|
3699
|
-
/** @name PalletBitcoinUtxosError (
|
|
3731
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3700
3732
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3701
3733
|
readonly isNoPermissions: boolean;
|
|
3702
3734
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3731,7 +3763,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3731
3763
|
| 'LockAlreadyFunded';
|
|
3732
3764
|
}
|
|
3733
3765
|
|
|
3734
|
-
/** @name ArgonPrimitivesVault (
|
|
3766
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3735
3767
|
interface ArgonPrimitivesVault extends Struct {
|
|
3736
3768
|
readonly operatorAccountId: AccountId32;
|
|
3737
3769
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3752,13 +3784,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3752
3784
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3753
3785
|
}
|
|
3754
3786
|
|
|
3755
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3787
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3756
3788
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3757
3789
|
readonly committedMicronots: Compact<u128>;
|
|
3758
3790
|
readonly encumberedMicronots: Compact<u128>;
|
|
3759
3791
|
}
|
|
3760
3792
|
|
|
3761
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3793
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3762
3794
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3763
3795
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3764
3796
|
readonly depth: Compact<u8>;
|
|
@@ -3768,14 +3800,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3768
3800
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3769
3801
|
}
|
|
3770
3802
|
|
|
3771
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3803
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3772
3804
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3773
3805
|
readonly isMain: boolean;
|
|
3774
3806
|
readonly isTest: boolean;
|
|
3775
3807
|
readonly type: 'Main' | 'Test';
|
|
3776
3808
|
}
|
|
3777
3809
|
|
|
3778
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3810
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3779
3811
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3780
3812
|
readonly frameId: Compact<u64>;
|
|
3781
3813
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3795,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3795
3827
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3796
3828
|
}
|
|
3797
3829
|
|
|
3798
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3830
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3799
3831
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3800
3832
|
readonly blockNumber: Compact<u32>;
|
|
3801
3833
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3803,7 +3835,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3803
3835
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3804
3836
|
}
|
|
3805
3837
|
|
|
3806
|
-
/** @name PalletVaultsError (
|
|
3838
|
+
/** @name PalletVaultsError (414) */
|
|
3807
3839
|
interface PalletVaultsError extends Enum {
|
|
3808
3840
|
readonly isNoMoreVaultIds: boolean;
|
|
3809
3841
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3837,6 +3869,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3869
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3838
3870
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
3839
3871
|
readonly isAccountAlreadyHasVault: boolean;
|
|
3872
|
+
readonly isOperationalAccountRegistrationRequired: boolean;
|
|
3840
3873
|
readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
|
|
3841
3874
|
readonly type:
|
|
3842
3875
|
| 'NoMoreVaultIds'
|
|
@@ -3871,10 +3904,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
3871
3904
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3872
3905
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
3873
3906
|
| 'AccountAlreadyHasVault'
|
|
3907
|
+
| 'OperationalAccountRegistrationRequired'
|
|
3874
3908
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3875
3909
|
}
|
|
3876
3910
|
|
|
3877
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3911
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3878
3912
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3879
3913
|
readonly vaultId: Compact<u32>;
|
|
3880
3914
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3898,7 +3932,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3898
3932
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3899
3933
|
}
|
|
3900
3934
|
|
|
3901
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3935
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (418) */
|
|
3902
3936
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3903
3937
|
readonly utxoId: Compact<u64>;
|
|
3904
3938
|
readonly vaultId: Compact<u32>;
|
|
@@ -3908,7 +3942,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3908
3942
|
readonly redemptionAmount: Compact<u128>;
|
|
3909
3943
|
}
|
|
3910
3944
|
|
|
3911
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3945
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (420) */
|
|
3912
3946
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3913
3947
|
readonly utxoId: Compact<u64>;
|
|
3914
3948
|
readonly vaultId: Compact<u32>;
|
|
@@ -3917,14 +3951,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3917
3951
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3918
3952
|
}
|
|
3919
3953
|
|
|
3920
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3954
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (422) */
|
|
3921
3955
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3922
3956
|
readonly bitcoinNetworkFee: u64;
|
|
3923
3957
|
readonly toScriptPubkey: Bytes;
|
|
3924
3958
|
readonly createdAtArgonBlockNumber: u32;
|
|
3925
3959
|
}
|
|
3926
3960
|
|
|
3927
|
-
/** @name PalletBitcoinLocksError (
|
|
3961
|
+
/** @name PalletBitcoinLocksError (429) */
|
|
3928
3962
|
interface PalletBitcoinLocksError extends Enum {
|
|
3929
3963
|
readonly isInsufficientFunds: boolean;
|
|
3930
3964
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4000,7 +4034,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4000
4034
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4001
4035
|
}
|
|
4002
4036
|
|
|
4003
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4037
|
+
/** @name ArgonPrimitivesVaultVaultError (430) */
|
|
4004
4038
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4005
4039
|
readonly isVaultClosed: boolean;
|
|
4006
4040
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4031,7 +4065,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4031
4065
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4032
4066
|
}
|
|
4033
4067
|
|
|
4034
|
-
/** @name PalletNotariesError (
|
|
4068
|
+
/** @name PalletNotariesError (442) */
|
|
4035
4069
|
interface PalletNotariesError extends Enum {
|
|
4036
4070
|
readonly isProposalNotFound: boolean;
|
|
4037
4071
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4054,7 +4088,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4054
4088
|
| 'InvalidNotary';
|
|
4055
4089
|
}
|
|
4056
4090
|
|
|
4057
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4091
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (446) */
|
|
4058
4092
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4059
4093
|
readonly notebookNumber: Compact<u32>;
|
|
4060
4094
|
readonly tick: Compact<u64>;
|
|
@@ -4063,7 +4097,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4063
4097
|
readonly parentSecret: Option<H256>;
|
|
4064
4098
|
}
|
|
4065
4099
|
|
|
4066
|
-
/** @name PalletNotebookError (
|
|
4100
|
+
/** @name PalletNotebookError (449) */
|
|
4067
4101
|
interface PalletNotebookError extends Enum {
|
|
4068
4102
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4069
4103
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4098,7 +4132,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4098
4132
|
| 'InvalidNotebookSubmissionTick';
|
|
4099
4133
|
}
|
|
4100
4134
|
|
|
4101
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4135
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (450) */
|
|
4102
4136
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4103
4137
|
readonly accountId: AccountId32;
|
|
4104
4138
|
readonly amount: u128;
|
|
@@ -4106,10 +4140,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4106
4140
|
readonly notaryId: u32;
|
|
4107
4141
|
}
|
|
4108
4142
|
|
|
4109
|
-
/** @name FrameSupportPalletId (
|
|
4143
|
+
/** @name FrameSupportPalletId (452) */
|
|
4110
4144
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4111
4145
|
|
|
4112
|
-
/** @name PalletLocalchainTransferError (
|
|
4146
|
+
/** @name PalletLocalchainTransferError (453) */
|
|
4113
4147
|
interface PalletLocalchainTransferError extends Enum {
|
|
4114
4148
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4115
4149
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4130,7 +4164,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4130
4164
|
| 'NoAvailableTransferId';
|
|
4131
4165
|
}
|
|
4132
4166
|
|
|
4133
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4167
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (457) */
|
|
4134
4168
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4135
4169
|
readonly notaryId: Compact<u32>;
|
|
4136
4170
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4139,13 +4173,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4139
4173
|
readonly blockVotingPower: Compact<u128>;
|
|
4140
4174
|
}
|
|
4141
4175
|
|
|
4142
|
-
/** @name PalletBlockSealSpecError (
|
|
4176
|
+
/** @name PalletBlockSealSpecError (462) */
|
|
4143
4177
|
interface PalletBlockSealSpecError extends Enum {
|
|
4144
4178
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4145
4179
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4146
4180
|
}
|
|
4147
4181
|
|
|
4148
|
-
/** @name PalletDomainsError (
|
|
4182
|
+
/** @name PalletDomainsError (464) */
|
|
4149
4183
|
interface PalletDomainsError extends Enum {
|
|
4150
4184
|
readonly isDomainNotRegistered: boolean;
|
|
4151
4185
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4160,21 +4194,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4160
4194
|
| 'AccountDecodingError';
|
|
4161
4195
|
}
|
|
4162
4196
|
|
|
4163
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4197
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (466) */
|
|
4164
4198
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4165
4199
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4166
4200
|
readonly totalCpi: i128;
|
|
4167
4201
|
readonly measurementsCount: u32;
|
|
4168
4202
|
}
|
|
4169
4203
|
|
|
4170
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4204
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (470) */
|
|
4171
4205
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4172
4206
|
readonly frameId: Compact<u64>;
|
|
4173
4207
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4174
4208
|
readonly sampleCount: Compact<u32>;
|
|
4175
4209
|
}
|
|
4176
4210
|
|
|
4177
|
-
/** @name PalletPriceIndexError (
|
|
4211
|
+
/** @name PalletPriceIndexError (471) */
|
|
4178
4212
|
interface PalletPriceIndexError extends Enum {
|
|
4179
4213
|
readonly isNotAuthorizedOperator: boolean;
|
|
4180
4214
|
readonly isMissingValue: boolean;
|
|
@@ -4187,7 +4221,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4187
4221
|
| 'MaxPriceChangePerTickExceeded';
|
|
4188
4222
|
}
|
|
4189
4223
|
|
|
4190
|
-
/** @name PalletGrandpaStoredState (
|
|
4224
|
+
/** @name PalletGrandpaStoredState (472) */
|
|
4191
4225
|
interface PalletGrandpaStoredState extends Enum {
|
|
4192
4226
|
readonly isLive: boolean;
|
|
4193
4227
|
readonly isPendingPause: boolean;
|
|
@@ -4204,7 +4238,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4204
4238
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4205
4239
|
}
|
|
4206
4240
|
|
|
4207
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4241
|
+
/** @name PalletGrandpaStoredPendingChange (473) */
|
|
4208
4242
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4209
4243
|
readonly scheduledAt: u32;
|
|
4210
4244
|
readonly delay: u32;
|
|
@@ -4212,7 +4246,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4212
4246
|
readonly forced: Option<u32>;
|
|
4213
4247
|
}
|
|
4214
4248
|
|
|
4215
|
-
/** @name PalletGrandpaError (
|
|
4249
|
+
/** @name PalletGrandpaError (475) */
|
|
4216
4250
|
interface PalletGrandpaError extends Enum {
|
|
4217
4251
|
readonly isPauseFailed: boolean;
|
|
4218
4252
|
readonly isResumeFailed: boolean;
|
|
@@ -4231,14 +4265,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4231
4265
|
| 'DuplicateOffenceReport';
|
|
4232
4266
|
}
|
|
4233
4267
|
|
|
4234
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4268
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (476) */
|
|
4235
4269
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4236
4270
|
readonly blockAuthorAccountId: AccountId32;
|
|
4237
4271
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4238
4272
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4239
4273
|
}
|
|
4240
4274
|
|
|
4241
|
-
/** @name PalletBlockSealError (
|
|
4275
|
+
/** @name PalletBlockSealError (478) */
|
|
4242
4276
|
interface PalletBlockSealError extends Enum {
|
|
4243
4277
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4244
4278
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4285,30 +4319,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4285
4319
|
| 'DuplicateVoteBlockAtTick';
|
|
4286
4320
|
}
|
|
4287
4321
|
|
|
4288
|
-
/** @name PalletBlockRewardsError (
|
|
4322
|
+
/** @name PalletBlockRewardsError (482) */
|
|
4289
4323
|
type PalletBlockRewardsError = Null;
|
|
4290
4324
|
|
|
4291
|
-
/** @name
|
|
4325
|
+
/** @name PalletMintPendingMintUtxo (483) */
|
|
4326
|
+
interface PalletMintPendingMintUtxo extends Struct {
|
|
4327
|
+
readonly utxoId: Compact<u64>;
|
|
4328
|
+
readonly accountId: AccountId32;
|
|
4329
|
+
readonly remainingAmount: Compact<u128>;
|
|
4330
|
+
readonly maxAmountPerFrame: Compact<u128>;
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
/** @name PalletMintMintQueueCursor (485) */
|
|
4334
|
+
interface PalletMintMintQueueCursor extends Struct {
|
|
4335
|
+
readonly payoutStartIndex: Compact<u64>;
|
|
4336
|
+
readonly payoutCursorIndex: Compact<u64>;
|
|
4337
|
+
readonly payoutCursorFrameId: Option<u64>;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
/** @name PalletMintMintAction (488) */
|
|
4292
4341
|
interface PalletMintMintAction extends Struct {
|
|
4293
4342
|
readonly argonBurned: u128;
|
|
4294
4343
|
readonly argonMinted: u128;
|
|
4295
4344
|
readonly bitcoinMinted: u128;
|
|
4296
4345
|
}
|
|
4297
4346
|
|
|
4298
|
-
/** @name PalletMintError (
|
|
4347
|
+
/** @name PalletMintError (490) */
|
|
4299
4348
|
interface PalletMintError extends Enum {
|
|
4300
4349
|
readonly isTooManyPendingMints: boolean;
|
|
4301
4350
|
readonly type: 'TooManyPendingMints';
|
|
4302
4351
|
}
|
|
4303
4352
|
|
|
4304
|
-
/** @name PalletBalancesBalanceLock (
|
|
4353
|
+
/** @name PalletBalancesBalanceLock (492) */
|
|
4305
4354
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4306
4355
|
readonly id: U8aFixed;
|
|
4307
4356
|
readonly amount: u128;
|
|
4308
4357
|
readonly reasons: PalletBalancesReasons;
|
|
4309
4358
|
}
|
|
4310
4359
|
|
|
4311
|
-
/** @name PalletBalancesReasons (
|
|
4360
|
+
/** @name PalletBalancesReasons (493) */
|
|
4312
4361
|
interface PalletBalancesReasons extends Enum {
|
|
4313
4362
|
readonly isFee: boolean;
|
|
4314
4363
|
readonly isMisc: boolean;
|
|
@@ -4316,38 +4365,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4316
4365
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4317
4366
|
}
|
|
4318
4367
|
|
|
4319
|
-
/** @name PalletBalancesReserveData (
|
|
4368
|
+
/** @name PalletBalancesReserveData (496) */
|
|
4320
4369
|
interface PalletBalancesReserveData extends Struct {
|
|
4321
4370
|
readonly id: U8aFixed;
|
|
4322
4371
|
readonly amount: u128;
|
|
4323
4372
|
}
|
|
4324
4373
|
|
|
4325
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4374
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (499) */
|
|
4326
4375
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4327
4376
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4328
4377
|
readonly amount: u128;
|
|
4329
4378
|
}
|
|
4330
4379
|
|
|
4331
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4380
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (502) */
|
|
4332
4381
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4333
4382
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4334
4383
|
readonly amount: u128;
|
|
4335
4384
|
}
|
|
4336
4385
|
|
|
4337
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4386
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (503) */
|
|
4338
4387
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4339
4388
|
readonly isBlockRewards: boolean;
|
|
4340
4389
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4341
4390
|
readonly type: 'BlockRewards';
|
|
4342
4391
|
}
|
|
4343
4392
|
|
|
4344
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4393
|
+
/** @name PalletBlockRewardsFreezeReason (504) */
|
|
4345
4394
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4346
4395
|
readonly isMaturationPeriod: boolean;
|
|
4347
4396
|
readonly type: 'MaturationPeriod';
|
|
4348
4397
|
}
|
|
4349
4398
|
|
|
4350
|
-
/** @name PalletBalancesError (
|
|
4399
|
+
/** @name PalletBalancesError (506) */
|
|
4351
4400
|
interface PalletBalancesError extends Enum {
|
|
4352
4401
|
readonly isVestingBalance: boolean;
|
|
4353
4402
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4376,7 +4425,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4376
4425
|
| 'DeltaZero';
|
|
4377
4426
|
}
|
|
4378
4427
|
|
|
4379
|
-
/** @name PalletTxPauseError (
|
|
4428
|
+
/** @name PalletTxPauseError (508) */
|
|
4380
4429
|
interface PalletTxPauseError extends Enum {
|
|
4381
4430
|
readonly isIsPaused: boolean;
|
|
4382
4431
|
readonly isIsUnpaused: boolean;
|
|
@@ -4385,58 +4434,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4385
4434
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4386
4435
|
}
|
|
4387
4436
|
|
|
4388
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4437
|
+
/** @name PalletTransactionPaymentReleases (509) */
|
|
4389
4438
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4390
4439
|
readonly isV1Ancient: boolean;
|
|
4391
4440
|
readonly isV2: boolean;
|
|
4392
4441
|
readonly type: 'V1Ancient' | 'V2';
|
|
4393
4442
|
}
|
|
4394
4443
|
|
|
4395
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4444
|
+
/** @name FrameSupportStorageNoDrop (510) */
|
|
4396
4445
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4397
4446
|
|
|
4398
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4447
|
+
/** @name FrameSupportTokensFungibleImbalance (511) */
|
|
4399
4448
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4400
4449
|
readonly amount: u128;
|
|
4401
4450
|
}
|
|
4402
4451
|
|
|
4403
|
-
/** @name PalletUtilityError (
|
|
4452
|
+
/** @name PalletUtilityError (512) */
|
|
4404
4453
|
interface PalletUtilityError extends Enum {
|
|
4405
4454
|
readonly isTooManyCalls: boolean;
|
|
4406
4455
|
readonly type: 'TooManyCalls';
|
|
4407
4456
|
}
|
|
4408
4457
|
|
|
4409
|
-
/** @name PalletSudoError (
|
|
4458
|
+
/** @name PalletSudoError (513) */
|
|
4410
4459
|
interface PalletSudoError extends Enum {
|
|
4411
4460
|
readonly isRequireSudo: boolean;
|
|
4412
4461
|
readonly type: 'RequireSudo';
|
|
4413
4462
|
}
|
|
4414
4463
|
|
|
4415
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4464
|
+
/** @name PalletTreasuryFrameVaultCapital (514) */
|
|
4416
4465
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4417
4466
|
readonly frameId: Compact<u64>;
|
|
4418
4467
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4419
4468
|
}
|
|
4420
4469
|
|
|
4421
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4470
|
+
/** @name PalletTreasuryVaultCapital (516) */
|
|
4422
4471
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4423
4472
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4424
4473
|
readonly eligibleBonds: Compact<u32>;
|
|
4425
4474
|
}
|
|
4426
4475
|
|
|
4427
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4476
|
+
/** @name PalletTreasuryBondLotAllocation (518) */
|
|
4428
4477
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4429
4478
|
readonly bondLotId: Compact<u64>;
|
|
4430
4479
|
readonly prorata: u128;
|
|
4431
4480
|
}
|
|
4432
4481
|
|
|
4433
|
-
/** @name
|
|
4482
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (523) */
|
|
4483
|
+
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4484
|
+
readonly frameId: Compact<u64>;
|
|
4485
|
+
readonly totalBonds: Compact<u32>;
|
|
4486
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4487
|
+
}
|
|
4488
|
+
|
|
4489
|
+
/** @name PalletTreasuryBondLotSummary (525) */
|
|
4490
|
+
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4491
|
+
readonly bondLotId: Compact<u64>;
|
|
4492
|
+
readonly bonds: Compact<u32>;
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
/** @name PalletTreasuryBondLot (527) */
|
|
4434
4496
|
interface PalletTreasuryBondLot extends Struct {
|
|
4435
4497
|
readonly owner: AccountId32;
|
|
4436
|
-
readonly
|
|
4498
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4437
4499
|
readonly bonds: Compact<u32>;
|
|
4438
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4439
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4440
4500
|
readonly createdFrameId: Compact<u64>;
|
|
4441
4501
|
readonly participatedFrames: Compact<u32>;
|
|
4442
4502
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4446,13 +4506,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4446
4506
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4447
4507
|
}
|
|
4448
4508
|
|
|
4449
|
-
/** @name
|
|
4450
|
-
interface
|
|
4451
|
-
readonly
|
|
4452
|
-
readonly
|
|
4509
|
+
/** @name PalletTreasuryBondProgram (528) */
|
|
4510
|
+
interface PalletTreasuryBondProgram extends Enum {
|
|
4511
|
+
readonly isVault: boolean;
|
|
4512
|
+
readonly asVault: {
|
|
4513
|
+
readonly vaultId: Compact<u32>;
|
|
4514
|
+
readonly sharingPercent: Compact<Permill>;
|
|
4515
|
+
readonly bonusPercent: Compact<Permill>;
|
|
4516
|
+
} & Struct;
|
|
4517
|
+
readonly isArgonot: boolean;
|
|
4518
|
+
readonly type: 'Vault' | 'Argonot';
|
|
4453
4519
|
}
|
|
4454
4520
|
|
|
4455
|
-
/** @name PalletTreasuryError (
|
|
4521
|
+
/** @name PalletTreasuryError (533) */
|
|
4456
4522
|
interface PalletTreasuryError extends Enum {
|
|
4457
4523
|
readonly isBondPurchaseRejected: boolean;
|
|
4458
4524
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4470,6 +4536,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4470
4536
|
readonly isBonusApprovalExpired: boolean;
|
|
4471
4537
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4472
4538
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4539
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4540
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4473
4541
|
readonly type:
|
|
4474
4542
|
| 'BondPurchaseRejected'
|
|
4475
4543
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4486,16 +4554,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4486
4554
|
| 'BonusApprovalWrongAccount'
|
|
4487
4555
|
| 'BonusApprovalExpired'
|
|
4488
4556
|
| 'BonusApprovalExistingBondLot'
|
|
4489
|
-
| 'InvalidBonusApprovalSignature'
|
|
4557
|
+
| 'InvalidBonusApprovalSignature'
|
|
4558
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4559
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4490
4560
|
}
|
|
4491
4561
|
|
|
4492
|
-
/** @name PalletFeeControlError (
|
|
4562
|
+
/** @name PalletFeeControlError (534) */
|
|
4493
4563
|
interface PalletFeeControlError extends Enum {
|
|
4494
4564
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4495
4565
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4496
4566
|
}
|
|
4497
4567
|
|
|
4498
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4568
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4499
4569
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4500
4570
|
readonly vaultAccount: AccountId32;
|
|
4501
4571
|
readonly miningFundingAccount: AccountId32;
|
|
@@ -4518,13 +4588,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4518
4588
|
readonly isOperational: bool;
|
|
4519
4589
|
}
|
|
4520
4590
|
|
|
4521
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4591
|
+
/** @name PalletOperationalAccountsRewardsConfig (537) */
|
|
4522
4592
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4523
4593
|
readonly operationalReferralReward: Compact<u128>;
|
|
4524
4594
|
readonly referralBonusReward: Compact<u128>;
|
|
4525
4595
|
}
|
|
4526
4596
|
|
|
4527
|
-
/** @name PalletOperationalAccountsError (
|
|
4597
|
+
/** @name PalletOperationalAccountsError (539) */
|
|
4528
4598
|
interface PalletOperationalAccountsError extends Enum {
|
|
4529
4599
|
readonly isAlreadyRegistered: boolean;
|
|
4530
4600
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4533,6 +4603,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4533
4603
|
readonly isNotOperationalAccount: boolean;
|
|
4534
4604
|
readonly isInvalidReferralProof: boolean;
|
|
4535
4605
|
readonly isReferralProofExpired: boolean;
|
|
4606
|
+
readonly isRegistrationInviteRequired: boolean;
|
|
4536
4607
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4537
4608
|
readonly isEncryptedServerTooLong: boolean;
|
|
4538
4609
|
readonly isNotSponsorOfSponsee: boolean;
|
|
@@ -4551,6 +4622,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4551
4622
|
| 'NotOperationalAccount'
|
|
4552
4623
|
| 'InvalidReferralProof'
|
|
4553
4624
|
| 'ReferralProofExpired'
|
|
4625
|
+
| 'RegistrationInviteRequired'
|
|
4554
4626
|
| 'NoProgressUpdateProvided'
|
|
4555
4627
|
| 'EncryptedServerTooLong'
|
|
4556
4628
|
| 'NotSponsorOfSponsee'
|
|
@@ -4563,12 +4635,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4563
4635
|
| 'NotEligibleForActivation';
|
|
4564
4636
|
}
|
|
4565
4637
|
|
|
4566
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4638
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (540) */
|
|
4567
4639
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4568
4640
|
readonly slot: Compact<u64>;
|
|
4569
4641
|
}
|
|
4570
4642
|
|
|
4571
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4643
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (541) */
|
|
4572
4644
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4573
4645
|
readonly blockNumber: Compact<u64>;
|
|
4574
4646
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4578,44 +4650,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4578
4650
|
readonly receiptsRoot: H256;
|
|
4579
4651
|
}
|
|
4580
4652
|
|
|
4581
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4653
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (542) */
|
|
4582
4654
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4583
4655
|
readonly root: H256;
|
|
4584
4656
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4585
4657
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4586
4658
|
}
|
|
4587
4659
|
|
|
4588
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4660
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (544) */
|
|
4589
4661
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4590
4662
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4591
4663
|
}
|
|
4592
4664
|
|
|
4593
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4665
|
+
/** @name SnowbridgeAmclBls381Ecp (545) */
|
|
4594
4666
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4595
4667
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4596
4668
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4597
4669
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4598
4670
|
}
|
|
4599
4671
|
|
|
4600
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4672
|
+
/** @name SnowbridgeAmclBls381Fp (546) */
|
|
4601
4673
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4602
4674
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4603
4675
|
readonly xes: i32;
|
|
4604
4676
|
}
|
|
4605
4677
|
|
|
4606
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4678
|
+
/** @name SnowbridgeAmclBls381Big (547) */
|
|
4607
4679
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4608
4680
|
readonly w: Vec<i32>;
|
|
4609
4681
|
}
|
|
4610
4682
|
|
|
4611
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4683
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (551) */
|
|
4612
4684
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4613
4685
|
readonly isMainnet: boolean;
|
|
4614
4686
|
readonly isMinimal: boolean;
|
|
4615
4687
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4616
4688
|
}
|
|
4617
4689
|
|
|
4618
|
-
/** @name PalletEthereumVerifierError (
|
|
4690
|
+
/** @name PalletEthereumVerifierError (552) */
|
|
4619
4691
|
interface PalletEthereumVerifierError extends Enum {
|
|
4620
4692
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4621
4693
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4668,21 +4740,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4668
4740
|
| 'Halted';
|
|
4669
4741
|
}
|
|
4670
4742
|
|
|
4671
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4743
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
4672
4744
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4673
4745
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4674
4746
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4675
4747
|
readonly totalWeight: u128;
|
|
4676
4748
|
}
|
|
4677
4749
|
|
|
4678
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4750
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4679
4751
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4680
4752
|
readonly accountId: AccountId32;
|
|
4681
4753
|
readonly signer: H160;
|
|
4682
4754
|
readonly weight: u128;
|
|
4683
4755
|
}
|
|
4684
4756
|
|
|
4685
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4757
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4686
4758
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4687
4759
|
readonly approvingCouncilHash: H256;
|
|
4688
4760
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4694,7 +4766,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4694
4766
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4695
4767
|
}
|
|
4696
4768
|
|
|
4697
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4769
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4698
4770
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4699
4771
|
readonly accountId: AccountId32;
|
|
4700
4772
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4711,7 +4783,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4711
4783
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4712
4784
|
}
|
|
4713
4785
|
|
|
4714
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4786
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4715
4787
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4716
4788
|
readonly isPendingActivation: boolean;
|
|
4717
4789
|
readonly isActive: boolean;
|
|
@@ -4719,7 +4791,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4719
4791
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4720
4792
|
}
|
|
4721
4793
|
|
|
4722
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4794
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4723
4795
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4724
4796
|
readonly argonAccountId: AccountId32;
|
|
4725
4797
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4738,7 +4810,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4738
4810
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4739
4811
|
}
|
|
4740
4812
|
|
|
4741
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4813
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4742
4814
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4743
4815
|
readonly microgonCollateral: u128;
|
|
4744
4816
|
readonly micronotCollateral: u128;
|
|
@@ -4746,27 +4818,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4746
4818
|
readonly signature: U8aFixed;
|
|
4747
4819
|
}
|
|
4748
4820
|
|
|
4749
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4821
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4750
4822
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4751
4823
|
readonly isStarted: boolean;
|
|
4752
4824
|
readonly isReady: boolean;
|
|
4753
4825
|
readonly type: 'Started' | 'Ready';
|
|
4754
4826
|
}
|
|
4755
4827
|
|
|
4756
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4828
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4757
4829
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4758
4830
|
readonly transferId: H256;
|
|
4759
4831
|
readonly remainingCollateral: u128;
|
|
4760
4832
|
readonly remainingMintingAuthorityTip: u128;
|
|
4761
4833
|
}
|
|
4762
4834
|
|
|
4763
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4835
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4764
4836
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4765
4837
|
readonly argonCirculation: u128;
|
|
4766
4838
|
readonly argonotCirculation: u128;
|
|
4767
4839
|
}
|
|
4768
4840
|
|
|
4769
|
-
/** @name PalletCrosschainTransferError (
|
|
4841
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4770
4842
|
interface PalletCrosschainTransferError extends Enum {
|
|
4771
4843
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4772
4844
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4879,45 +4951,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4879
4951
|
| 'TooManyPendingTransferOuts';
|
|
4880
4952
|
}
|
|
4881
4953
|
|
|
4882
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4954
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4883
4955
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4884
4956
|
|
|
4885
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4957
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4886
4958
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4887
4959
|
|
|
4888
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4960
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4889
4961
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4890
4962
|
|
|
4891
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4963
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4892
4964
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4893
4965
|
|
|
4894
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4966
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4895
4967
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4896
4968
|
|
|
4897
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4969
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
4898
4970
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4899
4971
|
|
|
4900
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4972
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
4901
4973
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4902
4974
|
|
|
4903
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4975
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
4904
4976
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4905
4977
|
|
|
4906
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4978
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
4907
4979
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4908
4980
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4909
4981
|
}
|
|
4910
4982
|
|
|
4911
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
4983
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
4912
4984
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4913
4985
|
readonly isDisabled: boolean;
|
|
4914
4986
|
readonly isEnabled: boolean;
|
|
4915
4987
|
readonly type: 'Disabled' | 'Enabled';
|
|
4916
4988
|
}
|
|
4917
4989
|
|
|
4918
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
4990
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
4919
4991
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4920
4992
|
|
|
4921
|
-
/** @name ArgonRuntimeRuntime (
|
|
4993
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
4922
4994
|
type ArgonRuntimeRuntime = Null;
|
|
4923
4995
|
} // declare module
|