@argonprotocol/mainchain 1.4.10 → 1.4.11-dev.455b3ae5
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 +4261 -375
- package/browser/index.js +124 -48
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +135 -59
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4261 -375
- package/lib/index.d.ts +4261 -375
- package/lib/index.js +124 -48
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
- package/src/interfaces/augment-api-consts.ts +17 -18
- package/src/interfaces/augment-api-errors.ts +69 -19
- package/src/interfaces/augment-api-events.ts +56 -8
- package/src/interfaces/augment-api-query.ts +99 -17
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +85 -42
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +389 -260
- package/src/interfaces/registry.ts +21 -2
- package/src/interfaces/types-lookup.ts +431 -283
|
@@ -602,6 +602,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
602
602
|
readonly asVaultBitcoinXpubChange: {
|
|
603
603
|
readonly vaultId: u32;
|
|
604
604
|
} & Struct;
|
|
605
|
+
readonly isBackfillSecuritizationReservedChanged: boolean;
|
|
606
|
+
readonly asBackfillSecuritizationReservedChanged: {
|
|
607
|
+
readonly vaultId: u32;
|
|
608
|
+
readonly backfillSecuritizationReserved: u128;
|
|
609
|
+
} & Struct;
|
|
605
610
|
readonly isVaultRevenueUncollected: boolean;
|
|
606
611
|
readonly asVaultRevenueUncollected: {
|
|
607
612
|
readonly vaultId: u32;
|
|
@@ -670,6 +675,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
670
675
|
| 'VaultTermsChanged'
|
|
671
676
|
| 'VaultClosed'
|
|
672
677
|
| 'VaultBitcoinXpubChange'
|
|
678
|
+
| 'BackfillSecuritizationReservedChanged'
|
|
673
679
|
| 'VaultRevenueUncollected'
|
|
674
680
|
| 'VaultCollected'
|
|
675
681
|
| 'FundsLocked'
|
|
@@ -780,6 +786,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
780
786
|
readonly newSatoshis: u64;
|
|
781
787
|
readonly accountId: AccountId32;
|
|
782
788
|
} & Struct;
|
|
789
|
+
readonly isBitcoinLockBackfillChanged: boolean;
|
|
790
|
+
readonly asBitcoinLockBackfillChanged: {
|
|
791
|
+
readonly utxoId: u64;
|
|
792
|
+
readonly vaultId: u32;
|
|
793
|
+
readonly isBackfill: bool;
|
|
794
|
+
} & Struct;
|
|
783
795
|
readonly type:
|
|
784
796
|
| 'BitcoinLockCreated'
|
|
785
797
|
| 'BitcoinLockRatcheted'
|
|
@@ -794,7 +806,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
794
806
|
| 'OrphanedUtxoReleaseRequested'
|
|
795
807
|
| 'OrphanedUtxoCosigned'
|
|
796
808
|
| 'UtxoFundedFromCandidate'
|
|
797
|
-
| 'SecuritizationIncreased'
|
|
809
|
+
| 'SecuritizationIncreased'
|
|
810
|
+
| 'BitcoinLockBackfillChanged';
|
|
798
811
|
}
|
|
799
812
|
|
|
800
813
|
/** @name PalletNotariesEvent (60) */
|
|
@@ -1720,6 +1733,17 @@ declare module '@polkadot/types/lookup' {
|
|
|
1720
1733
|
readonly accountId: AccountId32;
|
|
1721
1734
|
readonly bonds: u32;
|
|
1722
1735
|
} & Struct;
|
|
1736
|
+
readonly isBondLotBackfillChanged: boolean;
|
|
1737
|
+
readonly asBondLotBackfillChanged: {
|
|
1738
|
+
readonly vaultId: u32;
|
|
1739
|
+
readonly bondLotId: u64;
|
|
1740
|
+
readonly isBackfill: bool;
|
|
1741
|
+
} & Struct;
|
|
1742
|
+
readonly isBackfillBondsReservedChanged: boolean;
|
|
1743
|
+
readonly asBackfillBondsReservedChanged: {
|
|
1744
|
+
readonly vaultId: u32;
|
|
1745
|
+
readonly backfillBondsReserved: u32;
|
|
1746
|
+
} & Struct;
|
|
1723
1747
|
readonly isEncumberedBondMicrogonsBurned: boolean;
|
|
1724
1748
|
readonly asEncumberedBondMicrogonsBurned: {
|
|
1725
1749
|
readonly accountId: AccountId32;
|
|
@@ -1736,6 +1760,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
1736
1760
|
| 'BondLotPurchased'
|
|
1737
1761
|
| 'BondLotReleaseScheduled'
|
|
1738
1762
|
| 'BondLotReleased'
|
|
1763
|
+
| 'BondLotBackfillChanged'
|
|
1764
|
+
| 'BackfillBondsReservedChanged'
|
|
1739
1765
|
| 'EncumberedBondMicrogonsBurned';
|
|
1740
1766
|
}
|
|
1741
1767
|
|
|
@@ -1836,11 +1862,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
1836
1862
|
readonly operatorVaultBitcoinAmount: u128;
|
|
1837
1863
|
readonly miningSeatCount: u32;
|
|
1838
1864
|
} & Struct;
|
|
1839
|
-
readonly isEncryptedServerUpdated: boolean;
|
|
1840
|
-
readonly asEncryptedServerUpdated: {
|
|
1841
|
-
readonly upstreamAccount: AccountId32;
|
|
1842
|
-
readonly downstreamAccount: AccountId32;
|
|
1843
|
-
} & Struct;
|
|
1844
1865
|
readonly type:
|
|
1845
1866
|
| 'OperationalAccountRegistered'
|
|
1846
1867
|
| 'AccountMeetsMinimums'
|
|
@@ -1848,8 +1869,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1848
1869
|
| 'OperationalRewardEarned'
|
|
1849
1870
|
| 'OperationalRewardsClaimed'
|
|
1850
1871
|
| 'RewardsConfigUpdated'
|
|
1851
|
-
| 'OperationalProgressForced'
|
|
1852
|
-
| 'EncryptedServerUpdated';
|
|
1872
|
+
| 'OperationalProgressForced';
|
|
1853
1873
|
}
|
|
1854
1874
|
|
|
1855
1875
|
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
@@ -1913,6 +1933,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
1913
1933
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1914
1934
|
readonly councilHash: H256;
|
|
1915
1935
|
} & Struct;
|
|
1936
|
+
readonly isGlobalIssuanceCouncilRotationQueued: boolean;
|
|
1937
|
+
readonly asGlobalIssuanceCouncilRotationQueued: {
|
|
1938
|
+
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
1939
|
+
readonly councilHash: H256;
|
|
1940
|
+
readonly approvalQueueNonce: u64;
|
|
1941
|
+
} & Struct;
|
|
1916
1942
|
readonly isCouncilSignerRegistered: boolean;
|
|
1917
1943
|
readonly asCouncilSignerRegistered: {
|
|
1918
1944
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -2028,6 +2054,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2028
2054
|
readonly type:
|
|
2029
2055
|
| 'TransferToArgonSettled'
|
|
2030
2056
|
| 'GlobalIssuanceCouncilForced'
|
|
2057
|
+
| 'GlobalIssuanceCouncilRotationQueued'
|
|
2031
2058
|
| 'CouncilSignerRegistered'
|
|
2032
2059
|
| 'CouncilSignerRotationQueued'
|
|
2033
2060
|
| 'MintingAuthorityRegistered'
|
|
@@ -2126,7 +2153,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
2126
2153
|
readonly argonotCirculation: u128;
|
|
2127
2154
|
}
|
|
2128
2155
|
|
|
2129
|
-
/** @name
|
|
2156
|
+
/** @name PalletBootstrapEvent (139) */
|
|
2157
|
+
interface PalletBootstrapEvent extends Enum {
|
|
2158
|
+
readonly isRecoveryPayloadUpdated: boolean;
|
|
2159
|
+
readonly asRecoveryPayloadUpdated: {
|
|
2160
|
+
readonly writer: AccountId32;
|
|
2161
|
+
readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
2162
|
+
} & Struct;
|
|
2163
|
+
readonly isEndpointUpdated: boolean;
|
|
2164
|
+
readonly asEndpointUpdated: {
|
|
2165
|
+
readonly endpointOwner: AccountId32;
|
|
2166
|
+
readonly endpointPubkey: PalletBootstrapEndpointPubkey;
|
|
2167
|
+
} & Struct;
|
|
2168
|
+
readonly type: 'RecoveryPayloadUpdated' | 'EndpointUpdated';
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
/** @name PalletBootstrapRecoveryPubkey (140) */
|
|
2172
|
+
interface PalletBootstrapRecoveryPubkey extends U8aFixed {}
|
|
2173
|
+
|
|
2174
|
+
/** @name PalletBootstrapEndpointPubkey (141) */
|
|
2175
|
+
interface PalletBootstrapEndpointPubkey extends U8aFixed {}
|
|
2176
|
+
|
|
2177
|
+
/** @name FrameSystemPhase (142) */
|
|
2130
2178
|
interface FrameSystemPhase extends Enum {
|
|
2131
2179
|
readonly isApplyExtrinsic: boolean;
|
|
2132
2180
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2135,19 +2183,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2135
2183
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2136
2184
|
}
|
|
2137
2185
|
|
|
2138
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2186
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (146) */
|
|
2139
2187
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2140
2188
|
readonly specVersion: Compact<u32>;
|
|
2141
2189
|
readonly specName: Text;
|
|
2142
2190
|
}
|
|
2143
2191
|
|
|
2144
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2192
|
+
/** @name FrameSystemCodeUpgradeAuthorization (149) */
|
|
2145
2193
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2146
2194
|
readonly codeHash: H256;
|
|
2147
2195
|
readonly checkVersion: bool;
|
|
2148
2196
|
}
|
|
2149
2197
|
|
|
2150
|
-
/** @name FrameSystemCall (
|
|
2198
|
+
/** @name FrameSystemCall (150) */
|
|
2151
2199
|
interface FrameSystemCall extends Enum {
|
|
2152
2200
|
readonly isRemark: boolean;
|
|
2153
2201
|
readonly asRemark: {
|
|
@@ -2208,21 +2256,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2208
2256
|
| 'ApplyAuthorizedUpgrade';
|
|
2209
2257
|
}
|
|
2210
2258
|
|
|
2211
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2259
|
+
/** @name FrameSystemLimitsBlockWeights (154) */
|
|
2212
2260
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2213
2261
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2214
2262
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2215
2263
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2216
2264
|
}
|
|
2217
2265
|
|
|
2218
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2266
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (155) */
|
|
2219
2267
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2220
2268
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2221
2269
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2222
2270
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2223
2271
|
}
|
|
2224
2272
|
|
|
2225
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2273
|
+
/** @name FrameSystemLimitsWeightsPerClass (156) */
|
|
2226
2274
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2227
2275
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2228
2276
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2230,26 +2278,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2230
2278
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2231
2279
|
}
|
|
2232
2280
|
|
|
2233
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2281
|
+
/** @name FrameSystemLimitsBlockLength (158) */
|
|
2234
2282
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2235
2283
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2236
2284
|
readonly maxHeaderSize: Option<u32>;
|
|
2237
2285
|
}
|
|
2238
2286
|
|
|
2239
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2287
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (159) */
|
|
2240
2288
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2241
2289
|
readonly normal: u32;
|
|
2242
2290
|
readonly operational: u32;
|
|
2243
2291
|
readonly mandatory: u32;
|
|
2244
2292
|
}
|
|
2245
2293
|
|
|
2246
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2294
|
+
/** @name SpWeightsRuntimeDbWeight (161) */
|
|
2247
2295
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2248
2296
|
readonly read: u64;
|
|
2249
2297
|
readonly write: u64;
|
|
2250
2298
|
}
|
|
2251
2299
|
|
|
2252
|
-
/** @name SpVersionRuntimeVersion (
|
|
2300
|
+
/** @name SpVersionRuntimeVersion (162) */
|
|
2253
2301
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2254
2302
|
readonly specName: Text;
|
|
2255
2303
|
readonly implName: Text;
|
|
@@ -2261,7 +2309,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2261
2309
|
readonly systemVersion: u8;
|
|
2262
2310
|
}
|
|
2263
2311
|
|
|
2264
|
-
/** @name FrameSystemError (
|
|
2312
|
+
/** @name FrameSystemError (167) */
|
|
2265
2313
|
interface FrameSystemError extends Enum {
|
|
2266
2314
|
readonly isInvalidSpecName: boolean;
|
|
2267
2315
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2284,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2284
2332
|
| 'Unauthorized';
|
|
2285
2333
|
}
|
|
2286
2334
|
|
|
2287
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2335
|
+
/** @name ArgonPrimitivesDigestsDigestset (168) */
|
|
2288
2336
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2289
2337
|
readonly author: AccountId32;
|
|
2290
2338
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2295,18 +2343,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2295
2343
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2296
2344
|
}
|
|
2297
2345
|
|
|
2298
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2346
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (169) */
|
|
2299
2347
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2300
2348
|
readonly votingPower: Compact<u128>;
|
|
2301
2349
|
readonly votesCount: Compact<u32>;
|
|
2302
2350
|
}
|
|
2303
2351
|
|
|
2304
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2352
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (171) */
|
|
2305
2353
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2306
2354
|
readonly parentVotingKey: Option<H256>;
|
|
2307
2355
|
}
|
|
2308
2356
|
|
|
2309
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2357
|
+
/** @name ArgonPrimitivesForkPower (174) */
|
|
2310
2358
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2311
2359
|
readonly isLatestVote: bool;
|
|
2312
2360
|
readonly notebooks: Compact<u64>;
|
|
@@ -2317,19 +2365,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2317
2365
|
readonly minerNonceScore: Option<U256>;
|
|
2318
2366
|
}
|
|
2319
2367
|
|
|
2320
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2368
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (179) */
|
|
2321
2369
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2322
2370
|
readonly frameId: Compact<u64>;
|
|
2323
2371
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2324
2372
|
readonly isNewFrame: bool;
|
|
2325
2373
|
}
|
|
2326
2374
|
|
|
2327
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2375
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (181) */
|
|
2328
2376
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2329
2377
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2330
2378
|
}
|
|
2331
2379
|
|
|
2332
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2380
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (183) */
|
|
2333
2381
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2334
2382
|
readonly notaryId: Compact<u32>;
|
|
2335
2383
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2337,7 +2385,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2337
2385
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2338
2386
|
}
|
|
2339
2387
|
|
|
2340
|
-
/** @name PalletDigestsError (
|
|
2388
|
+
/** @name PalletDigestsError (186) */
|
|
2341
2389
|
interface PalletDigestsError extends Enum {
|
|
2342
2390
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2343
2391
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2368,7 +2416,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2368
2416
|
| 'DuplicateFrameInfoDigest';
|
|
2369
2417
|
}
|
|
2370
2418
|
|
|
2371
|
-
/** @name PalletTimestampCall (
|
|
2419
|
+
/** @name PalletTimestampCall (187) */
|
|
2372
2420
|
interface PalletTimestampCall extends Enum {
|
|
2373
2421
|
readonly isSet: boolean;
|
|
2374
2422
|
readonly asSet: {
|
|
@@ -2377,7 +2425,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2377
2425
|
readonly type: 'Set';
|
|
2378
2426
|
}
|
|
2379
2427
|
|
|
2380
|
-
/** @name PalletMultisigMultisig (
|
|
2428
|
+
/** @name PalletMultisigMultisig (189) */
|
|
2381
2429
|
interface PalletMultisigMultisig extends Struct {
|
|
2382
2430
|
readonly when: PalletMultisigTimepoint;
|
|
2383
2431
|
readonly deposit: u128;
|
|
@@ -2385,7 +2433,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2385
2433
|
readonly approvals: Vec<AccountId32>;
|
|
2386
2434
|
}
|
|
2387
2435
|
|
|
2388
|
-
/** @name PalletMultisigCall (
|
|
2436
|
+
/** @name PalletMultisigCall (192) */
|
|
2389
2437
|
interface PalletMultisigCall extends Enum {
|
|
2390
2438
|
readonly isAsMultiThreshold1: boolean;
|
|
2391
2439
|
readonly asAsMultiThreshold1: {
|
|
@@ -2429,7 +2477,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2429
2477
|
| 'PokeDeposit';
|
|
2430
2478
|
}
|
|
2431
2479
|
|
|
2432
|
-
/** @name PalletProxyCall (
|
|
2480
|
+
/** @name PalletProxyCall (194) */
|
|
2433
2481
|
interface PalletProxyCall extends Enum {
|
|
2434
2482
|
readonly isProxy: boolean;
|
|
2435
2483
|
readonly asProxy: {
|
|
@@ -2501,10 +2549,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2501
2549
|
| 'PokeDeposit';
|
|
2502
2550
|
}
|
|
2503
2551
|
|
|
2504
|
-
/** @name PalletTicksCall (
|
|
2552
|
+
/** @name PalletTicksCall (198) */
|
|
2505
2553
|
type PalletTicksCall = Null;
|
|
2506
2554
|
|
|
2507
|
-
/** @name PalletMiningSlotCall (
|
|
2555
|
+
/** @name PalletMiningSlotCall (199) */
|
|
2508
2556
|
interface PalletMiningSlotCall extends Enum {
|
|
2509
2557
|
readonly isBid: boolean;
|
|
2510
2558
|
readonly asBid: {
|
|
@@ -2520,7 +2568,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2520
2568
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2521
2569
|
}
|
|
2522
2570
|
|
|
2523
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2571
|
+
/** @name PalletBitcoinUtxosCall (200) */
|
|
2524
2572
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2525
2573
|
readonly isSync: boolean;
|
|
2526
2574
|
readonly asSync: {
|
|
@@ -2553,21 +2601,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2553
2601
|
| 'RejectUtxoCandidate';
|
|
2554
2602
|
}
|
|
2555
2603
|
|
|
2556
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2604
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
|
|
2557
2605
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2558
2606
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2559
2607
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2560
2608
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2561
2609
|
}
|
|
2562
2610
|
|
|
2563
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2611
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (203) */
|
|
2564
2612
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2565
2613
|
readonly utxoId: Compact<u64>;
|
|
2566
2614
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2567
2615
|
readonly bitcoinHeight: Compact<u64>;
|
|
2568
2616
|
}
|
|
2569
2617
|
|
|
2570
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2618
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (206) */
|
|
2571
2619
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2572
2620
|
readonly utxoId: Compact<u64>;
|
|
2573
2621
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2576,13 +2624,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2576
2624
|
readonly bitcoinHeight: Compact<u64>;
|
|
2577
2625
|
}
|
|
2578
2626
|
|
|
2579
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2627
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (207) */
|
|
2580
2628
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2581
2629
|
readonly blockHeight: Compact<u64>;
|
|
2582
2630
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2583
2631
|
}
|
|
2584
2632
|
|
|
2585
|
-
/** @name PalletVaultsCall (
|
|
2633
|
+
/** @name PalletVaultsCall (208) */
|
|
2586
2634
|
interface PalletVaultsCall extends Enum {
|
|
2587
2635
|
readonly isCreate: boolean;
|
|
2588
2636
|
readonly asCreate: {
|
|
@@ -2616,14 +2664,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
2616
2664
|
readonly asSetDelegateAccount: {
|
|
2617
2665
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2618
2666
|
} & Struct;
|
|
2619
|
-
readonly isSetName: boolean;
|
|
2620
|
-
readonly asSetName: {
|
|
2621
|
-
readonly name: Option<Bytes>;
|
|
2622
|
-
} & Struct;
|
|
2623
2667
|
readonly isSetCommittedArgonots: boolean;
|
|
2624
2668
|
readonly asSetCommittedArgonots: {
|
|
2625
2669
|
readonly amount: Compact<u128>;
|
|
2626
2670
|
} & Struct;
|
|
2671
|
+
readonly isSetBackfillSecuritizationReserved: boolean;
|
|
2672
|
+
readonly asSetBackfillSecuritizationReserved: {
|
|
2673
|
+
readonly vaultId: u32;
|
|
2674
|
+
readonly backfillSecuritizationReserved: u128;
|
|
2675
|
+
} & Struct;
|
|
2627
2676
|
readonly type:
|
|
2628
2677
|
| 'Create'
|
|
2629
2678
|
| 'ModifyFunding'
|
|
@@ -2632,32 +2681,30 @@ declare module '@polkadot/types/lookup' {
|
|
|
2632
2681
|
| 'ReplaceBitcoinXpub'
|
|
2633
2682
|
| 'Collect'
|
|
2634
2683
|
| 'SetDelegateAccount'
|
|
2635
|
-
| '
|
|
2636
|
-
| '
|
|
2684
|
+
| 'SetCommittedArgonots'
|
|
2685
|
+
| 'SetBackfillSecuritizationReserved';
|
|
2637
2686
|
}
|
|
2638
2687
|
|
|
2639
|
-
/** @name PalletVaultsVaultConfig (
|
|
2688
|
+
/** @name PalletVaultsVaultConfig (209) */
|
|
2640
2689
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2641
2690
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2642
|
-
readonly name: Option<Bytes>;
|
|
2643
2691
|
readonly delegateAccountId: Option<AccountId32>;
|
|
2644
2692
|
readonly securitization: Compact<u128>;
|
|
2645
2693
|
readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
2646
2694
|
readonly securitizationRatio: Compact<u128>;
|
|
2647
2695
|
}
|
|
2648
2696
|
|
|
2649
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2697
|
+
/** @name ArgonPrimitivesVaultVaultTerms (210) */
|
|
2650
2698
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2651
2699
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2652
2700
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2653
2701
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2654
|
-
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2655
2702
|
}
|
|
2656
2703
|
|
|
2657
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2704
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
|
|
2658
2705
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2659
2706
|
|
|
2660
|
-
/** @name PalletBitcoinLocksCall (
|
|
2707
|
+
/** @name PalletBitcoinLocksCall (216) */
|
|
2661
2708
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2662
2709
|
readonly isInitialize: boolean;
|
|
2663
2710
|
readonly asInitialize: {
|
|
@@ -2698,19 +2745,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2698
2745
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2699
2746
|
readonly signature: Bytes;
|
|
2700
2747
|
} & Struct;
|
|
2701
|
-
readonly isInitializeFor: boolean;
|
|
2702
|
-
readonly asInitializeFor: {
|
|
2703
|
-
readonly accountId: AccountId32;
|
|
2704
|
-
readonly vaultId: u32;
|
|
2705
|
-
readonly satoshis: Compact<u64>;
|
|
2706
|
-
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2707
|
-
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2708
|
-
} & Struct;
|
|
2709
2748
|
readonly isIncreaseSecuritization: boolean;
|
|
2710
2749
|
readonly asIncreaseSecuritization: {
|
|
2711
2750
|
readonly utxoId: u64;
|
|
2712
2751
|
readonly newSatoshis: Compact<u64>;
|
|
2713
2752
|
} & Struct;
|
|
2753
|
+
readonly isSetAsBackfill: boolean;
|
|
2754
|
+
readonly asSetAsBackfill: {
|
|
2755
|
+
readonly utxoId: u64;
|
|
2756
|
+
readonly isBackfill: bool;
|
|
2757
|
+
} & Struct;
|
|
2714
2758
|
readonly type:
|
|
2715
2759
|
| 'Initialize'
|
|
2716
2760
|
| 'RequestRelease'
|
|
@@ -2719,23 +2763,53 @@ declare module '@polkadot/types/lookup' {
|
|
|
2719
2763
|
| 'AdminModifyMinimumLockedSats'
|
|
2720
2764
|
| 'RequestOrphanedUtxoRelease'
|
|
2721
2765
|
| 'CosignOrphanedUtxoRelease'
|
|
2722
|
-
| '
|
|
2723
|
-
| '
|
|
2766
|
+
| 'IncreaseSecuritization'
|
|
2767
|
+
| 'SetAsBackfill';
|
|
2724
2768
|
}
|
|
2725
2769
|
|
|
2726
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2770
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
|
|
2727
2771
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2728
2772
|
|
|
2729
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2773
|
+
/** @name PalletBitcoinLocksLockOptions (220) */
|
|
2730
2774
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2731
2775
|
readonly isV1: boolean;
|
|
2732
2776
|
readonly asV1: {
|
|
2733
2777
|
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2734
2778
|
} & Struct;
|
|
2735
|
-
readonly
|
|
2779
|
+
readonly isV2: boolean;
|
|
2780
|
+
readonly asV2: {
|
|
2781
|
+
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2782
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2783
|
+
} & Struct;
|
|
2784
|
+
readonly type: 'V1' | 'V2';
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
/** @name PalletBitcoinLocksFeeCoupon (222) */
|
|
2788
|
+
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2789
|
+
readonly vaultId: Compact<u32>;
|
|
2790
|
+
readonly genesisHash: H256;
|
|
2791
|
+
readonly beneficiary: AccountId32;
|
|
2792
|
+
readonly feeDiscount: Compact<u128>;
|
|
2793
|
+
readonly backfillSecuritizationToUnreserve: Compact<u128>;
|
|
2794
|
+
readonly expiresAtFrame: Compact<u64>;
|
|
2795
|
+
readonly nonce: Compact<u64>;
|
|
2796
|
+
readonly signature: SpRuntimeMultiSignature;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
/** @name SpRuntimeMultiSignature (223) */
|
|
2800
|
+
interface SpRuntimeMultiSignature extends Enum {
|
|
2801
|
+
readonly isEd25519: boolean;
|
|
2802
|
+
readonly asEd25519: U8aFixed;
|
|
2803
|
+
readonly isSr25519: boolean;
|
|
2804
|
+
readonly asSr25519: U8aFixed;
|
|
2805
|
+
readonly isEcdsa: boolean;
|
|
2806
|
+
readonly asEcdsa: U8aFixed;
|
|
2807
|
+
readonly isEth: boolean;
|
|
2808
|
+
readonly asEth: U8aFixed;
|
|
2809
|
+
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2736
2810
|
}
|
|
2737
2811
|
|
|
2738
|
-
/** @name PalletNotariesCall (
|
|
2812
|
+
/** @name PalletNotariesCall (228) */
|
|
2739
2813
|
interface PalletNotariesCall extends Enum {
|
|
2740
2814
|
readonly isPropose: boolean;
|
|
2741
2815
|
readonly asPropose: {
|
|
@@ -2754,7 +2828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2754
2828
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2755
2829
|
}
|
|
2756
2830
|
|
|
2757
|
-
/** @name PalletNotebookCall (
|
|
2831
|
+
/** @name PalletNotebookCall (229) */
|
|
2758
2832
|
interface PalletNotebookCall extends Enum {
|
|
2759
2833
|
readonly isSubmit: boolean;
|
|
2760
2834
|
readonly asSubmit: {
|
|
@@ -2767,13 +2841,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2767
2841
|
readonly type: 'Submit' | 'Unlock';
|
|
2768
2842
|
}
|
|
2769
2843
|
|
|
2770
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2844
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
|
|
2771
2845
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2772
2846
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2773
2847
|
readonly signature: U8aFixed;
|
|
2774
2848
|
}
|
|
2775
2849
|
|
|
2776
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2850
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (232) */
|
|
2777
2851
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2778
2852
|
readonly version: Compact<u16>;
|
|
2779
2853
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2792,7 +2866,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2792
2866
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2793
2867
|
}
|
|
2794
2868
|
|
|
2795
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2869
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (235) */
|
|
2796
2870
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2797
2871
|
readonly isToMainchain: boolean;
|
|
2798
2872
|
readonly asToMainchain: {
|
|
@@ -2806,13 +2880,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2806
2880
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2807
2881
|
}
|
|
2808
2882
|
|
|
2809
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2883
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
|
|
2810
2884
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2811
2885
|
readonly notebookNumber: Compact<u32>;
|
|
2812
2886
|
readonly accountUid: Compact<u32>;
|
|
2813
2887
|
}
|
|
2814
2888
|
|
|
2815
|
-
/** @name PalletLocalchainTransferCall (
|
|
2889
|
+
/** @name PalletLocalchainTransferCall (244) */
|
|
2816
2890
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2817
2891
|
readonly isSendToLocalchain: boolean;
|
|
2818
2892
|
readonly asSendToLocalchain: {
|
|
@@ -2822,7 +2896,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2822
2896
|
readonly type: 'SendToLocalchain';
|
|
2823
2897
|
}
|
|
2824
2898
|
|
|
2825
|
-
/** @name PalletBlockSealSpecCall (
|
|
2899
|
+
/** @name PalletBlockSealSpecCall (245) */
|
|
2826
2900
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2827
2901
|
readonly isConfigure: boolean;
|
|
2828
2902
|
readonly asConfigure: {
|
|
@@ -2832,7 +2906,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2832
2906
|
readonly type: 'Configure';
|
|
2833
2907
|
}
|
|
2834
2908
|
|
|
2835
|
-
/** @name PalletDomainsCall (
|
|
2909
|
+
/** @name PalletDomainsCall (246) */
|
|
2836
2910
|
interface PalletDomainsCall extends Enum {
|
|
2837
2911
|
readonly isSetZoneRecord: boolean;
|
|
2838
2912
|
readonly asSetZoneRecord: {
|
|
@@ -2842,11 +2916,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
2842
2916
|
readonly type: 'SetZoneRecord';
|
|
2843
2917
|
}
|
|
2844
2918
|
|
|
2845
|
-
/** @name PalletPriceIndexCall (
|
|
2919
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2846
2920
|
interface PalletPriceIndexCall extends Enum {
|
|
2847
2921
|
readonly isSubmit: boolean;
|
|
2848
2922
|
readonly asSubmit: {
|
|
2849
2923
|
readonly index: PalletPriceIndexPriceIndex;
|
|
2924
|
+
readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
|
|
2850
2925
|
} & Struct;
|
|
2851
2926
|
readonly isSetOperator: boolean;
|
|
2852
2927
|
readonly asSetOperator: {
|
|
@@ -2855,7 +2930,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2855
2930
|
readonly type: 'Submit' | 'SetOperator';
|
|
2856
2931
|
}
|
|
2857
2932
|
|
|
2858
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2933
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2859
2934
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2860
2935
|
readonly btcUsdPrice: Compact<u128>;
|
|
2861
2936
|
readonly argonotUsdPrice: u128;
|
|
@@ -2865,7 +2940,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2865
2940
|
readonly tick: Compact<u64>;
|
|
2866
2941
|
}
|
|
2867
2942
|
|
|
2868
|
-
/** @name
|
|
2943
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2944
|
+
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2945
|
+
readonly ethereumUsdPrice: u128;
|
|
2946
|
+
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2947
|
+
readonly tick: Compact<u64>;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
/** @name PalletGrandpaCall (251) */
|
|
2869
2951
|
interface PalletGrandpaCall extends Enum {
|
|
2870
2952
|
readonly isReportEquivocation: boolean;
|
|
2871
2953
|
readonly asReportEquivocation: {
|
|
@@ -2885,13 +2967,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2885
2967
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2886
2968
|
}
|
|
2887
2969
|
|
|
2888
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2970
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2889
2971
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2890
2972
|
readonly setId: u64;
|
|
2891
2973
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2892
2974
|
}
|
|
2893
2975
|
|
|
2894
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2976
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2895
2977
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2896
2978
|
readonly isPrevote: boolean;
|
|
2897
2979
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2900,7 +2982,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2900
2982
|
readonly type: 'Prevote' | 'Precommit';
|
|
2901
2983
|
}
|
|
2902
2984
|
|
|
2903
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2985
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2904
2986
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2905
2987
|
readonly roundNumber: u64;
|
|
2906
2988
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2908,16 +2990,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2908
2990
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2909
2991
|
}
|
|
2910
2992
|
|
|
2911
|
-
/** @name FinalityGrandpaPrevote (
|
|
2993
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2912
2994
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2913
2995
|
readonly targetHash: H256;
|
|
2914
2996
|
readonly targetNumber: u32;
|
|
2915
2997
|
}
|
|
2916
2998
|
|
|
2917
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2999
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2918
3000
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2919
3001
|
|
|
2920
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3002
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2921
3003
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2922
3004
|
readonly roundNumber: u64;
|
|
2923
3005
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2925,16 +3007,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2925
3007
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2926
3008
|
}
|
|
2927
3009
|
|
|
2928
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3010
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
2929
3011
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2930
3012
|
readonly targetHash: H256;
|
|
2931
3013
|
readonly targetNumber: u32;
|
|
2932
3014
|
}
|
|
2933
3015
|
|
|
2934
|
-
/** @name SpCoreVoid (
|
|
3016
|
+
/** @name SpCoreVoid (261) */
|
|
2935
3017
|
type SpCoreVoid = Null;
|
|
2936
3018
|
|
|
2937
|
-
/** @name PalletBlockSealCall (
|
|
3019
|
+
/** @name PalletBlockSealCall (262) */
|
|
2938
3020
|
interface PalletBlockSealCall extends Enum {
|
|
2939
3021
|
readonly isApply: boolean;
|
|
2940
3022
|
readonly asApply: {
|
|
@@ -2943,7 +3025,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2943
3025
|
readonly type: 'Apply';
|
|
2944
3026
|
}
|
|
2945
3027
|
|
|
2946
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3028
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
2947
3029
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2948
3030
|
readonly isVote: boolean;
|
|
2949
3031
|
readonly asVote: {
|
|
@@ -2958,14 +3040,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2958
3040
|
readonly type: 'Vote' | 'Compute';
|
|
2959
3041
|
}
|
|
2960
3042
|
|
|
2961
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3043
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
2962
3044
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2963
3045
|
readonly proof: Vec<H256>;
|
|
2964
3046
|
readonly numberOfLeaves: Compact<u32>;
|
|
2965
3047
|
readonly leafIndex: Compact<u32>;
|
|
2966
3048
|
}
|
|
2967
3049
|
|
|
2968
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3050
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
2969
3051
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2970
3052
|
readonly accountId: AccountId32;
|
|
2971
3053
|
readonly blockHash: H256;
|
|
@@ -2976,20 +3058,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2976
3058
|
readonly tick: Compact<u64>;
|
|
2977
3059
|
}
|
|
2978
3060
|
|
|
2979
|
-
/** @name
|
|
2980
|
-
interface SpRuntimeMultiSignature extends Enum {
|
|
2981
|
-
readonly isEd25519: boolean;
|
|
2982
|
-
readonly asEd25519: U8aFixed;
|
|
2983
|
-
readonly isSr25519: boolean;
|
|
2984
|
-
readonly asSr25519: U8aFixed;
|
|
2985
|
-
readonly isEcdsa: boolean;
|
|
2986
|
-
readonly asEcdsa: U8aFixed;
|
|
2987
|
-
readonly isEth: boolean;
|
|
2988
|
-
readonly asEth: U8aFixed;
|
|
2989
|
-
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2990
|
-
}
|
|
2991
|
-
|
|
2992
|
-
/** @name PalletBlockRewardsCall (262) */
|
|
3061
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
2993
3062
|
interface PalletBlockRewardsCall extends Enum {
|
|
2994
3063
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2995
3064
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3002,10 +3071,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3002
3071
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3003
3072
|
}
|
|
3004
3073
|
|
|
3005
|
-
/** @name PalletMintCall (
|
|
3074
|
+
/** @name PalletMintCall (268) */
|
|
3006
3075
|
type PalletMintCall = Null;
|
|
3007
3076
|
|
|
3008
|
-
/** @name PalletBalancesCall (
|
|
3077
|
+
/** @name PalletBalancesCall (269) */
|
|
3009
3078
|
interface PalletBalancesCall extends Enum {
|
|
3010
3079
|
readonly isTransferAllowDeath: boolean;
|
|
3011
3080
|
readonly asTransferAllowDeath: {
|
|
@@ -3064,14 +3133,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3064
3133
|
| 'Burn';
|
|
3065
3134
|
}
|
|
3066
3135
|
|
|
3067
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3136
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3068
3137
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3069
3138
|
readonly isIncrease: boolean;
|
|
3070
3139
|
readonly isDecrease: boolean;
|
|
3071
3140
|
readonly type: 'Increase' | 'Decrease';
|
|
3072
3141
|
}
|
|
3073
3142
|
|
|
3074
|
-
/** @name PalletTxPauseCall (
|
|
3143
|
+
/** @name PalletTxPauseCall (272) */
|
|
3075
3144
|
interface PalletTxPauseCall extends Enum {
|
|
3076
3145
|
readonly isPause: boolean;
|
|
3077
3146
|
readonly asPause: {
|
|
@@ -3084,7 +3153,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3084
3153
|
readonly type: 'Pause' | 'Unpause';
|
|
3085
3154
|
}
|
|
3086
3155
|
|
|
3087
|
-
/** @name PalletUtilityCall (
|
|
3156
|
+
/** @name PalletUtilityCall (273) */
|
|
3088
3157
|
interface PalletUtilityCall extends Enum {
|
|
3089
3158
|
readonly isBatch: boolean;
|
|
3090
3159
|
readonly asBatch: {
|
|
@@ -3134,7 +3203,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3134
3203
|
| 'DispatchAsFallible';
|
|
3135
3204
|
}
|
|
3136
3205
|
|
|
3137
|
-
/** @name PalletSudoCall (
|
|
3206
|
+
/** @name PalletSudoCall (275) */
|
|
3138
3207
|
interface PalletSudoCall extends Enum {
|
|
3139
3208
|
readonly isSudo: boolean;
|
|
3140
3209
|
readonly asSudo: {
|
|
@@ -3158,7 +3227,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3158
3227
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3159
3228
|
}
|
|
3160
3229
|
|
|
3161
|
-
/** @name PalletTreasuryCall (
|
|
3230
|
+
/** @name PalletTreasuryCall (276) */
|
|
3162
3231
|
interface PalletTreasuryCall extends Enum {
|
|
3163
3232
|
readonly isBuyBonds: boolean;
|
|
3164
3233
|
readonly asBuyBonds: {
|
|
@@ -3174,23 +3243,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
3174
3243
|
readonly asBuyArgonotBonds: {
|
|
3175
3244
|
readonly bonds: u32;
|
|
3176
3245
|
} & Struct;
|
|
3177
|
-
readonly
|
|
3246
|
+
readonly isSetBondLotAsBackfill: boolean;
|
|
3247
|
+
readonly asSetBondLotAsBackfill: {
|
|
3248
|
+
readonly bondLotId: u64;
|
|
3249
|
+
readonly isBackfill: bool;
|
|
3250
|
+
} & Struct;
|
|
3251
|
+
readonly isSetBackfillBondsReserved: boolean;
|
|
3252
|
+
readonly asSetBackfillBondsReserved: {
|
|
3253
|
+
readonly vaultId: u32;
|
|
3254
|
+
readonly backfillBondsReserved: u32;
|
|
3255
|
+
} & Struct;
|
|
3256
|
+
readonly type:
|
|
3257
|
+
| 'BuyBonds'
|
|
3258
|
+
| 'LiquidateBondLot'
|
|
3259
|
+
| 'BuyArgonotBonds'
|
|
3260
|
+
| 'SetBondLotAsBackfill'
|
|
3261
|
+
| 'SetBackfillBondsReserved';
|
|
3178
3262
|
}
|
|
3179
3263
|
|
|
3180
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3264
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
|
|
3181
3265
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3182
3266
|
readonly vaultId: Compact<u32>;
|
|
3183
3267
|
readonly beneficiary: AccountId32;
|
|
3268
|
+
readonly bonusPercent: Compact<Permill>;
|
|
3184
3269
|
readonly expiresAtFrame: Compact<u64>;
|
|
3270
|
+
readonly backfillBondsToUnreserve: Compact<u32>;
|
|
3271
|
+
readonly nonce: Compact<u64>;
|
|
3185
3272
|
readonly signature: SpRuntimeMultiSignature;
|
|
3186
3273
|
}
|
|
3187
3274
|
|
|
3188
|
-
/** @name PalletOperationalAccountsCall (
|
|
3275
|
+
/** @name PalletOperationalAccountsCall (279) */
|
|
3189
3276
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3190
3277
|
readonly isRegister: boolean;
|
|
3191
3278
|
readonly asRegister: {
|
|
3192
3279
|
readonly registration: PalletOperationalAccountsRegistration;
|
|
3193
3280
|
} & Struct;
|
|
3281
|
+
readonly isSetName: boolean;
|
|
3282
|
+
readonly asSetName: {
|
|
3283
|
+
readonly name: Option<Bytes>;
|
|
3284
|
+
} & Struct;
|
|
3194
3285
|
readonly isSetRewardConfig: boolean;
|
|
3195
3286
|
readonly asSetRewardConfig: {
|
|
3196
3287
|
readonly operationalCertificationReward: u128;
|
|
@@ -3202,11 +3293,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3202
3293
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3203
3294
|
readonly updateOperationalProgress: bool;
|
|
3204
3295
|
} & Struct;
|
|
3205
|
-
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3206
|
-
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3207
|
-
readonly downstreamAccount: AccountId32;
|
|
3208
|
-
readonly encryptedServer: Bytes;
|
|
3209
|
-
} & Struct;
|
|
3210
3296
|
readonly isActivate: boolean;
|
|
3211
3297
|
readonly isClaimRewards: boolean;
|
|
3212
3298
|
readonly asClaimRewards: {
|
|
@@ -3214,21 +3300,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3214
3300
|
} & Struct;
|
|
3215
3301
|
readonly type:
|
|
3216
3302
|
| 'Register'
|
|
3303
|
+
| 'SetName'
|
|
3217
3304
|
| 'SetRewardConfig'
|
|
3218
3305
|
| 'ForceSetProgress'
|
|
3219
|
-
| 'SetEncryptedServerForDownstreamAccount'
|
|
3220
3306
|
| 'Activate'
|
|
3221
3307
|
| 'ClaimRewards';
|
|
3222
3308
|
}
|
|
3223
3309
|
|
|
3224
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3310
|
+
/** @name PalletOperationalAccountsRegistration (280) */
|
|
3225
3311
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3226
3312
|
readonly isV1: boolean;
|
|
3227
3313
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3228
3314
|
readonly type: 'V1';
|
|
3229
3315
|
}
|
|
3230
3316
|
|
|
3231
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3317
|
+
/** @name PalletOperationalAccountsRegistrationV1 (281) */
|
|
3232
3318
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3233
3319
|
readonly operationalAccount: AccountId32;
|
|
3234
3320
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3240,21 +3326,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3240
3326
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3241
3327
|
}
|
|
3242
3328
|
|
|
3243
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3329
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
|
|
3244
3330
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3245
3331
|
|
|
3246
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3332
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (283) */
|
|
3247
3333
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3248
3334
|
readonly signature: SpRuntimeMultiSignature;
|
|
3249
3335
|
}
|
|
3250
3336
|
|
|
3251
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3337
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (285) */
|
|
3252
3338
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
3339
|
readonly upstreamAccount: AccountId32;
|
|
3254
3340
|
readonly signature: SpRuntimeMultiSignature;
|
|
3255
3341
|
}
|
|
3256
3342
|
|
|
3257
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3343
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (288) */
|
|
3258
3344
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3259
3345
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3260
3346
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3264,7 +3350,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3350
|
readonly miningSeatCount: Option<u32>;
|
|
3265
3351
|
}
|
|
3266
3352
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCall (
|
|
3353
|
+
/** @name PalletEthereumVerifierCall (290) */
|
|
3268
3354
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3269
3355
|
readonly isForceCheckpoint: boolean;
|
|
3270
3356
|
readonly asForceCheckpoint: {
|
|
@@ -3292,7 +3378,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3292
3378
|
| 'SetOperatingMode';
|
|
3293
3379
|
}
|
|
3294
3380
|
|
|
3295
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3381
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (291) */
|
|
3296
3382
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3297
3383
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3298
3384
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3301,7 +3387,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3301
3387
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3302
3388
|
}
|
|
3303
3389
|
|
|
3304
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3390
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (292) */
|
|
3305
3391
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3306
3392
|
readonly slot: u64;
|
|
3307
3393
|
readonly proposerIndex: u64;
|
|
@@ -3310,22 +3396,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3310
3396
|
readonly bodyRoot: H256;
|
|
3311
3397
|
}
|
|
3312
3398
|
|
|
3313
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3399
|
+
/** @name PalletEthereumVerifierSyncCommittee (293) */
|
|
3314
3400
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3315
3401
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3316
3402
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3317
3403
|
}
|
|
3318
3404
|
|
|
3319
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3405
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (295) */
|
|
3320
3406
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3321
3407
|
|
|
3322
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3408
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (299) */
|
|
3323
3409
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3324
3410
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3325
3411
|
readonly executionBranch: Vec<H256>;
|
|
3326
3412
|
}
|
|
3327
3413
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3414
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (300) */
|
|
3329
3415
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3330
3416
|
readonly isCapella: boolean;
|
|
3331
3417
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3334,7 +3420,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3334
3420
|
readonly type: 'Capella' | 'Deneb';
|
|
3335
3421
|
}
|
|
3336
3422
|
|
|
3337
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3423
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (301) */
|
|
3338
3424
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3339
3425
|
readonly parentHash: H256;
|
|
3340
3426
|
readonly feeRecipient: H160;
|
|
@@ -3353,7 +3439,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3439
|
readonly withdrawalsRoot: H256;
|
|
3354
3440
|
}
|
|
3355
3441
|
|
|
3356
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3442
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (302) */
|
|
3357
3443
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3358
3444
|
readonly parentHash: H256;
|
|
3359
3445
|
readonly feeRecipient: H160;
|
|
@@ -3374,7 +3460,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3460
|
readonly excessBlobGas: u64;
|
|
3375
3461
|
}
|
|
3376
3462
|
|
|
3377
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3463
|
+
/** @name PalletEthereumVerifierForkVersions (303) */
|
|
3378
3464
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3379
3465
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3380
3466
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3385,13 +3471,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3385
3471
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3386
3472
|
}
|
|
3387
3473
|
|
|
3388
|
-
/** @name PalletEthereumVerifierFork (
|
|
3474
|
+
/** @name PalletEthereumVerifierFork (304) */
|
|
3389
3475
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3390
3476
|
readonly version: U8aFixed;
|
|
3391
3477
|
readonly epoch: Compact<u64>;
|
|
3392
3478
|
}
|
|
3393
3479
|
|
|
3394
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3480
|
+
/** @name PalletEthereumVerifierUpdate (305) */
|
|
3395
3481
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3396
3482
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3397
3483
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3402,22 +3488,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3402
3488
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3403
3489
|
}
|
|
3404
3490
|
|
|
3405
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3491
|
+
/** @name PalletEthereumVerifierSyncAggregate (306) */
|
|
3406
3492
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3407
3493
|
readonly syncCommitteeBits: Bytes;
|
|
3408
3494
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3409
3495
|
}
|
|
3410
3496
|
|
|
3411
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3497
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (308) */
|
|
3412
3498
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3413
3499
|
|
|
3414
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3500
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (311) */
|
|
3415
3501
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3416
3502
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3417
3503
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3418
3504
|
}
|
|
3419
3505
|
|
|
3420
|
-
/** @name PalletCrosschainTransferCall (
|
|
3506
|
+
/** @name PalletCrosschainTransferCall (312) */
|
|
3421
3507
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3422
3508
|
readonly isSetChainConfig: boolean;
|
|
3423
3509
|
readonly asSetChainConfig: {
|
|
@@ -3507,7 +3593,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3507
3593
|
| 'CollateralizeTransfer';
|
|
3508
3594
|
}
|
|
3509
3595
|
|
|
3510
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3596
|
+
/** @name PalletCrosschainTransferChainConfig (313) */
|
|
3511
3597
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3512
3598
|
readonly isEvm: boolean;
|
|
3513
3599
|
readonly asEvm: {
|
|
@@ -3519,7 +3605,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3519
3605
|
readonly type: 'Evm';
|
|
3520
3606
|
}
|
|
3521
3607
|
|
|
3522
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3608
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (315) */
|
|
3523
3609
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3524
3610
|
readonly activationGasCost: Compact<u128>;
|
|
3525
3611
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3527,56 +3613,77 @@ declare module '@polkadot/types/lookup' {
|
|
|
3527
3613
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3528
3614
|
}
|
|
3529
3615
|
|
|
3530
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3616
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (318) */
|
|
3531
3617
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3532
3618
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3533
3619
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3534
3620
|
}
|
|
3535
3621
|
|
|
3536
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3622
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (319) */
|
|
3537
3623
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3538
3624
|
readonly anchorBlockHash: H256;
|
|
3539
3625
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3540
3626
|
}
|
|
3541
3627
|
|
|
3542
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3628
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (321) */
|
|
3543
3629
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3544
3630
|
readonly rlp: Bytes;
|
|
3545
3631
|
}
|
|
3546
3632
|
|
|
3547
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3633
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (325) */
|
|
3548
3634
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3549
3635
|
readonly targetBlockNumber: Compact<u64>;
|
|
3550
3636
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3551
3637
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3552
3638
|
}
|
|
3553
3639
|
|
|
3554
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3640
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (326) */
|
|
3555
3641
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3556
3642
|
readonly nodes: Vec<Bytes>;
|
|
3557
3643
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3558
3644
|
}
|
|
3559
3645
|
|
|
3560
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3646
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (330) */
|
|
3561
3647
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3562
3648
|
readonly transactionIndex: Compact<u64>;
|
|
3563
3649
|
readonly nodeIndexes: Vec<u16>;
|
|
3564
3650
|
}
|
|
3565
3651
|
|
|
3566
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3652
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (335) */
|
|
3567
3653
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3568
3654
|
readonly transactionIndex: Compact<u64>;
|
|
3569
3655
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3570
3656
|
}
|
|
3571
3657
|
|
|
3572
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3658
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (336) */
|
|
3573
3659
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3574
3660
|
readonly address: H160;
|
|
3575
3661
|
readonly topics: Vec<H256>;
|
|
3576
3662
|
readonly data: Bytes;
|
|
3577
3663
|
}
|
|
3578
3664
|
|
|
3579
|
-
/** @name
|
|
3665
|
+
/** @name PalletBootstrapCall (341) */
|
|
3666
|
+
interface PalletBootstrapCall extends Enum {
|
|
3667
|
+
readonly isSetRecoveryPayload: boolean;
|
|
3668
|
+
readonly asSetRecoveryPayload: {
|
|
3669
|
+
readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
3670
|
+
readonly recoveryProof: PalletBootstrapRecoveryProof;
|
|
3671
|
+
readonly encryptedRecoveryPayload: Bytes;
|
|
3672
|
+
} & Struct;
|
|
3673
|
+
readonly isSetEndpoint: boolean;
|
|
3674
|
+
readonly asSetEndpoint: {
|
|
3675
|
+
readonly endpointPubkey: PalletBootstrapEndpointPubkey;
|
|
3676
|
+
readonly encryptedEndpoint: Bytes;
|
|
3677
|
+
} & Struct;
|
|
3678
|
+
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
/** @name PalletBootstrapRecoveryProof (342) */
|
|
3682
|
+
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3683
|
+
readonly signature: U8aFixed;
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
/** @name PalletMultisigError (344) */
|
|
3580
3687
|
interface PalletMultisigError extends Enum {
|
|
3581
3688
|
readonly isMinimumThreshold: boolean;
|
|
3582
3689
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3609,21 +3716,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3716
|
| 'AlreadyStored';
|
|
3610
3717
|
}
|
|
3611
3718
|
|
|
3612
|
-
/** @name PalletProxyProxyDefinition (
|
|
3719
|
+
/** @name PalletProxyProxyDefinition (347) */
|
|
3613
3720
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3614
3721
|
readonly delegate: AccountId32;
|
|
3615
3722
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3616
3723
|
readonly delay: u32;
|
|
3617
3724
|
}
|
|
3618
3725
|
|
|
3619
|
-
/** @name PalletProxyAnnouncement (
|
|
3726
|
+
/** @name PalletProxyAnnouncement (351) */
|
|
3620
3727
|
interface PalletProxyAnnouncement extends Struct {
|
|
3621
3728
|
readonly real: AccountId32;
|
|
3622
3729
|
readonly callHash: H256;
|
|
3623
3730
|
readonly height: u32;
|
|
3624
3731
|
}
|
|
3625
3732
|
|
|
3626
|
-
/** @name PalletProxyError (
|
|
3733
|
+
/** @name PalletProxyError (353) */
|
|
3627
3734
|
interface PalletProxyError extends Enum {
|
|
3628
3735
|
readonly isTooMany: boolean;
|
|
3629
3736
|
readonly isNotFound: boolean;
|
|
@@ -3644,16 +3751,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3644
3751
|
| 'NoSelfProxy';
|
|
3645
3752
|
}
|
|
3646
3753
|
|
|
3647
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3754
|
+
/** @name ArgonPrimitivesTickTicker (354) */
|
|
3648
3755
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3649
3756
|
readonly tickDurationMillis: Compact<u64>;
|
|
3650
3757
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3651
3758
|
}
|
|
3652
3759
|
|
|
3653
|
-
/** @name PalletTicksError (
|
|
3760
|
+
/** @name PalletTicksError (356) */
|
|
3654
3761
|
type PalletTicksError = Null;
|
|
3655
3762
|
|
|
3656
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3763
|
+
/** @name PalletMiningSlotMinerNonceScoring (359) */
|
|
3657
3764
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3658
3765
|
readonly nonce: U256;
|
|
3659
3766
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3661,7 +3768,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3661
3768
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3662
3769
|
}
|
|
3663
3770
|
|
|
3664
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3771
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (371) */
|
|
3665
3772
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3666
3773
|
readonly bidsCount: u32;
|
|
3667
3774
|
readonly bidAmountMin: u128;
|
|
@@ -3669,14 +3776,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3669
3776
|
readonly bidAmountSum: u128;
|
|
3670
3777
|
}
|
|
3671
3778
|
|
|
3672
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3779
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (375) */
|
|
3673
3780
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3674
3781
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3675
3782
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3676
3783
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3677
3784
|
}
|
|
3678
3785
|
|
|
3679
|
-
/** @name PalletMiningSlotError (
|
|
3786
|
+
/** @name PalletMiningSlotError (385) */
|
|
3680
3787
|
interface PalletMiningSlotError extends Enum {
|
|
3681
3788
|
readonly isSlotNotTakingBids: boolean;
|
|
3682
3789
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3703,7 +3810,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3703
3810
|
| 'UnrecoverableHold';
|
|
3704
3811
|
}
|
|
3705
3812
|
|
|
3706
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3813
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (386) */
|
|
3707
3814
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3708
3815
|
readonly utxoId: u64;
|
|
3709
3816
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3712,7 +3819,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3712
3819
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3713
3820
|
}
|
|
3714
3821
|
|
|
3715
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3822
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3716
3823
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3717
3824
|
readonly isP2wsh: boolean;
|
|
3718
3825
|
readonly asP2wsh: {
|
|
@@ -3721,7 +3828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3721
3828
|
readonly type: 'P2wsh';
|
|
3722
3829
|
}
|
|
3723
3830
|
|
|
3724
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3831
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (396) */
|
|
3725
3832
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3726
3833
|
readonly isBitcoin: boolean;
|
|
3727
3834
|
readonly isTestnet: boolean;
|
|
@@ -3730,7 +3837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3730
3837
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3731
3838
|
}
|
|
3732
3839
|
|
|
3733
|
-
/** @name PalletBitcoinUtxosError (
|
|
3840
|
+
/** @name PalletBitcoinUtxosError (397) */
|
|
3734
3841
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3735
3842
|
readonly isNoPermissions: boolean;
|
|
3736
3843
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3765,18 +3872,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
3765
3872
|
| 'LockAlreadyFunded';
|
|
3766
3873
|
}
|
|
3767
3874
|
|
|
3768
|
-
/** @name ArgonPrimitivesVault (
|
|
3875
|
+
/** @name ArgonPrimitivesVault (398) */
|
|
3769
3876
|
interface ArgonPrimitivesVault extends Struct {
|
|
3770
3877
|
readonly operatorAccountId: AccountId32;
|
|
3771
3878
|
readonly delegateAccountId: Option<AccountId32>;
|
|
3772
|
-
readonly name: Option<Bytes>;
|
|
3773
|
-
readonly lastNameChangeTick: Option<u64>;
|
|
3774
3879
|
readonly securitization: Compact<u128>;
|
|
3775
3880
|
readonly securitizationTarget: Compact<u128>;
|
|
3776
3881
|
readonly securitizationLocked: Compact<u128>;
|
|
3882
|
+
readonly backfillSecuritizationLocked: Compact<u128>;
|
|
3883
|
+
readonly backfillSecuritizationReserved: Compact<u128>;
|
|
3777
3884
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3778
3885
|
readonly lockedSatoshis: Compact<u64>;
|
|
3779
3886
|
readonly securitizedSatoshis: Compact<u64>;
|
|
3887
|
+
readonly backfillSecuritizedSatoshis: Compact<u64>;
|
|
3780
3888
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3781
3889
|
readonly securitizationRatio: Compact<u128>;
|
|
3782
3890
|
readonly isClosed: bool;
|
|
@@ -3786,13 +3894,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3786
3894
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3787
3895
|
}
|
|
3788
3896
|
|
|
3789
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3897
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (405) */
|
|
3790
3898
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3791
3899
|
readonly committedMicronots: Compact<u128>;
|
|
3792
3900
|
readonly encumberedMicronots: Compact<u128>;
|
|
3793
3901
|
}
|
|
3794
3902
|
|
|
3795
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3903
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (407) */
|
|
3796
3904
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3797
3905
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3798
3906
|
readonly depth: Compact<u8>;
|
|
@@ -3802,14 +3910,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3802
3910
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3803
3911
|
}
|
|
3804
3912
|
|
|
3805
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3913
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (409) */
|
|
3806
3914
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3807
3915
|
readonly isMain: boolean;
|
|
3808
3916
|
readonly isTest: boolean;
|
|
3809
3917
|
readonly type: 'Main' | 'Test';
|
|
3810
3918
|
}
|
|
3811
3919
|
|
|
3812
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3920
|
+
/** @name PalletVaultsVaultFrameRevenue (418) */
|
|
3813
3921
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3814
3922
|
readonly frameId: Compact<u64>;
|
|
3815
3923
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3829,15 +3937,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3829
3937
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3830
3938
|
}
|
|
3831
3939
|
|
|
3832
|
-
/** @name
|
|
3833
|
-
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3834
|
-
readonly blockNumber: Compact<u32>;
|
|
3835
|
-
readonly availableBeforeDrop: Compact<u128>;
|
|
3836
|
-
readonly availableAfterDrop: Compact<u128>;
|
|
3837
|
-
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3838
|
-
}
|
|
3839
|
-
|
|
3840
|
-
/** @name PalletVaultsError (414) */
|
|
3940
|
+
/** @name PalletVaultsError (420) */
|
|
3841
3941
|
interface PalletVaultsError extends Enum {
|
|
3842
3942
|
readonly isNoMoreVaultIds: boolean;
|
|
3843
3943
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3865,8 +3965,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3865
3965
|
readonly isInternalError: boolean;
|
|
3866
3966
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
3867
3967
|
readonly isFundingChangeAlreadyScheduled: boolean;
|
|
3868
|
-
readonly isInvalidBondSharingTerms: boolean;
|
|
3869
|
-
readonly isInvalidVaultName: boolean;
|
|
3870
3968
|
readonly isPendingCosignsBeforeCollect: boolean;
|
|
3871
3969
|
readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
|
|
3872
3970
|
readonly isOverdueCollectBlockersBeforeCollect: boolean;
|
|
@@ -3900,8 +3998,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3900
3998
|
| 'InternalError'
|
|
3901
3999
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
3902
4000
|
| 'FundingChangeAlreadyScheduled'
|
|
3903
|
-
| 'InvalidBondSharingTerms'
|
|
3904
|
-
| 'InvalidVaultName'
|
|
3905
4001
|
| 'PendingCosignsBeforeCollect'
|
|
3906
4002
|
| 'PendingOrphanedUtxoCosignsBeforeCollect'
|
|
3907
4003
|
| 'OverdueCollectBlockersBeforeCollect'
|
|
@@ -3910,7 +4006,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3910
4006
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3911
4007
|
}
|
|
3912
4008
|
|
|
3913
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4009
|
+
/** @name PalletBitcoinLocksLockedBitcoin (421) */
|
|
3914
4010
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3915
4011
|
readonly vaultId: Compact<u32>;
|
|
3916
4012
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3930,11 +4026,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3930
4026
|
readonly createdAtHeight: Compact<u64>;
|
|
3931
4027
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3932
4028
|
readonly isFunded: bool;
|
|
4029
|
+
readonly isBackfill: bool;
|
|
3933
4030
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
3934
4031
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3935
4032
|
}
|
|
3936
4033
|
|
|
3937
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4034
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (425) */
|
|
3938
4035
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3939
4036
|
readonly utxoId: Compact<u64>;
|
|
3940
4037
|
readonly vaultId: Compact<u32>;
|
|
@@ -3944,7 +4041,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3944
4041
|
readonly redemptionAmount: Compact<u128>;
|
|
3945
4042
|
}
|
|
3946
4043
|
|
|
3947
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4044
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (427) */
|
|
3948
4045
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3949
4046
|
readonly utxoId: Compact<u64>;
|
|
3950
4047
|
readonly vaultId: Compact<u32>;
|
|
@@ -3953,14 +4050,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3953
4050
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3954
4051
|
}
|
|
3955
4052
|
|
|
3956
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4053
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (429) */
|
|
3957
4054
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3958
4055
|
readonly bitcoinNetworkFee: u64;
|
|
3959
4056
|
readonly toScriptPubkey: Bytes;
|
|
3960
4057
|
readonly createdAtArgonBlockNumber: u32;
|
|
3961
4058
|
}
|
|
3962
4059
|
|
|
3963
|
-
/** @name PalletBitcoinLocksError (
|
|
4060
|
+
/** @name PalletBitcoinLocksError (436) */
|
|
3964
4061
|
interface PalletBitcoinLocksError extends Enum {
|
|
3965
4062
|
readonly isInsufficientFunds: boolean;
|
|
3966
4063
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -3994,6 +4091,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3994
4091
|
readonly isLockPendingFunding: boolean;
|
|
3995
4092
|
readonly isOverflowError: boolean;
|
|
3996
4093
|
readonly isIneligibleMicrogonRateRequested: boolean;
|
|
4094
|
+
readonly isFeeCouponWrongVault: boolean;
|
|
4095
|
+
readonly isFeeCouponWrongChain: boolean;
|
|
4096
|
+
readonly isFeeCouponWrongAccount: boolean;
|
|
4097
|
+
readonly isFeeCouponExpired: boolean;
|
|
4098
|
+
readonly isInvalidFeeCouponSignature: boolean;
|
|
4099
|
+
readonly isFeeCouponAlreadyUsed: boolean;
|
|
4100
|
+
readonly isFeeCouponOnlyForInitialization: boolean;
|
|
3997
4101
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
3998
4102
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
3999
4103
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4030,13 +4134,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
4030
4134
|
| 'LockPendingFunding'
|
|
4031
4135
|
| 'OverflowError'
|
|
4032
4136
|
| 'IneligibleMicrogonRateRequested'
|
|
4137
|
+
| 'FeeCouponWrongVault'
|
|
4138
|
+
| 'FeeCouponWrongChain'
|
|
4139
|
+
| 'FeeCouponWrongAccount'
|
|
4140
|
+
| 'FeeCouponExpired'
|
|
4141
|
+
| 'InvalidFeeCouponSignature'
|
|
4142
|
+
| 'FeeCouponAlreadyUsed'
|
|
4143
|
+
| 'FeeCouponOnlyForInitialization'
|
|
4033
4144
|
| 'OrphanedUtxoFundingConflict'
|
|
4034
4145
|
| 'OrphanedUtxoReleaseRequested'
|
|
4035
4146
|
| 'FundingUtxoCannotBeReleased'
|
|
4036
4147
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4037
4148
|
}
|
|
4038
4149
|
|
|
4039
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4150
|
+
/** @name ArgonPrimitivesVaultVaultError (437) */
|
|
4040
4151
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4041
4152
|
readonly isVaultClosed: boolean;
|
|
4042
4153
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4067,7 +4178,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4067
4178
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4068
4179
|
}
|
|
4069
4180
|
|
|
4070
|
-
/** @name PalletNotariesError (
|
|
4181
|
+
/** @name PalletNotariesError (449) */
|
|
4071
4182
|
interface PalletNotariesError extends Enum {
|
|
4072
4183
|
readonly isProposalNotFound: boolean;
|
|
4073
4184
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4090,7 +4201,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4090
4201
|
| 'InvalidNotary';
|
|
4091
4202
|
}
|
|
4092
4203
|
|
|
4093
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4204
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (453) */
|
|
4094
4205
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4095
4206
|
readonly notebookNumber: Compact<u32>;
|
|
4096
4207
|
readonly tick: Compact<u64>;
|
|
@@ -4099,7 +4210,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4099
4210
|
readonly parentSecret: Option<H256>;
|
|
4100
4211
|
}
|
|
4101
4212
|
|
|
4102
|
-
/** @name PalletNotebookError (
|
|
4213
|
+
/** @name PalletNotebookError (456) */
|
|
4103
4214
|
interface PalletNotebookError extends Enum {
|
|
4104
4215
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4105
4216
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4134,7 +4245,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4134
4245
|
| 'InvalidNotebookSubmissionTick';
|
|
4135
4246
|
}
|
|
4136
4247
|
|
|
4137
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4248
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (457) */
|
|
4138
4249
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4139
4250
|
readonly accountId: AccountId32;
|
|
4140
4251
|
readonly amount: u128;
|
|
@@ -4142,10 +4253,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4142
4253
|
readonly notaryId: u32;
|
|
4143
4254
|
}
|
|
4144
4255
|
|
|
4145
|
-
/** @name FrameSupportPalletId (
|
|
4256
|
+
/** @name FrameSupportPalletId (459) */
|
|
4146
4257
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4147
4258
|
|
|
4148
|
-
/** @name PalletLocalchainTransferError (
|
|
4259
|
+
/** @name PalletLocalchainTransferError (460) */
|
|
4149
4260
|
interface PalletLocalchainTransferError extends Enum {
|
|
4150
4261
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4151
4262
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4166,7 +4277,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4166
4277
|
| 'NoAvailableTransferId';
|
|
4167
4278
|
}
|
|
4168
4279
|
|
|
4169
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4280
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (464) */
|
|
4170
4281
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4171
4282
|
readonly notaryId: Compact<u32>;
|
|
4172
4283
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4175,13 +4286,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4175
4286
|
readonly blockVotingPower: Compact<u128>;
|
|
4176
4287
|
}
|
|
4177
4288
|
|
|
4178
|
-
/** @name PalletBlockSealSpecError (
|
|
4289
|
+
/** @name PalletBlockSealSpecError (469) */
|
|
4179
4290
|
interface PalletBlockSealSpecError extends Enum {
|
|
4180
4291
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4181
4292
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4182
4293
|
}
|
|
4183
4294
|
|
|
4184
|
-
/** @name PalletDomainsError (
|
|
4295
|
+
/** @name PalletDomainsError (471) */
|
|
4185
4296
|
interface PalletDomainsError extends Enum {
|
|
4186
4297
|
readonly isDomainNotRegistered: boolean;
|
|
4187
4298
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4196,34 +4307,43 @@ declare module '@polkadot/types/lookup' {
|
|
|
4196
4307
|
| 'AccountDecodingError';
|
|
4197
4308
|
}
|
|
4198
4309
|
|
|
4199
|
-
/** @name
|
|
4310
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (473) */
|
|
4311
|
+
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4312
|
+
readonly totalUsdPrice: u128;
|
|
4313
|
+
readonly totalWeiPerGas: Compact<u128>;
|
|
4314
|
+
readonly sampleCount: Compact<u32>;
|
|
4315
|
+
}
|
|
4316
|
+
|
|
4317
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (478) */
|
|
4200
4318
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4201
4319
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4202
4320
|
readonly totalCpi: i128;
|
|
4203
4321
|
readonly measurementsCount: u32;
|
|
4204
4322
|
}
|
|
4205
4323
|
|
|
4206
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4324
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (482) */
|
|
4207
4325
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4208
4326
|
readonly frameId: Compact<u64>;
|
|
4209
4327
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4210
4328
|
readonly sampleCount: Compact<u32>;
|
|
4211
4329
|
}
|
|
4212
4330
|
|
|
4213
|
-
/** @name PalletPriceIndexError (
|
|
4331
|
+
/** @name PalletPriceIndexError (483) */
|
|
4214
4332
|
interface PalletPriceIndexError extends Enum {
|
|
4215
4333
|
readonly isNotAuthorizedOperator: boolean;
|
|
4216
4334
|
readonly isMissingValue: boolean;
|
|
4217
4335
|
readonly isPricesTooOld: boolean;
|
|
4218
4336
|
readonly isMaxPriceChangePerTickExceeded: boolean;
|
|
4337
|
+
readonly isInvalidEthereumPrices: boolean;
|
|
4219
4338
|
readonly type:
|
|
4220
4339
|
| 'NotAuthorizedOperator'
|
|
4221
4340
|
| 'MissingValue'
|
|
4222
4341
|
| 'PricesTooOld'
|
|
4223
|
-
| 'MaxPriceChangePerTickExceeded'
|
|
4342
|
+
| 'MaxPriceChangePerTickExceeded'
|
|
4343
|
+
| 'InvalidEthereumPrices';
|
|
4224
4344
|
}
|
|
4225
4345
|
|
|
4226
|
-
/** @name PalletGrandpaStoredState (
|
|
4346
|
+
/** @name PalletGrandpaStoredState (484) */
|
|
4227
4347
|
interface PalletGrandpaStoredState extends Enum {
|
|
4228
4348
|
readonly isLive: boolean;
|
|
4229
4349
|
readonly isPendingPause: boolean;
|
|
@@ -4240,7 +4360,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4240
4360
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4241
4361
|
}
|
|
4242
4362
|
|
|
4243
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4363
|
+
/** @name PalletGrandpaStoredPendingChange (485) */
|
|
4244
4364
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4245
4365
|
readonly scheduledAt: u32;
|
|
4246
4366
|
readonly delay: u32;
|
|
@@ -4248,7 +4368,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4248
4368
|
readonly forced: Option<u32>;
|
|
4249
4369
|
}
|
|
4250
4370
|
|
|
4251
|
-
/** @name PalletGrandpaError (
|
|
4371
|
+
/** @name PalletGrandpaError (487) */
|
|
4252
4372
|
interface PalletGrandpaError extends Enum {
|
|
4253
4373
|
readonly isPauseFailed: boolean;
|
|
4254
4374
|
readonly isResumeFailed: boolean;
|
|
@@ -4267,14 +4387,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4267
4387
|
| 'DuplicateOffenceReport';
|
|
4268
4388
|
}
|
|
4269
4389
|
|
|
4270
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4390
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (488) */
|
|
4271
4391
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4272
4392
|
readonly blockAuthorAccountId: AccountId32;
|
|
4273
4393
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4274
4394
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4275
4395
|
}
|
|
4276
4396
|
|
|
4277
|
-
/** @name PalletBlockSealError (
|
|
4397
|
+
/** @name PalletBlockSealError (490) */
|
|
4278
4398
|
interface PalletBlockSealError extends Enum {
|
|
4279
4399
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4280
4400
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4321,10 +4441,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4321
4441
|
| 'DuplicateVoteBlockAtTick';
|
|
4322
4442
|
}
|
|
4323
4443
|
|
|
4324
|
-
/** @name PalletBlockRewardsError (
|
|
4444
|
+
/** @name PalletBlockRewardsError (494) */
|
|
4325
4445
|
type PalletBlockRewardsError = Null;
|
|
4326
4446
|
|
|
4327
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4447
|
+
/** @name PalletMintPendingMintUtxo (495) */
|
|
4328
4448
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4329
4449
|
readonly utxoId: Compact<u64>;
|
|
4330
4450
|
readonly accountId: AccountId32;
|
|
@@ -4332,34 +4452,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4332
4452
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4333
4453
|
}
|
|
4334
4454
|
|
|
4335
|
-
/** @name PalletMintMintQueueCursor (
|
|
4455
|
+
/** @name PalletMintMintQueueCursor (497) */
|
|
4336
4456
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4337
4457
|
readonly payoutStartIndex: Compact<u64>;
|
|
4338
4458
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4339
4459
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4340
4460
|
}
|
|
4341
4461
|
|
|
4342
|
-
/** @name PalletMintMintAction (
|
|
4462
|
+
/** @name PalletMintMintAction (500) */
|
|
4343
4463
|
interface PalletMintMintAction extends Struct {
|
|
4344
4464
|
readonly argonBurned: u128;
|
|
4345
4465
|
readonly argonMinted: u128;
|
|
4346
4466
|
readonly bitcoinMinted: u128;
|
|
4347
4467
|
}
|
|
4348
4468
|
|
|
4349
|
-
/** @name PalletMintError (
|
|
4469
|
+
/** @name PalletMintError (502) */
|
|
4350
4470
|
interface PalletMintError extends Enum {
|
|
4351
4471
|
readonly isTooManyPendingMints: boolean;
|
|
4352
4472
|
readonly type: 'TooManyPendingMints';
|
|
4353
4473
|
}
|
|
4354
4474
|
|
|
4355
|
-
/** @name PalletBalancesBalanceLock (
|
|
4475
|
+
/** @name PalletBalancesBalanceLock (504) */
|
|
4356
4476
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4357
4477
|
readonly id: U8aFixed;
|
|
4358
4478
|
readonly amount: u128;
|
|
4359
4479
|
readonly reasons: PalletBalancesReasons;
|
|
4360
4480
|
}
|
|
4361
4481
|
|
|
4362
|
-
/** @name PalletBalancesReasons (
|
|
4482
|
+
/** @name PalletBalancesReasons (505) */
|
|
4363
4483
|
interface PalletBalancesReasons extends Enum {
|
|
4364
4484
|
readonly isFee: boolean;
|
|
4365
4485
|
readonly isMisc: boolean;
|
|
@@ -4367,38 +4487,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4367
4487
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4368
4488
|
}
|
|
4369
4489
|
|
|
4370
|
-
/** @name PalletBalancesReserveData (
|
|
4490
|
+
/** @name PalletBalancesReserveData (508) */
|
|
4371
4491
|
interface PalletBalancesReserveData extends Struct {
|
|
4372
4492
|
readonly id: U8aFixed;
|
|
4373
4493
|
readonly amount: u128;
|
|
4374
4494
|
}
|
|
4375
4495
|
|
|
4376
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4496
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (511) */
|
|
4377
4497
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4378
4498
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4379
4499
|
readonly amount: u128;
|
|
4380
4500
|
}
|
|
4381
4501
|
|
|
4382
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4502
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (514) */
|
|
4383
4503
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4384
4504
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4385
4505
|
readonly amount: u128;
|
|
4386
4506
|
}
|
|
4387
4507
|
|
|
4388
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4508
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (515) */
|
|
4389
4509
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4390
4510
|
readonly isBlockRewards: boolean;
|
|
4391
4511
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4392
4512
|
readonly type: 'BlockRewards';
|
|
4393
4513
|
}
|
|
4394
4514
|
|
|
4395
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4515
|
+
/** @name PalletBlockRewardsFreezeReason (516) */
|
|
4396
4516
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4397
4517
|
readonly isMaturationPeriod: boolean;
|
|
4398
4518
|
readonly type: 'MaturationPeriod';
|
|
4399
4519
|
}
|
|
4400
4520
|
|
|
4401
|
-
/** @name PalletBalancesError (
|
|
4521
|
+
/** @name PalletBalancesError (518) */
|
|
4402
4522
|
interface PalletBalancesError extends Enum {
|
|
4403
4523
|
readonly isVestingBalance: boolean;
|
|
4404
4524
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4427,7 +4547,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4427
4547
|
| 'DeltaZero';
|
|
4428
4548
|
}
|
|
4429
4549
|
|
|
4430
|
-
/** @name PalletTxPauseError (
|
|
4550
|
+
/** @name PalletTxPauseError (520) */
|
|
4431
4551
|
interface PalletTxPauseError extends Enum {
|
|
4432
4552
|
readonly isIsPaused: boolean;
|
|
4433
4553
|
readonly isIsUnpaused: boolean;
|
|
@@ -4436,69 +4556,72 @@ declare module '@polkadot/types/lookup' {
|
|
|
4436
4556
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4437
4557
|
}
|
|
4438
4558
|
|
|
4439
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4559
|
+
/** @name PalletTransactionPaymentReleases (521) */
|
|
4440
4560
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4441
4561
|
readonly isV1Ancient: boolean;
|
|
4442
4562
|
readonly isV2: boolean;
|
|
4443
4563
|
readonly type: 'V1Ancient' | 'V2';
|
|
4444
4564
|
}
|
|
4445
4565
|
|
|
4446
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4566
|
+
/** @name FrameSupportStorageNoDrop (522) */
|
|
4447
4567
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4448
4568
|
|
|
4449
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4569
|
+
/** @name FrameSupportTokensFungibleImbalance (523) */
|
|
4450
4570
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4451
4571
|
readonly amount: u128;
|
|
4452
4572
|
}
|
|
4453
4573
|
|
|
4454
|
-
/** @name PalletUtilityError (
|
|
4574
|
+
/** @name PalletUtilityError (524) */
|
|
4455
4575
|
interface PalletUtilityError extends Enum {
|
|
4456
4576
|
readonly isTooManyCalls: boolean;
|
|
4457
4577
|
readonly type: 'TooManyCalls';
|
|
4458
4578
|
}
|
|
4459
4579
|
|
|
4460
|
-
/** @name PalletSudoError (
|
|
4580
|
+
/** @name PalletSudoError (525) */
|
|
4461
4581
|
interface PalletSudoError extends Enum {
|
|
4462
4582
|
readonly isRequireSudo: boolean;
|
|
4463
4583
|
readonly type: 'RequireSudo';
|
|
4464
4584
|
}
|
|
4465
4585
|
|
|
4466
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4586
|
+
/** @name PalletTreasuryFrameVaultCapital (526) */
|
|
4467
4587
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4468
4588
|
readonly frameId: Compact<u64>;
|
|
4469
4589
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4470
4590
|
}
|
|
4471
4591
|
|
|
4472
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4592
|
+
/** @name PalletTreasuryVaultCapital (528) */
|
|
4473
4593
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4474
4594
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4595
|
+
readonly backfillBondsEligible: Compact<u32>;
|
|
4596
|
+
readonly backfillProrata: u128;
|
|
4475
4597
|
readonly eligibleBonds: Compact<u32>;
|
|
4476
4598
|
}
|
|
4477
4599
|
|
|
4478
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4600
|
+
/** @name PalletTreasuryBondLotAllocation (530) */
|
|
4479
4601
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4480
4602
|
readonly bondLotId: Compact<u64>;
|
|
4481
4603
|
readonly prorata: u128;
|
|
4482
4604
|
}
|
|
4483
4605
|
|
|
4484
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4606
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (535) */
|
|
4485
4607
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4486
4608
|
readonly frameId: Compact<u64>;
|
|
4487
4609
|
readonly totalBonds: Compact<u32>;
|
|
4488
4610
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4489
4611
|
}
|
|
4490
4612
|
|
|
4491
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4613
|
+
/** @name PalletTreasuryBondLotSummary (537) */
|
|
4492
4614
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4493
4615
|
readonly bondLotId: Compact<u64>;
|
|
4494
4616
|
readonly bonds: Compact<u32>;
|
|
4495
4617
|
}
|
|
4496
4618
|
|
|
4497
|
-
/** @name PalletTreasuryBondLot (
|
|
4619
|
+
/** @name PalletTreasuryBondLot (539) */
|
|
4498
4620
|
interface PalletTreasuryBondLot extends Struct {
|
|
4499
4621
|
readonly owner: AccountId32;
|
|
4500
4622
|
readonly program: PalletTreasuryBondProgram;
|
|
4501
4623
|
readonly bonds: Compact<u32>;
|
|
4624
|
+
readonly isBackfill: bool;
|
|
4502
4625
|
readonly createdFrameId: Compact<u64>;
|
|
4503
4626
|
readonly participatedFrames: Compact<u32>;
|
|
4504
4627
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4508,7 +4631,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4508
4631
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4509
4632
|
}
|
|
4510
4633
|
|
|
4511
|
-
/** @name PalletTreasuryBondProgram (
|
|
4634
|
+
/** @name PalletTreasuryBondProgram (540) */
|
|
4512
4635
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4513
4636
|
readonly isVault: boolean;
|
|
4514
4637
|
readonly asVault: {
|
|
@@ -4520,7 +4643,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4520
4643
|
readonly type: 'Vault' | 'Argonot';
|
|
4521
4644
|
}
|
|
4522
4645
|
|
|
4523
|
-
/** @name
|
|
4646
|
+
/** @name PalletTreasuryVaultBondState (543) */
|
|
4647
|
+
interface PalletTreasuryVaultBondState extends Struct {
|
|
4648
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4649
|
+
readonly backfillBonds: Compact<u32>;
|
|
4650
|
+
readonly backfillBondsReserved: Compact<u32>;
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
/** @name PalletTreasuryError (545) */
|
|
4524
4654
|
interface PalletTreasuryError extends Enum {
|
|
4525
4655
|
readonly isBondPurchaseRejected: boolean;
|
|
4526
4656
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4536,10 +4666,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4536
4666
|
readonly isBonusApprovalWrongVault: boolean;
|
|
4537
4667
|
readonly isBonusApprovalWrongAccount: boolean;
|
|
4538
4668
|
readonly isBonusApprovalExpired: boolean;
|
|
4539
|
-
readonly
|
|
4669
|
+
readonly isBonusApprovalAlreadyUsed: boolean;
|
|
4540
4670
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4671
|
+
readonly isBonusApprovalExceedsProfitSharing: boolean;
|
|
4541
4672
|
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4542
4673
|
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4674
|
+
readonly isBondLotNotEligibleForBackfill: boolean;
|
|
4675
|
+
readonly isNoPermissions: boolean;
|
|
4543
4676
|
readonly type:
|
|
4544
4677
|
| 'BondPurchaseRejected'
|
|
4545
4678
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4555,24 +4688,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
4555
4688
|
| 'BonusApprovalWrongVault'
|
|
4556
4689
|
| 'BonusApprovalWrongAccount'
|
|
4557
4690
|
| 'BonusApprovalExpired'
|
|
4558
|
-
| '
|
|
4691
|
+
| 'BonusApprovalAlreadyUsed'
|
|
4559
4692
|
| 'InvalidBonusApprovalSignature'
|
|
4693
|
+
| 'BonusApprovalExceedsProfitSharing'
|
|
4560
4694
|
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4561
|
-
| 'ArgonotBondPurchaseAboveCap'
|
|
4695
|
+
| 'ArgonotBondPurchaseAboveCap'
|
|
4696
|
+
| 'BondLotNotEligibleForBackfill'
|
|
4697
|
+
| 'NoPermissions';
|
|
4562
4698
|
}
|
|
4563
4699
|
|
|
4564
|
-
/** @name PalletFeeControlError (
|
|
4700
|
+
/** @name PalletFeeControlError (546) */
|
|
4565
4701
|
interface PalletFeeControlError extends Enum {
|
|
4566
4702
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4567
4703
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4568
4704
|
}
|
|
4569
4705
|
|
|
4570
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4706
|
+
/** @name PalletOperationalAccountsOperationalAccount (547) */
|
|
4571
4707
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4572
4708
|
readonly vaultAccount: AccountId32;
|
|
4573
4709
|
readonly miningAccount: AccountId32;
|
|
4574
4710
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
4575
4711
|
readonly upstreamAccount: Option<AccountId32>;
|
|
4712
|
+
readonly name: Option<Bytes>;
|
|
4713
|
+
readonly lastNameChangeTick: Option<u64>;
|
|
4576
4714
|
readonly uniswapArgonTransfersInAmount: u128;
|
|
4577
4715
|
readonly accountBitcoinAmount: u128;
|
|
4578
4716
|
readonly accountVaultBondAmount: u128;
|
|
@@ -4582,7 +4720,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4582
4720
|
readonly miningSeatAccrual: Compact<u32>;
|
|
4583
4721
|
readonly miningSeatAppliedTotal: Compact<u32>;
|
|
4584
4722
|
readonly operationalCertificationsCount: Compact<u32>;
|
|
4585
|
-
readonly accessCodePending: bool;
|
|
4586
4723
|
readonly availableAccessCodes: Compact<u32>;
|
|
4587
4724
|
readonly rewardsEarnedCount: Compact<u32>;
|
|
4588
4725
|
readonly rewardsEarnedAmount: u128;
|
|
@@ -4590,13 +4727,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4590
4727
|
readonly isOperationallyCertified: bool;
|
|
4591
4728
|
}
|
|
4592
4729
|
|
|
4593
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4730
|
+
/** @name PalletOperationalAccountsRewardsConfig (548) */
|
|
4594
4731
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4595
4732
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
4733
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4597
4734
|
}
|
|
4598
4735
|
|
|
4599
|
-
/** @name PalletOperationalAccountsError (
|
|
4736
|
+
/** @name PalletOperationalAccountsError (549) */
|
|
4600
4737
|
interface PalletOperationalAccountsError extends Enum {
|
|
4601
4738
|
readonly isAlreadyRegistered: boolean;
|
|
4602
4739
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4609,8 +4746,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4609
4746
|
readonly isMinimumsNotMet: boolean;
|
|
4610
4747
|
readonly isCannotGrantAccessToSelf: boolean;
|
|
4611
4748
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4612
|
-
readonly isEncryptedServerTooLong: boolean;
|
|
4613
|
-
readonly isNotUpstreamOfDownstream: boolean;
|
|
4614
4749
|
readonly isNoPendingRewards: boolean;
|
|
4615
4750
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4616
4751
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4619,6 +4754,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4619
4754
|
readonly isAlreadyOperationallyCertified: boolean;
|
|
4620
4755
|
readonly isNotEligibleForActivation: boolean;
|
|
4621
4756
|
readonly isUpstreamHasNoAvailableAccessCodes: boolean;
|
|
4757
|
+
readonly isInvalidName: boolean;
|
|
4622
4758
|
readonly type:
|
|
4623
4759
|
| 'AlreadyRegistered'
|
|
4624
4760
|
| 'InvalidRegistrationSubmitter'
|
|
@@ -4631,8 +4767,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4631
4767
|
| 'MinimumsNotMet'
|
|
4632
4768
|
| 'CannotGrantAccessToSelf'
|
|
4633
4769
|
| 'NoProgressUpdateProvided'
|
|
4634
|
-
| 'EncryptedServerTooLong'
|
|
4635
|
-
| 'NotUpstreamOfDownstream'
|
|
4636
4770
|
| 'NoPendingRewards'
|
|
4637
4771
|
| 'RewardClaimBelowMinimum'
|
|
4638
4772
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4640,15 +4774,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
4640
4774
|
| 'TreasuryInsufficientFunds'
|
|
4641
4775
|
| 'AlreadyOperationallyCertified'
|
|
4642
4776
|
| 'NotEligibleForActivation'
|
|
4643
|
-
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4777
|
+
| 'UpstreamHasNoAvailableAccessCodes'
|
|
4778
|
+
| 'InvalidName';
|
|
4644
4779
|
}
|
|
4645
4780
|
|
|
4646
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4781
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (550) */
|
|
4647
4782
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4648
4783
|
readonly slot: Compact<u64>;
|
|
4649
4784
|
}
|
|
4650
4785
|
|
|
4651
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4786
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (551) */
|
|
4652
4787
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4653
4788
|
readonly blockNumber: Compact<u64>;
|
|
4654
4789
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4658,44 +4793,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4658
4793
|
readonly receiptsRoot: H256;
|
|
4659
4794
|
}
|
|
4660
4795
|
|
|
4661
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4796
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (552) */
|
|
4662
4797
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4663
4798
|
readonly root: H256;
|
|
4664
4799
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4665
4800
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4666
4801
|
}
|
|
4667
4802
|
|
|
4668
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4803
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (554) */
|
|
4669
4804
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4670
4805
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4671
4806
|
}
|
|
4672
4807
|
|
|
4673
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4808
|
+
/** @name SnowbridgeAmclBls381Ecp (555) */
|
|
4674
4809
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4675
4810
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4676
4811
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4677
4812
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4678
4813
|
}
|
|
4679
4814
|
|
|
4680
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4815
|
+
/** @name SnowbridgeAmclBls381Fp (556) */
|
|
4681
4816
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4682
4817
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4683
4818
|
readonly xes: i32;
|
|
4684
4819
|
}
|
|
4685
4820
|
|
|
4686
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4821
|
+
/** @name SnowbridgeAmclBls381Big (557) */
|
|
4687
4822
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4688
4823
|
readonly w: Vec<i32>;
|
|
4689
4824
|
}
|
|
4690
4825
|
|
|
4691
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4826
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (561) */
|
|
4692
4827
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4693
4828
|
readonly isMainnet: boolean;
|
|
4694
4829
|
readonly isMinimal: boolean;
|
|
4695
4830
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4696
4831
|
}
|
|
4697
4832
|
|
|
4698
|
-
/** @name PalletEthereumVerifierError (
|
|
4833
|
+
/** @name PalletEthereumVerifierError (562) */
|
|
4699
4834
|
interface PalletEthereumVerifierError extends Enum {
|
|
4700
4835
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4701
4836
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4748,7 +4883,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4883
|
| 'Halted';
|
|
4749
4884
|
}
|
|
4750
4885
|
|
|
4751
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4886
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (563) */
|
|
4752
4887
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4753
4888
|
readonly microgonsIn: u128;
|
|
4754
4889
|
readonly microgonsOut: u128;
|
|
@@ -4760,21 +4895,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4760
4895
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4761
4896
|
}
|
|
4762
4897
|
|
|
4763
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4898
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (565) */
|
|
4764
4899
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4765
4900
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4766
4901
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4767
4902
|
readonly totalWeight: u128;
|
|
4768
4903
|
}
|
|
4769
4904
|
|
|
4770
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4905
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (567) */
|
|
4771
4906
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4772
4907
|
readonly accountId: AccountId32;
|
|
4773
4908
|
readonly signer: H160;
|
|
4774
4909
|
readonly weight: u128;
|
|
4775
4910
|
}
|
|
4776
4911
|
|
|
4777
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4912
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (572) */
|
|
4778
4913
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4779
4914
|
readonly approvingCouncilHash: H256;
|
|
4780
4915
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4786,7 +4921,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4786
4921
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4787
4922
|
}
|
|
4788
4923
|
|
|
4789
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4924
|
+
/** @name PalletCrosschainTransferMintingAuthority (577) */
|
|
4790
4925
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4791
4926
|
readonly accountId: AccountId32;
|
|
4792
4927
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4803,7 +4938,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4803
4938
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4804
4939
|
}
|
|
4805
4940
|
|
|
4806
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4941
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (578) */
|
|
4807
4942
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4808
4943
|
readonly isPendingActivation: boolean;
|
|
4809
4944
|
readonly isActive: boolean;
|
|
@@ -4811,7 +4946,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4811
4946
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4812
4947
|
}
|
|
4813
4948
|
|
|
4814
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4949
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (580) */
|
|
4815
4950
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4816
4951
|
readonly argonAccountId: AccountId32;
|
|
4817
4952
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4830,7 +4965,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4830
4965
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4831
4966
|
}
|
|
4832
4967
|
|
|
4833
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4968
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (582) */
|
|
4834
4969
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4835
4970
|
readonly microgonCollateral: u128;
|
|
4836
4971
|
readonly micronotCollateral: u128;
|
|
@@ -4838,27 +4973,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4838
4973
|
readonly signature: U8aFixed;
|
|
4839
4974
|
}
|
|
4840
4975
|
|
|
4841
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4976
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (586) */
|
|
4842
4977
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4843
4978
|
readonly isStarted: boolean;
|
|
4844
4979
|
readonly isReady: boolean;
|
|
4845
4980
|
readonly type: 'Started' | 'Ready';
|
|
4846
4981
|
}
|
|
4847
4982
|
|
|
4848
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4983
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (588) */
|
|
4849
4984
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4850
4985
|
readonly transferId: H256;
|
|
4851
4986
|
readonly remainingCollateral: u128;
|
|
4852
4987
|
readonly remainingMintingAuthorityTip: u128;
|
|
4853
4988
|
}
|
|
4854
4989
|
|
|
4855
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4990
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (590) */
|
|
4856
4991
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4857
4992
|
readonly argonCirculation: u128;
|
|
4858
4993
|
readonly argonotCirculation: u128;
|
|
4859
4994
|
}
|
|
4860
4995
|
|
|
4861
|
-
/** @name PalletCrosschainTransferError (
|
|
4996
|
+
/** @name PalletCrosschainTransferError (591) */
|
|
4862
4997
|
interface PalletCrosschainTransferError extends Enum {
|
|
4863
4998
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4864
4999
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4914,6 +5049,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4914
5049
|
readonly isInsufficientMintingAuthorityCollateral: boolean;
|
|
4915
5050
|
readonly isTransferCollateralIncrementTooSmall: boolean;
|
|
4916
5051
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
5052
|
+
readonly isCouncilSignerRotationPending: boolean;
|
|
4917
5053
|
readonly type:
|
|
4918
5054
|
| 'InvalidTransferToArgonActivity'
|
|
4919
5055
|
| 'NoGatewayProofBlocksProvided'
|
|
@@ -4968,48 +5104,60 @@ declare module '@polkadot/types/lookup' {
|
|
|
4968
5104
|
| 'InvalidTransferCollateralSignature'
|
|
4969
5105
|
| 'InsufficientMintingAuthorityCollateral'
|
|
4970
5106
|
| 'TransferCollateralIncrementTooSmall'
|
|
4971
|
-
| 'TooManyPendingTransferOuts'
|
|
5107
|
+
| 'TooManyPendingTransferOuts'
|
|
5108
|
+
| 'CouncilSignerRotationPending';
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
/** @name PalletBootstrapError (593) */
|
|
5112
|
+
interface PalletBootstrapError extends Enum {
|
|
5113
|
+
readonly isEncryptedPayloadTooLong: boolean;
|
|
5114
|
+
readonly isInvalidRecoveryProof: boolean;
|
|
5115
|
+
readonly isEndpointOwnedByAnotherAccount: boolean;
|
|
5116
|
+
readonly type:
|
|
5117
|
+
| 'EncryptedPayloadTooLong'
|
|
5118
|
+
| 'InvalidRecoveryProof'
|
|
5119
|
+
| 'EndpointOwnedByAnotherAccount';
|
|
4972
5120
|
}
|
|
4973
5121
|
|
|
4974
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5122
|
+
/** @name FrameSystemExtensionsAuthorizeCall (596) */
|
|
4975
5123
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4976
5124
|
|
|
4977
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5125
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (597) */
|
|
4978
5126
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4979
5127
|
|
|
4980
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5128
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (598) */
|
|
4981
5129
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4982
5130
|
|
|
4983
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5131
|
+
/** @name FrameSystemExtensionsCheckTxVersion (599) */
|
|
4984
5132
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4985
5133
|
|
|
4986
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5134
|
+
/** @name FrameSystemExtensionsCheckGenesis (600) */
|
|
4987
5135
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4988
5136
|
|
|
4989
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5137
|
+
/** @name FrameSystemExtensionsCheckNonce (603) */
|
|
4990
5138
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4991
5139
|
|
|
4992
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5140
|
+
/** @name FrameSystemExtensionsCheckWeight (604) */
|
|
4993
5141
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4994
5142
|
|
|
4995
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5143
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (605) */
|
|
4996
5144
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4997
5145
|
|
|
4998
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5146
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (606) */
|
|
4999
5147
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5000
5148
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5001
5149
|
}
|
|
5002
5150
|
|
|
5003
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5151
|
+
/** @name FrameMetadataHashExtensionMode (607) */
|
|
5004
5152
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5005
5153
|
readonly isDisabled: boolean;
|
|
5006
5154
|
readonly isEnabled: boolean;
|
|
5007
5155
|
readonly type: 'Disabled' | 'Enabled';
|
|
5008
5156
|
}
|
|
5009
5157
|
|
|
5010
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5158
|
+
/** @name FrameSystemExtensionsWeightReclaim (608) */
|
|
5011
5159
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5012
5160
|
|
|
5013
|
-
/** @name ArgonRuntimeRuntime (
|
|
5161
|
+
/** @name ArgonRuntimeRuntime (610) */
|
|
5014
5162
|
type ArgonRuntimeRuntime = Null;
|
|
5015
5163
|
} // declare module
|