@argonprotocol/mainchain 1.4.9-dev.bc5f3764 → 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 +408 -254
- package/browser/index.js +18 -6
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +18 -6
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +408 -254
- package/lib/index.d.ts +408 -254
- package/lib/index.js +18 -6
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +25 -2
- package/src/interfaces/augment-api-errors.ts +8 -0
- package/src/interfaces/augment-api-events.ts +70 -11
- package/src/interfaces/augment-api-query.ts +51 -5
- package/src/interfaces/augment-api-tx.ts +7 -0
- package/src/interfaces/lookup.ts +296 -234
- package/src/interfaces/registry.ts +10 -0
- package/src/interfaces/types-lookup.ts +298 -236
|
@@ -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,7 +2983,7 @@ 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: {
|
|
@@ -2974,10 +2996,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2974
2996
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
2975
2997
|
}
|
|
2976
2998
|
|
|
2977
|
-
/** @name PalletMintCall (
|
|
2999
|
+
/** @name PalletMintCall (263) */
|
|
2978
3000
|
type PalletMintCall = Null;
|
|
2979
3001
|
|
|
2980
|
-
/** @name PalletBalancesCall (
|
|
3002
|
+
/** @name PalletBalancesCall (264) */
|
|
2981
3003
|
interface PalletBalancesCall extends Enum {
|
|
2982
3004
|
readonly isTransferAllowDeath: boolean;
|
|
2983
3005
|
readonly asTransferAllowDeath: {
|
|
@@ -3036,14 +3058,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3036
3058
|
| 'Burn';
|
|
3037
3059
|
}
|
|
3038
3060
|
|
|
3039
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3061
|
+
/** @name PalletBalancesAdjustmentDirection (265) */
|
|
3040
3062
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3041
3063
|
readonly isIncrease: boolean;
|
|
3042
3064
|
readonly isDecrease: boolean;
|
|
3043
3065
|
readonly type: 'Increase' | 'Decrease';
|
|
3044
3066
|
}
|
|
3045
3067
|
|
|
3046
|
-
/** @name PalletTxPauseCall (
|
|
3068
|
+
/** @name PalletTxPauseCall (267) */
|
|
3047
3069
|
interface PalletTxPauseCall extends Enum {
|
|
3048
3070
|
readonly isPause: boolean;
|
|
3049
3071
|
readonly asPause: {
|
|
@@ -3056,7 +3078,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3056
3078
|
readonly type: 'Pause' | 'Unpause';
|
|
3057
3079
|
}
|
|
3058
3080
|
|
|
3059
|
-
/** @name PalletUtilityCall (
|
|
3081
|
+
/** @name PalletUtilityCall (268) */
|
|
3060
3082
|
interface PalletUtilityCall extends Enum {
|
|
3061
3083
|
readonly isBatch: boolean;
|
|
3062
3084
|
readonly asBatch: {
|
|
@@ -3106,7 +3128,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3106
3128
|
| 'DispatchAsFallible';
|
|
3107
3129
|
}
|
|
3108
3130
|
|
|
3109
|
-
/** @name PalletSudoCall (
|
|
3131
|
+
/** @name PalletSudoCall (270) */
|
|
3110
3132
|
interface PalletSudoCall extends Enum {
|
|
3111
3133
|
readonly isSudo: boolean;
|
|
3112
3134
|
readonly asSudo: {
|
|
@@ -3130,7 +3152,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3130
3152
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3131
3153
|
}
|
|
3132
3154
|
|
|
3133
|
-
/** @name PalletTreasuryCall (
|
|
3155
|
+
/** @name PalletTreasuryCall (271) */
|
|
3134
3156
|
interface PalletTreasuryCall extends Enum {
|
|
3135
3157
|
readonly isBuyBonds: boolean;
|
|
3136
3158
|
readonly asBuyBonds: {
|
|
@@ -3142,10 +3164,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3142
3164
|
readonly asLiquidateBondLot: {
|
|
3143
3165
|
readonly bondLotId: u64;
|
|
3144
3166
|
} & Struct;
|
|
3145
|
-
readonly
|
|
3167
|
+
readonly isBuyArgonotBonds: boolean;
|
|
3168
|
+
readonly asBuyArgonotBonds: {
|
|
3169
|
+
readonly bonds: u32;
|
|
3170
|
+
} & Struct;
|
|
3171
|
+
readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
|
|
3146
3172
|
}
|
|
3147
3173
|
|
|
3148
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3174
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
|
|
3149
3175
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3150
3176
|
readonly vaultId: Compact<u32>;
|
|
3151
3177
|
readonly beneficiary: AccountId32;
|
|
@@ -3153,7 +3179,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3153
3179
|
readonly signature: SpRuntimeMultiSignature;
|
|
3154
3180
|
}
|
|
3155
3181
|
|
|
3156
|
-
/** @name PalletOperationalAccountsCall (
|
|
3182
|
+
/** @name PalletOperationalAccountsCall (274) */
|
|
3157
3183
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3158
3184
|
readonly isRegister: boolean;
|
|
3159
3185
|
readonly asRegister: {
|
|
@@ -3189,14 +3215,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3189
3215
|
| 'ClaimRewards';
|
|
3190
3216
|
}
|
|
3191
3217
|
|
|
3192
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3218
|
+
/** @name PalletOperationalAccountsRegistration (275) */
|
|
3193
3219
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3194
3220
|
readonly isV1: boolean;
|
|
3195
3221
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3196
3222
|
readonly type: 'V1';
|
|
3197
3223
|
}
|
|
3198
3224
|
|
|
3199
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3225
|
+
/** @name PalletOperationalAccountsRegistrationV1 (276) */
|
|
3200
3226
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3201
3227
|
readonly operationalAccount: AccountId32;
|
|
3202
3228
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3210,15 +3236,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
3210
3236
|
readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
|
|
3211
3237
|
}
|
|
3212
3238
|
|
|
3213
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3239
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
|
|
3214
3240
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3215
3241
|
|
|
3216
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3242
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (278) */
|
|
3217
3243
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3218
3244
|
readonly signature: SpRuntimeMultiSignature;
|
|
3219
3245
|
}
|
|
3220
3246
|
|
|
3221
|
-
/** @name PalletOperationalAccountsReferralProof (
|
|
3247
|
+
/** @name PalletOperationalAccountsReferralProof (280) */
|
|
3222
3248
|
interface PalletOperationalAccountsReferralProof extends Struct {
|
|
3223
3249
|
readonly referralCode: U8aFixed;
|
|
3224
3250
|
readonly referralSignature: U8aFixed;
|
|
@@ -3227,7 +3253,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3227
3253
|
readonly sponsorSignature: SpRuntimeMultiSignature;
|
|
3228
3254
|
}
|
|
3229
3255
|
|
|
3230
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3256
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (281) */
|
|
3231
3257
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3232
3258
|
readonly hasUniswapTransfer: Option<bool>;
|
|
3233
3259
|
readonly vaultCreated: Option<bool>;
|
|
@@ -3236,7 +3262,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3236
3262
|
readonly observedMiningSeatTotal: Option<u32>;
|
|
3237
3263
|
}
|
|
3238
3264
|
|
|
3239
|
-
/** @name PalletEthereumVerifierCall (
|
|
3265
|
+
/** @name PalletEthereumVerifierCall (283) */
|
|
3240
3266
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3241
3267
|
readonly isForceCheckpoint: boolean;
|
|
3242
3268
|
readonly asForceCheckpoint: {
|
|
@@ -3264,7 +3290,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3290
|
| 'SetOperatingMode';
|
|
3265
3291
|
}
|
|
3266
3292
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3293
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (284) */
|
|
3268
3294
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3269
3295
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3270
3296
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3273,7 +3299,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3273
3299
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3274
3300
|
}
|
|
3275
3301
|
|
|
3276
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3302
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
|
|
3277
3303
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3278
3304
|
readonly slot: u64;
|
|
3279
3305
|
readonly proposerIndex: u64;
|
|
@@ -3282,22 +3308,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3282
3308
|
readonly bodyRoot: H256;
|
|
3283
3309
|
}
|
|
3284
3310
|
|
|
3285
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3311
|
+
/** @name PalletEthereumVerifierSyncCommittee (286) */
|
|
3286
3312
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3287
3313
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3288
3314
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3289
3315
|
}
|
|
3290
3316
|
|
|
3291
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3317
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
|
|
3292
3318
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3293
3319
|
|
|
3294
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3320
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (292) */
|
|
3295
3321
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3296
3322
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3297
3323
|
readonly executionBranch: Vec<H256>;
|
|
3298
3324
|
}
|
|
3299
3325
|
|
|
3300
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3326
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
|
|
3301
3327
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3302
3328
|
readonly isCapella: boolean;
|
|
3303
3329
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3306,7 +3332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3306
3332
|
readonly type: 'Capella' | 'Deneb';
|
|
3307
3333
|
}
|
|
3308
3334
|
|
|
3309
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3335
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
|
|
3310
3336
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3311
3337
|
readonly parentHash: H256;
|
|
3312
3338
|
readonly feeRecipient: H160;
|
|
@@ -3325,7 +3351,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3325
3351
|
readonly withdrawalsRoot: H256;
|
|
3326
3352
|
}
|
|
3327
3353
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3354
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
|
|
3329
3355
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3330
3356
|
readonly parentHash: H256;
|
|
3331
3357
|
readonly feeRecipient: H160;
|
|
@@ -3346,7 +3372,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3346
3372
|
readonly excessBlobGas: u64;
|
|
3347
3373
|
}
|
|
3348
3374
|
|
|
3349
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3375
|
+
/** @name PalletEthereumVerifierForkVersions (296) */
|
|
3350
3376
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3351
3377
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3352
3378
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3357,13 +3383,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3357
3383
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3358
3384
|
}
|
|
3359
3385
|
|
|
3360
|
-
/** @name PalletEthereumVerifierFork (
|
|
3386
|
+
/** @name PalletEthereumVerifierFork (297) */
|
|
3361
3387
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3362
3388
|
readonly version: U8aFixed;
|
|
3363
3389
|
readonly epoch: Compact<u64>;
|
|
3364
3390
|
}
|
|
3365
3391
|
|
|
3366
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3392
|
+
/** @name PalletEthereumVerifierUpdate (298) */
|
|
3367
3393
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3368
3394
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3369
3395
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3374,22 +3400,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3400
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3375
3401
|
}
|
|
3376
3402
|
|
|
3377
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3403
|
+
/** @name PalletEthereumVerifierSyncAggregate (299) */
|
|
3378
3404
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3379
3405
|
readonly syncCommitteeBits: Bytes;
|
|
3380
3406
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3381
3407
|
}
|
|
3382
3408
|
|
|
3383
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3409
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (301) */
|
|
3384
3410
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3385
3411
|
|
|
3386
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3412
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
|
|
3387
3413
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3388
3414
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3389
3415
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3390
3416
|
}
|
|
3391
3417
|
|
|
3392
|
-
/** @name PalletCrosschainTransferCall (
|
|
3418
|
+
/** @name PalletCrosschainTransferCall (305) */
|
|
3393
3419
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3394
3420
|
readonly isSetChainConfig: boolean;
|
|
3395
3421
|
readonly asSetChainConfig: {
|
|
@@ -3479,7 +3505,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3479
3505
|
| 'CollateralizeTransfer';
|
|
3480
3506
|
}
|
|
3481
3507
|
|
|
3482
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3508
|
+
/** @name PalletCrosschainTransferChainConfig (306) */
|
|
3483
3509
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3484
3510
|
readonly isEvm: boolean;
|
|
3485
3511
|
readonly asEvm: {
|
|
@@ -3491,7 +3517,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3491
3517
|
readonly type: 'Evm';
|
|
3492
3518
|
}
|
|
3493
3519
|
|
|
3494
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3520
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
|
|
3495
3521
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3496
3522
|
readonly activationGasCost: Compact<u128>;
|
|
3497
3523
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3499,56 +3525,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3499
3525
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3500
3526
|
}
|
|
3501
3527
|
|
|
3502
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3528
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
|
|
3503
3529
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3504
3530
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3505
3531
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3506
3532
|
}
|
|
3507
3533
|
|
|
3508
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3534
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
|
|
3509
3535
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3510
3536
|
readonly anchorBlockHash: H256;
|
|
3511
3537
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3512
3538
|
}
|
|
3513
3539
|
|
|
3514
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3540
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
|
|
3515
3541
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3516
3542
|
readonly rlp: Bytes;
|
|
3517
3543
|
}
|
|
3518
3544
|
|
|
3519
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3545
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
|
|
3520
3546
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3521
3547
|
readonly targetBlockNumber: Compact<u64>;
|
|
3522
3548
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3523
3549
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3524
3550
|
}
|
|
3525
3551
|
|
|
3526
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3552
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
|
|
3527
3553
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3528
3554
|
readonly nodes: Vec<Bytes>;
|
|
3529
3555
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3530
3556
|
}
|
|
3531
3557
|
|
|
3532
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3558
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
|
|
3533
3559
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3534
3560
|
readonly transactionIndex: Compact<u64>;
|
|
3535
3561
|
readonly nodeIndexes: Vec<u16>;
|
|
3536
3562
|
}
|
|
3537
3563
|
|
|
3538
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3564
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
|
|
3539
3565
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3540
3566
|
readonly transactionIndex: Compact<u64>;
|
|
3541
3567
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3542
3568
|
}
|
|
3543
3569
|
|
|
3544
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3570
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (329) */
|
|
3545
3571
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3546
3572
|
readonly address: H160;
|
|
3547
3573
|
readonly topics: Vec<H256>;
|
|
3548
3574
|
readonly data: Bytes;
|
|
3549
3575
|
}
|
|
3550
3576
|
|
|
3551
|
-
/** @name PalletMultisigError (
|
|
3577
|
+
/** @name PalletMultisigError (335) */
|
|
3552
3578
|
interface PalletMultisigError extends Enum {
|
|
3553
3579
|
readonly isMinimumThreshold: boolean;
|
|
3554
3580
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3581,21 +3607,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3581
3607
|
| 'AlreadyStored';
|
|
3582
3608
|
}
|
|
3583
3609
|
|
|
3584
|
-
/** @name PalletProxyProxyDefinition (
|
|
3610
|
+
/** @name PalletProxyProxyDefinition (338) */
|
|
3585
3611
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3586
3612
|
readonly delegate: AccountId32;
|
|
3587
3613
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3588
3614
|
readonly delay: u32;
|
|
3589
3615
|
}
|
|
3590
3616
|
|
|
3591
|
-
/** @name PalletProxyAnnouncement (
|
|
3617
|
+
/** @name PalletProxyAnnouncement (342) */
|
|
3592
3618
|
interface PalletProxyAnnouncement extends Struct {
|
|
3593
3619
|
readonly real: AccountId32;
|
|
3594
3620
|
readonly callHash: H256;
|
|
3595
3621
|
readonly height: u32;
|
|
3596
3622
|
}
|
|
3597
3623
|
|
|
3598
|
-
/** @name PalletProxyError (
|
|
3624
|
+
/** @name PalletProxyError (344) */
|
|
3599
3625
|
interface PalletProxyError extends Enum {
|
|
3600
3626
|
readonly isTooMany: boolean;
|
|
3601
3627
|
readonly isNotFound: boolean;
|
|
@@ -3616,16 +3642,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3616
3642
|
| 'NoSelfProxy';
|
|
3617
3643
|
}
|
|
3618
3644
|
|
|
3619
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3645
|
+
/** @name ArgonPrimitivesTickTicker (345) */
|
|
3620
3646
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3621
3647
|
readonly tickDurationMillis: Compact<u64>;
|
|
3622
3648
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3623
3649
|
}
|
|
3624
3650
|
|
|
3625
|
-
/** @name PalletTicksError (
|
|
3651
|
+
/** @name PalletTicksError (347) */
|
|
3626
3652
|
type PalletTicksError = Null;
|
|
3627
3653
|
|
|
3628
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3654
|
+
/** @name PalletMiningSlotMinerNonceScoring (350) */
|
|
3629
3655
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3630
3656
|
readonly nonce: U256;
|
|
3631
3657
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3633,7 +3659,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3633
3659
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3634
3660
|
}
|
|
3635
3661
|
|
|
3636
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3662
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
|
|
3637
3663
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3638
3664
|
readonly bidsCount: u32;
|
|
3639
3665
|
readonly bidAmountMin: u128;
|
|
@@ -3641,14 +3667,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3641
3667
|
readonly bidAmountSum: u128;
|
|
3642
3668
|
}
|
|
3643
3669
|
|
|
3644
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3670
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
|
|
3645
3671
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3646
3672
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3647
3673
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3648
3674
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3649
3675
|
}
|
|
3650
3676
|
|
|
3651
|
-
/** @name PalletMiningSlotError (
|
|
3677
|
+
/** @name PalletMiningSlotError (376) */
|
|
3652
3678
|
interface PalletMiningSlotError extends Enum {
|
|
3653
3679
|
readonly isSlotNotTakingBids: boolean;
|
|
3654
3680
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3675,7 +3701,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3675
3701
|
| 'UnrecoverableHold';
|
|
3676
3702
|
}
|
|
3677
3703
|
|
|
3678
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3704
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (377) */
|
|
3679
3705
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3680
3706
|
readonly utxoId: u64;
|
|
3681
3707
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3684,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3684
3710
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3685
3711
|
}
|
|
3686
3712
|
|
|
3687
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3713
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
|
|
3688
3714
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3689
3715
|
readonly isP2wsh: boolean;
|
|
3690
3716
|
readonly asP2wsh: {
|
|
@@ -3693,7 +3719,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3693
3719
|
readonly type: 'P2wsh';
|
|
3694
3720
|
}
|
|
3695
3721
|
|
|
3696
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3722
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
|
|
3697
3723
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3698
3724
|
readonly isBitcoin: boolean;
|
|
3699
3725
|
readonly isTestnet: boolean;
|
|
@@ -3702,7 +3728,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3702
3728
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3703
3729
|
}
|
|
3704
3730
|
|
|
3705
|
-
/** @name PalletBitcoinUtxosError (
|
|
3731
|
+
/** @name PalletBitcoinUtxosError (388) */
|
|
3706
3732
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3707
3733
|
readonly isNoPermissions: boolean;
|
|
3708
3734
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3737,7 +3763,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3737
3763
|
| 'LockAlreadyFunded';
|
|
3738
3764
|
}
|
|
3739
3765
|
|
|
3740
|
-
/** @name ArgonPrimitivesVault (
|
|
3766
|
+
/** @name ArgonPrimitivesVault (389) */
|
|
3741
3767
|
interface ArgonPrimitivesVault extends Struct {
|
|
3742
3768
|
readonly operatorAccountId: AccountId32;
|
|
3743
3769
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3758,13 +3784,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3758
3784
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3759
3785
|
}
|
|
3760
3786
|
|
|
3761
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3787
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
|
|
3762
3788
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3763
3789
|
readonly committedMicronots: Compact<u128>;
|
|
3764
3790
|
readonly encumberedMicronots: Compact<u128>;
|
|
3765
3791
|
}
|
|
3766
3792
|
|
|
3767
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3793
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
|
|
3768
3794
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3769
3795
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3770
3796
|
readonly depth: Compact<u8>;
|
|
@@ -3774,14 +3800,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3774
3800
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3775
3801
|
}
|
|
3776
3802
|
|
|
3777
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3803
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (400) */
|
|
3778
3804
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3779
3805
|
readonly isMain: boolean;
|
|
3780
3806
|
readonly isTest: boolean;
|
|
3781
3807
|
readonly type: 'Main' | 'Test';
|
|
3782
3808
|
}
|
|
3783
3809
|
|
|
3784
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3810
|
+
/** @name PalletVaultsVaultFrameRevenue (409) */
|
|
3785
3811
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3786
3812
|
readonly frameId: Compact<u64>;
|
|
3787
3813
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3801,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3801
3827
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3802
3828
|
}
|
|
3803
3829
|
|
|
3804
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3830
|
+
/** @name PalletVaultsRecentCapacityDrop (412) */
|
|
3805
3831
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3806
3832
|
readonly blockNumber: Compact<u32>;
|
|
3807
3833
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3809,7 +3835,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3809
3835
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3810
3836
|
}
|
|
3811
3837
|
|
|
3812
|
-
/** @name PalletVaultsError (
|
|
3838
|
+
/** @name PalletVaultsError (414) */
|
|
3813
3839
|
interface PalletVaultsError extends Enum {
|
|
3814
3840
|
readonly isNoMoreVaultIds: boolean;
|
|
3815
3841
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3882,7 +3908,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3882
3908
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3883
3909
|
}
|
|
3884
3910
|
|
|
3885
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3911
|
+
/** @name PalletBitcoinLocksLockedBitcoin (415) */
|
|
3886
3912
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3887
3913
|
readonly vaultId: Compact<u32>;
|
|
3888
3914
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3906,7 +3932,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3906
3932
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3907
3933
|
}
|
|
3908
3934
|
|
|
3909
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
3935
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (418) */
|
|
3910
3936
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3911
3937
|
readonly utxoId: Compact<u64>;
|
|
3912
3938
|
readonly vaultId: Compact<u32>;
|
|
@@ -3916,7 +3942,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3916
3942
|
readonly redemptionAmount: Compact<u128>;
|
|
3917
3943
|
}
|
|
3918
3944
|
|
|
3919
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
3945
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (420) */
|
|
3920
3946
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3921
3947
|
readonly utxoId: Compact<u64>;
|
|
3922
3948
|
readonly vaultId: Compact<u32>;
|
|
@@ -3925,14 +3951,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3925
3951
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3926
3952
|
}
|
|
3927
3953
|
|
|
3928
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
3954
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (422) */
|
|
3929
3955
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3930
3956
|
readonly bitcoinNetworkFee: u64;
|
|
3931
3957
|
readonly toScriptPubkey: Bytes;
|
|
3932
3958
|
readonly createdAtArgonBlockNumber: u32;
|
|
3933
3959
|
}
|
|
3934
3960
|
|
|
3935
|
-
/** @name PalletBitcoinLocksError (
|
|
3961
|
+
/** @name PalletBitcoinLocksError (429) */
|
|
3936
3962
|
interface PalletBitcoinLocksError extends Enum {
|
|
3937
3963
|
readonly isInsufficientFunds: boolean;
|
|
3938
3964
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4008,7 +4034,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4008
4034
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4009
4035
|
}
|
|
4010
4036
|
|
|
4011
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4037
|
+
/** @name ArgonPrimitivesVaultVaultError (430) */
|
|
4012
4038
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4013
4039
|
readonly isVaultClosed: boolean;
|
|
4014
4040
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4039,7 +4065,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4039
4065
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4040
4066
|
}
|
|
4041
4067
|
|
|
4042
|
-
/** @name PalletNotariesError (
|
|
4068
|
+
/** @name PalletNotariesError (442) */
|
|
4043
4069
|
interface PalletNotariesError extends Enum {
|
|
4044
4070
|
readonly isProposalNotFound: boolean;
|
|
4045
4071
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4062,7 +4088,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4062
4088
|
| 'InvalidNotary';
|
|
4063
4089
|
}
|
|
4064
4090
|
|
|
4065
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4091
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (446) */
|
|
4066
4092
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4067
4093
|
readonly notebookNumber: Compact<u32>;
|
|
4068
4094
|
readonly tick: Compact<u64>;
|
|
@@ -4071,7 +4097,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4071
4097
|
readonly parentSecret: Option<H256>;
|
|
4072
4098
|
}
|
|
4073
4099
|
|
|
4074
|
-
/** @name PalletNotebookError (
|
|
4100
|
+
/** @name PalletNotebookError (449) */
|
|
4075
4101
|
interface PalletNotebookError extends Enum {
|
|
4076
4102
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4077
4103
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4106,7 +4132,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4106
4132
|
| 'InvalidNotebookSubmissionTick';
|
|
4107
4133
|
}
|
|
4108
4134
|
|
|
4109
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4135
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (450) */
|
|
4110
4136
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4111
4137
|
readonly accountId: AccountId32;
|
|
4112
4138
|
readonly amount: u128;
|
|
@@ -4114,10 +4140,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4114
4140
|
readonly notaryId: u32;
|
|
4115
4141
|
}
|
|
4116
4142
|
|
|
4117
|
-
/** @name FrameSupportPalletId (
|
|
4143
|
+
/** @name FrameSupportPalletId (452) */
|
|
4118
4144
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4119
4145
|
|
|
4120
|
-
/** @name PalletLocalchainTransferError (
|
|
4146
|
+
/** @name PalletLocalchainTransferError (453) */
|
|
4121
4147
|
interface PalletLocalchainTransferError extends Enum {
|
|
4122
4148
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4123
4149
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4138,7 +4164,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4138
4164
|
| 'NoAvailableTransferId';
|
|
4139
4165
|
}
|
|
4140
4166
|
|
|
4141
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4167
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (457) */
|
|
4142
4168
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4143
4169
|
readonly notaryId: Compact<u32>;
|
|
4144
4170
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4147,13 +4173,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4173
|
readonly blockVotingPower: Compact<u128>;
|
|
4148
4174
|
}
|
|
4149
4175
|
|
|
4150
|
-
/** @name PalletBlockSealSpecError (
|
|
4176
|
+
/** @name PalletBlockSealSpecError (462) */
|
|
4151
4177
|
interface PalletBlockSealSpecError extends Enum {
|
|
4152
4178
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4153
4179
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4154
4180
|
}
|
|
4155
4181
|
|
|
4156
|
-
/** @name PalletDomainsError (
|
|
4182
|
+
/** @name PalletDomainsError (464) */
|
|
4157
4183
|
interface PalletDomainsError extends Enum {
|
|
4158
4184
|
readonly isDomainNotRegistered: boolean;
|
|
4159
4185
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4168,21 +4194,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4168
4194
|
| 'AccountDecodingError';
|
|
4169
4195
|
}
|
|
4170
4196
|
|
|
4171
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4197
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (466) */
|
|
4172
4198
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4173
4199
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4174
4200
|
readonly totalCpi: i128;
|
|
4175
4201
|
readonly measurementsCount: u32;
|
|
4176
4202
|
}
|
|
4177
4203
|
|
|
4178
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4204
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (470) */
|
|
4179
4205
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4180
4206
|
readonly frameId: Compact<u64>;
|
|
4181
4207
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4182
4208
|
readonly sampleCount: Compact<u32>;
|
|
4183
4209
|
}
|
|
4184
4210
|
|
|
4185
|
-
/** @name PalletPriceIndexError (
|
|
4211
|
+
/** @name PalletPriceIndexError (471) */
|
|
4186
4212
|
interface PalletPriceIndexError extends Enum {
|
|
4187
4213
|
readonly isNotAuthorizedOperator: boolean;
|
|
4188
4214
|
readonly isMissingValue: boolean;
|
|
@@ -4195,7 +4221,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4195
4221
|
| 'MaxPriceChangePerTickExceeded';
|
|
4196
4222
|
}
|
|
4197
4223
|
|
|
4198
|
-
/** @name PalletGrandpaStoredState (
|
|
4224
|
+
/** @name PalletGrandpaStoredState (472) */
|
|
4199
4225
|
interface PalletGrandpaStoredState extends Enum {
|
|
4200
4226
|
readonly isLive: boolean;
|
|
4201
4227
|
readonly isPendingPause: boolean;
|
|
@@ -4212,7 +4238,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4212
4238
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4213
4239
|
}
|
|
4214
4240
|
|
|
4215
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4241
|
+
/** @name PalletGrandpaStoredPendingChange (473) */
|
|
4216
4242
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4217
4243
|
readonly scheduledAt: u32;
|
|
4218
4244
|
readonly delay: u32;
|
|
@@ -4220,7 +4246,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4220
4246
|
readonly forced: Option<u32>;
|
|
4221
4247
|
}
|
|
4222
4248
|
|
|
4223
|
-
/** @name PalletGrandpaError (
|
|
4249
|
+
/** @name PalletGrandpaError (475) */
|
|
4224
4250
|
interface PalletGrandpaError extends Enum {
|
|
4225
4251
|
readonly isPauseFailed: boolean;
|
|
4226
4252
|
readonly isResumeFailed: boolean;
|
|
@@ -4239,14 +4265,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4239
4265
|
| 'DuplicateOffenceReport';
|
|
4240
4266
|
}
|
|
4241
4267
|
|
|
4242
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4268
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (476) */
|
|
4243
4269
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4244
4270
|
readonly blockAuthorAccountId: AccountId32;
|
|
4245
4271
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4246
4272
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4247
4273
|
}
|
|
4248
4274
|
|
|
4249
|
-
/** @name PalletBlockSealError (
|
|
4275
|
+
/** @name PalletBlockSealError (478) */
|
|
4250
4276
|
interface PalletBlockSealError extends Enum {
|
|
4251
4277
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4252
4278
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4293,30 +4319,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4293
4319
|
| 'DuplicateVoteBlockAtTick';
|
|
4294
4320
|
}
|
|
4295
4321
|
|
|
4296
|
-
/** @name PalletBlockRewardsError (
|
|
4322
|
+
/** @name PalletBlockRewardsError (482) */
|
|
4297
4323
|
type PalletBlockRewardsError = Null;
|
|
4298
4324
|
|
|
4299
|
-
/** @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) */
|
|
4300
4341
|
interface PalletMintMintAction extends Struct {
|
|
4301
4342
|
readonly argonBurned: u128;
|
|
4302
4343
|
readonly argonMinted: u128;
|
|
4303
4344
|
readonly bitcoinMinted: u128;
|
|
4304
4345
|
}
|
|
4305
4346
|
|
|
4306
|
-
/** @name PalletMintError (
|
|
4347
|
+
/** @name PalletMintError (490) */
|
|
4307
4348
|
interface PalletMintError extends Enum {
|
|
4308
4349
|
readonly isTooManyPendingMints: boolean;
|
|
4309
4350
|
readonly type: 'TooManyPendingMints';
|
|
4310
4351
|
}
|
|
4311
4352
|
|
|
4312
|
-
/** @name PalletBalancesBalanceLock (
|
|
4353
|
+
/** @name PalletBalancesBalanceLock (492) */
|
|
4313
4354
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4314
4355
|
readonly id: U8aFixed;
|
|
4315
4356
|
readonly amount: u128;
|
|
4316
4357
|
readonly reasons: PalletBalancesReasons;
|
|
4317
4358
|
}
|
|
4318
4359
|
|
|
4319
|
-
/** @name PalletBalancesReasons (
|
|
4360
|
+
/** @name PalletBalancesReasons (493) */
|
|
4320
4361
|
interface PalletBalancesReasons extends Enum {
|
|
4321
4362
|
readonly isFee: boolean;
|
|
4322
4363
|
readonly isMisc: boolean;
|
|
@@ -4324,38 +4365,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4324
4365
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4325
4366
|
}
|
|
4326
4367
|
|
|
4327
|
-
/** @name PalletBalancesReserveData (
|
|
4368
|
+
/** @name PalletBalancesReserveData (496) */
|
|
4328
4369
|
interface PalletBalancesReserveData extends Struct {
|
|
4329
4370
|
readonly id: U8aFixed;
|
|
4330
4371
|
readonly amount: u128;
|
|
4331
4372
|
}
|
|
4332
4373
|
|
|
4333
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4374
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (499) */
|
|
4334
4375
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4335
4376
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4336
4377
|
readonly amount: u128;
|
|
4337
4378
|
}
|
|
4338
4379
|
|
|
4339
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4380
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (502) */
|
|
4340
4381
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4341
4382
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4342
4383
|
readonly amount: u128;
|
|
4343
4384
|
}
|
|
4344
4385
|
|
|
4345
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4386
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (503) */
|
|
4346
4387
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4347
4388
|
readonly isBlockRewards: boolean;
|
|
4348
4389
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4349
4390
|
readonly type: 'BlockRewards';
|
|
4350
4391
|
}
|
|
4351
4392
|
|
|
4352
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4393
|
+
/** @name PalletBlockRewardsFreezeReason (504) */
|
|
4353
4394
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4354
4395
|
readonly isMaturationPeriod: boolean;
|
|
4355
4396
|
readonly type: 'MaturationPeriod';
|
|
4356
4397
|
}
|
|
4357
4398
|
|
|
4358
|
-
/** @name PalletBalancesError (
|
|
4399
|
+
/** @name PalletBalancesError (506) */
|
|
4359
4400
|
interface PalletBalancesError extends Enum {
|
|
4360
4401
|
readonly isVestingBalance: boolean;
|
|
4361
4402
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4384,7 +4425,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4384
4425
|
| 'DeltaZero';
|
|
4385
4426
|
}
|
|
4386
4427
|
|
|
4387
|
-
/** @name PalletTxPauseError (
|
|
4428
|
+
/** @name PalletTxPauseError (508) */
|
|
4388
4429
|
interface PalletTxPauseError extends Enum {
|
|
4389
4430
|
readonly isIsPaused: boolean;
|
|
4390
4431
|
readonly isIsUnpaused: boolean;
|
|
@@ -4393,58 +4434,69 @@ declare module '@polkadot/types/lookup' {
|
|
|
4393
4434
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4394
4435
|
}
|
|
4395
4436
|
|
|
4396
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4437
|
+
/** @name PalletTransactionPaymentReleases (509) */
|
|
4397
4438
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4398
4439
|
readonly isV1Ancient: boolean;
|
|
4399
4440
|
readonly isV2: boolean;
|
|
4400
4441
|
readonly type: 'V1Ancient' | 'V2';
|
|
4401
4442
|
}
|
|
4402
4443
|
|
|
4403
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4444
|
+
/** @name FrameSupportStorageNoDrop (510) */
|
|
4404
4445
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4405
4446
|
|
|
4406
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4447
|
+
/** @name FrameSupportTokensFungibleImbalance (511) */
|
|
4407
4448
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4408
4449
|
readonly amount: u128;
|
|
4409
4450
|
}
|
|
4410
4451
|
|
|
4411
|
-
/** @name PalletUtilityError (
|
|
4452
|
+
/** @name PalletUtilityError (512) */
|
|
4412
4453
|
interface PalletUtilityError extends Enum {
|
|
4413
4454
|
readonly isTooManyCalls: boolean;
|
|
4414
4455
|
readonly type: 'TooManyCalls';
|
|
4415
4456
|
}
|
|
4416
4457
|
|
|
4417
|
-
/** @name PalletSudoError (
|
|
4458
|
+
/** @name PalletSudoError (513) */
|
|
4418
4459
|
interface PalletSudoError extends Enum {
|
|
4419
4460
|
readonly isRequireSudo: boolean;
|
|
4420
4461
|
readonly type: 'RequireSudo';
|
|
4421
4462
|
}
|
|
4422
4463
|
|
|
4423
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4464
|
+
/** @name PalletTreasuryFrameVaultCapital (514) */
|
|
4424
4465
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4425
4466
|
readonly frameId: Compact<u64>;
|
|
4426
4467
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4427
4468
|
}
|
|
4428
4469
|
|
|
4429
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4470
|
+
/** @name PalletTreasuryVaultCapital (516) */
|
|
4430
4471
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4431
4472
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4432
4473
|
readonly eligibleBonds: Compact<u32>;
|
|
4433
4474
|
}
|
|
4434
4475
|
|
|
4435
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4476
|
+
/** @name PalletTreasuryBondLotAllocation (518) */
|
|
4436
4477
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4437
4478
|
readonly bondLotId: Compact<u64>;
|
|
4438
4479
|
readonly prorata: u128;
|
|
4439
4480
|
}
|
|
4440
4481
|
|
|
4441
|
-
/** @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) */
|
|
4442
4496
|
interface PalletTreasuryBondLot extends Struct {
|
|
4443
4497
|
readonly owner: AccountId32;
|
|
4444
|
-
readonly
|
|
4498
|
+
readonly program: PalletTreasuryBondProgram;
|
|
4445
4499
|
readonly bonds: Compact<u32>;
|
|
4446
|
-
readonly sharingPercent: Compact<Permill>;
|
|
4447
|
-
readonly bonusPercent: Compact<Permill>;
|
|
4448
4500
|
readonly createdFrameId: Compact<u64>;
|
|
4449
4501
|
readonly participatedFrames: Compact<u32>;
|
|
4450
4502
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4454,13 +4506,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
4454
4506
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4455
4507
|
}
|
|
4456
4508
|
|
|
4457
|
-
/** @name
|
|
4458
|
-
interface
|
|
4459
|
-
readonly
|
|
4460
|
-
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';
|
|
4461
4519
|
}
|
|
4462
4520
|
|
|
4463
|
-
/** @name PalletTreasuryError (
|
|
4521
|
+
/** @name PalletTreasuryError (533) */
|
|
4464
4522
|
interface PalletTreasuryError extends Enum {
|
|
4465
4523
|
readonly isBondPurchaseRejected: boolean;
|
|
4466
4524
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4478,6 +4536,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4478
4536
|
readonly isBonusApprovalExpired: boolean;
|
|
4479
4537
|
readonly isBonusApprovalExistingBondLot: boolean;
|
|
4480
4538
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4539
|
+
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4540
|
+
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4481
4541
|
readonly type:
|
|
4482
4542
|
| 'BondPurchaseRejected'
|
|
4483
4543
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4494,16 +4554,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4494
4554
|
| 'BonusApprovalWrongAccount'
|
|
4495
4555
|
| 'BonusApprovalExpired'
|
|
4496
4556
|
| 'BonusApprovalExistingBondLot'
|
|
4497
|
-
| 'InvalidBonusApprovalSignature'
|
|
4557
|
+
| 'InvalidBonusApprovalSignature'
|
|
4558
|
+
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4559
|
+
| 'ArgonotBondPurchaseAboveCap';
|
|
4498
4560
|
}
|
|
4499
4561
|
|
|
4500
|
-
/** @name PalletFeeControlError (
|
|
4562
|
+
/** @name PalletFeeControlError (534) */
|
|
4501
4563
|
interface PalletFeeControlError extends Enum {
|
|
4502
4564
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4503
4565
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4504
4566
|
}
|
|
4505
4567
|
|
|
4506
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4568
|
+
/** @name PalletOperationalAccountsOperationalAccount (535) */
|
|
4507
4569
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4508
4570
|
readonly vaultAccount: AccountId32;
|
|
4509
4571
|
readonly miningFundingAccount: AccountId32;
|
|
@@ -4526,13 +4588,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4526
4588
|
readonly isOperational: bool;
|
|
4527
4589
|
}
|
|
4528
4590
|
|
|
4529
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4591
|
+
/** @name PalletOperationalAccountsRewardsConfig (537) */
|
|
4530
4592
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4531
4593
|
readonly operationalReferralReward: Compact<u128>;
|
|
4532
4594
|
readonly referralBonusReward: Compact<u128>;
|
|
4533
4595
|
}
|
|
4534
4596
|
|
|
4535
|
-
/** @name PalletOperationalAccountsError (
|
|
4597
|
+
/** @name PalletOperationalAccountsError (539) */
|
|
4536
4598
|
interface PalletOperationalAccountsError extends Enum {
|
|
4537
4599
|
readonly isAlreadyRegistered: boolean;
|
|
4538
4600
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4573,12 +4635,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4573
4635
|
| 'NotEligibleForActivation';
|
|
4574
4636
|
}
|
|
4575
4637
|
|
|
4576
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4638
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (540) */
|
|
4577
4639
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4578
4640
|
readonly slot: Compact<u64>;
|
|
4579
4641
|
}
|
|
4580
4642
|
|
|
4581
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4643
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (541) */
|
|
4582
4644
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4583
4645
|
readonly blockNumber: Compact<u64>;
|
|
4584
4646
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4588,44 +4650,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4588
4650
|
readonly receiptsRoot: H256;
|
|
4589
4651
|
}
|
|
4590
4652
|
|
|
4591
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4653
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (542) */
|
|
4592
4654
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4593
4655
|
readonly root: H256;
|
|
4594
4656
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4595
4657
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4596
4658
|
}
|
|
4597
4659
|
|
|
4598
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4660
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (544) */
|
|
4599
4661
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4600
4662
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4601
4663
|
}
|
|
4602
4664
|
|
|
4603
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4665
|
+
/** @name SnowbridgeAmclBls381Ecp (545) */
|
|
4604
4666
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4605
4667
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4606
4668
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4607
4669
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4608
4670
|
}
|
|
4609
4671
|
|
|
4610
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4672
|
+
/** @name SnowbridgeAmclBls381Fp (546) */
|
|
4611
4673
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4612
4674
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4613
4675
|
readonly xes: i32;
|
|
4614
4676
|
}
|
|
4615
4677
|
|
|
4616
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4678
|
+
/** @name SnowbridgeAmclBls381Big (547) */
|
|
4617
4679
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4618
4680
|
readonly w: Vec<i32>;
|
|
4619
4681
|
}
|
|
4620
4682
|
|
|
4621
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4683
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (551) */
|
|
4622
4684
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4623
4685
|
readonly isMainnet: boolean;
|
|
4624
4686
|
readonly isMinimal: boolean;
|
|
4625
4687
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4626
4688
|
}
|
|
4627
4689
|
|
|
4628
|
-
/** @name PalletEthereumVerifierError (
|
|
4690
|
+
/** @name PalletEthereumVerifierError (552) */
|
|
4629
4691
|
interface PalletEthereumVerifierError extends Enum {
|
|
4630
4692
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4631
4693
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4678,21 +4740,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4678
4740
|
| 'Halted';
|
|
4679
4741
|
}
|
|
4680
4742
|
|
|
4681
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4743
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
|
|
4682
4744
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4683
4745
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4684
4746
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4685
4747
|
readonly totalWeight: u128;
|
|
4686
4748
|
}
|
|
4687
4749
|
|
|
4688
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4750
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
|
|
4689
4751
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4690
4752
|
readonly accountId: AccountId32;
|
|
4691
4753
|
readonly signer: H160;
|
|
4692
4754
|
readonly weight: u128;
|
|
4693
4755
|
}
|
|
4694
4756
|
|
|
4695
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4757
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
|
|
4696
4758
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4697
4759
|
readonly approvingCouncilHash: H256;
|
|
4698
4760
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4704,7 +4766,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4704
4766
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4705
4767
|
}
|
|
4706
4768
|
|
|
4707
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4769
|
+
/** @name PalletCrosschainTransferMintingAuthority (566) */
|
|
4708
4770
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4709
4771
|
readonly accountId: AccountId32;
|
|
4710
4772
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4721,7 +4783,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4721
4783
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4722
4784
|
}
|
|
4723
4785
|
|
|
4724
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4786
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (567) */
|
|
4725
4787
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4726
4788
|
readonly isPendingActivation: boolean;
|
|
4727
4789
|
readonly isActive: boolean;
|
|
@@ -4729,7 +4791,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4729
4791
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4730
4792
|
}
|
|
4731
4793
|
|
|
4732
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4794
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
|
|
4733
4795
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4734
4796
|
readonly argonAccountId: AccountId32;
|
|
4735
4797
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4748,7 +4810,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4810
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4749
4811
|
}
|
|
4750
4812
|
|
|
4751
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4813
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
|
|
4752
4814
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4753
4815
|
readonly microgonCollateral: u128;
|
|
4754
4816
|
readonly micronotCollateral: u128;
|
|
@@ -4756,27 +4818,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4756
4818
|
readonly signature: U8aFixed;
|
|
4757
4819
|
}
|
|
4758
4820
|
|
|
4759
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4821
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
|
|
4760
4822
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4761
4823
|
readonly isStarted: boolean;
|
|
4762
4824
|
readonly isReady: boolean;
|
|
4763
4825
|
readonly type: 'Started' | 'Ready';
|
|
4764
4826
|
}
|
|
4765
4827
|
|
|
4766
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4828
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
|
|
4767
4829
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4768
4830
|
readonly transferId: H256;
|
|
4769
4831
|
readonly remainingCollateral: u128;
|
|
4770
4832
|
readonly remainingMintingAuthorityTip: u128;
|
|
4771
4833
|
}
|
|
4772
4834
|
|
|
4773
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4835
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (579) */
|
|
4774
4836
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4775
4837
|
readonly argonCirculation: u128;
|
|
4776
4838
|
readonly argonotCirculation: u128;
|
|
4777
4839
|
}
|
|
4778
4840
|
|
|
4779
|
-
/** @name PalletCrosschainTransferError (
|
|
4841
|
+
/** @name PalletCrosschainTransferError (580) */
|
|
4780
4842
|
interface PalletCrosschainTransferError extends Enum {
|
|
4781
4843
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4782
4844
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4889,45 +4951,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
4889
4951
|
| 'TooManyPendingTransferOuts';
|
|
4890
4952
|
}
|
|
4891
4953
|
|
|
4892
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
4954
|
+
/** @name FrameSystemExtensionsAuthorizeCall (583) */
|
|
4893
4955
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4894
4956
|
|
|
4895
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
4957
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (584) */
|
|
4896
4958
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4897
4959
|
|
|
4898
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
4960
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (585) */
|
|
4899
4961
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4900
4962
|
|
|
4901
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
4963
|
+
/** @name FrameSystemExtensionsCheckTxVersion (586) */
|
|
4902
4964
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4903
4965
|
|
|
4904
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
4966
|
+
/** @name FrameSystemExtensionsCheckGenesis (587) */
|
|
4905
4967
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4906
4968
|
|
|
4907
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
4969
|
+
/** @name FrameSystemExtensionsCheckNonce (590) */
|
|
4908
4970
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4909
4971
|
|
|
4910
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
4972
|
+
/** @name FrameSystemExtensionsCheckWeight (591) */
|
|
4911
4973
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4912
4974
|
|
|
4913
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
4975
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (592) */
|
|
4914
4976
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4915
4977
|
|
|
4916
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
4978
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
|
|
4917
4979
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
4918
4980
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
4919
4981
|
}
|
|
4920
4982
|
|
|
4921
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
4983
|
+
/** @name FrameMetadataHashExtensionMode (594) */
|
|
4922
4984
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
4923
4985
|
readonly isDisabled: boolean;
|
|
4924
4986
|
readonly isEnabled: boolean;
|
|
4925
4987
|
readonly type: 'Disabled' | 'Enabled';
|
|
4926
4988
|
}
|
|
4927
4989
|
|
|
4928
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
4990
|
+
/** @name FrameSystemExtensionsWeightReclaim (595) */
|
|
4929
4991
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
4930
4992
|
|
|
4931
|
-
/** @name ArgonRuntimeRuntime (
|
|
4993
|
+
/** @name ArgonRuntimeRuntime (597) */
|
|
4932
4994
|
type ArgonRuntimeRuntime = Null;
|
|
4933
4995
|
} // declare module
|