@argonprotocol/mainchain 1.4.10-dev.459cb75f → 1.4.10-dev.4dee3b2f

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.
@@ -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) */
@@ -2133,7 +2153,28 @@ declare module '@polkadot/types/lookup' {
2133
2153
  readonly argonotCirculation: u128;
2134
2154
  }
2135
2155
 
2136
- /** @name FrameSystemPhase (139) */
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) */
2137
2178
  interface FrameSystemPhase extends Enum {
2138
2179
  readonly isApplyExtrinsic: boolean;
2139
2180
  readonly asApplyExtrinsic: u32;
@@ -2142,19 +2183,19 @@ declare module '@polkadot/types/lookup' {
2142
2183
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2143
2184
  }
2144
2185
 
2145
- /** @name FrameSystemLastRuntimeUpgradeInfo (143) */
2186
+ /** @name FrameSystemLastRuntimeUpgradeInfo (146) */
2146
2187
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2147
2188
  readonly specVersion: Compact<u32>;
2148
2189
  readonly specName: Text;
2149
2190
  }
2150
2191
 
2151
- /** @name FrameSystemCodeUpgradeAuthorization (146) */
2192
+ /** @name FrameSystemCodeUpgradeAuthorization (149) */
2152
2193
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
2153
2194
  readonly codeHash: H256;
2154
2195
  readonly checkVersion: bool;
2155
2196
  }
2156
2197
 
