@argonprotocol/mainchain 1.4.10-dev.925a902e → 1.4.10-dev.a229760e

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