@argonprotocol/mainchain 1.4.10-dev.479c016c → 1.4.10-dev.a229760e
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 +531 -283
- package/browser/index.js +55 -19
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +65 -29
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +531 -283
- package/lib/index.d.ts +531 -283
- package/lib/index.js +55 -19
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +7 -4
- package/src/interfaces/augment-api-errors.ts +26 -8
- package/src/interfaces/augment-api-events.ts +56 -8
- package/src/interfaces/augment-api-query.ts +55 -12
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +69 -11
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +327 -223
- package/src/interfaces/registry.ts +15 -0
- package/src/interfaces/types-lookup.ts +355 -236
|
@@ -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: {
|
|
@@ -2624,6 +2672,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
2624
2672
|
readonly asSetCommittedArgonots: {
|
|
2625
2673
|
readonly amount: Compact<u128>;
|
|
2626
2674
|
} & Struct;
|
|
2675
|
+
readonly isSetBackfillSecuritizationReserved: boolean;
|
|
2676
|
+
readonly asSetBackfillSecuritizationReserved: {
|
|
2677
|
+
readonly vaultId: u32;
|
|
2678
|
+
readonly backfillSecuritizationReserved: u128;
|
|
2679
|
+
} & Struct;
|
|
2627
2680
|
readonly type:
|
|
2628
2681
|
| 'Create'
|
|
2629
2682
|
| 'ModifyFunding'
|
|
@@ -2633,10 +2686,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
2633
2686
|
| 'Collect'
|
|
2634
2687
|
| 'SetDelegateAccount'
|
|
2635
2688
|
| 'SetName'
|
|
2636
|
-
| 'SetCommittedArgonots'
|
|
2689
|
+
| 'SetCommittedArgonots'
|
|
2690
|
+
| 'SetBackfillSecuritizationReserved';
|
|
2637
2691
|
}
|
|
2638
2692
|
|
|
2639
|
-
/** @name PalletVaultsVaultConfig (
|
|
2693
|
+
/** @name PalletVaultsVaultConfig (209) */
|
|
2640
2694
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2641
2695
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2642
2696
|
readonly name: Option<Bytes>;
|
|
@@ -2646,7 +2700,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2646
2700
|
readonly securitizationRatio: Compact<u128>;
|
|
2647
2701
|
}
|
|
2648
2702
|
|
|
2649
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2703
|
+
/** @name ArgonPrimitivesVaultVaultTerms (210) */
|
|
2650
2704
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2651
2705
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2652
2706
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
@@ -2654,10 +2708,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2654
2708
|
readonly treasuryBonusProfitSharing: Compact<Permill>;
|
|
2655
2709
|
}
|
|
2656
2710
|
|
|
2657
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2711
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (216) */
|
|
2658
2712
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2659
2713
|
|
|
2660
|
-
/** @name PalletBitcoinLocksCall (
|
|
2714
|
+
/** @name PalletBitcoinLocksCall (218) */
|
|
2661
2715
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2662
2716
|
readonly isInitialize: boolean;
|
|
2663
2717
|
readonly asInitialize: {
|
|
@@ -2705,12 +2759,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2705
2759
|
readonly satoshis: Compact<u64>;
|
|
2706
2760
|
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
2707
2761
|
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2762
|
+
readonly backfillSecuritizationToUnreserve: Compact<u128>;
|
|
2708
2763
|
} & Struct;
|
|
2709
2764
|
readonly isIncreaseSecuritization: boolean;
|
|
2710
2765
|
readonly asIncreaseSecuritization: {
|
|
2711
2766
|
readonly utxoId: u64;
|
|
2712
2767
|
readonly newSatoshis: Compact<u64>;
|
|
2713
2768
|
} & Struct;
|
|
2769
|
+
readonly isSetAsBackfill: boolean;
|
|
2770
|
+
readonly asSetAsBackfill: {
|
|
2771
|
+
readonly utxoId: u64;
|
|
2772
|
+
readonly isBackfill: bool;
|
|
2773
|
+
} & Struct;
|
|
2714
2774
|
readonly type:
|
|
2715
2775
|
| 'Initialize'
|
|
2716
2776
|
| 'RequestRelease'
|
|
@@ -2720,13 +2780,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2720
2780
|
| 'RequestOrphanedUtxoRelease'
|
|
2721
2781
|
| 'CosignOrphanedUtxoRelease'
|
|
2722
2782
|
| 'InitializeFor'
|
|
2723
|
-
| 'IncreaseSecuritization'
|
|
2783
|
+
| 'IncreaseSecuritization'
|
|
2784
|
+
| 'SetAsBackfill';
|
|
2724
2785
|
}
|
|
2725
2786
|
|
|
2726
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2787
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (219) */
|
|
2727
2788
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2728
2789
|
|
|
2729
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2790
|
+
/** @name PalletBitcoinLocksLockOptions (222) */
|
|
2730
2791
|
interface PalletBitcoinLocksLockOptions extends Enum {
|
|
2731
2792
|
readonly isV1: boolean;
|
|
2732
2793
|
readonly asV1: {
|
|
@@ -2735,7 +2796,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2735
2796
|
readonly type: 'V1';
|
|
2736
2797
|
}
|
|
2737
2798
|
|
|
2738
|
-
/** @name PalletNotariesCall (
|
|
2799
|
+
/** @name PalletNotariesCall (225) */
|
|
2739
2800
|
interface PalletNotariesCall extends Enum {
|
|
2740
2801
|
readonly isPropose: boolean;
|
|
2741
2802
|
readonly asPropose: {
|
|
@@ -2754,7 +2815,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2754
2815
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2755
2816
|
}
|
|
2756
2817
|
|
|
2757
|
-
/** @name PalletNotebookCall (
|
|
2818
|
+
/** @name PalletNotebookCall (226) */
|
|
2758
2819
|
interface PalletNotebookCall extends Enum {
|
|
2759
2820
|
readonly isSubmit: boolean;
|
|
2760
2821
|
readonly asSubmit: {
|
|
@@ -2767,13 +2828,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2767
2828
|
readonly type: 'Submit' | 'Unlock';
|
|
2768
2829
|
}
|
|
2769
2830
|
|
|
2770
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2831
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (228) */
|
|
2771
2832
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2772
2833
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2773
2834
|
readonly signature: U8aFixed;
|
|
2774
2835
|
}
|
|
2775
2836
|
|
|
2776
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2837
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (229) */
|
|
2777
2838
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2778
2839
|
readonly version: Compact<u16>;
|
|
2779
2840
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2792,7 +2853,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2792
2853
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2793
2854
|
}
|
|
2794
2855
|
|
|
2795
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2856
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (232) */
|
|
2796
2857
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2797
2858
|
readonly isToMainchain: boolean;
|
|
2798
2859
|
readonly asToMainchain: {
|
|
@@ -2806,13 +2867,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2806
2867
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2807
2868
|
}
|
|
2808
2869
|
|
|
2809
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2870
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (235) */
|
|
2810
2871
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2811
2872
|
readonly notebookNumber: Compact<u32>;
|
|
2812
2873
|
readonly accountUid: Compact<u32>;
|
|
2813
2874
|
}
|
|
2814
2875
|
|
|
2815
|
-
/** @name PalletLocalchainTransferCall (
|
|
2876
|
+
/** @name PalletLocalchainTransferCall (242) */
|
|
2816
2877
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2817
2878
|
readonly isSendToLocalchain: boolean;
|
|
2818
2879
|
readonly asSendToLocalchain: {
|
|
@@ -2822,7 +2883,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2822
2883
|
readonly type: 'SendToLocalchain';
|
|
2823
2884
|
}
|
|
2824
2885
|
|
|
2825
|
-
/** @name PalletBlockSealSpecCall (
|
|
2886
|
+
/** @name PalletBlockSealSpecCall (243) */
|
|
2826
2887
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2827
2888
|
readonly isConfigure: boolean;
|
|
2828
2889
|
readonly asConfigure: {
|
|
@@ -2832,7 +2893,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2832
2893
|
readonly type: 'Configure';
|
|
2833
2894
|
}
|
|
2834
2895
|
|
|
2835
|
-
/** @name PalletDomainsCall (
|
|
2896
|
+
/** @name PalletDomainsCall (244) */
|
|
2836
2897
|
interface PalletDomainsCall extends Enum {
|
|
2837
2898
|
readonly isSetZoneRecord: boolean;
|
|
2838
2899
|
readonly asSetZoneRecord: {
|
|
@@ -2842,7 +2903,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2842
2903
|
readonly type: 'SetZoneRecord';
|
|
2843
2904
|
}
|
|
2844
2905
|
|
|
2845
|
-
/** @name PalletPriceIndexCall (
|
|
2906
|
+
/** @name PalletPriceIndexCall (245) */
|
|
2846
2907
|
interface PalletPriceIndexCall extends Enum {
|
|
2847
2908
|
readonly isSubmit: boolean;
|
|
2848
2909
|
readonly asSubmit: {
|
|
@@ -2855,7 +2916,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2855
2916
|
readonly type: 'Submit' | 'SetOperator';
|
|
2856
2917
|
}
|
|
2857
2918
|
|
|
2858
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2919
|
+
/** @name PalletPriceIndexPriceIndex (246) */
|
|
2859
2920
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2860
2921
|
readonly btcUsdPrice: Compact<u128>;
|
|
2861
2922
|
readonly argonotUsdPrice: u128;
|
|
@@ -2865,7 +2926,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2865
2926
|
readonly tick: Compact<u64>;
|
|
2866
2927
|
}
|
|
2867
2928
|
|
|
2868
|
-
/** @name PalletGrandpaCall (
|
|
2929
|
+
/** @name PalletGrandpaCall (247) */
|
|
2869
2930
|
interface PalletGrandpaCall extends Enum {
|
|
2870
2931
|
readonly isReportEquivocation: boolean;
|
|
2871
2932
|
readonly asReportEquivocation: {
|
|
@@ -2885,13 +2946,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2885
2946
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2886
2947
|
}
|
|
2887
2948
|
|
|
2888
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2949
|
+
/** @name SpConsensusGrandpaEquivocationProof (248) */
|
|
2889
2950
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2890
2951
|
readonly setId: u64;
|
|
2891
2952
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2892
2953
|
}
|
|
2893
2954
|
|
|
2894
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2955
|
+
/** @name SpConsensusGrandpaEquivocation (249) */
|
|
2895
2956
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2896
2957
|
readonly isPrevote: boolean;
|
|
2897
2958
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2900,7 +2961,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2900
2961
|
readonly type: 'Prevote' | 'Precommit';
|
|
2901
2962
|
}
|
|
2902
2963
|
|
|
2903
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2964
|
+
/** @name FinalityGrandpaEquivocationPrevote (250) */
|
|
2904
2965
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2905
2966
|
readonly roundNumber: u64;
|
|
2906
2967
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2908,16 +2969,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2908
2969
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2909
2970
|
}
|
|
2910
2971
|
|
|
2911
|
-
/** @name FinalityGrandpaPrevote (
|
|
2972
|
+
/** @name FinalityGrandpaPrevote (251) */
|
|
2912
2973
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2913
2974
|
readonly targetHash: H256;
|
|
2914
2975
|
readonly targetNumber: u32;
|
|
2915
2976
|
}
|
|
2916
2977
|
|
|
2917
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2978
|
+
/** @name SpConsensusGrandpaAppSignature (252) */
|
|
2918
2979
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2919
2980
|
|
|
2920
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2981
|
+
/** @name FinalityGrandpaEquivocationPrecommit (254) */
|
|
2921
2982
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2922
2983
|
readonly roundNumber: u64;
|
|
2923
2984
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2925,16 +2986,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2925
2986
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2926
2987
|
}
|
|
2927
2988
|
|
|
2928
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2989
|
+
/** @name FinalityGrandpaPrecommit (255) */
|
|
2929
2990
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2930
2991
|
readonly targetHash: H256;
|
|
2931
2992
|
readonly targetNumber: u32;
|
|
2932
2993
|
}
|
|
2933
2994
|
|
|
2934
|
-
/** @name SpCoreVoid (
|
|
2995
|
+
/** @name SpCoreVoid (257) */
|
|
2935
2996
|
type SpCoreVoid = Null;
|
|
2936
2997
|
|
|
2937
|
-
/** @name PalletBlockSealCall (
|
|
2998
|
+
/** @name PalletBlockSealCall (258) */
|
|
2938
2999
|
interface PalletBlockSealCall extends Enum {
|
|
2939
3000
|
readonly isApply: boolean;
|
|
2940
3001
|
readonly asApply: {
|
|
@@ -2943,7 +3004,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2943
3004
|
readonly type: 'Apply';
|
|
2944
3005
|
}
|
|
2945
3006
|
|
|
2946
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
3007
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (259) */
|
|
2947
3008
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2948
3009
|
readonly isVote: boolean;
|
|
2949
3010
|
readonly asVote: {
|
|
@@ -2958,14 +3019,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2958
3019
|
readonly type: 'Vote' | 'Compute';
|
|
2959
3020
|
}
|
|
2960
3021
|
|
|
2961
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3022
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (260) */
|
|
2962
3023
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2963
3024
|
readonly proof: Vec<H256>;
|
|
2964
3025
|
readonly numberOfLeaves: Compact<u32>;
|
|
2965
3026
|
readonly leafIndex: Compact<u32>;
|
|
2966
3027
|
}
|
|
2967
3028
|
|
|
2968
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3029
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (262) */
|
|
2969
3030
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
2970
3031
|
readonly accountId: AccountId32;
|
|
2971
3032
|
readonly blockHash: H256;
|
|
@@ -2976,7 +3037,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2976
3037
|
readonly tick: Compact<u64>;
|
|
2977
3038
|
}
|
|
2978
3039
|
|
|
2979
|
-
/** @name SpRuntimeMultiSignature (
|
|
3040
|
+
/** @name SpRuntimeMultiSignature (263) */
|
|
2980
3041
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2981
3042
|
readonly isEd25519: boolean;
|
|
2982
3043
|
readonly asEd25519: U8aFixed;
|
|
@@ -2989,7 +3050,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2989
3050
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2990
3051
|
}
|
|
2991
3052
|
|
|
2992
|
-
/** @name PalletBlockRewardsCall (
|
|
3053
|
+
/** @name PalletBlockRewardsCall (265) */
|
|
2993
3054
|
interface PalletBlockRewardsCall extends Enum {
|
|
2994
3055
|
readonly isSetBlockRewardsPaused: boolean;
|
|
2995
3056
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3002,10 +3063,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3002
3063
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3003
3064
|
}
|
|
3004
3065
|
|
|
3005
|
-
/** @name PalletMintCall (
|
|
3066
|
+
/** @name PalletMintCall (266) */
|
|
3006
3067
|
type PalletMintCall = Null;
|
|
3007
3068
|
|
|
3008
|
-
/** @name PalletBalancesCall (
|
|
3069
|
+
/** @name PalletBalancesCall (267) */
|
|
3009
3070
|
interface PalletBalancesCall extends Enum {
|
|
3010
3071
|
readonly isTransferAllowDeath: boolean;
|
|
3011
3072
|
readonly asTransferAllowDeath: {
|
|
@@ -3064,14 +3125,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3064
3125
|
| 'Burn';
|
|
3065
3126
|
}
|
|
3066
3127
|
|
|
3067
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3128
|
+
/** @name PalletBalancesAdjustmentDirection (268) */
|
|
3068
3129
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3069
3130
|
readonly isIncrease: boolean;
|
|
3070
3131
|
readonly isDecrease: boolean;
|
|
3071
3132
|
readonly type: 'Increase' | 'Decrease';
|
|
3072
3133
|
}
|
|
3073
3134
|
|
|
3074
|
-
/** @name PalletTxPauseCall (
|
|
3135
|
+
/** @name PalletTxPauseCall (270) */
|
|
3075
3136
|
interface PalletTxPauseCall extends Enum {
|
|
3076
3137
|
readonly isPause: boolean;
|
|
3077
3138
|
readonly asPause: {
|
|
@@ -3084,7 +3145,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3084
3145
|
readonly type: 'Pause' | 'Unpause';
|
|
3085
3146
|
}
|
|
3086
3147
|
|
|
3087
|
-
/** @name PalletUtilityCall (
|
|
3148
|
+
/** @name PalletUtilityCall (271) */
|
|
3088
3149
|
interface PalletUtilityCall extends Enum {
|
|
3089
3150
|
readonly isBatch: boolean;
|
|
3090
3151
|
readonly asBatch: {
|
|
@@ -3134,7 +3195,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3134
3195
|
| 'DispatchAsFallible';
|
|
3135
3196
|
}
|
|
3136
3197
|
|
|
3137
|
-
/** @name PalletSudoCall (
|
|
3198
|
+
/** @name PalletSudoCall (273) */
|
|
3138
3199
|
interface PalletSudoCall extends Enum {
|
|
3139
3200
|
readonly isSudo: boolean;
|
|
3140
3201
|
readonly asSudo: {
|
|
@@ -3158,7 +3219,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3158
3219
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3159
3220
|
}
|
|
3160
3221
|
|
|
3161
|
-
/** @name PalletTreasuryCall (
|
|
3222
|
+
/** @name PalletTreasuryCall (274) */
|
|
3162
3223
|
interface PalletTreasuryCall extends Enum {
|
|
3163
3224
|
readonly isBuyBonds: boolean;
|
|
3164
3225
|
readonly asBuyBonds: {
|
|
@@ -3174,18 +3235,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
3174
3235
|
readonly asBuyArgonotBonds: {
|
|
3175
3236
|
readonly bonds: u32;
|
|
3176
3237
|
} & Struct;
|
|
3177
|
-
readonly
|
|
3238
|
+
readonly isSetBondLotAsBackfill: boolean;
|
|
3239
|
+
readonly asSetBondLotAsBackfill: {
|
|
3240
|
+
readonly bondLotId: u64;
|
|
3241
|
+
readonly isBackfill: bool;
|
|
3242
|
+
} & Struct;
|
|
3243
|
+
readonly isSetBackfillBondsReserved: boolean;
|
|
3244
|
+
readonly asSetBackfillBondsReserved: {
|
|
3245
|
+
readonly vaultId: u32;
|
|
3246
|
+
readonly backfillBondsReserved: u32;
|
|
3247
|
+
} & Struct;
|
|
3248
|
+
readonly type:
|
|
3249
|
+
| 'BuyBonds'
|
|
3250
|
+
| 'LiquidateBondLot'
|
|
3251
|
+
| 'BuyArgonotBonds'
|
|
3252
|
+
| 'SetBondLotAsBackfill'
|
|
3253
|
+
| 'SetBackfillBondsReserved';
|
|
3178
3254
|
}
|
|
3179
3255
|
|
|
3180
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3256
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (276) */
|
|
3181
3257
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3182
3258
|
readonly vaultId: Compact<u32>;
|
|
3183
3259
|
readonly beneficiary: AccountId32;
|
|
3184
3260
|
readonly expiresAtFrame: Compact<u64>;
|
|
3261
|
+
readonly backfillBondsToUnreserve: Compact<u32>;
|
|
3185
3262
|
readonly signature: SpRuntimeMultiSignature;
|
|
3186
3263
|
}
|
|
3187
3264
|
|
|
3188
|
-
/** @name PalletOperationalAccountsCall (
|
|
3265
|
+
/** @name PalletOperationalAccountsCall (277) */
|
|
3189
3266
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3190
3267
|
readonly isRegister: boolean;
|
|
3191
3268
|
readonly asRegister: {
|
|
@@ -3202,11 +3279,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
3202
3279
|
readonly patch: PalletOperationalAccountsOperationalProgressPatch;
|
|
3203
3280
|
readonly updateOperationalProgress: bool;
|
|
3204
3281
|
} & Struct;
|
|
3205
|
-
readonly isSetEncryptedServerForDownstreamAccount: boolean;
|
|
3206
|
-
readonly asSetEncryptedServerForDownstreamAccount: {
|
|
3207
|
-
readonly downstreamAccount: AccountId32;
|
|
3208
|
-
readonly encryptedServer: Bytes;
|
|
3209
|
-
} & Struct;
|
|
3210
3282
|
readonly isActivate: boolean;
|
|
3211
3283
|
readonly isClaimRewards: boolean;
|
|
3212
3284
|
readonly asClaimRewards: {
|
|
@@ -3216,19 +3288,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
3216
3288
|
| 'Register'
|
|
3217
3289
|
| 'SetRewardConfig'
|
|
3218
3290
|
| 'ForceSetProgress'
|
|
3219
|
-
| 'SetEncryptedServerForDownstreamAccount'
|
|
3220
3291
|
| 'Activate'
|
|
3221
3292
|
| 'ClaimRewards';
|
|
3222
3293
|
}
|
|
3223
3294
|
|
|
3224
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3295
|
+
/** @name PalletOperationalAccountsRegistration (278) */
|
|
3225
3296
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3226
3297
|
readonly isV1: boolean;
|
|
3227
3298
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3228
3299
|
readonly type: 'V1';
|
|
3229
3300
|
}
|
|
3230
3301
|
|
|
3231
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3302
|
+
/** @name PalletOperationalAccountsRegistrationV1 (279) */
|
|
3232
3303
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3233
3304
|
readonly operationalAccount: AccountId32;
|
|
3234
3305
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3240,21 +3311,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3240
3311
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3241
3312
|
}
|
|
3242
3313
|
|
|
3243
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3314
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (280) */
|
|
3244
3315
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3245
3316
|
|
|
3246
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3317
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (281) */
|
|
3247
3318
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3248
3319
|
readonly signature: SpRuntimeMultiSignature;
|
|
3249
3320
|
}
|
|
3250
3321
|
|
|
3251
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3322
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (283) */
|
|
3252
3323
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3253
3324
|
readonly upstreamAccount: AccountId32;
|
|
3254
3325
|
readonly signature: SpRuntimeMultiSignature;
|
|
3255
3326
|
}
|
|
3256
3327
|
|
|
3257
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3328
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (284) */
|
|
3258
3329
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3259
3330
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3260
3331
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3264,7 +3335,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3264
3335
|
readonly miningSeatCount: Option<u32>;
|
|
3265
3336
|
}
|
|
3266
3337
|
|
|
3267
|
-
/** @name PalletEthereumVerifierCall (
|
|
3338
|
+
/** @name PalletEthereumVerifierCall (286) */
|
|
3268
3339
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3269
3340
|
readonly isForceCheckpoint: boolean;
|
|
3270
3341
|
readonly asForceCheckpoint: {
|
|
@@ -3292,7 +3363,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3292
3363
|
| 'SetOperatingMode';
|
|
3293
3364
|
}
|
|
3294
3365
|
|
|
3295
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3366
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (287) */
|
|
3296
3367
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3297
3368
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3298
3369
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3301,7 +3372,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3301
3372
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3302
3373
|
}
|
|
3303
3374
|
|
|
3304
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3375
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (288) */
|
|
3305
3376
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3306
3377
|
readonly slot: u64;
|
|
3307
3378
|
readonly proposerIndex: u64;
|
|
@@ -3310,22 +3381,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3310
3381
|
readonly bodyRoot: H256;
|
|
3311
3382
|
}
|
|
3312
3383
|
|
|
3313
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3384
|
+
/** @name PalletEthereumVerifierSyncCommittee (289) */
|
|
3314
3385
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3315
3386
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3316
3387
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3317
3388
|
}
|
|
3318
3389
|
|
|
3319
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3390
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (291) */
|
|
3320
3391
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3321
3392
|
|
|
3322
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3393
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (295) */
|
|
3323
3394
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3324
3395
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3325
3396
|
readonly executionBranch: Vec<H256>;
|
|
3326
3397
|
}
|
|
3327
3398
|
|
|
3328
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3399
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (296) */
|
|
3329
3400
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3330
3401
|
readonly isCapella: boolean;
|
|
3331
3402
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3334,7 +3405,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3334
3405
|
readonly type: 'Capella' | 'Deneb';
|
|
3335
3406
|
}
|
|
3336
3407
|
|
|
3337
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3408
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (297) */
|
|
3338
3409
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3339
3410
|
readonly parentHash: H256;
|
|
3340
3411
|
readonly feeRecipient: H160;
|
|
@@ -3353,7 +3424,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3353
3424
|
readonly withdrawalsRoot: H256;
|
|
3354
3425
|
}
|
|
3355
3426
|
|
|
3356
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3427
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (298) */
|
|
3357
3428
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3358
3429
|
readonly parentHash: H256;
|
|
3359
3430
|
readonly feeRecipient: H160;
|
|
@@ -3374,7 +3445,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3374
3445
|
readonly excessBlobGas: u64;
|
|
3375
3446
|
}
|
|
3376
3447
|
|
|
3377
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3448
|
+
/** @name PalletEthereumVerifierForkVersions (299) */
|
|
3378
3449
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3379
3450
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3380
3451
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3385,13 +3456,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3385
3456
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3386
3457
|
}
|
|
3387
3458
|
|
|
3388
|
-
/** @name PalletEthereumVerifierFork (
|
|
3459
|
+
/** @name PalletEthereumVerifierFork (300) */
|
|
3389
3460
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3390
3461
|
readonly version: U8aFixed;
|
|
3391
3462
|
readonly epoch: Compact<u64>;
|
|
3392
3463
|
}
|
|
3393
3464
|
|
|
3394
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3465
|
+
/** @name PalletEthereumVerifierUpdate (301) */
|
|
3395
3466
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3396
3467
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3397
3468
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3402,22 +3473,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3402
3473
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3403
3474
|
}
|
|
3404
3475
|
|
|
3405
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3476
|
+
/** @name PalletEthereumVerifierSyncAggregate (302) */
|
|
3406
3477
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3407
3478
|
readonly syncCommitteeBits: Bytes;
|
|
3408
3479
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3409
3480
|
}
|
|
3410
3481
|
|
|
3411
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3482
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (304) */
|
|
3412
3483
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3413
3484
|
|
|
3414
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3485
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (307) */
|
|
3415
3486
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3416
3487
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3417
3488
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3418
3489
|
}
|
|
3419
3490
|
|
|
3420
|
-
/** @name PalletCrosschainTransferCall (
|
|
3491
|
+
/** @name PalletCrosschainTransferCall (308) */
|
|
3421
3492
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3422
3493
|
readonly isSetChainConfig: boolean;
|
|
3423
3494
|
readonly asSetChainConfig: {
|
|
@@ -3507,7 +3578,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3507
3578
|
| 'CollateralizeTransfer';
|
|
3508
3579
|
}
|
|
3509
3580
|
|
|
3510
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3581
|
+
/** @name PalletCrosschainTransferChainConfig (309) */
|
|
3511
3582
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3512
3583
|
readonly isEvm: boolean;
|
|
3513
3584
|
readonly asEvm: {
|
|
@@ -3519,7 +3590,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3519
3590
|
readonly type: 'Evm';
|
|
3520
3591
|
}
|
|
3521
3592
|
|
|
3522
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3593
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (311) */
|
|
3523
3594
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3524
3595
|
readonly activationGasCost: Compact<u128>;
|
|
3525
3596
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3527,56 +3598,77 @@ declare module '@polkadot/types/lookup' {
|
|
|
3527
3598
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3528
3599
|
}
|
|
3529
3600
|
|
|
3530
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3601
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (314) */
|
|
3531
3602
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3532
3603
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3533
3604
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3534
3605
|
}
|
|
3535
3606
|
|
|
3536
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3607
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (315) */
|
|
3537
3608
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3538
3609
|
readonly anchorBlockHash: H256;
|
|
3539
3610
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3540
3611
|
}
|
|
3541
3612
|
|
|
3542
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3613
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (317) */
|
|
3543
3614
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3544
3615
|
readonly rlp: Bytes;
|
|
3545
3616
|
}
|
|
3546
3617
|
|
|
3547
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3618
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (321) */
|
|
3548
3619
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3549
3620
|
readonly targetBlockNumber: Compact<u64>;
|
|
3550
3621
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3551
3622
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3552
3623
|
}
|
|
3553
3624
|
|
|
3554
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3625
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (322) */
|
|
3555
3626
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3556
3627
|
readonly nodes: Vec<Bytes>;
|
|
3557
3628
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3558
3629
|
}
|
|
3559
3630
|
|
|
3560
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3631
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (326) */
|
|
3561
3632
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3562
3633
|
readonly transactionIndex: Compact<u64>;
|
|
3563
3634
|
readonly nodeIndexes: Vec<u16>;
|
|
3564
3635
|
}
|
|
3565
3636
|
|
|
3566
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3637
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (331) */
|
|
3567
3638
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3568
3639
|
readonly transactionIndex: Compact<u64>;
|
|
3569
3640
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3570
3641
|
}
|
|
3571
3642
|
|
|
3572
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3643
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (332) */
|
|
3573
3644
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3574
3645
|
readonly address: H160;
|
|
3575
3646
|
readonly topics: Vec<H256>;
|
|
3576
3647
|
readonly data: Bytes;
|
|
3577
3648
|
}
|
|
3578
3649
|
|
|
3579
|
-
/** @name
|
|
3650
|
+
/** @name PalletBootstrapCall (337) */
|
|
3651
|
+
interface PalletBootstrapCall extends Enum {
|
|
3652
|
+
readonly isSetRecoveryPayload: boolean;
|
|
3653
|
+
readonly asSetRecoveryPayload: {
|
|
3654
|
+
readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
3655
|
+
readonly recoveryProof: PalletBootstrapRecoveryProof;
|
|
3656
|
+
readonly encryptedRecoveryPayload: Bytes;
|
|
3657
|
+
} & Struct;
|
|
3658
|
+
readonly isSetEndpoint: boolean;
|
|
3659
|
+
readonly asSetEndpoint: {
|
|
3660
|
+
readonly endpointPubkey: PalletBootstrapEndpointPubkey;
|
|
3661
|
+
readonly encryptedEndpoint: Bytes;
|
|
3662
|
+
} & Struct;
|
|
3663
|
+
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3664
|
+
}
|
|
3665
|
+
|
|
3666
|
+
/** @name PalletBootstrapRecoveryProof (338) */
|
|
3667
|
+
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3668
|
+
readonly signature: U8aFixed;
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
/** @name PalletMultisigError (340) */
|
|
3580
3672
|
interface PalletMultisigError extends Enum {
|
|
3581
3673
|
readonly isMinimumThreshold: boolean;
|
|
3582
3674
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3609,21 +3701,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3609
3701
|
| 'AlreadyStored';
|
|
3610
3702
|
}
|
|
3611
3703
|
|
|
3612
|
-
/** @name PalletProxyProxyDefinition (
|
|
3704
|
+
/** @name PalletProxyProxyDefinition (343) */
|
|
3613
3705
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3614
3706
|
readonly delegate: AccountId32;
|
|
3615
3707
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3616
3708
|
readonly delay: u32;
|
|
3617
3709
|
}
|
|
3618
3710
|
|
|
3619
|
-
/** @name PalletProxyAnnouncement (
|
|
3711
|
+
/** @name PalletProxyAnnouncement (347) */
|
|
3620
3712
|
interface PalletProxyAnnouncement extends Struct {
|
|
3621
3713
|
readonly real: AccountId32;
|
|
3622
3714
|
readonly callHash: H256;
|
|
3623
3715
|
readonly height: u32;
|
|
3624
3716
|
}
|
|
3625
3717
|
|
|
3626
|
-
/** @name PalletProxyError (
|
|
3718
|
+
/** @name PalletProxyError (349) */
|
|
3627
3719
|
interface PalletProxyError extends Enum {
|
|
3628
3720
|
readonly isTooMany: boolean;
|
|
3629
3721
|
readonly isNotFound: boolean;
|
|
@@ -3644,16 +3736,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3644
3736
|
| 'NoSelfProxy';
|
|
3645
3737
|
}
|
|
3646
3738
|
|
|
3647
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3739
|
+
/** @name ArgonPrimitivesTickTicker (350) */
|
|
3648
3740
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3649
3741
|
readonly tickDurationMillis: Compact<u64>;
|
|
3650
3742
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3651
3743
|
}
|
|
3652
3744
|
|
|
3653
|
-
/** @name PalletTicksError (
|
|
3745
|
+
/** @name PalletTicksError (352) */
|
|
3654
3746
|
type PalletTicksError = Null;
|
|
3655
3747
|
|
|
3656
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3748
|
+
/** @name PalletMiningSlotMinerNonceScoring (355) */
|
|
3657
3749
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3658
3750
|
readonly nonce: U256;
|
|
3659
3751
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3661,7 +3753,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3661
3753
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3662
3754
|
}
|
|
3663
3755
|
|
|
3664
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3756
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (367) */
|
|
3665
3757
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3666
3758
|
readonly bidsCount: u32;
|
|
3667
3759
|
readonly bidAmountMin: u128;
|
|
@@ -3669,14 +3761,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3669
3761
|
readonly bidAmountSum: u128;
|
|
3670
3762
|
}
|
|
3671
3763
|
|
|
3672
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3764
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (371) */
|
|
3673
3765
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3674
3766
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3675
3767
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3676
3768
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3677
3769
|
}
|
|
3678
3770
|
|
|
3679
|
-
/** @name PalletMiningSlotError (
|
|
3771
|
+
/** @name PalletMiningSlotError (381) */
|
|
3680
3772
|
interface PalletMiningSlotError extends Enum {
|
|
3681
3773
|
readonly isSlotNotTakingBids: boolean;
|
|
3682
3774
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3703,7 +3795,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3703
3795
|
| 'UnrecoverableHold';
|
|
3704
3796
|
}
|
|
3705
3797
|
|
|
3706
|
-
/** @name ArgonPrimitivesBitcoinUtxoValue (
|
|
3798
|
+
/** @name ArgonPrimitivesBitcoinUtxoValue (382) */
|
|
3707
3799
|
interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
|
|
3708
3800
|
readonly utxoId: u64;
|
|
3709
3801
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
@@ -3712,7 +3804,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3712
3804
|
readonly watchForSpentUntilHeight: Compact<u64>;
|
|
3713
3805
|
}
|
|
3714
3806
|
|
|
3715
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3807
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (383) */
|
|
3716
3808
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3717
3809
|
readonly isP2wsh: boolean;
|
|
3718
3810
|
readonly asP2wsh: {
|
|
@@ -3721,7 +3813,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3721
3813
|
readonly type: 'P2wsh';
|
|
3722
3814
|
}
|
|
3723
3815
|
|
|
3724
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3816
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (392) */
|
|
3725
3817
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3726
3818
|
readonly isBitcoin: boolean;
|
|
3727
3819
|
readonly isTestnet: boolean;
|
|
@@ -3730,7 +3822,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3730
3822
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3731
3823
|
}
|
|
3732
3824
|
|
|
3733
|
-
/** @name PalletBitcoinUtxosError (
|
|
3825
|
+
/** @name PalletBitcoinUtxosError (393) */
|
|
3734
3826
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3735
3827
|
readonly isNoPermissions: boolean;
|
|
3736
3828
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3765,7 +3857,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3765
3857
|
| 'LockAlreadyFunded';
|
|
3766
3858
|
}
|
|
3767
3859
|
|
|
3768
|
-
/** @name ArgonPrimitivesVault (
|
|
3860
|
+
/** @name ArgonPrimitivesVault (394) */
|
|
3769
3861
|
interface ArgonPrimitivesVault extends Struct {
|
|
3770
3862
|
readonly operatorAccountId: AccountId32;
|
|
3771
3863
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3774,9 +3866,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3774
3866
|
readonly securitization: Compact<u128>;
|
|
3775
3867
|
readonly securitizationTarget: Compact<u128>;
|
|
3776
3868
|
readonly securitizationLocked: Compact<u128>;
|
|
3869
|
+
readonly backfillSecuritizationLocked: Compact<u128>;
|
|
3870
|
+
readonly backfillSecuritizationReserved: Compact<u128>;
|
|
3777
3871
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3778
3872
|
readonly lockedSatoshis: Compact<u64>;
|
|
3779
3873
|
readonly securitizedSatoshis: Compact<u64>;
|
|
3874
|
+
readonly backfillSecuritizedSatoshis: Compact<u64>;
|
|
3780
3875
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3781
3876
|
readonly securitizationRatio: Compact<u128>;
|
|
3782
3877
|
readonly isClosed: bool;
|
|
@@ -3786,13 +3881,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3786
3881
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3787
3882
|
}
|
|
3788
3883
|
|
|
3789
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3884
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (401) */
|
|
3790
3885
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3791
3886
|
readonly committedMicronots: Compact<u128>;
|
|
3792
3887
|
readonly encumberedMicronots: Compact<u128>;
|
|
3793
3888
|
}
|
|
3794
3889
|
|
|
3795
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3890
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (403) */
|
|
3796
3891
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3797
3892
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3798
3893
|
readonly depth: Compact<u8>;
|
|
@@ -3802,14 +3897,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3802
3897
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3803
3898
|
}
|
|
3804
3899
|
|
|
3805
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3900
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (405) */
|
|
3806
3901
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3807
3902
|
readonly isMain: boolean;
|
|
3808
3903
|
readonly isTest: boolean;
|
|
3809
3904
|
readonly type: 'Main' | 'Test';
|
|
3810
3905
|
}
|
|
3811
3906
|
|
|
3812
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3907
|
+
/** @name PalletVaultsVaultFrameRevenue (414) */
|
|
3813
3908
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3814
3909
|
readonly frameId: Compact<u64>;
|
|
3815
3910
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
@@ -3829,7 +3924,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3829
3924
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3830
3925
|
}
|
|
3831
3926
|
|
|
3832
|
-
/** @name PalletVaultsRecentCapacityDrop (
|
|
3927
|
+
/** @name PalletVaultsRecentCapacityDrop (417) */
|
|
3833
3928
|
interface PalletVaultsRecentCapacityDrop extends Struct {
|
|
3834
3929
|
readonly blockNumber: Compact<u32>;
|
|
3835
3930
|
readonly availableBeforeDrop: Compact<u128>;
|
|
@@ -3837,7 +3932,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3932
|
readonly noFeeFailuresUsed: Compact<u32>;
|
|
3838
3933
|
}
|
|
3839
3934
|
|
|
3840
|
-
/** @name PalletVaultsError (
|
|
3935
|
+
/** @name PalletVaultsError (419) */
|
|
3841
3936
|
interface PalletVaultsError extends Enum {
|
|
3842
3937
|
readonly isNoMoreVaultIds: boolean;
|
|
3843
3938
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3910,7 +4005,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3910
4005
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3911
4006
|
}
|
|
3912
4007
|
|
|
3913
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
4008
|
+
/** @name PalletBitcoinLocksLockedBitcoin (420) */
|
|
3914
4009
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3915
4010
|
readonly vaultId: Compact<u32>;
|
|
3916
4011
|
readonly liquidityPromised: Compact<u128>;
|
|
@@ -3930,11 +4025,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3930
4025
|
readonly createdAtHeight: Compact<u64>;
|
|
3931
4026
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3932
4027
|
readonly isFunded: bool;
|
|
4028
|
+
readonly isBackfill: bool;
|
|
3933
4029
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
3934
4030
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3935
4031
|
}
|
|
3936
4032
|
|
|
3937
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4033
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (424) */
|
|
3938
4034
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3939
4035
|
readonly utxoId: Compact<u64>;
|
|
3940
4036
|
readonly vaultId: Compact<u32>;
|
|
@@ -3944,7 +4040,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3944
4040
|
readonly redemptionAmount: Compact<u128>;
|
|
3945
4041
|
}
|
|
3946
4042
|
|
|
3947
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4043
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (426) */
|
|
3948
4044
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3949
4045
|
readonly utxoId: Compact<u64>;
|
|
3950
4046
|
readonly vaultId: Compact<u32>;
|
|
@@ -3953,14 +4049,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3953
4049
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3954
4050
|
}
|
|
3955
4051
|
|
|
3956
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4052
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (428) */
|
|
3957
4053
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3958
4054
|
readonly bitcoinNetworkFee: u64;
|
|
3959
4055
|
readonly toScriptPubkey: Bytes;
|
|
3960
4056
|
readonly createdAtArgonBlockNumber: u32;
|
|
3961
4057
|
}
|
|
3962
4058
|
|
|
3963
|
-
/** @name PalletBitcoinLocksError (
|
|
4059
|
+
/** @name PalletBitcoinLocksError (435) */
|
|
3964
4060
|
interface PalletBitcoinLocksError extends Enum {
|
|
3965
4061
|
readonly isInsufficientFunds: boolean;
|
|
3966
4062
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4036,7 +4132,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4036
4132
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4037
4133
|
}
|
|
4038
4134
|
|
|
4039
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4135
|
+
/** @name ArgonPrimitivesVaultVaultError (436) */
|
|
4040
4136
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4041
4137
|
readonly isVaultClosed: boolean;
|
|
4042
4138
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4067,7 +4163,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4067
4163
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4068
4164
|
}
|
|
4069
4165
|
|
|
4070
|
-
/** @name PalletNotariesError (
|
|
4166
|
+
/** @name PalletNotariesError (448) */
|
|
4071
4167
|
interface PalletNotariesError extends Enum {
|
|
4072
4168
|
readonly isProposalNotFound: boolean;
|
|
4073
4169
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4090,7 +4186,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4090
4186
|
| 'InvalidNotary';
|
|
4091
4187
|
}
|
|
4092
4188
|
|
|
4093
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4189
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (452) */
|
|
4094
4190
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4095
4191
|
readonly notebookNumber: Compact<u32>;
|
|
4096
4192
|
readonly tick: Compact<u64>;
|
|
@@ -4099,7 +4195,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4099
4195
|
readonly parentSecret: Option<H256>;
|
|
4100
4196
|
}
|
|
4101
4197
|
|
|
4102
|
-
/** @name PalletNotebookError (
|
|
4198
|
+
/** @name PalletNotebookError (455) */
|
|
4103
4199
|
interface PalletNotebookError extends Enum {
|
|
4104
4200
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4105
4201
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4134,7 +4230,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4134
4230
|
| 'InvalidNotebookSubmissionTick';
|
|
4135
4231
|
}
|
|
4136
4232
|
|
|
4137
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4233
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (456) */
|
|
4138
4234
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4139
4235
|
readonly accountId: AccountId32;
|
|
4140
4236
|
readonly amount: u128;
|
|
@@ -4142,10 +4238,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4142
4238
|
readonly notaryId: u32;
|
|
4143
4239
|
}
|
|
4144
4240
|
|
|
4145
|
-
/** @name FrameSupportPalletId (
|
|
4241
|
+
/** @name FrameSupportPalletId (458) */
|
|
4146
4242
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4147
4243
|
|
|
4148
|
-
/** @name PalletLocalchainTransferError (
|
|
4244
|
+
/** @name PalletLocalchainTransferError (459) */
|
|
4149
4245
|
interface PalletLocalchainTransferError extends Enum {
|
|
4150
4246
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4151
4247
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4166,7 +4262,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4166
4262
|
| 'NoAvailableTransferId';
|
|
4167
4263
|
}
|
|
4168
4264
|
|
|
4169
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4265
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (463) */
|
|
4170
4266
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4171
4267
|
readonly notaryId: Compact<u32>;
|
|
4172
4268
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4175,13 +4271,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4175
4271
|
readonly blockVotingPower: Compact<u128>;
|
|
4176
4272
|
}
|
|
4177
4273
|
|
|
4178
|
-
/** @name PalletBlockSealSpecError (
|
|
4274
|
+
/** @name PalletBlockSealSpecError (468) */
|
|
4179
4275
|
interface PalletBlockSealSpecError extends Enum {
|
|
4180
4276
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4181
4277
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4182
4278
|
}
|
|
4183
4279
|
|
|
4184
|
-
/** @name PalletDomainsError (
|
|
4280
|
+
/** @name PalletDomainsError (470) */
|
|
4185
4281
|
interface PalletDomainsError extends Enum {
|
|
4186
4282
|
readonly isDomainNotRegistered: boolean;
|
|
4187
4283
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4196,21 +4292,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4196
4292
|
| 'AccountDecodingError';
|
|
4197
4293
|
}
|
|
4198
4294
|
|
|
4199
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4295
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (472) */
|
|
4200
4296
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4201
4297
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4202
4298
|
readonly totalCpi: i128;
|
|
4203
4299
|
readonly measurementsCount: u32;
|
|
4204
4300
|
}
|
|
4205
4301
|
|
|
4206
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4302
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (476) */
|
|
4207
4303
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4208
4304
|
readonly frameId: Compact<u64>;
|
|
4209
4305
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4210
4306
|
readonly sampleCount: Compact<u32>;
|
|
4211
4307
|
}
|
|
4212
4308
|
|
|
4213
|
-
/** @name PalletPriceIndexError (
|
|
4309
|
+
/** @name PalletPriceIndexError (477) */
|
|
4214
4310
|
interface PalletPriceIndexError extends Enum {
|
|
4215
4311
|
readonly isNotAuthorizedOperator: boolean;
|
|
4216
4312
|
readonly isMissingValue: boolean;
|
|
@@ -4223,7 +4319,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4223
4319
|
| 'MaxPriceChangePerTickExceeded';
|
|
4224
4320
|
}
|
|
4225
4321
|
|
|
4226
|
-
/** @name PalletGrandpaStoredState (
|
|
4322
|
+
/** @name PalletGrandpaStoredState (478) */
|
|
4227
4323
|
interface PalletGrandpaStoredState extends Enum {
|
|
4228
4324
|
readonly isLive: boolean;
|
|
4229
4325
|
readonly isPendingPause: boolean;
|
|
@@ -4240,7 +4336,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4240
4336
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4241
4337
|
}
|
|
4242
4338
|
|
|
4243
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4339
|
+
/** @name PalletGrandpaStoredPendingChange (479) */
|
|
4244
4340
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4245
4341
|
readonly scheduledAt: u32;
|
|
4246
4342
|
readonly delay: u32;
|
|
@@ -4248,7 +4344,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4248
4344
|
readonly forced: Option<u32>;
|
|
4249
4345
|
}
|
|
4250
4346
|
|
|
4251
|
-
/** @name PalletGrandpaError (
|
|
4347
|
+
/** @name PalletGrandpaError (481) */
|
|
4252
4348
|
interface PalletGrandpaError extends Enum {
|
|
4253
4349
|
readonly isPauseFailed: boolean;
|
|
4254
4350
|
readonly isResumeFailed: boolean;
|
|
@@ -4267,14 +4363,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4267
4363
|
| 'DuplicateOffenceReport';
|
|
4268
4364
|
}
|
|
4269
4365
|
|
|
4270
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4366
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (482) */
|
|
4271
4367
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4272
4368
|
readonly blockAuthorAccountId: AccountId32;
|
|
4273
4369
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4274
4370
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4275
4371
|
}
|
|
4276
4372
|
|
|
4277
|
-
/** @name PalletBlockSealError (
|
|
4373
|
+
/** @name PalletBlockSealError (484) */
|
|
4278
4374
|
interface PalletBlockSealError extends Enum {
|
|
4279
4375
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4280
4376
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4321,10 +4417,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4321
4417
|
| 'DuplicateVoteBlockAtTick';
|
|
4322
4418
|
}
|
|
4323
4419
|
|
|
4324
|
-
/** @name PalletBlockRewardsError (
|
|
4420
|
+
/** @name PalletBlockRewardsError (488) */
|
|
4325
4421
|
type PalletBlockRewardsError = Null;
|
|
4326
4422
|
|
|
4327
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4423
|
+
/** @name PalletMintPendingMintUtxo (489) */
|
|
4328
4424
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4329
4425
|
readonly utxoId: Compact<u64>;
|
|
4330
4426
|
readonly accountId: AccountId32;
|
|
@@ -4332,34 +4428,34 @@ declare module '@polkadot/types/lookup' {
|
|
|
4332
4428
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4333
4429
|
}
|
|
4334
4430
|
|
|
4335
|
-
/** @name PalletMintMintQueueCursor (
|
|
4431
|
+
/** @name PalletMintMintQueueCursor (491) */
|
|
4336
4432
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4337
4433
|
readonly payoutStartIndex: Compact<u64>;
|
|
4338
4434
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4339
4435
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4340
4436
|
}
|
|
4341
4437
|
|
|
4342
|
-
/** @name PalletMintMintAction (
|
|
4438
|
+
/** @name PalletMintMintAction (494) */
|
|
4343
4439
|
interface PalletMintMintAction extends Struct {
|
|
4344
4440
|
readonly argonBurned: u128;
|
|
4345
4441
|
readonly argonMinted: u128;
|
|
4346
4442
|
readonly bitcoinMinted: u128;
|
|
4347
4443
|
}
|
|
4348
4444
|
|
|
4349
|
-
/** @name PalletMintError (
|
|
4445
|
+
/** @name PalletMintError (496) */
|
|
4350
4446
|
interface PalletMintError extends Enum {
|
|
4351
4447
|
readonly isTooManyPendingMints: boolean;
|
|
4352
4448
|
readonly type: 'TooManyPendingMints';
|
|
4353
4449
|
}
|
|
4354
4450
|
|
|
4355
|
-
/** @name PalletBalancesBalanceLock (
|
|
4451
|
+
/** @name PalletBalancesBalanceLock (498) */
|
|
4356
4452
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4357
4453
|
readonly id: U8aFixed;
|
|
4358
4454
|
readonly amount: u128;
|
|
4359
4455
|
readonly reasons: PalletBalancesReasons;
|
|
4360
4456
|
}
|
|
4361
4457
|
|
|
4362
|
-
/** @name PalletBalancesReasons (
|
|
4458
|
+
/** @name PalletBalancesReasons (499) */
|
|
4363
4459
|
interface PalletBalancesReasons extends Enum {
|
|
4364
4460
|
readonly isFee: boolean;
|
|
4365
4461
|
readonly isMisc: boolean;
|
|
@@ -4367,38 +4463,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4367
4463
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4368
4464
|
}
|
|
4369
4465
|
|
|
4370
|
-
/** @name PalletBalancesReserveData (
|
|
4466
|
+
/** @name PalletBalancesReserveData (502) */
|
|
4371
4467
|
interface PalletBalancesReserveData extends Struct {
|
|
4372
4468
|
readonly id: U8aFixed;
|
|
4373
4469
|
readonly amount: u128;
|
|
4374
4470
|
}
|
|
4375
4471
|
|
|
4376
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4472
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (505) */
|
|
4377
4473
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4378
4474
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4379
4475
|
readonly amount: u128;
|
|
4380
4476
|
}
|
|
4381
4477
|
|
|
4382
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4478
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (508) */
|
|
4383
4479
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4384
4480
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4385
4481
|
readonly amount: u128;
|
|
4386
4482
|
}
|
|
4387
4483
|
|
|
4388
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4484
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (509) */
|
|
4389
4485
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4390
4486
|
readonly isBlockRewards: boolean;
|
|
4391
4487
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4392
4488
|
readonly type: 'BlockRewards';
|
|
4393
4489
|
}
|
|
4394
4490
|
|
|
4395
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4491
|
+
/** @name PalletBlockRewardsFreezeReason (510) */
|
|
4396
4492
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4397
4493
|
readonly isMaturationPeriod: boolean;
|
|
4398
4494
|
readonly type: 'MaturationPeriod';
|
|
4399
4495
|
}
|
|
4400
4496
|
|
|
4401
|
-
/** @name PalletBalancesError (
|
|
4497
|
+
/** @name PalletBalancesError (512) */
|
|
4402
4498
|
interface PalletBalancesError extends Enum {
|
|
4403
4499
|
readonly isVestingBalance: boolean;
|
|
4404
4500
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4427,7 +4523,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4427
4523
|
| 'DeltaZero';
|
|
4428
4524
|
}
|
|
4429
4525
|
|
|
4430
|
-
/** @name PalletTxPauseError (
|
|
4526
|
+
/** @name PalletTxPauseError (514) */
|
|
4431
4527
|
interface PalletTxPauseError extends Enum {
|
|
4432
4528
|
readonly isIsPaused: boolean;
|
|
4433
4529
|
readonly isIsUnpaused: boolean;
|
|
@@ -4436,69 +4532,72 @@ declare module '@polkadot/types/lookup' {
|
|
|
4436
4532
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4437
4533
|
}
|
|
4438
4534
|
|
|
4439
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4535
|
+
/** @name PalletTransactionPaymentReleases (515) */
|
|
4440
4536
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4441
4537
|
readonly isV1Ancient: boolean;
|
|
4442
4538
|
readonly isV2: boolean;
|
|
4443
4539
|
readonly type: 'V1Ancient' | 'V2';
|
|
4444
4540
|
}
|
|
4445
4541
|
|
|
4446
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4542
|
+
/** @name FrameSupportStorageNoDrop (516) */
|
|
4447
4543
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4448
4544
|
|
|
4449
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4545
|
+
/** @name FrameSupportTokensFungibleImbalance (517) */
|
|
4450
4546
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4451
4547
|
readonly amount: u128;
|
|
4452
4548
|
}
|
|
4453
4549
|
|
|
4454
|
-
/** @name PalletUtilityError (
|
|
4550
|
+
/** @name PalletUtilityError (518) */
|
|
4455
4551
|
interface PalletUtilityError extends Enum {
|
|
4456
4552
|
readonly isTooManyCalls: boolean;
|
|
4457
4553
|
readonly type: 'TooManyCalls';
|
|
4458
4554
|
}
|
|
4459
4555
|
|
|
4460
|
-
/** @name PalletSudoError (
|
|
4556
|
+
/** @name PalletSudoError (519) */
|
|
4461
4557
|
interface PalletSudoError extends Enum {
|
|
4462
4558
|
readonly isRequireSudo: boolean;
|
|
4463
4559
|
readonly type: 'RequireSudo';
|
|
4464
4560
|
}
|
|
4465
4561
|
|
|
4466
|
-
/** @name PalletTreasuryFrameVaultCapital (
|
|
4562
|
+
/** @name PalletTreasuryFrameVaultCapital (520) */
|
|
4467
4563
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4468
4564
|
readonly frameId: Compact<u64>;
|
|
4469
4565
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4470
4566
|
}
|
|
4471
4567
|
|
|
4472
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4568
|
+
/** @name PalletTreasuryVaultCapital (522) */
|
|
4473
4569
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4474
4570
|
readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4571
|
+
readonly backfillBondsEligible: Compact<u32>;
|
|
4572
|
+
readonly backfillProrata: u128;
|
|
4475
4573
|
readonly eligibleBonds: Compact<u32>;
|
|
4476
4574
|
}
|
|
4477
4575
|
|
|
4478
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4576
|
+
/** @name PalletTreasuryBondLotAllocation (524) */
|
|
4479
4577
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4480
4578
|
readonly bondLotId: Compact<u64>;
|
|
4481
4579
|
readonly prorata: u128;
|
|
4482
4580
|
}
|
|
4483
4581
|
|
|
4484
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4582
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (529) */
|
|
4485
4583
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4486
4584
|
readonly frameId: Compact<u64>;
|
|
4487
4585
|
readonly totalBonds: Compact<u32>;
|
|
4488
4586
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4489
4587
|
}
|
|
4490
4588
|
|
|
4491
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4589
|
+
/** @name PalletTreasuryBondLotSummary (531) */
|
|
4492
4590
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4493
4591
|
readonly bondLotId: Compact<u64>;
|
|
4494
4592
|
readonly bonds: Compact<u32>;
|
|
4495
4593
|
}
|
|
4496
4594
|
|
|
4497
|
-
/** @name PalletTreasuryBondLot (
|
|
4595
|
+
/** @name PalletTreasuryBondLot (533) */
|
|
4498
4596
|
interface PalletTreasuryBondLot extends Struct {
|
|
4499
4597
|
readonly owner: AccountId32;
|
|
4500
4598
|
readonly program: PalletTreasuryBondProgram;
|
|
4501
4599
|
readonly bonds: Compact<u32>;
|
|
4600
|
+
readonly isBackfill: bool;
|
|
4502
4601
|
readonly createdFrameId: Compact<u64>;
|
|
4503
4602
|
readonly participatedFrames: Compact<u32>;
|
|
4504
4603
|
readonly lastFrameEarningsFrameId: Option<u64>;
|
|
@@ -4508,7 +4607,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4508
4607
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4509
4608
|
}
|
|
4510
4609
|
|
|
4511
|
-
/** @name PalletTreasuryBondProgram (
|
|
4610
|
+
/** @name PalletTreasuryBondProgram (534) */
|
|
4512
4611
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4513
4612
|
readonly isVault: boolean;
|
|
4514
4613
|
readonly asVault: {
|
|
@@ -4520,7 +4619,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4520
4619
|
readonly type: 'Vault' | 'Argonot';
|
|
4521
4620
|
}
|
|
4522
4621
|
|
|
4523
|
-
/** @name
|
|
4622
|
+
/** @name PalletTreasuryVaultBondState (537) */
|
|
4623
|
+
interface PalletTreasuryVaultBondState extends Struct {
|
|
4624
|
+
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4625
|
+
readonly backfillBonds: Compact<u32>;
|
|
4626
|
+
readonly backfillBondsReserved: Compact<u32>;
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
/** @name PalletTreasuryError (539) */
|
|
4524
4630
|
interface PalletTreasuryError extends Enum {
|
|
4525
4631
|
readonly isBondPurchaseRejected: boolean;
|
|
4526
4632
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4540,6 +4646,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
4540
4646
|
readonly isInvalidBonusApprovalSignature: boolean;
|
|
4541
4647
|
readonly isArgonotBondPurchaseBelowCutoff: boolean;
|
|
4542
4648
|
readonly isArgonotBondPurchaseAboveCap: boolean;
|
|
4649
|
+
readonly isBondLotNotEligibleForBackfill: boolean;
|
|
4650
|
+
readonly isNoPermissions: boolean;
|
|
4543
4651
|
readonly type:
|
|
4544
4652
|
| 'BondPurchaseRejected'
|
|
4545
4653
|
| 'VaultNotAcceptingBondPurchases'
|
|
@@ -4558,16 +4666,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
4558
4666
|
| 'BonusApprovalExistingBondLot'
|
|
4559
4667
|
| 'InvalidBonusApprovalSignature'
|
|
4560
4668
|
| 'ArgonotBondPurchaseBelowCutoff'
|
|
4561
|
-
| 'ArgonotBondPurchaseAboveCap'
|
|
4669
|
+
| 'ArgonotBondPurchaseAboveCap'
|
|
4670
|
+
| 'BondLotNotEligibleForBackfill'
|
|
4671
|
+
| 'NoPermissions';
|
|
4562
4672
|
}
|
|
4563
4673
|
|
|
4564
|
-
/** @name PalletFeeControlError (
|
|
4674
|
+
/** @name PalletFeeControlError (540) */
|
|
4565
4675
|
interface PalletFeeControlError extends Enum {
|
|
4566
4676
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4567
4677
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4568
4678
|
}
|
|
4569
4679
|
|
|
4570
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4680
|
+
/** @name PalletOperationalAccountsOperationalAccount (541) */
|
|
4571
4681
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4572
4682
|
readonly vaultAccount: AccountId32;
|
|
4573
4683
|
readonly miningAccount: AccountId32;
|
|
@@ -4590,13 +4700,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4590
4700
|
readonly isOperationallyCertified: bool;
|
|
4591
4701
|
}
|
|
4592
4702
|
|
|
4593
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4703
|
+
/** @name PalletOperationalAccountsRewardsConfig (542) */
|
|
4594
4704
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4595
4705
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4596
4706
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4597
4707
|
}
|
|
4598
4708
|
|
|
4599
|
-
/** @name PalletOperationalAccountsError (
|
|
4709
|
+
/** @name PalletOperationalAccountsError (543) */
|
|
4600
4710
|
interface PalletOperationalAccountsError extends Enum {
|
|
4601
4711
|
readonly isAlreadyRegistered: boolean;
|
|
4602
4712
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4609,8 +4719,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4609
4719
|
readonly isMinimumsNotMet: boolean;
|
|
4610
4720
|
readonly isCannotGrantAccessToSelf: boolean;
|
|
4611
4721
|
readonly isNoProgressUpdateProvided: boolean;
|
|
4612
|
-
readonly isEncryptedServerTooLong: boolean;
|
|
4613
|
-
readonly isNotUpstreamOfDownstream: boolean;
|
|
4614
4722
|
readonly isNoPendingRewards: boolean;
|
|
4615
4723
|
readonly isRewardClaimBelowMinimum: boolean;
|
|
4616
4724
|
readonly isRewardClaimNotWholeArgon: boolean;
|
|
@@ -4631,8 +4739,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
4631
4739
|
| 'MinimumsNotMet'
|
|
4632
4740
|
| 'CannotGrantAccessToSelf'
|
|
4633
4741
|
| 'NoProgressUpdateProvided'
|
|
4634
|
-
| 'EncryptedServerTooLong'
|
|
4635
|
-
| 'NotUpstreamOfDownstream'
|
|
4636
4742
|
| 'NoPendingRewards'
|
|
4637
4743
|
| 'RewardClaimBelowMinimum'
|
|
4638
4744
|
| 'RewardClaimNotWholeArgon'
|
|
@@ -4643,12 +4749,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4643
4749
|
| 'UpstreamHasNoAvailableAccessCodes';
|
|
4644
4750
|
}
|
|
4645
4751
|
|
|
4646
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4752
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (544) */
|
|
4647
4753
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4648
4754
|
readonly slot: Compact<u64>;
|
|
4649
4755
|
}
|
|
4650
4756
|
|
|
4651
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4757
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (545) */
|
|
4652
4758
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4653
4759
|
readonly blockNumber: Compact<u64>;
|
|
4654
4760
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4658,44 +4764,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4658
4764
|
readonly receiptsRoot: H256;
|
|
4659
4765
|
}
|
|
4660
4766
|
|
|
4661
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4767
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (546) */
|
|
4662
4768
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4663
4769
|
readonly root: H256;
|
|
4664
4770
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4665
4771
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4666
4772
|
}
|
|
4667
4773
|
|
|
4668
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4774
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (548) */
|
|
4669
4775
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4670
4776
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4671
4777
|
}
|
|
4672
4778
|
|
|
4673
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4779
|
+
/** @name SnowbridgeAmclBls381Ecp (549) */
|
|
4674
4780
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4675
4781
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4676
4782
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4677
4783
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4678
4784
|
}
|
|
4679
4785
|
|
|
4680
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4786
|
+
/** @name SnowbridgeAmclBls381Fp (550) */
|
|
4681
4787
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4682
4788
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4683
4789
|
readonly xes: i32;
|
|
4684
4790
|
}
|
|
4685
4791
|
|
|
4686
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4792
|
+
/** @name SnowbridgeAmclBls381Big (551) */
|
|
4687
4793
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4688
4794
|
readonly w: Vec<i32>;
|
|
4689
4795
|
}
|
|
4690
4796
|
|
|
4691
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4797
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (555) */
|
|
4692
4798
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4693
4799
|
readonly isMainnet: boolean;
|
|
4694
4800
|
readonly isMinimal: boolean;
|
|
4695
4801
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4696
4802
|
}
|
|
4697
4803
|
|
|
4698
|
-
/** @name PalletEthereumVerifierError (
|
|
4804
|
+
/** @name PalletEthereumVerifierError (556) */
|
|
4699
4805
|
interface PalletEthereumVerifierError extends Enum {
|
|
4700
4806
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4701
4807
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4748,7 +4854,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4748
4854
|
| 'Halted';
|
|
4749
4855
|
}
|
|
4750
4856
|
|
|
4751
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4857
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (557) */
|
|
4752
4858
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4753
4859
|
readonly microgonsIn: u128;
|
|
4754
4860
|
readonly microgonsOut: u128;
|
|
@@ -4760,21 +4866,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4760
4866
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4761
4867
|
}
|
|
4762
4868
|
|
|
4763
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4869
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (559) */
|
|
4764
4870
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4765
4871
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4766
4872
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4767
4873
|
readonly totalWeight: u128;
|
|
4768
4874
|
}
|
|
4769
4875
|
|
|
4770
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4876
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (561) */
|
|
4771
4877
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4772
4878
|
readonly accountId: AccountId32;
|
|
4773
4879
|
readonly signer: H160;
|
|
4774
4880
|
readonly weight: u128;
|
|
4775
4881
|
}
|
|
4776
4882
|
|
|
4777
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4883
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (566) */
|
|
4778
4884
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4779
4885
|
readonly approvingCouncilHash: H256;
|
|
4780
4886
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4786,7 +4892,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4786
4892
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4787
4893
|
}
|
|
4788
4894
|
|
|
4789
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4895
|
+
/** @name PalletCrosschainTransferMintingAuthority (571) */
|
|
4790
4896
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4791
4897
|
readonly accountId: AccountId32;
|
|
4792
4898
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4803,7 +4909,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4803
4909
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4804
4910
|
}
|
|
4805
4911
|
|
|
4806
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4912
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (572) */
|
|
4807
4913
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4808
4914
|
readonly isPendingActivation: boolean;
|
|
4809
4915
|
readonly isActive: boolean;
|
|
@@ -4811,7 +4917,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4811
4917
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4812
4918
|
}
|
|
4813
4919
|
|
|
4814
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4920
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (574) */
|
|
4815
4921
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4816
4922
|
readonly argonAccountId: AccountId32;
|
|
4817
4923
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4830,7 +4936,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4830
4936
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4831
4937
|
}
|
|
4832
4938
|
|
|
4833
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
4939
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (576) */
|
|
4834
4940
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4835
4941
|
readonly microgonCollateral: u128;
|
|
4836
4942
|
readonly micronotCollateral: u128;
|
|
@@ -4838,27 +4944,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4838
4944
|
readonly signature: U8aFixed;
|
|
4839
4945
|
}
|
|
4840
4946
|
|
|
4841
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
4947
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (580) */
|
|
4842
4948
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4843
4949
|
readonly isStarted: boolean;
|
|
4844
4950
|
readonly isReady: boolean;
|
|
4845
4951
|
readonly type: 'Started' | 'Ready';
|
|
4846
4952
|
}
|
|
4847
4953
|
|
|
4848
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
4954
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (582) */
|
|
4849
4955
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4850
4956
|
readonly transferId: H256;
|
|
4851
4957
|
readonly remainingCollateral: u128;
|
|
4852
4958
|
readonly remainingMintingAuthorityTip: u128;
|
|
4853
4959
|
}
|
|
4854
4960
|
|
|
4855
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
4961
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (584) */
|
|
4856
4962
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4857
4963
|
readonly argonCirculation: u128;
|
|
4858
4964
|
readonly argonotCirculation: u128;
|
|
4859
4965
|
}
|
|
4860
4966
|
|
|
4861
|
-
/** @name PalletCrosschainTransferError (
|
|
4967
|
+
/** @name PalletCrosschainTransferError (585) */
|
|
4862
4968
|
interface PalletCrosschainTransferError extends Enum {
|
|
4863
4969
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4864
4970
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -4914,6 +5020,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4914
5020
|
readonly isInsufficientMintingAuthorityCollateral: boolean;
|
|
4915
5021
|
readonly isTransferCollateralIncrementTooSmall: boolean;
|
|
4916
5022
|
readonly isTooManyPendingTransferOuts: boolean;
|
|
5023
|
+
readonly isCouncilSignerRotationPending: boolean;
|
|
4917
5024
|
readonly type:
|
|
4918
5025
|
| 'InvalidTransferToArgonActivity'
|
|
4919
5026
|
| 'NoGatewayProofBlocksProvided'
|
|
@@ -4968,48 +5075,60 @@ declare module '@polkadot/types/lookup' {
|
|
|
4968
5075
|
| 'InvalidTransferCollateralSignature'
|
|
4969
5076
|
| 'InsufficientMintingAuthorityCollateral'
|
|
4970
5077
|
| 'TransferCollateralIncrementTooSmall'
|
|
4971
|
-
| 'TooManyPendingTransferOuts'
|
|
5078
|
+
| 'TooManyPendingTransferOuts'
|
|
5079
|
+
| 'CouncilSignerRotationPending';
|
|
5080
|
+
}
|
|
5081
|
+
|
|
5082
|
+
/** @name PalletBootstrapError (587) */
|
|
5083
|
+
interface PalletBootstrapError extends Enum {
|
|
5084
|
+
readonly isEncryptedPayloadTooLong: boolean;
|
|
5085
|
+
readonly isInvalidRecoveryProof: boolean;
|
|
5086
|
+
readonly isEndpointOwnedByAnotherAccount: boolean;
|
|
5087
|
+
readonly type:
|
|
5088
|
+
| 'EncryptedPayloadTooLong'
|
|
5089
|
+
| 'InvalidRecoveryProof'
|
|
5090
|
+
| 'EndpointOwnedByAnotherAccount';
|
|
4972
5091
|
}
|
|
4973
5092
|
|
|
4974
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5093
|
+
/** @name FrameSystemExtensionsAuthorizeCall (590) */
|
|
4975
5094
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
4976
5095
|
|
|
4977
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5096
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (591) */
|
|
4978
5097
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
4979
5098
|
|
|
4980
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5099
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (592) */
|
|
4981
5100
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
4982
5101
|
|
|
4983
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5102
|
+
/** @name FrameSystemExtensionsCheckTxVersion (593) */
|
|
4984
5103
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
4985
5104
|
|
|
4986
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5105
|
+
/** @name FrameSystemExtensionsCheckGenesis (594) */
|
|
4987
5106
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
4988
5107
|
|
|
4989
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5108
|
+
/** @name FrameSystemExtensionsCheckNonce (597) */
|
|
4990
5109
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
4991
5110
|
|
|
4992
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5111
|
+
/** @name FrameSystemExtensionsCheckWeight (598) */
|
|
4993
5112
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
4994
5113
|
|
|
4995
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5114
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (599) */
|
|
4996
5115
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
4997
5116
|
|
|
4998
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5117
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (600) */
|
|
4999
5118
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5000
5119
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5001
5120
|
}
|
|
5002
5121
|
|
|
5003
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5122
|
+
/** @name FrameMetadataHashExtensionMode (601) */
|
|
5004
5123
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5005
5124
|
readonly isDisabled: boolean;
|
|
5006
5125
|
readonly isEnabled: boolean;
|
|
5007
5126
|
readonly type: 'Disabled' | 'Enabled';
|
|
5008
5127
|
}
|
|
5009
5128
|
|
|
5010
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5129
|
+
/** @name FrameSystemExtensionsWeightReclaim (602) */
|
|
5011
5130
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5012
5131
|
|
|
5013
|
-
/** @name ArgonRuntimeRuntime (
|
|
5132
|
+
/** @name ArgonRuntimeRuntime (604) */
|
|
5014
5133
|
type ArgonRuntimeRuntime = Null;
|
|
5015
5134
|
} // declare module
|