2157
- /** @name FrameSystemCall (147) */
2198
+ /** @name FrameSystemCall (150) */
2158
2199
  interface FrameSystemCall extends Enum {
2159
2200
  readonly isRemark: boolean;
2160
2201
  readonly asRemark: {
@@ -2215,21 +2256,21 @@ declare module '@polkadot/types/lookup' {
2215
2256
  | 'ApplyAuthorizedUpgrade';
2216
2257
  }
2217
2258
 
2218
- /** @name FrameSystemLimitsBlockWeights (151) */
2259
+ /** @name FrameSystemLimitsBlockWeights (154) */
2219
2260
  interface FrameSystemLimitsBlockWeights extends Struct {
2220
2261
  readonly baseBlock: SpWeightsWeightV2Weight;
2221
2262
  readonly maxBlock: SpWeightsWeightV2Weight;
2222
2263
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
2223
2264
  }
2224
2265
 
2225
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
2266
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (155) */
2226
2267
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
2227
2268
  readonly normal: FrameSystemLimitsWeightsPerClass;
2228
2269
  readonly operational: FrameSystemLimitsWeightsPerClass;
2229
2270
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
2230
2271
  }
2231
2272
 
2232
- /** @name FrameSystemLimitsWeightsPerClass (153) */
2273
+ /** @name FrameSystemLimitsWeightsPerClass (156) */
2233
2274
  interface FrameSystemLimitsWeightsPerClass extends Struct {
2234
2275
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
2235
2276
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -2237,26 +2278,26 @@ declare module '@polkadot/types/lookup' {
2237
2278
  readonly reserved: Option<SpWeightsWeightV2Weight>;
2238
2279
  }
2239
2280
 
2240
- /** @name FrameSystemLimitsBlockLength (155) */
2281
+ /** @name FrameSystemLimitsBlockLength (158) */
2241
2282
  interface FrameSystemLimitsBlockLength extends Struct {
2242
2283
  readonly max: FrameSupportDispatchPerDispatchClassU32;
2243
2284
  readonly maxHeaderSize: Option<u32>;
2244
2285
  }
2245
2286
 
2246
- /** @name FrameSupportDispatchPerDispatchClassU32 (156) */
2287
+ /** @name FrameSupportDispatchPerDispatchClassU32 (159) */
2247
2288
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
2248
2289
  readonly normal: u32;
2249
2290
  readonly operational: u32;
2250
2291
  readonly mandatory: u32;
2251
2292
  }
2252
2293
 
2253
- /** @name SpWeightsRuntimeDbWeight (158) */
2294
+ /** @name SpWeightsRuntimeDbWeight (161) */
2254
2295
  interface SpWeightsRuntimeDbWeight extends Struct {
2255
2296
  readonly read: u64;
2256
2297
  readonly write: u64;
2257
2298
  }
2258
2299
 
2259
- /** @name SpVersionRuntimeVersion (159) */
2300
+ /** @name SpVersionRuntimeVersion (162) */
2260
2301
  interface SpVersionRuntimeVersion extends Struct {
2261
2302
  readonly specName: Text;
2262
2303
  readonly implName: Text;
@@ -2268,7 +2309,7 @@ declare module '@polkadot/types/lookup' {
2268
2309
  readonly systemVersion: u8;
2269
2310
  }
2270
2311
 
2271
- /** @name FrameSystemError (164) */
2312
+ /** @name FrameSystemError (167) */
2272
2313
  interface FrameSystemError extends Enum {
2273
2314
  readonly isInvalidSpecName: boolean;
2274
2315
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2291,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
2291
2332
  | 'Unauthorized';
2292
2333
  }
2293
2334
 
2294
- /** @name ArgonPrimitivesDigestsDigestset (165) */
2335
+ /** @name ArgonPrimitivesDigestsDigestset (168) */
2295
2336
  interface ArgonPrimitivesDigestsDigestset extends Struct {
2296
2337
  readonly author: AccountId32;
2297
2338
  readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
@@ -2302,18 +2343,18 @@ declare module '@polkadot/types/lookup' {
2302
2343
  readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
2303
2344
  }
2304
2345
 
2305
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
2346
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (169) */
2306
2347
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2307
2348
  readonly votingPower: Compact<u128>;
2308
2349
  readonly votesCount: Compact<u32>;
2309
2350
  }
2310
2351
 
2311
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
2352
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (171) */
2312
2353
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2313
2354
  readonly parentVotingKey: Option<H256>;
2314
2355
  }
2315
2356
 
2316
- /** @name ArgonPrimitivesForkPower (171) */
2357
+ /** @name ArgonPrimitivesForkPower (174) */
2317
2358
  interface ArgonPrimitivesForkPower extends Struct {
2318
2359
  readonly isLatestVote: bool;
2319
2360
  readonly notebooks: Compact<u64>;
@@ -2324,19 +2365,19 @@ declare module '@polkadot/types/lookup' {
2324
2365
  readonly minerNonceScore: Option<U256>;
2325
2366
  }
2326
2367
 
2327
- /** @name ArgonPrimitivesDigestsFrameInfo (176) */
2368
+ /** @name ArgonPrimitivesDigestsFrameInfo (179) */
2328
2369
  interface ArgonPrimitivesDigestsFrameInfo extends Struct {
2329
2370
  readonly frameId: Compact<u64>;
2330
2371
  readonly frameRewardTicksRemaining: Compact<u32>;
2331
2372
  readonly isNewFrame: bool;
2332
2373
  }
2333
2374
 
2334
- /** @name ArgonPrimitivesDigestsNotebookDigest (178) */
2375
+ /** @name ArgonPrimitivesDigestsNotebookDigest (181) */
2335
2376
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2336
2377
  readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
2337
2378
  }
2338
2379
 
2339
- /** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
2380
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (183) */
2340
2381
  interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
2341
2382
  readonly notaryId: Compact<u32>;
2342
2383
  readonly notebookNumber: Compact<u32>;
@@ -2344,7 +2385,7 @@ declare module '@polkadot/types/lookup' {
2344
2385
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2345
2386
  }
2346
2387
 
2347
- /** @name PalletDigestsError (183) */
2388
+ /** @name PalletDigestsError (186) */
2348
2389
  interface PalletDigestsError extends Enum {
2349
2390
  readonly isDuplicateBlockVoteDigest: boolean;
2350
2391
  readonly isDuplicateAuthorDigest: boolean;
@@ -2375,7 +2416,7 @@ declare module '@polkadot/types/lookup' {
2375
2416
  | 'DuplicateFrameInfoDigest';
2376
2417
  }
2377
2418
 
2378
- /** @name PalletTimestampCall (184) */
2419
+ /** @name PalletTimestampCall (187) */
2379
2420
  interface PalletTimestampCall extends Enum {
2380
2421
  readonly isSet: boolean;
2381
2422
  readonly asSet: {
@@ -2384,7 +2425,7 @@ declare module '@polkadot/types/lookup' {
2384
2425
  readonly type: 'Set';
2385
2426
  }
2386
2427
 
2387
- /** @name PalletMultisigMultisig (186) */
2428
+ /** @name PalletMultisigMultisig (189) */
2388
2429
  interface PalletMultisigMultisig extends Struct {
2389
2430
  readonly when: PalletMultisigTimepoint;
2390
2431
  readonly deposit: u128;
@@ -2392,7 +2433,7 @@ declare module '@polkadot/types/lookup' {
2392
2433
  readonly approvals: Vec<AccountId32>;
2393
2434
  }
2394
2435
 
2395
- /** @name PalletMultisigCall (189) */
2436
+ /** @name PalletMultisigCall (192) */
2396
2437
  interface PalletMultisigCall extends Enum {
2397
2438
  readonly isAsMultiThreshold1: boolean;
2398
2439
  readonly asAsMultiThreshold1: {
@@ -2436,7 +2477,7 @@ declare module '@polkadot/types/lookup' {
2436
2477
  | 'PokeDeposit';
2437
2478
  }
2438
2479
 
2439
- /** @name PalletProxyCall (191) */
2480
+ /** @name PalletProxyCall (194) */
2440
2481
  interface PalletProxyCall extends Enum {
2441
2482
  readonly isProxy: boolean;
2442
2483
  readonly asProxy: {
@@ -2508,10 +2549,10 @@ declare module '@polkadot/types/lookup' {
2508
2549
  | 'PokeDeposit';
2509
2550
  }
2510
2551
 
2511
- /** @name PalletTicksCall (195) */
2552
+ /** @name PalletTicksCall (198) */
2512
2553
  type PalletTicksCall = Null;
2513
2554
 
2514
- /** @name PalletMiningSlotCall (196) */
2555
+ /** @name PalletMiningSlotCall (199) */
2515
2556
  interface PalletMiningSlotCall extends Enum {
2516
2557
  readonly isBid: boolean;
2517
2558
  readonly asBid: {
@@ -2527,7 +2568,7 @@ declare module '@polkadot/types/lookup' {
2527
2568
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
2528
2569
  }
2529
2570
 
2530
- /** @name PalletBitcoinUtxosCall (197) */
2571
+ /** @name PalletBitcoinUtxosCall (200) */
2531
2572
  interface PalletBitcoinUtxosCall extends Enum {
2532
2573
  readonly isSync: boolean;
2533
2574
  readonly asSync: {
@@ -2560,21 +2601,21 @@ declare module '@polkadot/types/lookup' {
2560
2601
  | 'RejectUtxoCandidate';
2561
2602
  }
2562
2603
 
2563
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
2604
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
2564
2605
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
2565
2606
  readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
2566
2607
  readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
2567
2608
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
2568
2609
  }
2569
2610
 
2570
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
2611
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (203) */
2571
2612
  interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
2572
2613
  readonly utxoId: Compact<u64>;
2573
2614
  readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
2574
2615
  readonly bitcoinHeight: Compact<u64>;
2575
2616
  }
2576
2617
 
2577
- /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
2618
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (206) */
2578
2619
  interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
2579
2620
  readonly utxoId: Compact<u64>;
2580
2621
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
@@ -2583,13 +2624,13 @@ declare module '@polkadot/types/lookup' {
2583
2624
  readonly bitcoinHeight: Compact<u64>;
2584
2625
  }
2585
2626
 
2586
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
2627
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (207) */
2587
2628
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
2588
2629
  readonly blockHeight: Compact<u64>;
2589
2630
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
2590
2631
  }
2591
2632
 
2592
- /** @name PalletVaultsCall (205) */
2633
+ /** @name PalletVaultsCall (208) */
2593
2634
  interface PalletVaultsCall extends Enum {
2594
2635
  readonly isCreate: boolean;
2595
2636
  readonly asCreate: {
@@ -2623,14 +2664,15 @@ declare module '@polkadot/types/lookup' {
2623
2664
  readonly asSetDelegateAccount: {
2624
2665
  readonly delegateAccountId: Option<AccountId32>;
2625
2666
  } & Struct;
2626
- readonly isSetName: boolean;
2627
- readonly asSetName: {
2628
- readonly name: Option<Bytes>;
2629
- } & Struct;
2630
2667
  readonly isSetCommittedArgonots: boolean;
2631
2668
  readonly asSetCommittedArgonots: {
2632
2669
  readonly amount: Compact<u128>;
2633
2670
  } & Struct;
2671
+ readonly isSetBackfillSecuritizationReserved: boolean;
2672
+ readonly asSetBackfillSecuritizationReserved: {
2673
+ readonly vaultId: u32;
2674
+ readonly backfillSecuritizationReserved: u128;
2675
+ } & Struct;
2634
2676
  readonly type:
2635
2677
  | 'Create'
2636
2678
  | 'ModifyFunding'
@@ -2639,21 +2681,20 @@ declare module '@polkadot/types/lookup' {
2639
2681
  | 'ReplaceBitcoinXpub'
2640
2682
  | 'Collect'
2641
2683
  | 'SetDelegateAccount'
2642
- | 'SetName'
2643
- | 'SetCommittedArgonots';
2684
+ | 'SetCommittedArgonots'
2685
+ | 'SetBackfillSecuritizationReserved';
2644
2686
  }
2645
2687
 
2646
- /** @name PalletVaultsVaultConfig (206) */
2688
+ /** @name PalletVaultsVaultConfig (209) */
2647
2689
  interface PalletVaultsVaultConfig extends Struct {
2648
2690
  readonly terms: ArgonPrimitivesVaultVaultTerms;
2649
- readonly name: Option<Bytes>;
2650
2691
  readonly delegateAccountId: Option<AccountId32>;
2651
2692
  readonly securitization: Compact<u128>;
2652
2693
  readonly bitcoinXpubkey: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
2653
2694
  readonly securitizationRatio: Compact<u128>;
2654
2695
  }
2655
2696
 
2656
- /** @name ArgonPrimitivesVaultVaultTerms (207) */
2697
+ /** @name ArgonPrimitivesVaultVaultTerms (210) */
2657
2698
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
2658
2699
  readonly bitcoinAnnualPercentRate: Compact<u128>;
2659
2700
  readonly bitcoinBaseFee: Compact<u128>;
@@ -2661,10 +2702,10 @@ declare module '@polkadot/types/lookup' {
2661
2702
  readonly treasuryBonusProfitSharing: Compact<Permill>;
2662
2703
  }
2663
2704
 
2664
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
2705
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
2665
2706
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2666
2707
 
2667
- /** @name PalletBitcoinLocksCall (215) */
2708
+ /** @name PalletBitcoinLocksCall (216) */
2668
2709
  interface PalletBitcoinLocksCall extends Enum {
2669
2710
  readonly isInitialize: boolean;
2670
2711
  readonly asInitialize: {
@@ -2705,19 +2746,16 @@ declare module '@polkadot/types/lookup' {
2705
2746
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
2706
2747
  readonly signature: Bytes;
2707
2748
  } & Struct;
2708
- readonly isInitializeFor: boolean;
2709
- readonly asInitializeFor: {
2710
- readonly accountId: AccountId32;
2711
- readonly vaultId: u32;
2712
- readonly satoshis: Compact<u64>;
2713
- readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2714
- readonly options: Option<PalletBitcoinLocksLockOptions>;
2715
- } & Struct;
2716
2749
  readonly isIncreaseSecuritization: boolean;
2717
2750
  readonly asIncreaseSecuritization: {
2718
2751
  readonly utxoId: u64;
2719
2752
  readonly newSatoshis: Compact<u64>;
2720
2753
  } & Struct;
2754
+ readonly isSetAsBackfill: boolean;
2755
+ readonly asSetAsBackfill: {
2756
+ readonly utxoId: u64;
2757
+ readonly isBackfill: bool;
2758
+ } & Struct;
2721
2759
  readonly type:
2722
2760
  | 'Initialize'
2723
2761
  | 'RequestRelease'
@@ -2726,23 +2764,53 @@ declare module '@polkadot/types/lookup' {
2726
2764
  | 'AdminModifyMinimumLockedSats'
2727
2765
  | 'RequestOrphanedUtxoRelease'
2728
2766
  | 'CosignOrphanedUtxoRelease'
2729
- | 'InitializeFor'
2730
- | 'IncreaseSecuritization';
2767
+ | 'IncreaseSecuritization'
2768
+ | 'SetAsBackfill';
2731
2769
  }
2732
2770
 
2733
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
2771
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
2734
2772
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2735
2773
 
2736
- /** @name PalletBitcoinLocksLockOptions (219) */
2774
+ /** @name PalletBitcoinLocksLockOptions (220) */
2737
2775
  interface PalletBitcoinLocksLockOptions extends Enum {
2738
2776
  readonly isV1: boolean;
2739
2777
  readonly asV1: {
2740
2778
  readonly microgonsAtTargetPerBtc: Option<u128>;
2741
2779
  } & Struct;
2742
- readonly type: 'V1';
2780
+ readonly isV2: boolean;
2781
+ readonly asV2: {
2782
+ readonly microgonsAtTargetPerBtc: Option<u128>;
2783
+ readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
2784
+ } & Struct;
2785
+ readonly type: 'V1' | 'V2';
2786
+ }
2787
+
2788
+ /** @name PalletBitcoinLocksFeeCoupon (222) */
2789
+ interface PalletBitcoinLocksFeeCoupon extends Struct {
2790
+ readonly vaultId: Compact<u32>;
2791
+ readonly genesisHash: H256;
2792
+ readonly beneficiary: AccountId32;
2793
+ readonly feeDiscount: Compact<u128>;
2794
+ readonly backfillSecuritizationToUnreserve: Compact<u128>;
2795
+ readonly expiresAtFrame: Compact<u64>;
2796
+ readonly nonce: Compact<u64>;
2797
+ readonly signature: SpRuntimeMultiSignature;
2798
+ }
2799
+
2800
+ /** @name SpRuntimeMultiSignature (223) */
2801
+ interface SpRuntimeMultiSignature extends Enum {
2802
+ readonly isEd25519: boolean;
2803
+ readonly asEd25519: U8aFixed;
2804
+ readonly isSr25519: boolean;
2805
+ readonly asSr25519: U8aFixed;
2806
+ readonly isEcdsa: boolean;
2807
+ readonly asEcdsa: U8aFixed;
2808
+ readonly isEth: boolean;
2809
+ readonly asEth: U8aFixed;
2810
+ readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2743
2811
  }
2744
2812
 
2745
- /** @name PalletNotariesCall (222) */
2813
+ /** @name PalletNotariesCall (228) */
2746
2814
  interface PalletNotariesCall extends Enum {
2747
2815
  readonly isPropose: boolean;
2748
2816
  readonly asPropose: {
@@ -2761,7 +2829,7 @@ declare module '@polkadot/types/lookup' {
2761
2829
  readonly type: 'Propose' | 'Activate' | 'Update';
2762
2830
  }
2763
2831
 
2764
- /** @name PalletNotebookCall (223) */
2832
+ /** @name PalletNotebookCall (229) */
2765
2833
  interface PalletNotebookCall extends Enum {
2766
2834
  readonly isSubmit: boolean;
2767
2835
  readonly asSubmit: {
@@ -2774,13 +2842,13 @@ declare module '@polkadot/types/lookup' {
2774
2842
  readonly type: 'Submit' | 'Unlock';
2775
2843
  }
2776
2844
 
2777
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
2845
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
2778
2846
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2779
2847
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2780
2848
  readonly signature: U8aFixed;
2781
2849
  }
2782
2850
 
2783
- /** @name ArgonPrimitivesNotebookNotebookHeader (226) */
2851
+ /** @name ArgonPrimitivesNotebookNotebookHeader (232) */
2784
2852
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2785
2853
  readonly version: Compact<u16>;
2786
2854
  readonly notebookNumber: Compact<u32>;
@@ -2799,7 +2867,7 @@ declare module '@polkadot/types/lookup' {
2799
2867
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2800
2868
  }
2801
2869
 
2802
- /** @name ArgonPrimitivesNotebookChainTransfer (229) */
2870
+ /** @name ArgonPrimitivesNotebookChainTransfer (235) */
2803
2871
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2804
2872
  readonly isToMainchain: boolean;
2805
2873
  readonly asToMainchain: {
@@ -2813,13 +2881,13 @@ declare module '@polkadot/types/lookup' {
2813
2881
  readonly type: 'ToMainchain' | 'ToLocalchain';
2814
2882
  }
2815
2883
 
2816
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
2884
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
2817
2885
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2818
2886
  readonly notebookNumber: Compact<u32>;
2819
2887
  readonly accountUid: Compact<u32>;
2820
2888
  }
2821
2889
 
2822
- /** @name PalletLocalchainTransferCall (239) */
2890
+ /** @name PalletLocalchainTransferCall (244) */
2823
2891
  interface PalletLocalchainTransferCall extends Enum {
2824
2892
  readonly isSendToLocalchain: boolean;
2825
2893
  readonly asSendToLocalchain: {
@@ -2829,7 +2897,7 @@ declare module '@polkadot/types/lookup' {
2829
2897
  readonly type: 'SendToLocalchain';
2830
2898
  }
2831
2899
 
2832
- /** @name PalletBlockSealSpecCall (240) */
2900
+ /** @name PalletBlockSealSpecCall (245) */
2833
2901
  interface PalletBlockSealSpecCall extends Enum {
2834
2902
  readonly isConfigure: boolean;
2835
2903
  readonly asConfigure: {
@@ -2839,7 +2907,7 @@ declare module '@polkadot/types/lookup' {
2839
2907
  readonly type: 'Configure';
2840
2908
  }
2841
2909
 
2842
- /** @name PalletDomainsCall (241) */
2910
+ /** @name PalletDomainsCall (246) */
2843
2911
  interface PalletDomainsCall extends Enum {
2844
2912
  readonly isSetZoneRecord: boolean;
2845
2913
  readonly asSetZoneRecord: {
@@ -2849,11 +2917,12 @@ declare module '@polkadot/types/lookup' {
2849
2917
  readonly type: 'SetZoneRecord';
2850
2918
  }
2851
2919
 
2852
- /** @name PalletPriceIndexCall (242) */
2920
+ /** @name PalletPriceIndexCall (247) */
2853
2921
  interface PalletPriceIndexCall extends Enum {
2854
2922
  readonly isSubmit: boolean;
2855
2923
  readonly asSubmit: {
2856
2924
  readonly index: PalletPriceIndexPriceIndex;
2925
+ readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
2857
2926
  } & Struct;
2858
2927
  readonly isSetOperator: boolean;
2859
2928
  readonly asSetOperator: {
@@ -2862,7 +2931,7 @@ declare module '@polkadot/types/lookup' {
2862
2931
  readonly type: 'Submit' | 'SetOperator';
2863
2932
  }
2864
2933
 
2865
- /** @name PalletPriceIndexPriceIndex (243) */
2934
+ /** @name PalletPriceIndexPriceIndex (248) */
2866
2935
  interface PalletPriceIndexPriceIndex extends Struct {
2867
2936
  readonly btcUsdPrice: Compact<u128>;
2868
2937
  readonly argonotUsdPrice: u128;
@@ -2872,7 +2941,14 @@ declare module '@polkadot/types/lookup' {
2872
2941
  readonly tick: Compact<u64>;
2873
2942
  }
2874
2943
 
2875
- /** @name PalletGrandpaCall (244) */
2944
+ /** @name PalletPriceIndexEthereumPriceIndex (250) */
2945
+ interface PalletPriceIndexEthereumPriceIndex extends Struct {
2946
+ readonly ethereumUsdPrice: u128;
2947
+ readonly ethereumGasPriceWei: Compact<u128>;
2948
+ readonly tick: Compact<u64>;
2949
+ }
2950
+
2951
+ /** @name PalletGrandpaCall (251) */
2876
2952
  interface PalletGrandpaCall extends Enum {
2877
2953
  readonly isReportEquivocation: boolean;
2878
2954
  readonly asReportEquivocation: {
@@ -2892,13 +2968,13 @@ declare module '@polkadot/types/lookup' {
2892
2968
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2893
2969
  }
2894
2970
 
2895
- /** @name SpConsensusGrandpaEquivocationProof (245) */
2971
+ /** @name SpConsensusGrandpaEquivocationProof (252) */
2896
2972
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2897
2973
  readonly setId: u64;
2898
2974
  readonly equivocation: SpConsensusGrandpaEquivocation;
2899
2975
  }
2900
2976
 
2901
- /** @name SpConsensusGrandpaEquivocation (246) */
2977
+ /** @name SpConsensusGrandpaEquivocation (253) */
2902
2978
  interface SpConsensusGrandpaEquivocation extends Enum {
2903
2979
  readonly isPrevote: boolean;
2904
2980
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2907,7 +2983,7 @@ declare module '@polkadot/types/lookup' {
2907
2983
  readonly type: 'Prevote' | 'Precommit';
2908
2984
  }
2909
2985
 
2910
- /** @name FinalityGrandpaEquivocationPrevote (247) */
2986
+ /** @name FinalityGrandpaEquivocationPrevote (254) */
2911
2987
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2912
2988
  readonly roundNumber: u64;
2913
2989
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2915,16 +2991,16 @@ declare module '@polkadot/types/lookup' {
2915
2991
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2916
2992
  }
2917
2993
 
2918
- /** @name FinalityGrandpaPrevote (248) */
2994
+ /** @name FinalityGrandpaPrevote (255) */
2919
2995
  interface FinalityGrandpaPrevote extends Struct {
2920
2996
  readonly targetHash: H256;
2921
2997
  readonly targetNumber: u32;
2922
2998
  }
2923
2999
 
2924
- /** @name SpConsensusGrandpaAppSignature (249) */
3000
+ /** @name SpConsensusGrandpaAppSignature (256) */
2925
3001
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2926
3002
 
2927
- /** @name FinalityGrandpaEquivocationPrecommit (251) */
3003
+ /** @name FinalityGrandpaEquivocationPrecommit (258) */
2928
3004
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2929
3005
  readonly roundNumber: u64;
2930
3006
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2932,16 +3008,16 @@ declare module '@polkadot/types/lookup' {
2932
3008
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2933
3009
  }
2934
3010
 
2935
- /** @name FinalityGrandpaPrecommit (252) */
3011
+ /** @name FinalityGrandpaPrecommit (259) */
2936
3012
  interface FinalityGrandpaPrecommit extends Struct {
2937
3013
  readonly targetHash: H256;
2938
3014
  readonly targetNumber: u32;
2939
3015
  }
2940
3016
 
2941
- /** @name SpCoreVoid (254) */
3017
+ /** @name SpCoreVoid (261) */
2942
3018
  type SpCoreVoid = Null;
2943
3019
 
2944
- /** @name PalletBlockSealCall (255) */
3020
+ /** @name PalletBlockSealCall (262) */
2945
3021
  interface PalletBlockSealCall extends Enum {
2946
3022
  readonly isApply: boolean;
2947
3023
  readonly asApply: {
@@ -2950,7 +3026,7 @@ declare module '@polkadot/types/lookup' {
2950
3026
  readonly type: 'Apply';
2951
3027
  }
2952
3028
 
2953
- /** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
3029
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
2954
3030
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
2955
3031
  readonly isVote: boolean;
2956
3032
  readonly asVote: {
@@ -2965,14 +3041,14 @@ declare module '@polkadot/types/lookup' {
2965
3041
  readonly type: 'Vote' | 'Compute';
2966
3042
  }
2967
3043
 
2968
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
3044
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
2969
3045
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
2970
3046
  readonly proof: Vec<H256>;
2971
3047
  readonly numberOfLeaves: Compact<u32>;
2972
3048
  readonly leafIndex: Compact<u32>;
2973
3049
  }
2974
3050
 
2975
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
3051
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
2976
3052
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
2977
3053
  readonly accountId: AccountId32;
2978
3054
  readonly blockHash: H256;
@@ -2983,20 +3059,7 @@ declare module '@polkadot/types/lookup' {
2983
3059
  readonly tick: Compact<u64>;
2984
3060
  }
2985
3061
 
2986
- /** @name SpRuntimeMultiSignature (260) */
2987
- interface SpRuntimeMultiSignature extends Enum {
2988
- readonly isEd25519: boolean;
2989
- readonly asEd25519: U8aFixed;
2990
- readonly isSr25519: boolean;
2991
- readonly asSr25519: U8aFixed;
2992
- readonly isEcdsa: boolean;
2993
- readonly asEcdsa: U8aFixed;
2994
- readonly isEth: boolean;
2995
- readonly asEth: U8aFixed;
2996
- readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2997
- }
2998
-
2999
- /** @name PalletBlockRewardsCall (262) */
3062
+ /** @name PalletBlockRewardsCall (267) */
3000
3063
  interface PalletBlockRewardsCall extends Enum {
3001
3064
  readonly isSetBlockRewardsPaused: boolean;
3002
3065
  readonly asSetBlockRewardsPaused: {
@@ -3009,10 +3072,10 @@ declare module '@polkadot/types/lookup' {
3009
3072
  readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
3010
3073
  }
3011
3074
 
3012
- /** @name PalletMintCall (263) */
3075
+ /** @name PalletMintCall (268) */
3013
3076
  type PalletMintCall = Null;
3014
3077
 
3015
- /** @name PalletBalancesCall (264) */
3078
+ /** @name PalletBalancesCall (269) */
3016
3079
  interface PalletBalancesCall extends Enum {
3017
3080
  readonly isTransferAllowDeath: boolean;
3018
3081
  readonly asTransferAllowDeath: {
@@ -3071,14 +3134,14 @@ declare module '@polkadot/types/lookup' {
3071
3134
  | 'Burn';
3072
3135
  }
3073
3136
 
3074
- /** @name PalletBalancesAdjustmentDirection (265) */
3137
+ /** @name PalletBalancesAdjustmentDirection (270) */
3075
3138
  interface PalletBalancesAdjustmentDirection extends Enum {
3076
3139
  readonly isIncrease: boolean;
3077
3140
  readonly isDecrease: boolean;
3078
3141
  readonly type: 'Increase' | 'Decrease';
3079
3142
  }
3080
3143
 
3081
- /** @name PalletTxPauseCall (267) */
3144
+ /** @name PalletTxPauseCall (272) */
3082
3145
  interface PalletTxPauseCall extends Enum {
3083
3146
  readonly isPause: boolean;
3084
3147
  readonly asPause: {
@@ -3091,7 +3154,7 @@ declare module '@polkadot/types/lookup' {
3091
3154
  readonly type: 'Pause' | 'Unpause';
3092
3155
  }
3093
3156
 
3094
- /** @name PalletUtilityCall (268) */
3157
+ /** @name PalletUtilityCall (273) */
3095
3158
  interface PalletUtilityCall extends Enum {
3096
3159
  readonly isBatch: boolean;
3097
3160
  readonly asBatch: {
@@ -3141,7 +3204,7 @@ declare module '@polkadot/types/lookup' {
3141
3204
  | 'DispatchAsFallible';
3142
3205
  }
3143
3206
 
3144
- /** @name PalletSudoCall (270) */
3207
+ /** @name PalletSudoCall (275) */
3145
3208
  interface PalletSudoCall extends Enum {
3146
3209
  readonly isSudo: boolean;
3147
3210
  readonly asSudo: {
@@ -3165,7 +3228,7 @@ declare module '@polkadot/types/lookup' {
3165
3228
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
3166
3229
  }
3167
3230
 
3168
- /** @name PalletTreasuryCall (271) */
3231
+ /** @name PalletTreasuryCall (276) */
3169
3232
  interface PalletTreasuryCall extends Enum {
3170
3233
  readonly isBuyBonds: boolean;
3171
3234
  readonly asBuyBonds: {
@@ -3181,23 +3244,43 @@ declare module '@polkadot/types/lookup' {
3181
3244
  readonly asBuyArgonotBonds: {
3182
3245
  readonly bonds: u32;
3183
3246
  } & Struct;
3184
- readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
3247
+ readonly isSetBondLotAsBackfill: boolean;
3248
+ readonly asSetBondLotAsBackfill: {
3249
+ readonly bondLotId: u64;
3250
+ readonly isBackfill: bool;
3251
+ } & Struct;
3252
+ readonly isSetBackfillBondsReserved: boolean;
3253
+ readonly asSetBackfillBondsReserved: {
3254
+ readonly vaultId: u32;
3255
+ readonly backfillBondsReserved: u32;
3256
+ } & Struct;
3257
+ readonly type:
3258
+ | 'BuyBonds'
3259
+ | 'LiquidateBondLot'
3260
+ | 'BuyArgonotBonds'
3261
+ | 'SetBondLotAsBackfill'
3262
+ | 'SetBackfillBondsReserved';
3185
3263
  }
3186
3264
 
3187
- /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
3265
+ /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
3188
3266
  interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
3189
3267
  readonly vaultId: Compact<u32>;
3190
3268
  readonly beneficiary: AccountId32;
3191
3269
  readonly expiresAtFrame: Compact<u64>;
3270
+ readonly backfillBondsToUnreserve: Compact<u32>;
3192
3271
  readonly signature: SpRuntimeMultiSignature;
3193
3272
  }
3194
3273
 
3195
- /** @name PalletOperationalAccountsCall (274) */
3274
+ /** @name PalletOperationalAccountsCall (279) */
3196
3275
  interface PalletOperationalAccountsCall extends Enum {
3197
3276
  readonly isRegister: boolean;
3198
3277
  readonly asRegister: {
3199
3278
  readonly registration: PalletOperationalAccountsRegistration;
3200
3279
  } & Struct;
3280
+ readonly isSetName: boolean;
3281
+ readonly asSetName: {
3282
+ readonly name: Option<Bytes>;
3283
+ } & Struct;
3201
3284
  readonly isSetRewardConfig: boolean;
3202
3285
  readonly asSetRewardConfig: {
3203
3286
  readonly operationalCertificationReward: u128;
@@ -3209,11 +3292,6 @@ declare module '@polkadot/types/lookup' {
3209
3292
  readonly patch: PalletOperationalAccountsOperationalProgressPatch;
3210
3293
  readonly updateOperationalProgress: bool;
3211
3294
  } & Struct;
3212
- readonly isSetEncryptedServerForDownstreamAccount: boolean;
3213
- readonly asSetEncryptedServerForDownstreamAccount: {
3214
- readonly downstreamAccount: AccountId32;
3215
- readonly encryptedServer: Bytes;
3216
- } & Struct;
3217
3295
  readonly isActivate: boolean;
3218
3296
  readonly isClaimRewards: boolean;
3219
3297
  readonly asClaimRewards: {
@@ -3221,21 +3299,21 @@ declare module '@polkadot/types/lookup' {
3221
3299
  } & Struct;
3222
3300
  readonly type:
3223
3301
  | 'Register'
3302
+ | 'SetName'
3224
3303
  | 'SetRewardConfig'
3225
3304
  | 'ForceSetProgress'
3226
- | 'SetEncryptedServerForDownstreamAccount'
3227
3305
  | 'Activate'
3228
3306
  | 'ClaimRewards';
3229
3307
  }
3230
3308
 
3231
- /** @name PalletOperationalAccountsRegistration (275) */
3309
+ /** @name PalletOperationalAccountsRegistration (280) */
3232
3310
  interface PalletOperationalAccountsRegistration extends Enum {
3233
3311
  readonly isV1: boolean;
3234
3312
  readonly asV1: PalletOperationalAccountsRegistrationV1;
3235
3313
  readonly type: 'V1';
3236
3314
  }
3237
3315
 
3238
- /** @name PalletOperationalAccountsRegistrationV1 (276) */
3316
+ /** @name PalletOperationalAccountsRegistrationV1 (281) */
3239
3317
  interface PalletOperationalAccountsRegistrationV1 extends Struct {
3240
3318
  readonly operationalAccount: AccountId32;
3241
3319
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
@@ -3247,21 +3325,21 @@ declare module '@polkadot/types/lookup' {
3247
3325
  readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
3248
3326
  }
3249
3327
 
3250
- /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
3328
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
3251
3329
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
3252
3330
 
3253
- /** @name PalletOperationalAccountsAccountOwnershipProof (278) */
3331
+ /** @name PalletOperationalAccountsAccountOwnershipProof (283) */
3254
3332
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
3255
3333
  readonly signature: SpRuntimeMultiSignature;
3256
3334
  }
3257
3335
 
3258
- /** @name PalletOperationalAccountsUpstreamAccessProof (280) */
3336
+ /** @name PalletOperationalAccountsUpstreamAccessProof (285) */
3259
3337
  interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
3260
3338
  readonly upstreamAccount: AccountId32;
3261
3339
  readonly signature: SpRuntimeMultiSignature;
3262
3340
  }
3263
3341
 
3264
- /** @name PalletOperationalAccountsOperationalProgressPatch (281) */
3342
+ /** @name PalletOperationalAccountsOperationalProgressPatch (288) */
3265
3343
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
3266
3344
  readonly uniswapArgonTransfersInAmount: Option<u128>;
3267
3345
  readonly accountBitcoinAmount: Option<u128>;
@@ -3271,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
3271
3349
  readonly miningSeatCount: Option<u32>;
3272
3350
  }
3273
3351
 
3274
- /** @name PalletEthereumVerifierCall (283) */
3352
+ /** @name PalletEthereumVerifierCall (290) */
3275
3353
  interface PalletEthereumVerifierCall extends Enum {
3276
3354
  readonly isForceCheckpoint: boolean;
3277
3355
  readonly asForceCheckpoint: {
@@ -3299,7 +3377,7 @@ declare module '@polkadot/types/lookup' {
3299
3377
  | 'SetOperatingMode';
3300
3378
  }
3301
3379
 
3302
- /** @name PalletEthereumVerifierCheckpointUpdate (284) */
3380
+ /** @name PalletEthereumVerifierCheckpointUpdate (291) */
3303
3381
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3304
3382
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3305
3383
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -3308,7 +3386,7 @@ declare module '@polkadot/types/lookup' {
3308
3386
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3309
3387
  }
3310
3388
 
3311
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
3389
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (292) */
3312
3390
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3313
3391
  readonly slot: u64;
3314
3392
  readonly proposerIndex: u64;
@@ -3317,22 +3395,22 @@ declare module '@polkadot/types/lookup' {
3317
3395
  readonly bodyRoot: H256;
3318
3396
  }
3319
3397
 
3320
- /** @name PalletEthereumVerifierSyncCommittee (286) */
3398
+ /** @name PalletEthereumVerifierSyncCommittee (293) */
3321
3399
  interface PalletEthereumVerifierSyncCommittee extends Struct {
3322
3400
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3323
3401
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3324
3402
  }
3325
3403
 
3326
- /** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
3404
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (295) */
3327
3405
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3328
3406
 
3329
- /** @name PalletEthereumVerifierExecutionHeaderProof (292) */
3407
+ /** @name PalletEthereumVerifierExecutionHeaderProof (299) */
3330
3408
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3331
3409
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3332
3410
  readonly executionBranch: Vec<H256>;
3333
3411
  }
3334
3412
 
3335
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
3413
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (300) */
3336
3414
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3337
3415
  readonly isCapella: boolean;
3338
3416
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3341,7 +3419,7 @@ declare module '@polkadot/types/lookup' {
3341
3419
  readonly type: 'Capella' | 'Deneb';
3342
3420
  }
3343
3421
 
3344
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
3422
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (301) */
3345
3423
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3346
3424
  readonly parentHash: H256;
3347
3425
  readonly feeRecipient: H160;
@@ -3360,7 +3438,7 @@ declare module '@polkadot/types/lookup' {
3360
3438
  readonly withdrawalsRoot: H256;
3361
3439
  }
3362
3440
 
3363
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
3441
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (302) */
3364
3442
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3365
3443
  readonly parentHash: H256;
3366
3444
  readonly feeRecipient: H160;
@@ -3381,7 +3459,7 @@ declare module '@polkadot/types/lookup' {
3381
3459
  readonly excessBlobGas: u64;
3382
3460
  }
3383
3461
 
3384
- /** @name PalletEthereumVerifierForkVersions (296) */
3462
+ /** @name PalletEthereumVerifierForkVersions (303) */
3385
3463
  interface PalletEthereumVerifierForkVersions extends Struct {
3386
3464
  readonly genesis: PalletEthereumVerifierFork;
3387
3465
  readonly altair: PalletEthereumVerifierFork;
@@ -3392,13 +3470,13 @@ declare module '@polkadot/types/lookup' {
3392
3470
  readonly fulu: PalletEthereumVerifierFork;
3393
3471
  }
3394
3472
 
3395
- /** @name PalletEthereumVerifierFork (297) */
3473
+ /** @name PalletEthereumVerifierFork (304) */
3396
3474
  interface PalletEthereumVerifierFork extends Struct {
3397
3475
  readonly version: U8aFixed;
3398
3476
  readonly epoch: Compact<u64>;
3399
3477
  }
3400
3478
 
3401
- /** @name PalletEthereumVerifierUpdate (298) */
3479
+ /** @name PalletEthereumVerifierUpdate (305) */
3402
3480
  interface PalletEthereumVerifierUpdate extends Struct {
3403
3481
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3404
3482
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -3409,22 +3487,22 @@ declare module '@polkadot/types/lookup' {
3409
3487
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3410
3488
  }
3411
3489
 
3412
- /** @name PalletEthereumVerifierSyncAggregate (299) */
3490
+ /** @name PalletEthereumVerifierSyncAggregate (306) */
3413
3491
  interface PalletEthereumVerifierSyncAggregate extends Struct {
3414
3492
  readonly syncCommitteeBits: Bytes;
3415
3493
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3416
3494
  }
3417
3495
 
3418
- /** @name SnowbridgeBeaconPrimitivesSignature (301) */
3496
+ /** @name SnowbridgeBeaconPrimitivesSignature (308) */
3419
3497
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3420
3498
 
3421
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
3499
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (311) */
3422
3500
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3423
3501
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3424
3502
  readonly nextSyncCommitteeBranch: Vec<H256>;
3425
3503
  }
3426
3504
 
3427
- /** @name PalletCrosschainTransferCall (305) */
3505
+ /** @name PalletCrosschainTransferCall (312) */
3428
3506
  interface PalletCrosschainTransferCall extends Enum {
3429
3507
  readonly isSetChainConfig: boolean;
3430
3508
  readonly asSetChainConfig: {
@@ -3514,7 +3592,7 @@ declare module '@polkadot/types/lookup' {
3514
3592
  | 'CollateralizeTransfer';
3515
3593
  }
3516
3594
 
3517
- /** @name PalletCrosschainTransferChainConfig (306) */
3595
+ /** @name PalletCrosschainTransferChainConfig (313) */
3518
3596
  interface PalletCrosschainTransferChainConfig extends Enum {
3519
3597
  readonly isEvm: boolean;
3520
3598
  readonly asEvm: {
@@ -3526,7 +3604,7 @@ declare module '@polkadot/types/lookup' {
3526
3604
  readonly type: 'Evm';
3527
3605
  }
3528
3606
 
3529
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
3607
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (315) */
3530
3608
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3531
3609
  readonly activationGasCost: Compact<u128>;
3532
3610
  readonly signatureGasCost: Compact<u128>;
@@ -3534,56 +3612,77 @@ declare module '@polkadot/types/lookup' {
3534
3612
  readonly estimatedMicrogonsPerEth: u128;
3535
3613
  }
3536
3614
 
3537
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
3615
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (318) */
3538
3616
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3539
3617
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3540
3618
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3541
3619
  }
3542
3620
 
3543
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
3621
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (319) */
3544
3622
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3545
3623
  readonly anchorBlockHash: H256;
3546
3624
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3547
3625
  }
3548
3626
 
3549
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
3627
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (321) */
3550
3628
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3551
3629
  readonly rlp: Bytes;
3552
3630
  }
3553
3631
 
3554
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
3632
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (325) */
3555
3633
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3556
3634
  readonly targetBlockNumber: Compact<u64>;
3557
3635
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3558
3636
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3559
3637
  }
3560
3638
 
3561
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
3639
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (326) */
3562
3640
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3563
3641
  readonly nodes: Vec<Bytes>;
3564
3642
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3565
3643
  }
3566
3644
 
3567
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
3645
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (330) */
3568
3646
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3569
3647
  readonly transactionIndex: Compact<u64>;
3570
3648
  readonly nodeIndexes: Vec<u16>;
3571
3649
  }
3572
3650
 
3573
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
3651
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (335) */
3574
3652
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3575
3653
  readonly transactionIndex: Compact<u64>;
3576
3654
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3577
3655
  }
3578
3656
 
3579
- /** @name ArgonPrimitivesEthereumEthereumLog (329) */
3657
+ /** @name ArgonPrimitivesEthereumEthereumLog (336) */
3580
3658
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3581
3659
  readonly address: H160;
3582
3660
  readonly topics: Vec<H256>;
3583
3661
  readonly data: Bytes;
3584
3662
  }
3585
3663
 
3586
- /** @name PalletMultisigError (335) */
3664
+ /** @name PalletBootstrapCall (341) */
3665
+ interface PalletBootstrapCall extends Enum {
3666
+ readonly isSetRecoveryPayload: boolean;
3667
+ readonly asSetRecoveryPayload: {
3668
+ readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
3669
+ readonly recoveryProof: PalletBootstrapRecoveryProof;
3670
+ readonly encryptedRecoveryPayload: Bytes;
3671
+ } & Struct;
3672
+ readonly isSetEndpoint: boolean;
3673
+ readonly asSetEndpoint: {
3674
+ readonly endpointPubkey: PalletBootstrapEndpointPubkey;
3675
+ readonly encryptedEndpoint: Bytes;
3676
+ } & Struct;
3677
+ readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
3678
+ }
3679
+
3680
+ /** @name PalletBootstrapRecoveryProof (342) */
3681
+ interface PalletBootstrapRecoveryProof extends Struct {
3682
+ readonly signature: U8aFixed;
3683
+ }
3684
+
3685
+ /** @name PalletMultisigError (344) */
3587
3686
  interface PalletMultisigError extends Enum {
3588
3687
  readonly isMinimumThreshold: boolean;
3589
3688
  readonly isAlreadyApproved: boolean;
@@ -3616,21 +3715,21 @@ declare module '@polkadot/types/lookup' {
3616
3715
  | 'AlreadyStored';
3617
3716
  }
3618
3717
 
3619
- /** @name PalletProxyProxyDefinition (338) */
3718
+ /** @name PalletProxyProxyDefinition (347) */
3620
3719
  interface PalletProxyProxyDefinition extends Struct {
3621
3720
  readonly delegate: AccountId32;
3622
3721
  readonly proxyType: ArgonRuntimeProxyType;
3623
3722
  readonly delay: u32;
3624
3723
  }
3625
3724
 
3626
- /** @name PalletProxyAnnouncement (342) */
3725
+ /** @name PalletProxyAnnouncement (351) */
3627
3726
  interface PalletProxyAnnouncement extends Struct {
3628
3727
  readonly real: AccountId32;
3629
3728
  readonly callHash: H256;
3630
3729
  readonly height: u32;
3631
3730
  }
3632
3731
 
3633
- /** @name PalletProxyError (344) */
3732
+ /** @name PalletProxyError (353) */
3634
3733
  interface PalletProxyError extends Enum {
3635
3734
  readonly isTooMany: boolean;
3636
3735
  readonly isNotFound: boolean;
@@ -3651,16 +3750,16 @@ declare module '@polkadot/types/lookup' {
3651
3750
  | 'NoSelfProxy';
3652
3751
  }
3653
3752
 
3654
- /** @name ArgonPrimitivesTickTicker (345) */
3753
+ /** @name ArgonPrimitivesTickTicker (354) */
3655
3754
  interface ArgonPrimitivesTickTicker extends Struct {
3656
3755
  readonly tickDurationMillis: Compact<u64>;
3657
3756
  readonly channelHoldExpirationTicks: Compact<u64>;
3658
3757
  }
3659
3758
 
3660
- /** @name PalletTicksError (347) */
3759
+ /** @name PalletTicksError (356) */
3661
3760
  type PalletTicksError = Null;
3662
3761
 
3663
- /** @name PalletMiningSlotMinerNonceScoring (350) */
3762
+ /** @name PalletMiningSlotMinerNonceScoring (359) */
3664
3763
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3665
3764
  readonly nonce: U256;
3666
3765
  readonly lastWinBlock: Option<u32>;
@@ -3668,7 +3767,7 @@ declare module '@polkadot/types/lookup' {
3668
3767
  readonly frameStartBlocksWonSurplus: i16;
3669
3768
  }
3670
3769
 
3671
- /** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
3770
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (371) */
3672
3771
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3673
3772
  readonly bidsCount: u32;
3674
3773
  readonly bidAmountMin: u128;
@@ -3676,14 +3775,14 @@ declare module '@polkadot/types/lookup' {
3676
3775
  readonly bidAmountSum: u128;
3677
3776
  }
3678
3777
 
3679
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
3778
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (375) */
3680
3779
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3681
3780
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3682
3781
  readonly ticksBetweenSlots: Compact<u64>;
3683
3782
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3684
3783
  }
3685
3784
 
3686
- /** @name PalletMiningSlotError (376) */
3785
+ /** @name PalletMiningSlotError (385) */
3687
3786
  interface PalletMiningSlotError extends Enum {
3688
3787
  readonly isSlotNotTakingBids: boolean;
3689
3788
  readonly isTooManyBlockRegistrants: boolean;
@@ -3710,7 +3809,7 @@ declare module '@polkadot/types/lookup' {
3710
3809
  | 'UnrecoverableHold';
3711
3810
  }
3712
3811
 
3713
- /** @name ArgonPrimitivesBitcoinUtxoValue (377) */
3812
+ /** @name ArgonPrimitivesBitcoinUtxoValue (386) */
3714
3813
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3715
3814
  readonly utxoId: u64;
3716
3815
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3719,7 +3818,7 @@ declare module '@polkadot/types/lookup' {
3719
3818
  readonly watchForSpentUntilHeight: Compact<u64>;
3720
3819
  }
3721
3820
 
3722
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
3821
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
3723
3822
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3724
3823
  readonly isP2wsh: boolean;
3725
3824
  readonly asP2wsh: {
@@ -3728,7 +3827,7 @@ declare module '@polkadot/types/lookup' {
3728
3827
  readonly type: 'P2wsh';
3729
3828
  }
3730
3829
 
3731
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
3830
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (396) */
3732
3831
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3733
3832
  readonly isBitcoin: boolean;
3734
3833
  readonly isTestnet: boolean;
@@ -3737,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
3737
3836
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3738
3837
  }
3739
3838
 
3740
- /** @name PalletBitcoinUtxosError (388) */
3839
+ /** @name PalletBitcoinUtxosError (397) */
3741
3840
  interface PalletBitcoinUtxosError extends Enum {
3742
3841
  readonly isNoPermissions: boolean;
3743
3842
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3772,18 +3871,19 @@ declare module '@polkadot/types/lookup' {
3772
3871
  | 'LockAlreadyFunded';
3773
3872
  }
3774
3873
 
3775
- /** @name ArgonPrimitivesVault (389) */
3874
+ /** @name ArgonPrimitivesVault (398) */
3776
3875
  interface ArgonPrimitivesVault extends Struct {
3777
3876
  readonly operatorAccountId: AccountId32;
3778
3877
  readonly delegateAccountId: Option<AccountId32>;
3779
- readonly name: Option<Bytes>;
3780
- readonly lastNameChangeTick: Option<u64>;
3781
3878
  readonly securitization: Compact<u128>;
3782
3879
  readonly securitizationTarget: Compact<u128>;
3783
3880
  readonly securitizationLocked: Compact<u128>;
3881
+ readonly backfillSecuritizationLocked: Compact<u128>;
3882
+ readonly backfillSecuritizationReserved: Compact<u128>;
3784
3883
  readonly securitizationPendingActivation: Compact<u128>;
3785
3884
  readonly lockedSatoshis: Compact<u64>;
3786
3885
  readonly securitizedSatoshis: Compact<u64>;
3886
+ readonly backfillSecuritizedSatoshis: Compact<u64>;
3787
3887
  readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
3788
3888
  readonly securitizationRatio: Compact<u128>;
3789
3889
  readonly isClosed: bool;
@@ -3793,13 +3893,13 @@ declare module '@polkadot/types/lookup' {
3793
3893
  readonly operationalMinimumReleaseTick: Option<u64>;
3794
3894
  }
3795
3895
 
3796
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
3896
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (405) */
3797
3897
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3798
3898
  readonly committedMicronots: Compact<u128>;
3799
3899
  readonly encumberedMicronots: Compact<u128>;
3800
3900
  }
3801
3901
 
3802
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
3902
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (407) */
3803
3903
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3804
3904
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3805
3905
  readonly depth: Compact<u8>;
@@ -3809,14 +3909,14 @@ declare module '@polkadot/types/lookup' {
3809
3909
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3810
3910
  }
3811
3911
 
3812
- /** @name ArgonPrimitivesBitcoinNetworkKind (400) */
3912
+ /** @name ArgonPrimitivesBitcoinNetworkKind (409) */
3813
3913
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3814
3914
  readonly isMain: boolean;
3815
3915
  readonly isTest: boolean;
3816
3916
  readonly type: 'Main' | 'Test';
3817
3917
  }
3818
3918
 
3819
- /** @name PalletVaultsVaultFrameRevenue (409) */
3919
+ /** @name PalletVaultsVaultFrameRevenue (418) */
3820
3920
  interface PalletVaultsVaultFrameRevenue extends Struct {
3821
3921
  readonly frameId: Compact<u64>;
3822
3922
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3836,15 +3936,7 @@ declare module '@polkadot/types/lookup' {
3836
3936
  readonly uncollectedRevenue: Compact<u128>;
3837
3937
  }
3838
3938
 
3839
- /** @name PalletVaultsRecentCapacityDrop (412) */
3840
- interface PalletVaultsRecentCapacityDrop extends Struct {
3841
- readonly blockNumber: Compact<u32>;
3842
- readonly availableBeforeDrop: Compact<u128>;
3843
- readonly availableAfterDrop: Compact<u128>;
3844
- readonly noFeeFailuresUsed: Compact<u32>;
3845
- }
3846
-
3847
- /** @name PalletVaultsError (414) */
3939
+ /** @name PalletVaultsError (420) */
3848
3940
  interface PalletVaultsError extends Enum {
3849
3941
  readonly isNoMoreVaultIds: boolean;
3850
3942
  readonly isInsufficientFunds: boolean;
@@ -3873,7 +3965,6 @@ declare module '@polkadot/types/lookup' {
3873
3965
  readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
3874
3966
  readonly isFundingChangeAlreadyScheduled: boolean;
3875
3967
  readonly isInvalidBondSharingTerms: boolean;
3876
- readonly isInvalidVaultName: boolean;
3877
3968
  readonly isPendingCosignsBeforeCollect: boolean;
3878
3969
  readonly isPendingOrphanedUtxoCosignsBeforeCollect: boolean;
3879
3970
  readonly isOverdueCollectBlockersBeforeCollect: boolean;
@@ -3908,7 +3999,6 @@ declare module '@polkadot/types/lookup' {
3908
3999
  | 'UnableToGenerateVaultBitcoinPubkey'
3909
4000
  | 'FundingChangeAlreadyScheduled'
3910
4001
  | 'InvalidBondSharingTerms'
3911
- | 'InvalidVaultName'
3912
4002
  | 'PendingCosignsBeforeCollect'
3913
4003
  | 'PendingOrphanedUtxoCosignsBeforeCollect'
3914
4004
  | 'OverdueCollectBlockersBeforeCollect'
@@ -3917,7 +4007,7 @@ declare module '@polkadot/types/lookup' {
3917
4007
  | 'CommittedArgonotsBelowEncumberedBacking';
3918
4008
  }
3919
4009
 
3920
- /** @name PalletBitcoinLocksLockedBitcoin (415) */
4010
+ /** @name PalletBitcoinLocksLockedBitcoin (421) */
3921
4011
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
3922
4012
  readonly vaultId: Compact<u32>;
3923
4013
  readonly liquidityPromised: Compact<u128>;
@@ -3937,11 +4027,12 @@ declare module '@polkadot/types/lookup' {
3937
4027
  readonly createdAtHeight: Compact<u64>;
3938
4028
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
3939
4029
  readonly isFunded: bool;
4030
+ readonly isBackfill: bool;
3940
4031
  readonly fundHoldExtensions: BTreeMap<u64, u128>;
3941
4032
  readonly createdAtArgonBlock: Compact<u32>;
3942
4033
  }
3943
4034
 
3944
- /** @name PalletBitcoinLocksLockReleaseRequest (419) */
4035
+ /** @name PalletBitcoinLocksLockReleaseRequest (425) */
3945
4036
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3946
4037
  readonly utxoId: Compact<u64>;
3947
4038
  readonly vaultId: Compact<u32>;
@@ -3951,7 +4042,7 @@ declare module '@polkadot/types/lookup' {
3951
4042
  readonly redemptionAmount: Compact<u128>;
3952
4043
  }
3953
4044
 
3954
- /** @name PalletBitcoinLocksOrphanedUtxo (421) */
4045
+ /** @name PalletBitcoinLocksOrphanedUtxo (427) */
3955
4046
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3956
4047
  readonly utxoId: Compact<u64>;
3957
4048
  readonly vaultId: Compact<u32>;
@@ -3960,14 +4051,14 @@ declare module '@polkadot/types/lookup' {
3960
4051
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3961
4052
  }
3962
4053
 
3963
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
4054
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (429) */
3964
4055
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3965
4056
  readonly bitcoinNetworkFee: u64;
3966
4057
  readonly toScriptPubkey: Bytes;
3967
4058
  readonly createdAtArgonBlockNumber: u32;
3968
4059
  }
3969
4060
 
3970
- /** @name PalletBitcoinLocksError (430) */
4061
+ /** @name PalletBitcoinLocksError (436) */
3971
4062
  interface PalletBitcoinLocksError extends Enum {
3972
4063
  readonly isInsufficientFunds: boolean;
3973
4064
  readonly isInsufficientVaultFunds: boolean;
@@ -4001,6 +4092,13 @@ declare module '@polkadot/types/lookup' {
4001
4092
  readonly isLockPendingFunding: boolean;
4002
4093
  readonly isOverflowError: boolean;
4003
4094
  readonly isIneligibleMicrogonRateRequested: boolean;
4095
+ readonly isFeeCouponWrongVault: boolean;
4096
+ readonly isFeeCouponWrongChain: boolean;
4097
+ readonly isFeeCouponWrongAccount: boolean;
4098
+ readonly isFeeCouponExpired: boolean;
4099
+ readonly isInvalidFeeCouponSignature: boolean;
4100
+ readonly isFeeCouponAlreadyUsed: boolean;
4101
+ readonly isFeeCouponOnlyForInitialization: boolean;
4004
4102
  readonly isOrphanedUtxoFundingConflict: boolean;
4005
4103
  readonly isOrphanedUtxoReleaseRequested: boolean;
4006
4104
  readonly isFundingUtxoCannotBeReleased: boolean;
@@ -4037,13 +4135,20 @@ declare module '@polkadot/types/lookup' {
4037
4135
  | 'LockPendingFunding'
4038
4136
  | 'OverflowError'
4039
4137
  | 'IneligibleMicrogonRateRequested'
4138
+ | 'FeeCouponWrongVault'
4139
+ | 'FeeCouponWrongChain'
4140
+ | 'FeeCouponWrongAccount'
4141
+ | 'FeeCouponExpired'
4142
+ | 'InvalidFeeCouponSignature'
4143
+ | 'FeeCouponAlreadyUsed'
4144
+ | 'FeeCouponOnlyForInitialization'
4040
4145
  | 'OrphanedUtxoFundingConflict'
4041
4146
  | 'OrphanedUtxoReleaseRequested'
4042
4147
  | 'FundingUtxoCannotBeReleased'
4043
4148
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
4044
4149
  }
4045
4150
 
4046
- /** @name ArgonPrimitivesVaultVaultError (431) */
4151
+ /** @name ArgonPrimitivesVaultVaultError (437) */
4047
4152
  interface ArgonPrimitivesVaultVaultError extends Enum {
4048
4153
  readonly isVaultClosed: boolean;
4049
4154
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -4074,7 +4179,7 @@ declare module '@polkadot/types/lookup' {
4074
4179
  | 'CommittedArgonotsBelowEncumberedBacking';
4075
4180
  }
4076
4181
 
4077
- /** @name PalletNotariesError (443) */
4182
+ /** @name PalletNotariesError (449) */
4078
4183
  interface PalletNotariesError extends Enum {
4079
4184
  readonly isProposalNotFound: boolean;
4080
4185
  readonly isMaxNotariesExceeded: boolean;
@@ -4097,7 +4202,7 @@ declare module '@polkadot/types/lookup' {
4097
4202
  | 'InvalidNotary';
4098
4203
  }
4099
4204
 
4100
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
4205
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (453) */
4101
4206
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
4102
4207
  readonly notebookNumber: Compact<u32>;
4103
4208
  readonly tick: Compact<u64>;
@@ -4106,7 +4211,7 @@ declare module '@polkadot/types/lookup' {
4106
4211
  readonly parentSecret: Option<H256>;
4107
4212
  }
4108
4213
 
4109
- /** @name PalletNotebookError (450) */
4214
+ /** @name PalletNotebookError (456) */
4110
4215
  interface PalletNotebookError extends Enum {
4111
4216
  readonly isDuplicateNotebookNumber: boolean;
4112
4217
  readonly isMissingNotebookNumber: boolean;
@@ -4141,7 +4246,7 @@ declare module '@polkadot/types/lookup' {
4141
4246
  | 'InvalidNotebookSubmissionTick';
4142
4247
  }
4143
4248
 
4144
- /** @name PalletLocalchainTransferQueuedTransferOut (451) */
4249
+ /** @name PalletLocalchainTransferQueuedTransferOut (457) */
4145
4250
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
4146
4251
  readonly accountId: AccountId32;
4147
4252
  readonly amount: u128;
@@ -4149,10 +4254,10 @@ declare module '@polkadot/types/lookup' {
4149
4254
  readonly notaryId: u32;
4150
4255
  }
4151
4256
 
4152
- /** @name FrameSupportPalletId (453) */
4257
+ /** @name FrameSupportPalletId (459) */
4153
4258
  interface FrameSupportPalletId extends U8aFixed {}
4154
4259
 
4155
- /** @name PalletLocalchainTransferError (454) */
4260
+ /** @name PalletLocalchainTransferError (460) */
4156
4261
  interface PalletLocalchainTransferError extends Enum {
4157
4262
  readonly isMaxBlockTransfersExceeded: boolean;
4158
4263
  readonly isInsufficientFunds: boolean;
@@ -4173,7 +4278,7 @@ declare module '@polkadot/types/lookup' {
4173
4278
  | 'NoAvailableTransferId';
4174
4279
  }
4175
4280
 
4176
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
4281
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (464) */
4177
4282
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
4178
4283
  readonly notaryId: Compact<u32>;
4179
4284
  readonly notebookNumber: Compact<u32>;
@@ -4182,13 +4287,13 @@ declare module '@polkadot/types/lookup' {
4182
4287
  readonly blockVotingPower: Compact<u128>;
4183
4288
  }
4184
4289
 
4185
- /** @name PalletBlockSealSpecError (463) */
4290
+ /** @name PalletBlockSealSpecError (469) */
4186
4291
  interface PalletBlockSealSpecError extends Enum {
4187
4292
  readonly isMaxNotebooksAtTickExceeded: boolean;
4188
4293
  readonly type: 'MaxNotebooksAtTickExceeded';
4189
4294
  }
4190
4295
 
4191
- /** @name PalletDomainsError (465) */
4296
+ /** @name PalletDomainsError (471) */
4192
4297
  interface PalletDomainsError extends Enum {
4193
4298
  readonly isDomainNotRegistered: boolean;
4194
4299
  readonly isNotDomainOwner: boolean;
@@ -4203,34 +4308,43 @@ declare module '@polkadot/types/lookup' {
4203
4308
  | 'AccountDecodingError';
4204
4309
  }
4205
4310
 
4206
- /** @name PalletPriceIndexCpiMeasurementBucket (467) */
4311
+ /** @name PalletPriceIndexEthereumPriceFrameAccumulator (473) */
4312
+ interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
4313
+ readonly totalUsdPrice: u128;
4314
+ readonly totalWeiPerGas: Compact<u128>;
4315
+ readonly sampleCount: Compact<u32>;
4316
+ }
4317
+
4318
+ /** @name PalletPriceIndexCpiMeasurementBucket (478) */
4207
4319
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
4208
4320
  readonly tickRange: ITuple<[u64, u64]>;
4209
4321
  readonly totalCpi: i128;
4210
4322
  readonly measurementsCount: u32;
4211
4323
  }
4212
4324
 
4213
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
4325
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (482) */
4214
4326
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
4215
4327
  readonly frameId: Compact<u64>;
4216
4328
  readonly totalMicrogonsPerArgonot: Compact<u128>;
4217
4329
  readonly sampleCount: Compact<u32>;
4218
4330
  }
4219
4331
 
4220
- /** @name PalletPriceIndexError (472) */
4332
+ /** @name PalletPriceIndexError (483) */
4221
4333
  interface PalletPriceIndexError extends Enum {
4222
4334
  readonly isNotAuthorizedOperator: boolean;
4223
4335
  readonly isMissingValue: boolean;
4224
4336
  readonly isPricesTooOld: boolean;
4225
4337
  readonly isMaxPriceChangePerTickExceeded: boolean;
4338
+ readonly isInvalidEthereumPrices: boolean;
4226
4339
  readonly type:
4227
4340
  | 'NotAuthorizedOperator'
4228
4341
  | 'MissingValue'
4229
4342
  | 'PricesTooOld'
4230
- | 'MaxPriceChangePerTickExceeded';
4343
+ | 'MaxPriceChangePerTickExceeded'
4344
+ | 'InvalidEthereumPrices';
4231
4345
  }
4232
4346
 
4233
- /** @name PalletGrandpaStoredState (473) */
4347
+ /** @name PalletGrandpaStoredState (484) */
4234
4348
  interface PalletGrandpaStoredState extends Enum {
4235
4349
  readonly isLive: boolean;
4236
4350
  readonly isPendingPause: boolean;
@@ -4247,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
4247
4361
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4248
4362
  }
4249
4363
 
4250
- /** @name PalletGrandpaStoredPendingChange (474) */
4364
+ /** @name PalletGrandpaStoredPendingChange (485) */
4251
4365
  interface PalletGrandpaStoredPendingChange extends Struct {
4252
4366
  readonly scheduledAt: u32;
4253
4367
  readonly delay: u32;
@@ -4255,7 +4369,7 @@ declare module '@polkadot/types/lookup' {
4255
4369
  readonly forced: Option<u32>;
4256
4370
  }
4257
4371
 
4258
- /** @name PalletGrandpaError (476) */
4372
+ /** @name PalletGrandpaError (487) */
4259
4373
  interface PalletGrandpaError extends Enum {
4260
4374
  readonly isPauseFailed: boolean;
4261
4375
  readonly isResumeFailed: boolean;
@@ -4274,14 +4388,14 @@ declare module '@polkadot/types/lookup' {
4274
4388
  | 'DuplicateOffenceReport';
4275
4389
  }
4276
4390
 
4277
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
4391
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (488) */
4278
4392
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
4279
4393
  readonly blockAuthorAccountId: AccountId32;
4280
4394
  readonly blockVoteRewardsAccount: Option<AccountId32>;
4281
4395
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
4282
4396
  }
4283
4397
 
4284
- /** @name PalletBlockSealError (479) */
4398
+ /** @name PalletBlockSealError (490) */
4285
4399
  interface PalletBlockSealError extends Enum {
4286
4400
  readonly isInvalidVoteSealStrength: boolean;
4287
4401
  readonly isInvalidSubmitter: boolean;
@@ -4328,10 +4442,10 @@ declare module '@polkadot/types/lookup' {
4328
4442
  | 'DuplicateVoteBlockAtTick';
4329
4443
  }
4330
4444
 
4331
- /** @name PalletBlockRewardsError (483) */
4445
+ /** @name PalletBlockRewardsError (494) */
4332
4446
  type PalletBlockRewardsError = Null;
4333
4447
 
4334
- /** @name PalletMintPendingMintUtxo (484) */
4448
+ /** @name PalletMintPendingMintUtxo (495) */
4335
4449
  interface PalletMintPendingMintUtxo extends Struct {
4336
4450
  readonly utxoId: Compact<u64>;
4337
4451
  readonly accountId: AccountId32;
@@ -4339,34 +4453,34 @@ declare module '@polkadot/types/lookup' {
4339
4453
  readonly maxAmountPerFrame: Compact<u128>;
4340
4454
  }
4341
4455
 
4342
- /** @name PalletMintMintQueueCursor (486) */
4456
+ /** @name PalletMintMintQueueCursor (497) */
4343
4457
  interface PalletMintMintQueueCursor extends Struct {
4344
4458
  readonly payoutStartIndex: Compact<u64>;
4345
4459
  readonly payoutCursorIndex: Compact<u64>;
4346
4460
  readonly payoutCursorFrameId: Option<u64>;
4347
4461
  }
4348
4462
 
4349
- /** @name PalletMintMintAction (489) */
4463
+ /** @name PalletMintMintAction (500) */
4350
4464
  interface PalletMintMintAction extends Struct {
4351
4465
  readonly argonBurned: u128;
4352
4466
  readonly argonMinted: u128;
4353
4467
  readonly bitcoinMinted: u128;
4354
4468
  }
4355
4469
 
4356
- /** @name PalletMintError (491) */
4470
+ /** @name PalletMintError (502) */
4357
4471
  interface PalletMintError extends Enum {
4358
4472
  readonly isTooManyPendingMints: boolean;
4359
4473
  readonly type: 'TooManyPendingMints';
4360
4474
  }
4361
4475
 
4362
- /** @name PalletBalancesBalanceLock (493) */
4476
+ /** @name PalletBalancesBalanceLock (504) */
4363
4477
  interface PalletBalancesBalanceLock extends Struct {
4364
4478
  readonly id: U8aFixed;
4365
4479
  readonly amount: u128;
4366
4480
  readonly reasons: PalletBalancesReasons;
4367
4481
  }
4368
4482
 
4369
- /** @name PalletBalancesReasons (494) */
4483
+ /** @name PalletBalancesReasons (505) */
4370
4484
  interface PalletBalancesReasons extends Enum {
4371
4485
  readonly isFee: boolean;
4372
4486
  readonly isMisc: boolean;
@@ -4374,38 +4488,38 @@ declare module '@polkadot/types/lookup' {
4374
4488
  readonly type: 'Fee' | 'Misc' | 'All';
4375
4489
  }
4376
4490
 
4377
- /** @name PalletBalancesReserveData (497) */
4491
+ /** @name PalletBalancesReserveData (508) */
4378
4492
  interface PalletBalancesReserveData extends Struct {
4379
4493
  readonly id: U8aFixed;
4380
4494
  readonly amount: u128;
4381
4495
  }
4382
4496
 
4383
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
4497
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (511) */
4384
4498
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
4385
4499
  readonly id: ArgonRuntimeRuntimeHoldReason;
4386
4500
  readonly amount: u128;
4387
4501
  }
4388
4502
 
4389
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
4503
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (514) */
4390
4504
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
4391
4505
  readonly id: ArgonRuntimeRuntimeFreezeReason;
4392
4506
  readonly amount: u128;
4393
4507
  }
4394
4508
 
4395
- /** @name ArgonRuntimeRuntimeFreezeReason (504) */
4509
+ /** @name ArgonRuntimeRuntimeFreezeReason (515) */
4396
4510
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
4397
4511
  readonly isBlockRewards: boolean;
4398
4512
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
4399
4513
  readonly type: 'BlockRewards';
4400
4514
  }
4401
4515
 
4402
- /** @name PalletBlockRewardsFreezeReason (505) */
4516
+ /** @name PalletBlockRewardsFreezeReason (516) */
4403
4517
  interface PalletBlockRewardsFreezeReason extends Enum {
4404
4518
  readonly isMaturationPeriod: boolean;
4405
4519
  readonly type: 'MaturationPeriod';
4406
4520
  }
4407
4521
 
4408
- /** @name PalletBalancesError (507) */
4522
+ /** @name PalletBalancesError (518) */
4409
4523
  interface PalletBalancesError extends Enum {
4410
4524
  readonly isVestingBalance: boolean;
4411
4525
  readonly isLiquidityRestrictions: boolean;
@@ -4434,7 +4548,7 @@ declare module '@polkadot/types/lookup' {
4434
4548
  | 'DeltaZero';
4435
4549
  }
4436
4550
 
4437
- /** @name PalletTxPauseError (509) */
4551
+ /** @name PalletTxPauseError (520) */
4438
4552
  interface PalletTxPauseError extends Enum {
4439
4553
  readonly isIsPaused: boolean;
4440
4554
  readonly isIsUnpaused: boolean;
@@ -4443,69 +4557,72 @@ declare module '@polkadot/types/lookup' {
4443
4557
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4444
4558
  }
4445
4559
 
4446
- /** @name PalletTransactionPaymentReleases (510) */
4560
+ /** @name PalletTransactionPaymentReleases (521) */
4447
4561
  interface PalletTransactionPaymentReleases extends Enum {
4448
4562
  readonly isV1Ancient: boolean;
4449
4563
  readonly isV2: boolean;
4450
4564
  readonly type: 'V1Ancient' | 'V2';
4451
4565
  }
4452
4566
 
4453
- /** @name FrameSupportStorageNoDrop (511) */
4567
+ /** @name FrameSupportStorageNoDrop (522) */
4454
4568
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4455
4569
 
4456
- /** @name FrameSupportTokensFungibleImbalance (512) */
4570
+ /** @name FrameSupportTokensFungibleImbalance (523) */
4457
4571
  interface FrameSupportTokensFungibleImbalance extends Struct {
4458
4572
  readonly amount: u128;
4459
4573
  }
4460
4574
 
4461
- /** @name PalletUtilityError (513) */
4575
+ /** @name PalletUtilityError (524) */
4462
4576
  interface PalletUtilityError extends Enum {
4463
4577
  readonly isTooManyCalls: boolean;
4464
4578
  readonly type: 'TooManyCalls';
4465
4579
  }
4466
4580
 
4467
- /** @name PalletSudoError (514) */
4581
+ /** @name PalletSudoError (525) */
4468
4582
  interface PalletSudoError extends Enum {
4469
4583
  readonly isRequireSudo: boolean;
4470
4584
  readonly type: 'RequireSudo';
4471
4585
  }
4472
4586
 
4473
- /** @name PalletTreasuryFrameVaultCapital (515) */
4587
+ /** @name PalletTreasuryFrameVaultCapital (526) */
4474
4588
  interface PalletTreasuryFrameVaultCapital extends Struct {
4475
4589
  readonly frameId: Compact<u64>;
4476
4590
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4477
4591
  }
4478
4592
 
4479
- /** @name PalletTreasuryVaultCapital (517) */
4593
+ /** @name PalletTreasuryVaultCapital (528) */
4480
4594
  interface PalletTreasuryVaultCapital extends Struct {
4481
4595
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4596
+ readonly backfillBondsEligible: Compact<u32>;
4597
+ readonly backfillProrata: u128;
4482
4598
  readonly eligibleBonds: Compact<u32>;
4483
4599
  }
4484
4600
 
4485
- /** @name PalletTreasuryBondLotAllocation (519) */
4601
+ /** @name PalletTreasuryBondLotAllocation (530) */
4486
4602
  interface PalletTreasuryBondLotAllocation extends Struct {
4487
4603
  readonly bondLotId: Compact<u64>;
4488
4604
  readonly prorata: u128;
4489
4605
  }
4490
4606
 
4491
- /** @name PalletTreasuryFrameArgonotBondParticipants (524) */
4607
+ /** @name PalletTreasuryFrameArgonotBondParticipants (535) */
4492
4608
  interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
4493
4609
  readonly frameId: Compact<u64>;
4494
4610
  readonly totalBonds: Compact<u32>;
4495
4611
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4496
4612
  }
4497
4613
 
4498
- /** @name PalletTreasuryBondLotSummary (526) */
4614
+ /** @name PalletTreasuryBondLotSummary (537) */
4499
4615
  interface PalletTreasuryBondLotSummary extends Struct {
4500
4616
  readonly bondLotId: Compact<u64>;
4501
4617
  readonly bonds: Compact<u32>;
4502
4618
  }
4503
4619
 
4504
- /** @name PalletTreasuryBondLot (528) */
4620
+ /** @name PalletTreasuryBondLot (539) */
4505
4621
  interface PalletTreasuryBondLot extends Struct {
4506
4622
  readonly owner: AccountId32;
4507
4623
  readonly program: PalletTreasuryBondProgram;
4508
4624
  readonly bonds: Compact<u32>;
4625
+ readonly isBackfill: bool;
4509
4626
  readonly createdFrameId: Compact<u64>;
4510
4627
  readonly participatedFrames: Compact<u32>;
4511
4628
  readonly lastFrameEarningsFrameId: Option<u64>;
@@ -4515,7 +4632,7 @@ declare module '@polkadot/types/lookup' {
4515
4632
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4516
4633
  }
4517
4634
 
4518
- /** @name PalletTreasuryBondProgram (529) */
4635
+ /** @name PalletTreasuryBondProgram (540) */
4519
4636
  interface PalletTreasuryBondProgram extends Enum {
4520
4637
  readonly isVault: boolean;
4521
4638
  readonly asVault: {
@@ -4527,7 +4644,14 @@ declare module '@polkadot/types/lookup' {
4527
4644
  readonly type: 'Vault' | 'Argonot';
4528
4645
  }
4529
4646
 
4530
- /** @name PalletTreasuryError (533) */
4647
+ /** @name PalletTreasuryVaultBondState (543) */
4648
+ interface PalletTreasuryVaultBondState extends Struct {
4649
+ readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4650
+ readonly backfillBonds: Compact<u32>;
4651
+ readonly backfillBondsReserved: Compact<u32>;
4652
+ }
4653
+
4654
+ /** @name PalletTreasuryError (545) */
4531
4655
  interface PalletTreasuryError extends Enum {
4532
4656
  readonly isBondPurchaseRejected: boolean;
4533
4657
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4547,6 +4671,8 @@ declare module '@polkadot/types/lookup' {
4547
4671
  readonly isInvalidBonusApprovalSignature: boolean;
4548
4672
  readonly isArgonotBondPurchaseBelowCutoff: boolean;
4549
4673
  readonly isArgonotBondPurchaseAboveCap: boolean;
4674
+ readonly isBondLotNotEligibleForBackfill: boolean;
4675
+ readonly isNoPermissions: boolean;
4550
4676
  readonly type:
4551
4677
  | 'BondPurchaseRejected'
4552
4678
  | 'VaultNotAcceptingBondPurchases'
@@ -4565,21 +4691,25 @@ declare module '@polkadot/types/lookup' {
4565
4691
  | 'BonusApprovalExistingBondLot'
4566
4692
  | 'InvalidBonusApprovalSignature'
4567
4693
  | 'ArgonotBondPurchaseBelowCutoff'
4568
- | 'ArgonotBondPurchaseAboveCap';
4694
+ | 'ArgonotBondPurchaseAboveCap'
4695
+ | 'BondLotNotEligibleForBackfill'
4696
+ | 'NoPermissions';
4569
4697
  }
4570
4698
 
4571
- /** @name PalletFeeControlError (534) */
4699
+ /** @name PalletFeeControlError (546) */
4572
4700
  interface PalletFeeControlError extends Enum {
4573
4701
  readonly isSponsoredFeeTooHigh: boolean;
4574
4702
  readonly type: 'SponsoredFeeTooHigh';
4575
4703
  }
4576
4704
 
4577
- /** @name PalletOperationalAccountsOperationalAccount (535) */
4705
+ /** @name PalletOperationalAccountsOperationalAccount (547) */
4578
4706
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4579
4707
  readonly vaultAccount: AccountId32;
4580
4708
  readonly miningAccount: AccountId32;
4581
4709
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
4582
4710
  readonly upstreamAccount: Option<AccountId32>;
4711
+ readonly name: Option<Bytes>;
4712
+ readonly lastNameChangeTick: Option<u64>;
4583
4713
  readonly uniswapArgonTransfersInAmount: u128;
4584
4714
  readonly accountBitcoinAmount: u128;
4585
4715
  readonly accountVaultBondAmount: u128;
@@ -4589,7 +4719,6 @@ declare module '@polkadot/types/lookup' {
4589
4719
  readonly miningSeatAccrual: Compact<u32>;
4590
4720
  readonly miningSeatAppliedTotal: Compact<u32>;
4591
4721
  readonly operationalCertificationsCount: Compact<u32>;
4592
- readonly accessCodePending: bool;
4593
4722
  readonly availableAccessCodes: Compact<u32>;
4594
4723
  readonly rewardsEarnedCount: Compact<u32>;
4595
4724
  readonly rewardsEarnedAmount: u128;
@@ -4597,13 +4726,13 @@ declare module '@polkadot/types/lookup' {
4597
4726
  readonly isOperationallyCertified: bool;
4598
4727
  }
4599
4728
 
4600
- /** @name PalletOperationalAccountsRewardsConfig (536) */
4729
+ /** @name PalletOperationalAccountsRewardsConfig (548) */
4601
4730
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4602
4731
  readonly operationalCertificationReward: Compact<u128>;
4603
4732
  readonly operationalCertificationBonusReward: Compact<u128>;
4604
4733
  }
4605
4734
 
4606
- /** @name PalletOperationalAccountsError (538) */
4735
+ /** @name PalletOperationalAccountsError (549) */
4607
4736
  interface PalletOperationalAccountsError extends Enum {
4608
4737
  readonly isAlreadyRegistered: boolean;
4609
4738
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4616,8 +4745,6 @@ declare module '@polkadot/types/lookup' {
4616
4745
  readonly isMinimumsNotMet: boolean;
4617
4746
  readonly isCannotGrantAccessToSelf: boolean;
4618
4747
  readonly isNoProgressUpdateProvided: boolean;
4619
- readonly isEncryptedServerTooLong: boolean;
4620
- readonly isNotUpstreamOfDownstream: boolean;
4621
4748
  readonly isNoPendingRewards: boolean;
4622
4749
  readonly isRewardClaimBelowMinimum: boolean;
4623
4750
  readonly isRewardClaimNotWholeArgon: boolean;
@@ -4626,6 +4753,7 @@ declare module '@polkadot/types/lookup' {
4626
4753
  readonly isAlreadyOperationallyCertified: boolean;
4627
4754
  readonly isNotEligibleForActivation: boolean;
4628
4755
  readonly isUpstreamHasNoAvailableAccessCodes: boolean;
4756
+ readonly isInvalidName: boolean;
4629
4757
  readonly type:
4630
4758
  | 'AlreadyRegistered'
4631
4759
  | 'InvalidRegistrationSubmitter'
@@ -4638,8 +4766,6 @@ declare module '@polkadot/types/lookup' {
4638
4766
  | 'MinimumsNotMet'
4639
4767
  | 'CannotGrantAccessToSelf'
4640
4768
  | 'NoProgressUpdateProvided'
4641
- | 'EncryptedServerTooLong'
4642
- | 'NotUpstreamOfDownstream'
4643
4769
  | 'NoPendingRewards'
4644
4770
  | 'RewardClaimBelowMinimum'
4645
4771
  | 'RewardClaimNotWholeArgon'
@@ -4647,15 +4773,16 @@ declare module '@polkadot/types/lookup' {
4647
4773
  | 'TreasuryInsufficientFunds'
4648
4774
  | 'AlreadyOperationallyCertified'
4649
4775
  | 'NotEligibleForActivation'
4650
- | 'UpstreamHasNoAvailableAccessCodes';
4776
+ | 'UpstreamHasNoAvailableAccessCodes'
4777
+ | 'InvalidName';
4651
4778
  }
4652
4779
 
4653
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
4780
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (550) */
4654
4781
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4655
4782
  readonly slot: Compact<u64>;
4656
4783
  }
4657
4784
 
4658
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
4785
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (551) */
4659
4786
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4660
4787
  readonly blockNumber: Compact<u64>;
4661
4788
  readonly timestampMillis: Compact<u64>;
@@ -4665,44 +4792,44 @@ declare module '@polkadot/types/lookup' {
4665
4792
  readonly receiptsRoot: H256;
4666
4793
  }
4667
4794
 
4668
- /** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
4795
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (552) */
4669
4796
  interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4670
4797
  readonly root: H256;
4671
4798
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4672
4799
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4673
4800
  }
4674
4801
 
4675
- /** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
4802
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (554) */
4676
4803
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4677
4804
  readonly point: SnowbridgeAmclBls381Ecp;
4678
4805
  }
4679
4806
 
4680
- /** @name SnowbridgeAmclBls381Ecp (544) */
4807
+ /** @name SnowbridgeAmclBls381Ecp (555) */
4681
4808
  interface SnowbridgeAmclBls381Ecp extends Struct {
4682
4809
  readonly x: SnowbridgeAmclBls381Fp;
4683
4810
  readonly y: SnowbridgeAmclBls381Fp;
4684
4811
  readonly z: SnowbridgeAmclBls381Fp;
4685
4812
  }
4686
4813
 
4687
- /** @name SnowbridgeAmclBls381Fp (545) */
4814
+ /** @name SnowbridgeAmclBls381Fp (556) */
4688
4815
  interface SnowbridgeAmclBls381Fp extends Struct {
4689
4816
  readonly x: SnowbridgeAmclBls381Big;
4690
4817
  readonly xes: i32;
4691
4818
  }
4692
4819
 
4693
- /** @name SnowbridgeAmclBls381Big (546) */
4820
+ /** @name SnowbridgeAmclBls381Big (557) */
4694
4821
  interface SnowbridgeAmclBls381Big extends Struct {
4695
4822
  readonly w: Vec<i32>;
4696
4823
  }
4697
4824
 
4698
- /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
4825
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (561) */
4699
4826
  interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4700
4827
  readonly isMainnet: boolean;
4701
4828
  readonly isMinimal: boolean;
4702
4829
  readonly type: 'Mainnet' | 'Minimal';
4703
4830
  }
4704
4831
 
4705
- /** @name PalletEthereumVerifierError (551) */
4832
+ /** @name PalletEthereumVerifierError (562) */
4706
4833
  interface PalletEthereumVerifierError extends Enum {
4707
4834
  readonly isSkippedSyncCommitteePeriod: boolean;
4708
4835
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4755,7 +4882,7 @@ declare module '@polkadot/types/lookup' {
4755
4882
  | 'Halted';
4756
4883
  }
4757
4884
 
4758
- /** @name PalletCrosschainTransferAccountTransferTotals (552) */
4885
+ /** @name PalletCrosschainTransferAccountTransferTotals (563) */
4759
4886
  interface PalletCrosschainTransferAccountTransferTotals extends Struct {
4760
4887
  readonly microgonsIn: u128;
4761
4888
  readonly microgonsOut: u128;
@@ -4767,21 +4894,21 @@ declare module '@polkadot/types/lookup' {
4767
4894
  readonly argonotTransfersOutCount: Compact<u32>;
4768
4895
  }
4769
4896
 
4770
- /** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
4897
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (565) */
4771
4898
  interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
4772
4899
  readonly epochMicrogonsPerArgonot: u128;
4773
4900
  readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
4774
4901
  readonly totalWeight: u128;
4775
4902
  }
4776
4903
 
4777
- /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
4904
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (567) */
4778
4905
  interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
4779
4906
  readonly accountId: AccountId32;
4780
4907
  readonly signer: H160;
4781
4908
  readonly weight: u128;
4782
4909
  }
4783
4910
 
4784
- /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
4911
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (572) */
4785
4912
  interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
4786
4913
  readonly approvingCouncilHash: H256;
4787
4914
  readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
@@ -4793,7 +4920,7 @@ declare module '@polkadot/types/lookup' {
4793
4920
  readonly signatures: BTreeMap<H160, U8aFixed>;
4794
4921
  }
4795
4922
 
4796
- /** @name PalletCrosschainTransferMintingAuthority (566) */
4923
+ /** @name PalletCrosschainTransferMintingAuthority (577) */
4797
4924
  interface PalletCrosschainTransferMintingAuthority extends Struct {
4798
4925
  readonly accountId: AccountId32;
4799
4926
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -4810,7 +4937,7 @@ declare module '@polkadot/types/lookup' {
4810
4937
  readonly deactivationApprovalQueueNonce: Option<u64>;
4811
4938
  }
4812
4939
 
4813
- /** @name PalletCrosschainTransferMintingAuthorityState (567) */
4940
+ /** @name PalletCrosschainTransferMintingAuthorityState (578) */
4814
4941
  interface PalletCrosschainTransferMintingAuthorityState extends Enum {
4815
4942
  readonly isPendingActivation: boolean;
4816
4943
  readonly isActive: boolean;
@@ -4818,7 +4945,7 @@ declare module '@polkadot/types/lookup' {
4818
4945
  readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
4819
4946
  }
4820
4947
 
4821
- /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
4948
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (580) */
4822
4949
  interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
4823
4950
  readonly argonAccountId: AccountId32;
4824
4951
  readonly argonTransferNonce: Compact<u64>;
@@ -4837,7 +4964,7 @@ declare module '@polkadot/types/lookup' {
4837
4964
  readonly state: PalletCrosschainTransferTransferOutTransferOutState;
4838
4965
  }
4839
4966
 
4840
- /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
4967
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (582) */
4841
4968
  interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
4842
4969
  readonly microgonCollateral: u128;
4843
4970
  readonly micronotCollateral: u128;
@@ -4845,27 +4972,27 @@ declare module '@polkadot/types/lookup' {
4845
4972
  readonly signature: U8aFixed;
4846
4973
  }
4847
4974
 
4848
- /** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
4975
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (586) */
4849
4976
  interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
4850
4977
  readonly isStarted: boolean;
4851
4978
  readonly isReady: boolean;
4852
4979
  readonly type: 'Started' | 'Ready';
4853
4980
  }
4854
4981
 
4855
- /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
4982
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (588) */
4856
4983
  interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
4857
4984
  readonly transferId: H256;
4858
4985
  readonly remainingCollateral: u128;
4859
4986
  readonly remainingMintingAuthorityTip: u128;
4860
4987
  }
4861
4988
 
4862
- /** @name PalletCrosschainTransferSourceChainCirculation (579) */
4989
+ /** @name PalletCrosschainTransferSourceChainCirculation (590) */
4863
4990
  interface PalletCrosschainTransferSourceChainCirculation extends Struct {
4864
4991
  readonly argonCirculation: u128;
4865
4992
  readonly argonotCirculation: u128;
4866
4993
  }
4867
4994
 
4868
- /** @name PalletCrosschainTransferError (580) */
4995
+ /** @name PalletCrosschainTransferError (591) */
4869
4996
  interface PalletCrosschainTransferError extends Enum {
4870
4997
  readonly isInvalidTransferToArgonActivity: boolean;
4871
4998
  readonly isNoGatewayProofBlocksProvided: boolean;
@@ -4980,45 +5107,56 @@ declare module '@polkadot/types/lookup' {
4980
5107
  | 'CouncilSignerRotationPending';
4981
5108
  }
4982
5109
 
4983
- /** @name FrameSystemExtensionsAuthorizeCall (583) */
5110
+ /** @name PalletBootstrapError (593) */
5111
+ interface PalletBootstrapError extends Enum {
5112
+ readonly isEncryptedPayloadTooLong: boolean;
5113
+ readonly isInvalidRecoveryProof: boolean;
5114
+ readonly isEndpointOwnedByAnotherAccount: boolean;
5115
+ readonly type:
5116
+ | 'EncryptedPayloadTooLong'
5117
+ | 'InvalidRecoveryProof'
5118
+ | 'EndpointOwnedByAnotherAccount';
5119
+ }
5120
+
5121
+ /** @name FrameSystemExtensionsAuthorizeCall (596) */
4984
5122
  type FrameSystemExtensionsAuthorizeCall = Null;
4985
5123
 
4986
- /** @name FrameSystemExtensionsCheckNonZeroSender (584) */
5124
+ /** @name FrameSystemExtensionsCheckNonZeroSender (597) */
4987
5125
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4988
5126
 
4989
- /** @name FrameSystemExtensionsCheckSpecVersion (585) */
5127
+ /** @name FrameSystemExtensionsCheckSpecVersion (598) */
4990
5128
  type FrameSystemExtensionsCheckSpecVersion = Null;
4991
5129
 
4992
- /** @name FrameSystemExtensionsCheckTxVersion (586) */
5130
+ /** @name FrameSystemExtensionsCheckTxVersion (599) */
4993
5131
  type FrameSystemExtensionsCheckTxVersion = Null;
4994
5132
 
4995
- /** @name FrameSystemExtensionsCheckGenesis (587) */
5133
+ /** @name FrameSystemExtensionsCheckGenesis (600) */
4996
5134
  type FrameSystemExtensionsCheckGenesis = Null;
4997
5135
 
4998
- /** @name FrameSystemExtensionsCheckNonce (590) */
5136
+ /** @name FrameSystemExtensionsCheckNonce (603) */
4999
5137
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
5000
5138
 
5001
- /** @name FrameSystemExtensionsCheckWeight (591) */
5139
+ /** @name FrameSystemExtensionsCheckWeight (604) */
5002
5140
  type FrameSystemExtensionsCheckWeight = Null;
5003
5141
 
5004
- /** @name PalletTransactionPaymentChargeTransactionPayment (592) */
5142
+ /** @name PalletTransactionPaymentChargeTransactionPayment (605) */
5005
5143
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
5006
5144
 
5007
- /** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
5145
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (606) */
5008
5146
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
5009
5147
  readonly mode: FrameMetadataHashExtensionMode;
5010
5148
  }
5011
5149
 
5012
- /** @name FrameMetadataHashExtensionMode (594) */
5150
+ /** @name FrameMetadataHashExtensionMode (607) */
5013
5151
  interface FrameMetadataHashExtensionMode extends Enum {
5014
5152
  readonly isDisabled: boolean;
5015
5153
  readonly isEnabled: boolean;
5016
5154
  readonly type: 'Disabled' | 'Enabled';
5017
5155
  }
5018
5156
 
5019
- /** @name FrameSystemExtensionsWeightReclaim (595) */
5157
+ /** @name FrameSystemExtensionsWeightReclaim (608) */
5020
5158
  type FrameSystemExtensionsWeightReclaim = Null;
5021
5159
 
5022
- /** @name ArgonRuntimeRuntime (597) */
5160
+ /** @name ArgonRuntimeRuntime (610) */
5023
5161
  type ArgonRuntimeRuntime = Null;
5024
5162
  } // declare module