@argonprotocol/mainchain 1.4.10 → 1.4.11

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) */
@@ -1913,6 +1933,12 @@ declare module '@polkadot/types/lookup' {
1913
1933
  readonly destinationChain: PalletCrosschainTransferSourceChain;
1914
1934
  readonly councilHash: H256;
1915
1935
  } & Struct;
1936
+ readonly isGlobalIssuanceCouncilRotationQueued: boolean;
1937
+ readonly asGlobalIssuanceCouncilRotationQueued: {
1938
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1939
+ readonly councilHash: H256;
1940
+ readonly approvalQueueNonce: u64;
1941
+ } & Struct;
1916
1942
  readonly isCouncilSignerRegistered: boolean;
1917
1943
  readonly asCouncilSignerRegistered: {
1918
1944
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -2028,6 +2054,7 @@ declare module '@polkadot/types/lookup' {
2028
2054
  readonly type:
2029
2055
  | 'TransferToArgonSettled'
2030
2056
  | 'GlobalIssuanceCouncilForced'
2057
+ | 'GlobalIssuanceCouncilRotationQueued'
2031
2058
  | 'CouncilSignerRegistered'
2032
2059
  | 'CouncilSignerRotationQueued'
2033
2060
  | 'MintingAuthorityRegistered'
@@ -2126,7 +2153,28 @@ declare module '@polkadot/types/lookup' {
2126
2153
  readonly argonotCirculation: u128;
2127
2154
  }
2128
2155
 
2129
- /** @name 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) */
2130
2178
  interface FrameSystemPhase extends Enum {
2131
2179
  readonly isApplyExtrinsic: boolean;
2132
2180
  readonly asApplyExtrinsic: u32;
@@ -2135,19 +2183,19 @@ declare module '@polkadot/types/lookup' {
2135
2183
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
2136
2184
  }
2137
2185
 
2138
- /** @name FrameSystemLastRuntimeUpgradeInfo (143) */
2186
+ /** @name FrameSystemLastRuntimeUpgradeInfo (146) */
2139
2187
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
2140
2188
  readonly specVersion: Compact<u32>;
2141
2189
  readonly specName: Text;
2142
2190
  }
2143
2191
 
2144
- /** @name FrameSystemCodeUpgradeAuthorization (146) */
2192
+ /** @name FrameSystemCodeUpgradeAuthorization (149) */
2145
2193
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
2146
2194
  readonly codeHash: H256;
2147
2195
  readonly checkVersion: bool;
2148
2196
  }
2149
2197
 
2150
- /** @name FrameSystemCall (147) */
2198
+ /** @name FrameSystemCall (150) */
2151
2199
  interface FrameSystemCall extends Enum {
2152
2200
  readonly isRemark: boolean;
2153
2201
  readonly asRemark: {
@@ -2208,21 +2256,21 @@ declare module '@polkadot/types/lookup' {
2208
2256
  | 'ApplyAuthorizedUpgrade';
2209
2257
  }
2210
2258
 
2211
- /** @name FrameSystemLimitsBlockWeights (151) */
2259
+ /** @name FrameSystemLimitsBlockWeights (154) */
2212
2260
  interface FrameSystemLimitsBlockWeights extends Struct {
2213
2261
  readonly baseBlock: SpWeightsWeightV2Weight;
2214
2262
  readonly maxBlock: SpWeightsWeightV2Weight;
2215
2263
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
2216
2264
  }
2217
2265
 
2218
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (152) */
2266
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (155) */
2219
2267
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
2220
2268
  readonly normal: FrameSystemLimitsWeightsPerClass;
2221
2269
  readonly operational: FrameSystemLimitsWeightsPerClass;
2222
2270
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
2223
2271
  }
2224
2272
 
2225
- /** @name FrameSystemLimitsWeightsPerClass (153) */
2273
+ /** @name FrameSystemLimitsWeightsPerClass (156) */
2226
2274
  interface FrameSystemLimitsWeightsPerClass extends Struct {
2227
2275
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
2228
2276
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -2230,26 +2278,26 @@ declare module '@polkadot/types/lookup' {
2230
2278
  readonly reserved: Option<SpWeightsWeightV2Weight>;
2231
2279
  }
2232
2280
 
2233
- /** @name FrameSystemLimitsBlockLength (155) */
2281
+ /** @name FrameSystemLimitsBlockLength (158) */
2234
2282
  interface FrameSystemLimitsBlockLength extends Struct {
2235
2283
  readonly max: FrameSupportDispatchPerDispatchClassU32;
2236
2284
  readonly maxHeaderSize: Option<u32>;
2237
2285
  }
2238
2286
 
2239
- /** @name FrameSupportDispatchPerDispatchClassU32 (156) */
2287
+ /** @name FrameSupportDispatchPerDispatchClassU32 (159) */
2240
2288
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
2241
2289
  readonly normal: u32;
2242
2290
  readonly operational: u32;
2243
2291
  readonly mandatory: u32;
2244
2292
  }
2245
2293
 
2246
- /** @name SpWeightsRuntimeDbWeight (158) */
2294
+ /** @name SpWeightsRuntimeDbWeight (161) */
2247
2295
  interface SpWeightsRuntimeDbWeight extends Struct {
2248
2296
  readonly read: u64;
2249
2297
  readonly write: u64;
2250
2298
  }
2251
2299
 
2252
- /** @name SpVersionRuntimeVersion (159) */
2300
+ /** @name SpVersionRuntimeVersion (162) */
2253
2301
  interface SpVersionRuntimeVersion extends Struct {
2254
2302
  readonly specName: Text;
2255
2303
  readonly implName: Text;
@@ -2261,7 +2309,7 @@ declare module '@polkadot/types/lookup' {
2261
2309
  readonly systemVersion: u8;
2262
2310
  }
2263
2311
 
2264
- /** @name FrameSystemError (164) */
2312
+ /** @name FrameSystemError (167) */
2265
2313
  interface FrameSystemError extends Enum {
2266
2314
  readonly isInvalidSpecName: boolean;
2267
2315
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2284,7 +2332,7 @@ declare module '@polkadot/types/lookup' {
2284
2332
  | 'Unauthorized';
2285
2333
  }
2286
2334
 
2287
- /** @name ArgonPrimitivesDigestsDigestset (165) */
2335
+ /** @name ArgonPrimitivesDigestsDigestset (168) */
2288
2336
  interface ArgonPrimitivesDigestsDigestset extends Struct {
2289
2337
  readonly author: AccountId32;
2290
2338
  readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
@@ -2295,18 +2343,18 @@ declare module '@polkadot/types/lookup' {
2295
2343
  readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
2296
2344
  }
2297
2345
 
2298
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (166) */
2346
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (169) */
2299
2347
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2300
2348
  readonly votingPower: Compact<u128>;
2301
2349
  readonly votesCount: Compact<u32>;
2302
2350
  }
2303
2351
 
2304
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (168) */
2352
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (171) */
2305
2353
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2306
2354
  readonly parentVotingKey: Option<H256>;
2307
2355
  }
2308
2356
 
2309
- /** @name ArgonPrimitivesForkPower (171) */
2357
+ /** @name ArgonPrimitivesForkPower (174) */
2310
2358
  interface ArgonPrimitivesForkPower extends Struct {
2311
2359
  readonly isLatestVote: bool;
2312
2360
  readonly notebooks: Compact<u64>;
@@ -2317,19 +2365,19 @@ declare module '@polkadot/types/lookup' {
2317
2365
  readonly minerNonceScore: Option<U256>;
2318
2366
  }
2319
2367
 
2320
- /** @name ArgonPrimitivesDigestsFrameInfo (176) */
2368
+ /** @name ArgonPrimitivesDigestsFrameInfo (179) */
2321
2369
  interface ArgonPrimitivesDigestsFrameInfo extends Struct {
2322
2370
  readonly frameId: Compact<u64>;
2323
2371
  readonly frameRewardTicksRemaining: Compact<u32>;
2324
2372
  readonly isNewFrame: bool;
2325
2373
  }
2326
2374
 
2327
- /** @name ArgonPrimitivesDigestsNotebookDigest (178) */
2375
+ /** @name ArgonPrimitivesDigestsNotebookDigest (181) */
2328
2376
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2329
2377
  readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
2330
2378
  }
2331
2379
 
2332
- /** @name ArgonPrimitivesNotebookNotebookAuditResult (180) */
2380
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (183) */
2333
2381
  interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
2334
2382
  readonly notaryId: Compact<u32>;
2335
2383
  readonly notebookNumber: Compact<u32>;
@@ -2337,7 +2385,7 @@ declare module '@polkadot/types/lookup' {
2337
2385
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2338
2386
  }
2339
2387
 
2340
- /** @name PalletDigestsError (183) */
2388
+ /** @name PalletDigestsError (186) */
2341
2389
  interface PalletDigestsError extends Enum {
2342
2390
  readonly isDuplicateBlockVoteDigest: boolean;
2343
2391
  readonly isDuplicateAuthorDigest: boolean;
@@ -2368,7 +2416,7 @@ declare module '@polkadot/types/lookup' {
2368
2416
  | 'DuplicateFrameInfoDigest';
2369
2417
  }
2370
2418
 
2371
- /** @name PalletTimestampCall (184) */
2419
+ /** @name PalletTimestampCall (187) */
2372
2420
  interface PalletTimestampCall extends Enum {
2373
2421
  readonly isSet: boolean;
2374
2422
  readonly asSet: {
@@ -2377,7 +2425,7 @@ declare module '@polkadot/types/lookup' {
2377
2425
  readonly type: 'Set';
2378
2426
  }
2379
2427
 
2380
- /** @name PalletMultisigMultisig (186) */
2428
+ /** @name PalletMultisigMultisig (189) */
2381
2429
  interface PalletMultisigMultisig extends Struct {
2382
2430
  readonly when: PalletMultisigTimepoint;
2383
2431
  readonly deposit: u128;
@@ -2385,7 +2433,7 @@ declare module '@polkadot/types/lookup' {
2385
2433
  readonly approvals: Vec<AccountId32>;
2386
2434
  }
2387
2435
 
2388
- /** @name PalletMultisigCall (189) */
2436
+ /** @name PalletMultisigCall (192) */
2389
2437
  interface PalletMultisigCall extends Enum {
2390
2438
  readonly isAsMultiThreshold1: boolean;
2391
2439
  readonly asAsMultiThreshold1: {
@@ -2429,7 +2477,7 @@ declare module '@polkadot/types/lookup' {
2429
2477
  | 'PokeDeposit';
2430
2478
  }
2431
2479
 
2432
- /** @name PalletProxyCall (191) */
2480
+ /** @name PalletProxyCall (194) */
2433
2481
  interface PalletProxyCall extends Enum {
2434
2482
  readonly isProxy: boolean;
2435
2483
  readonly asProxy: {
@@ -2501,10 +2549,10 @@ declare module '@polkadot/types/lookup' {
2501
2549
  | 'PokeDeposit';
2502
2550
  }
2503
2551
 
2504
- /** @name PalletTicksCall (195) */
2552
+ /** @name PalletTicksCall (198) */
2505
2553
  type PalletTicksCall = Null;
2506
2554
 
2507
- /** @name PalletMiningSlotCall (196) */
2555
+ /** @name PalletMiningSlotCall (199) */
2508
2556
  interface PalletMiningSlotCall extends Enum {
2509
2557
  readonly isBid: boolean;
2510
2558
  readonly asBid: {
@@ -2520,7 +2568,7 @@ declare module '@polkadot/types/lookup' {
2520
2568
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
2521
2569
  }
2522
2570
 
2523
- /** @name PalletBitcoinUtxosCall (197) */
2571
+ /** @name PalletBitcoinUtxosCall (200) */
2524
2572
  interface PalletBitcoinUtxosCall extends Enum {
2525
2573
  readonly isSync: boolean;
2526
2574
  readonly asSync: {
@@ -2553,21 +2601,21 @@ declare module '@polkadot/types/lookup' {
2553
2601
  | 'RejectUtxoCandidate';
2554
2602
  }
2555
2603
 
2556
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (198) */
2604
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
2557
2605
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
2558
2606
  readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
2559
2607
  readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
2560
2608
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
2561
2609
  }
2562
2610
 
2563
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (200) */
2611
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (203) */
2564
2612
  interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
2565
2613
  readonly utxoId: Compact<u64>;
2566
2614
  readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
2567
2615
  readonly bitcoinHeight: Compact<u64>;
2568
2616
  }
2569
2617
 
2570
- /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (203) */
2618
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (206) */
2571
2619
  interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
2572
2620
  readonly utxoId: Compact<u64>;
2573
2621
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
@@ -2576,13 +2624,13 @@ declare module '@polkadot/types/lookup' {
2576
2624
  readonly bitcoinHeight: Compact<u64>;
2577
2625
  }
2578
2626
 
2579
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (204) */
2627
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (207) */
2580
2628
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
2581
2629
  readonly blockHeight: Compact<u64>;
2582
2630
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
2583
2631
  }
2584
2632
 
2585
- /** @name PalletVaultsCall (205) */
2633
+ /** @name PalletVaultsCall (208) */
2586
2634
  interface PalletVaultsCall extends Enum {
2587
2635
  readonly isCreate: boolean;
2588
2636
  readonly asCreate: {
@@ -2624,6 +2672,11 @@ declare module '@polkadot/types/lookup' {
2624
2672
  readonly asSetCommittedArgonots: {
2625
2673
  readonly amount: Compact<u128>;
2626
2674
  } & Struct;
2675
+ readonly isSetBackfillSecuritizationReserved: boolean;
2676
+ readonly asSetBackfillSecuritizationReserved: {
2677
+ readonly vaultId: u32;
2678
+ readonly backfillSecuritizationReserved: u128;
2679
+ } & Struct;
2627
2680
  readonly type:
2628
2681
  | 'Create'
2629
2682
  | 'ModifyFunding'
@@ -2633,10 +2686,11 @@ declare module '@polkadot/types/lookup' {
2633
2686
  | 'Collect'
2634
2687
  | 'SetDelegateAccount'
2635
2688
  | 'SetName'
2636
- | 'SetCommittedArgonots';
2689
+ | 'SetCommittedArgonots'
2690
+ | 'SetBackfillSecuritizationReserved';
2637
2691
  }
2638
2692
 
2639
- /** @name PalletVaultsVaultConfig (206) */
2693
+ /** @name PalletVaultsVaultConfig (209) */
2640
2694
  interface PalletVaultsVaultConfig extends Struct {
2641
2695
  readonly terms: ArgonPrimitivesVaultVaultTerms;
2642
2696
  readonly name: Option<Bytes>;
@@ -2646,7 +2700,7 @@ declare module '@polkadot/types/lookup' {
2646
2700
  readonly securitizationRatio: Compact<u128>;
2647
2701
  }
2648
2702
 
2649
- /** @name ArgonPrimitivesVaultVaultTerms (207) */
2703
+ /** @name ArgonPrimitivesVaultVaultTerms (210) */
2650
2704
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
2651
2705
  readonly bitcoinAnnualPercentRate: Compact<u128>;
2652
2706
  readonly bitcoinBaseFee: Compact<u128>;
@@ -2654,10 +2708,10 @@ declare module '@polkadot/types/lookup' {
2654
2708
  readonly treasuryBonusProfitSharing: Compact<Permill>;
2655
2709
  }
2656
2710
 
2657
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (213) */
2711
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (216) */
2658
2712
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2659
2713
 
2660
- /** @name PalletBitcoinLocksCall (215) */
2714
+ /** @name PalletBitcoinLocksCall (218) */
2661
2715
  interface PalletBitcoinLocksCall extends Enum {
2662
2716
  readonly isInitialize: boolean;
2663
2717
  readonly asInitialize: {
@@ -2705,12 +2759,18 @@ declare module '@polkadot/types/lookup' {
2705
2759
  readonly satoshis: Compact<u64>;
2706
2760
  readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
2707
2761
  readonly options: Option<PalletBitcoinLocksLockOptions>;
2762
+ readonly backfillSecuritizationToUnreserve: Compact<u128>;
2708
2763
  } & Struct;
2709
2764
  readonly isIncreaseSecuritization: boolean;
2710
2765
  readonly asIncreaseSecuritization: {
2711
2766
  readonly utxoId: u64;
2712
2767
  readonly newSatoshis: Compact<u64>;
2713
2768
  } & Struct;
2769
+ readonly isSetAsBackfill: boolean;
2770
+ readonly asSetAsBackfill: {
2771
+ readonly utxoId: u64;
2772
+ readonly isBackfill: bool;
2773
+ } & Struct;
2714
2774
  readonly type:
2715
2775
  | 'Initialize'
2716
2776
  | 'RequestRelease'
@@ -2720,13 +2780,14 @@ declare module '@polkadot/types/lookup' {
2720
2780
  | 'RequestOrphanedUtxoRelease'
2721
2781
  | 'CosignOrphanedUtxoRelease'
2722
2782
  | 'InitializeFor'
2723
- | 'IncreaseSecuritization';
2783
+ | 'IncreaseSecuritization'
2784
+ | 'SetAsBackfill';
2724
2785
  }
2725
2786
 
2726
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (216) */
2787
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (219) */
2727
2788
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2728
2789
 
2729
- /** @name PalletBitcoinLocksLockOptions (219) */
2790
+ /** @name PalletBitcoinLocksLockOptions (222) */
2730
2791
  interface PalletBitcoinLocksLockOptions extends Enum {
2731
2792
  readonly isV1: boolean;
2732
2793
  readonly asV1: {
@@ -2735,7 +2796,7 @@ declare module '@polkadot/types/lookup' {
2735
2796
  readonly type: 'V1';
2736
2797
  }
2737
2798
 
2738
- /** @name PalletNotariesCall (222) */
2799
+ /** @name PalletNotariesCall (225) */
2739
2800
  interface PalletNotariesCall extends Enum {
2740
2801
  readonly isPropose: boolean;
2741
2802
  readonly asPropose: {
@@ -2754,7 +2815,7 @@ declare module '@polkadot/types/lookup' {
2754
2815
  readonly type: 'Propose' | 'Activate' | 'Update';
2755
2816
  }
2756
2817
 
2757
- /** @name PalletNotebookCall (223) */
2818
+ /** @name PalletNotebookCall (226) */
2758
2819
  interface PalletNotebookCall extends Enum {
2759
2820
  readonly isSubmit: boolean;
2760
2821
  readonly asSubmit: {
@@ -2767,13 +2828,13 @@ declare module '@polkadot/types/lookup' {
2767
2828
  readonly type: 'Submit' | 'Unlock';
2768
2829
  }
2769
2830
 
2770
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (225) */
2831
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (228) */
2771
2832
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2772
2833
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2773
2834
  readonly signature: U8aFixed;
2774
2835
  }
2775
2836
 
2776
- /** @name ArgonPrimitivesNotebookNotebookHeader (226) */
2837
+ /** @name ArgonPrimitivesNotebookNotebookHeader (229) */
2777
2838
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2778
2839
  readonly version: Compact<u16>;
2779
2840
  readonly notebookNumber: Compact<u32>;
@@ -2792,7 +2853,7 @@ declare module '@polkadot/types/lookup' {
2792
2853
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2793
2854
  }
2794
2855
 
2795
- /** @name ArgonPrimitivesNotebookChainTransfer (229) */
2856
+ /** @name ArgonPrimitivesNotebookChainTransfer (232) */
2796
2857
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2797
2858
  readonly isToMainchain: boolean;
2798
2859
  readonly asToMainchain: {
@@ -2806,13 +2867,13 @@ declare module '@polkadot/types/lookup' {
2806
2867
  readonly type: 'ToMainchain' | 'ToLocalchain';
2807
2868
  }
2808
2869
 
2809
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (232) */
2870
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (235) */
2810
2871
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2811
2872
  readonly notebookNumber: Compact<u32>;
2812
2873
  readonly accountUid: Compact<u32>;
2813
2874
  }
2814
2875
 
2815
- /** @name PalletLocalchainTransferCall (239) */
2876
+ /** @name PalletLocalchainTransferCall (242) */
2816
2877
  interface PalletLocalchainTransferCall extends Enum {
2817
2878
  readonly isSendToLocalchain: boolean;
2818
2879
  readonly asSendToLocalchain: {
@@ -2822,7 +2883,7 @@ declare module '@polkadot/types/lookup' {
2822
2883
  readonly type: 'SendToLocalchain';
2823
2884
  }
2824
2885
 
2825
- /** @name PalletBlockSealSpecCall (240) */
2886
+ /** @name PalletBlockSealSpecCall (243) */
2826
2887
  interface PalletBlockSealSpecCall extends Enum {
2827
2888
  readonly isConfigure: boolean;
2828
2889
  readonly asConfigure: {
@@ -2832,7 +2893,7 @@ declare module '@polkadot/types/lookup' {
2832
2893
  readonly type: 'Configure';
2833
2894
  }
2834
2895
 
2835
- /** @name PalletDomainsCall (241) */
2896
+ /** @name PalletDomainsCall (244) */
2836
2897
  interface PalletDomainsCall extends Enum {
2837
2898
  readonly isSetZoneRecord: boolean;
2838
2899
  readonly asSetZoneRecord: {
@@ -2842,11 +2903,12 @@ declare module '@polkadot/types/lookup' {
2842
2903
  readonly type: 'SetZoneRecord';
2843
2904
  }
2844
2905
 
2845
- /** @name PalletPriceIndexCall (242) */
2906
+ /** @name PalletPriceIndexCall (245) */
2846
2907
  interface PalletPriceIndexCall extends Enum {
2847
2908
  readonly isSubmit: boolean;
2848
2909
  readonly asSubmit: {
2849
2910
  readonly index: PalletPriceIndexPriceIndex;
2911
+ readonly ethereum: Option<PalletPriceIndexEthereumPriceIndex>;
2850
2912
  } & Struct;
2851
2913
  readonly isSetOperator: boolean;
2852
2914
  readonly asSetOperator: {
@@ -2855,7 +2917,7 @@ declare module '@polkadot/types/lookup' {
2855
2917
  readonly type: 'Submit' | 'SetOperator';
2856
2918
  }
2857
2919
 
2858
- /** @name PalletPriceIndexPriceIndex (243) */
2920
+ /** @name PalletPriceIndexPriceIndex (246) */
2859
2921
  interface PalletPriceIndexPriceIndex extends Struct {
2860
2922
  readonly btcUsdPrice: Compact<u128>;
2861
2923
  readonly argonotUsdPrice: u128;
@@ -2865,7 +2927,14 @@ declare module '@polkadot/types/lookup' {
2865
2927
  readonly tick: Compact<u64>;
2866
2928
  }
2867
2929
 
2868
- /** @name PalletGrandpaCall (244) */
2930
+ /** @name PalletPriceIndexEthereumPriceIndex (248) */
2931
+ interface PalletPriceIndexEthereumPriceIndex extends Struct {
2932
+ readonly ethereumUsdPrice: u128;
2933
+ readonly ethereumGasPriceWei: Compact<u128>;
2934
+ readonly tick: Compact<u64>;
2935
+ }
2936
+
2937
+ /** @name PalletGrandpaCall (249) */
2869
2938
  interface PalletGrandpaCall extends Enum {
2870
2939
  readonly isReportEquivocation: boolean;
2871
2940
  readonly asReportEquivocation: {
@@ -2885,13 +2954,13 @@ declare module '@polkadot/types/lookup' {
2885
2954
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2886
2955
  }
2887
2956
 
2888
- /** @name SpConsensusGrandpaEquivocationProof (245) */
2957
+ /** @name SpConsensusGrandpaEquivocationProof (250) */
2889
2958
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2890
2959
  readonly setId: u64;
2891
2960
  readonly equivocation: SpConsensusGrandpaEquivocation;
2892
2961
  }
2893
2962
 
2894
- /** @name SpConsensusGrandpaEquivocation (246) */
2963
+ /** @name SpConsensusGrandpaEquivocation (251) */
2895
2964
  interface SpConsensusGrandpaEquivocation extends Enum {
2896
2965
  readonly isPrevote: boolean;
2897
2966
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2900,7 +2969,7 @@ declare module '@polkadot/types/lookup' {
2900
2969
  readonly type: 'Prevote' | 'Precommit';
2901
2970
  }
2902
2971
 
2903
- /** @name FinalityGrandpaEquivocationPrevote (247) */
2972
+ /** @name FinalityGrandpaEquivocationPrevote (252) */
2904
2973
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2905
2974
  readonly roundNumber: u64;
2906
2975
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2908,16 +2977,16 @@ declare module '@polkadot/types/lookup' {
2908
2977
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2909
2978
  }
2910
2979
 
2911
- /** @name FinalityGrandpaPrevote (248) */
2980
+ /** @name FinalityGrandpaPrevote (253) */
2912
2981
  interface FinalityGrandpaPrevote extends Struct {
2913
2982
  readonly targetHash: H256;
2914
2983
  readonly targetNumber: u32;
2915
2984
  }
2916
2985
 
2917
- /** @name SpConsensusGrandpaAppSignature (249) */
2986
+ /** @name SpConsensusGrandpaAppSignature (254) */
2918
2987
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2919
2988
 
2920
- /** @name FinalityGrandpaEquivocationPrecommit (251) */
2989
+ /** @name FinalityGrandpaEquivocationPrecommit (256) */
2921
2990
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2922
2991
  readonly roundNumber: u64;
2923
2992
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2925,16 +2994,16 @@ declare module '@polkadot/types/lookup' {
2925
2994
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2926
2995
  }
2927
2996
 
2928
- /** @name FinalityGrandpaPrecommit (252) */
2997
+ /** @name FinalityGrandpaPrecommit (257) */
2929
2998
  interface FinalityGrandpaPrecommit extends Struct {
2930
2999
  readonly targetHash: H256;
2931
3000
  readonly targetNumber: u32;
2932
3001
  }
2933
3002
 
2934
- /** @name SpCoreVoid (254) */
3003
+ /** @name SpCoreVoid (259) */
2935
3004
  type SpCoreVoid = Null;
2936
3005
 
2937
- /** @name PalletBlockSealCall (255) */
3006
+ /** @name PalletBlockSealCall (260) */
2938
3007
  interface PalletBlockSealCall extends Enum {
2939
3008
  readonly isApply: boolean;
2940
3009
  readonly asApply: {
@@ -2943,7 +3012,7 @@ declare module '@polkadot/types/lookup' {
2943
3012
  readonly type: 'Apply';
2944
3013
  }
2945
3014
 
2946
- /** @name ArgonPrimitivesInherentsBlockSealInherent (256) */
3015
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (261) */
2947
3016
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
2948
3017
  readonly isVote: boolean;
2949
3018
  readonly asVote: {
@@ -2958,14 +3027,14 @@ declare module '@polkadot/types/lookup' {
2958
3027
  readonly type: 'Vote' | 'Compute';
2959
3028
  }
2960
3029
 
2961
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (257) */
3030
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (262) */
2962
3031
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
2963
3032
  readonly proof: Vec<H256>;
2964
3033
  readonly numberOfLeaves: Compact<u32>;
2965
3034
  readonly leafIndex: Compact<u32>;
2966
3035
  }
2967
3036
 
2968
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (259) */
3037
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (264) */
2969
3038
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
2970
3039
  readonly accountId: AccountId32;
2971
3040
  readonly blockHash: H256;
@@ -2976,7 +3045,7 @@ declare module '@polkadot/types/lookup' {
2976
3045
  readonly tick: Compact<u64>;
2977
3046
  }
2978
3047
 
2979
- /** @name SpRuntimeMultiSignature (260) */
3048
+ /** @name SpRuntimeMultiSignature (265) */
2980
3049
  interface SpRuntimeMultiSignature extends Enum {
2981
3050
  readonly isEd25519: boolean;
2982
3051
  readonly asEd25519: U8aFixed;
@@ -2989,7 +3058,7 @@ declare module '@polkadot/types/lookup' {
2989
3058
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2990
3059
  }
2991
3060
 
2992
- /** @name PalletBlockRewardsCall (262) */
3061
+ /** @name PalletBlockRewardsCall (267) */
2993
3062
  interface PalletBlockRewardsCall extends Enum {
2994
3063
  readonly isSetBlockRewardsPaused: boolean;
2995
3064
  readonly asSetBlockRewardsPaused: {
@@ -3002,10 +3071,10 @@ declare module '@polkadot/types/lookup' {
3002
3071
  readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
3003
3072
  }
3004
3073
 
3005
- /** @name PalletMintCall (263) */
3074
+ /** @name PalletMintCall (268) */
3006
3075
  type PalletMintCall = Null;
3007
3076
 
3008
- /** @name PalletBalancesCall (264) */
3077
+ /** @name PalletBalancesCall (269) */
3009
3078
  interface PalletBalancesCall extends Enum {
3010
3079
  readonly isTransferAllowDeath: boolean;
3011
3080
  readonly asTransferAllowDeath: {
@@ -3064,14 +3133,14 @@ declare module '@polkadot/types/lookup' {
3064
3133
  | 'Burn';
3065
3134
  }
3066
3135
 
3067
- /** @name PalletBalancesAdjustmentDirection (265) */
3136
+ /** @name PalletBalancesAdjustmentDirection (270) */
3068
3137
  interface PalletBalancesAdjustmentDirection extends Enum {
3069
3138
  readonly isIncrease: boolean;
3070
3139
  readonly isDecrease: boolean;
3071
3140
  readonly type: 'Increase' | 'Decrease';
3072
3141
  }
3073
3142
 
3074
- /** @name PalletTxPauseCall (267) */
3143
+ /** @name PalletTxPauseCall (272) */
3075
3144
  interface PalletTxPauseCall extends Enum {
3076
3145
  readonly isPause: boolean;
3077
3146
  readonly asPause: {
@@ -3084,7 +3153,7 @@ declare module '@polkadot/types/lookup' {
3084
3153
  readonly type: 'Pause' | 'Unpause';
3085
3154
  }
3086
3155
 
3087
- /** @name PalletUtilityCall (268) */
3156
+ /** @name PalletUtilityCall (273) */
3088
3157
  interface PalletUtilityCall extends Enum {
3089
3158
  readonly isBatch: boolean;
3090
3159
  readonly asBatch: {
@@ -3134,7 +3203,7 @@ declare module '@polkadot/types/lookup' {
3134
3203
  | 'DispatchAsFallible';
3135
3204
  }
3136
3205
 
3137
- /** @name PalletSudoCall (270) */
3206
+ /** @name PalletSudoCall (275) */
3138
3207
  interface PalletSudoCall extends Enum {
3139
3208
  readonly isSudo: boolean;
3140
3209
  readonly asSudo: {
@@ -3158,7 +3227,7 @@ declare module '@polkadot/types/lookup' {
3158
3227
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
3159
3228
  }
3160
3229
 
3161
- /** @name PalletTreasuryCall (271) */
3230
+ /** @name PalletTreasuryCall (276) */
3162
3231
  interface PalletTreasuryCall extends Enum {
3163
3232
  readonly isBuyBonds: boolean;
3164
3233
  readonly asBuyBonds: {
@@ -3174,18 +3243,34 @@ declare module '@polkadot/types/lookup' {
3174
3243
  readonly asBuyArgonotBonds: {
3175
3244
  readonly bonds: u32;
3176
3245
  } & Struct;
3177
- readonly type: 'BuyBonds' | 'LiquidateBondLot' | 'BuyArgonotBonds';
3246
+ readonly isSetBondLotAsBackfill: boolean;
3247
+ readonly asSetBondLotAsBackfill: {
3248
+ readonly bondLotId: u64;
3249
+ readonly isBackfill: bool;
3250
+ } & Struct;
3251
+ readonly isSetBackfillBondsReserved: boolean;
3252
+ readonly asSetBackfillBondsReserved: {
3253
+ readonly vaultId: u32;
3254
+ readonly backfillBondsReserved: u32;
3255
+ } & Struct;
3256
+ readonly type:
3257
+ | 'BuyBonds'
3258
+ | 'LiquidateBondLot'
3259
+ | 'BuyArgonotBonds'
3260
+ | 'SetBondLotAsBackfill'
3261
+ | 'SetBackfillBondsReserved';
3178
3262
  }
3179
3263
 
3180
- /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (273) */
3264
+ /** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (278) */
3181
3265
  interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
3182
3266
  readonly vaultId: Compact<u32>;
3183
3267
  readonly beneficiary: AccountId32;
3184
3268
  readonly expiresAtFrame: Compact<u64>;
3269
+ readonly backfillBondsToUnreserve: Compact<u32>;
3185
3270
  readonly signature: SpRuntimeMultiSignature;
3186
3271
  }
3187
3272
 
3188
- /** @name PalletOperationalAccountsCall (274) */
3273
+ /** @name PalletOperationalAccountsCall (279) */
3189
3274
  interface PalletOperationalAccountsCall extends Enum {
3190
3275
  readonly isRegister: boolean;
3191
3276
  readonly asRegister: {
@@ -3202,11 +3287,6 @@ declare module '@polkadot/types/lookup' {
3202
3287
  readonly patch: PalletOperationalAccountsOperationalProgressPatch;
3203
3288
  readonly updateOperationalProgress: bool;
3204
3289
  } & Struct;
3205
- readonly isSetEncryptedServerForDownstreamAccount: boolean;
3206
- readonly asSetEncryptedServerForDownstreamAccount: {
3207
- readonly downstreamAccount: AccountId32;
3208
- readonly encryptedServer: Bytes;
3209
- } & Struct;
3210
3290
  readonly isActivate: boolean;
3211
3291
  readonly isClaimRewards: boolean;
3212
3292
  readonly asClaimRewards: {
@@ -3216,19 +3296,18 @@ declare module '@polkadot/types/lookup' {
3216
3296
  | 'Register'
3217
3297
  | 'SetRewardConfig'
3218
3298
  | 'ForceSetProgress'
3219
- | 'SetEncryptedServerForDownstreamAccount'
3220
3299
  | 'Activate'
3221
3300
  | 'ClaimRewards';
3222
3301
  }
3223
3302
 
3224
- /** @name PalletOperationalAccountsRegistration (275) */
3303
+ /** @name PalletOperationalAccountsRegistration (280) */
3225
3304
  interface PalletOperationalAccountsRegistration extends Enum {
3226
3305
  readonly isV1: boolean;
3227
3306
  readonly asV1: PalletOperationalAccountsRegistrationV1;
3228
3307
  readonly type: 'V1';
3229
3308
  }
3230
3309
 
3231
- /** @name PalletOperationalAccountsRegistrationV1 (276) */
3310
+ /** @name PalletOperationalAccountsRegistrationV1 (281) */
3232
3311
  interface PalletOperationalAccountsRegistrationV1 extends Struct {
3233
3312
  readonly operationalAccount: AccountId32;
3234
3313
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
@@ -3240,21 +3319,21 @@ declare module '@polkadot/types/lookup' {
3240
3319
  readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
3241
3320
  }
3242
3321
 
3243
- /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
3322
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (282) */
3244
3323
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
3245
3324
 
3246
- /** @name PalletOperationalAccountsAccountOwnershipProof (278) */
3325
+ /** @name PalletOperationalAccountsAccountOwnershipProof (283) */
3247
3326
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
3248
3327
  readonly signature: SpRuntimeMultiSignature;
3249
3328
  }
3250
3329
 
3251
- /** @name PalletOperationalAccountsUpstreamAccessProof (280) */
3330
+ /** @name PalletOperationalAccountsUpstreamAccessProof (285) */
3252
3331
  interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
3253
3332
  readonly upstreamAccount: AccountId32;
3254
3333
  readonly signature: SpRuntimeMultiSignature;
3255
3334
  }
3256
3335
 
3257
- /** @name PalletOperationalAccountsOperationalProgressPatch (281) */
3336
+ /** @name PalletOperationalAccountsOperationalProgressPatch (286) */
3258
3337
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
3259
3338
  readonly uniswapArgonTransfersInAmount: Option<u128>;
3260
3339
  readonly accountBitcoinAmount: Option<u128>;
@@ -3264,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
3264
3343
  readonly miningSeatCount: Option<u32>;
3265
3344
  }
3266
3345
 
3267
- /** @name PalletEthereumVerifierCall (283) */
3346
+ /** @name PalletEthereumVerifierCall (288) */
3268
3347
  interface PalletEthereumVerifierCall extends Enum {
3269
3348
  readonly isForceCheckpoint: boolean;
3270
3349
  readonly asForceCheckpoint: {
@@ -3292,7 +3371,7 @@ declare module '@polkadot/types/lookup' {
3292
3371
  | 'SetOperatingMode';
3293
3372
  }
3294
3373
 
3295
- /** @name PalletEthereumVerifierCheckpointUpdate (284) */
3374
+ /** @name PalletEthereumVerifierCheckpointUpdate (289) */
3296
3375
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3297
3376
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3298
3377
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -3301,7 +3380,7 @@ declare module '@polkadot/types/lookup' {
3301
3380
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3302
3381
  }
3303
3382
 
3304
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
3383
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (290) */
3305
3384
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3306
3385
  readonly slot: u64;
3307
3386
  readonly proposerIndex: u64;
@@ -3310,22 +3389,22 @@ declare module '@polkadot/types/lookup' {
3310
3389
  readonly bodyRoot: H256;
3311
3390
  }
3312
3391
 
3313
- /** @name PalletEthereumVerifierSyncCommittee (286) */
3392
+ /** @name PalletEthereumVerifierSyncCommittee (291) */
3314
3393
  interface PalletEthereumVerifierSyncCommittee extends Struct {
3315
3394
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3316
3395
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3317
3396
  }
3318
3397
 
3319
- /** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
3398
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (293) */
3320
3399
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3321
3400
 
3322
- /** @name PalletEthereumVerifierExecutionHeaderProof (292) */
3401
+ /** @name PalletEthereumVerifierExecutionHeaderProof (297) */
3323
3402
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3324
3403
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3325
3404
  readonly executionBranch: Vec<H256>;
3326
3405
  }
3327
3406
 
3328
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
3407
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (298) */
3329
3408
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3330
3409
  readonly isCapella: boolean;
3331
3410
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3334,7 +3413,7 @@ declare module '@polkadot/types/lookup' {
3334
3413
  readonly type: 'Capella' | 'Deneb';
3335
3414
  }
3336
3415
 
3337
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
3416
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (299) */
3338
3417
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3339
3418
  readonly parentHash: H256;
3340
3419
  readonly feeRecipient: H160;
@@ -3353,7 +3432,7 @@ declare module '@polkadot/types/lookup' {
3353
3432
  readonly withdrawalsRoot: H256;
3354
3433
  }
3355
3434
 
3356
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
3435
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (300) */
3357
3436
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3358
3437
  readonly parentHash: H256;
3359
3438
  readonly feeRecipient: H160;
@@ -3374,7 +3453,7 @@ declare module '@polkadot/types/lookup' {
3374
3453
  readonly excessBlobGas: u64;
3375
3454
  }
3376
3455
 
3377
- /** @name PalletEthereumVerifierForkVersions (296) */
3456
+ /** @name PalletEthereumVerifierForkVersions (301) */
3378
3457
  interface PalletEthereumVerifierForkVersions extends Struct {
3379
3458
  readonly genesis: PalletEthereumVerifierFork;
3380
3459
  readonly altair: PalletEthereumVerifierFork;
@@ -3385,13 +3464,13 @@ declare module '@polkadot/types/lookup' {
3385
3464
  readonly fulu: PalletEthereumVerifierFork;
3386
3465
  }
3387
3466
 
3388
- /** @name PalletEthereumVerifierFork (297) */
3467
+ /** @name PalletEthereumVerifierFork (302) */
3389
3468
  interface PalletEthereumVerifierFork extends Struct {
3390
3469
  readonly version: U8aFixed;
3391
3470
  readonly epoch: Compact<u64>;
3392
3471
  }
3393
3472
 
3394
- /** @name PalletEthereumVerifierUpdate (298) */
3473
+ /** @name PalletEthereumVerifierUpdate (303) */
3395
3474
  interface PalletEthereumVerifierUpdate extends Struct {
3396
3475
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3397
3476
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -3402,22 +3481,22 @@ declare module '@polkadot/types/lookup' {
3402
3481
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3403
3482
  }
3404
3483
 
3405
- /** @name PalletEthereumVerifierSyncAggregate (299) */
3484
+ /** @name PalletEthereumVerifierSyncAggregate (304) */
3406
3485
  interface PalletEthereumVerifierSyncAggregate extends Struct {
3407
3486
  readonly syncCommitteeBits: Bytes;
3408
3487
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3409
3488
  }
3410
3489
 
3411
- /** @name SnowbridgeBeaconPrimitivesSignature (301) */
3490
+ /** @name SnowbridgeBeaconPrimitivesSignature (306) */
3412
3491
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3413
3492
 
3414
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
3493
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (309) */
3415
3494
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3416
3495
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3417
3496
  readonly nextSyncCommitteeBranch: Vec<H256>;
3418
3497
  }
3419
3498
 
3420
- /** @name PalletCrosschainTransferCall (305) */
3499
+ /** @name PalletCrosschainTransferCall (310) */
3421
3500
  interface PalletCrosschainTransferCall extends Enum {
3422
3501
  readonly isSetChainConfig: boolean;
3423
3502
  readonly asSetChainConfig: {
@@ -3507,7 +3586,7 @@ declare module '@polkadot/types/lookup' {
3507
3586
  | 'CollateralizeTransfer';
3508
3587
  }
3509
3588
 
3510
- /** @name PalletCrosschainTransferChainConfig (306) */
3589
+ /** @name PalletCrosschainTransferChainConfig (311) */
3511
3590
  interface PalletCrosschainTransferChainConfig extends Enum {
3512
3591
  readonly isEvm: boolean;
3513
3592
  readonly asEvm: {
@@ -3519,7 +3598,7 @@ declare module '@polkadot/types/lookup' {
3519
3598
  readonly type: 'Evm';
3520
3599
  }
3521
3600
 
3522
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
3601
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (313) */
3523
3602
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3524
3603
  readonly activationGasCost: Compact<u128>;
3525
3604
  readonly signatureGasCost: Compact<u128>;
@@ -3527,56 +3606,77 @@ declare module '@polkadot/types/lookup' {
3527
3606
  readonly estimatedMicrogonsPerEth: u128;
3528
3607
  }
3529
3608
 
3530
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
3609
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (316) */
3531
3610
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3532
3611
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3533
3612
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3534
3613
  }
3535
3614
 
3536
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
3615
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (317) */
3537
3616
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3538
3617
  readonly anchorBlockHash: H256;
3539
3618
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3540
3619
  }
3541
3620
 
3542
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
3621
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (319) */
3543
3622
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3544
3623
  readonly rlp: Bytes;
3545
3624
  }
3546
3625
 
3547
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
3626
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (323) */
3548
3627
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3549
3628
  readonly targetBlockNumber: Compact<u64>;
3550
3629
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3551
3630
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3552
3631
  }
3553
3632
 
3554
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
3633
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (324) */
3555
3634
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3556
3635
  readonly nodes: Vec<Bytes>;
3557
3636
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3558
3637
  }
3559
3638
 
3560
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
3639
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (328) */
3561
3640
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3562
3641
  readonly transactionIndex: Compact<u64>;
3563
3642
  readonly nodeIndexes: Vec<u16>;
3564
3643
  }
3565
3644
 
3566
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
3645
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (333) */
3567
3646
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3568
3647
  readonly transactionIndex: Compact<u64>;
3569
3648
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3570
3649
  }
3571
3650
 
3572
- /** @name ArgonPrimitivesEthereumEthereumLog (329) */
3651
+ /** @name ArgonPrimitivesEthereumEthereumLog (334) */
3573
3652
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3574
3653
  readonly address: H160;
3575
3654
  readonly topics: Vec<H256>;
3576
3655
  readonly data: Bytes;
3577
3656
  }
3578
3657
 
3579
- /** @name PalletMultisigError (335) */
3658
+ /** @name PalletBootstrapCall (339) */
3659
+ interface PalletBootstrapCall extends Enum {
3660
+ readonly isSetRecoveryPayload: boolean;
3661
+ readonly asSetRecoveryPayload: {
3662
+ readonly recoveryPubkey: PalletBootstrapRecoveryPubkey;
3663
+ readonly recoveryProof: PalletBootstrapRecoveryProof;
3664
+ readonly encryptedRecoveryPayload: Bytes;
3665
+ } & Struct;
3666
+ readonly isSetEndpoint: boolean;
3667
+ readonly asSetEndpoint: {
3668
+ readonly endpointPubkey: PalletBootstrapEndpointPubkey;
3669
+ readonly encryptedEndpoint: Bytes;
3670
+ } & Struct;
3671
+ readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
3672
+ }
3673
+
3674
+ /** @name PalletBootstrapRecoveryProof (340) */
3675
+ interface PalletBootstrapRecoveryProof extends Struct {
3676
+ readonly signature: U8aFixed;
3677
+ }
3678
+
3679
+ /** @name PalletMultisigError (342) */
3580
3680
  interface PalletMultisigError extends Enum {
3581
3681
  readonly isMinimumThreshold: boolean;
3582
3682
  readonly isAlreadyApproved: boolean;
@@ -3609,21 +3709,21 @@ declare module '@polkadot/types/lookup' {
3609
3709
  | 'AlreadyStored';
3610
3710
  }
3611
3711
 
3612
- /** @name PalletProxyProxyDefinition (338) */
3712
+ /** @name PalletProxyProxyDefinition (345) */
3613
3713
  interface PalletProxyProxyDefinition extends Struct {
3614
3714
  readonly delegate: AccountId32;
3615
3715
  readonly proxyType: ArgonRuntimeProxyType;
3616
3716
  readonly delay: u32;
3617
3717
  }
3618
3718
 
3619
- /** @name PalletProxyAnnouncement (342) */
3719
+ /** @name PalletProxyAnnouncement (349) */
3620
3720
  interface PalletProxyAnnouncement extends Struct {
3621
3721
  readonly real: AccountId32;
3622
3722
  readonly callHash: H256;
3623
3723
  readonly height: u32;
3624
3724
  }
3625
3725
 
3626
- /** @name PalletProxyError (344) */
3726
+ /** @name PalletProxyError (351) */
3627
3727
  interface PalletProxyError extends Enum {
3628
3728
  readonly isTooMany: boolean;
3629
3729
  readonly isNotFound: boolean;
@@ -3644,16 +3744,16 @@ declare module '@polkadot/types/lookup' {
3644
3744
  | 'NoSelfProxy';
3645
3745
  }
3646
3746
 
3647
- /** @name ArgonPrimitivesTickTicker (345) */
3747
+ /** @name ArgonPrimitivesTickTicker (352) */
3648
3748
  interface ArgonPrimitivesTickTicker extends Struct {
3649
3749
  readonly tickDurationMillis: Compact<u64>;
3650
3750
  readonly channelHoldExpirationTicks: Compact<u64>;
3651
3751
  }
3652
3752
 
3653
- /** @name PalletTicksError (347) */
3753
+ /** @name PalletTicksError (354) */
3654
3754
  type PalletTicksError = Null;
3655
3755
 
3656
- /** @name PalletMiningSlotMinerNonceScoring (350) */
3756
+ /** @name PalletMiningSlotMinerNonceScoring (357) */
3657
3757
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3658
3758
  readonly nonce: U256;
3659
3759
  readonly lastWinBlock: Option<u32>;
@@ -3661,7 +3761,7 @@ declare module '@polkadot/types/lookup' {
3661
3761
  readonly frameStartBlocksWonSurplus: i16;
3662
3762
  }
3663
3763
 
3664
- /** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
3764
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (369) */
3665
3765
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3666
3766
  readonly bidsCount: u32;
3667
3767
  readonly bidAmountMin: u128;
@@ -3669,14 +3769,14 @@ declare module '@polkadot/types/lookup' {
3669
3769
  readonly bidAmountSum: u128;
3670
3770
  }
3671
3771
 
3672
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
3772
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (373) */
3673
3773
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3674
3774
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3675
3775
  readonly ticksBetweenSlots: Compact<u64>;
3676
3776
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3677
3777
  }
3678
3778
 
3679
- /** @name PalletMiningSlotError (376) */
3779
+ /** @name PalletMiningSlotError (383) */
3680
3780
  interface PalletMiningSlotError extends Enum {
3681
3781
  readonly isSlotNotTakingBids: boolean;
3682
3782
  readonly isTooManyBlockRegistrants: boolean;
@@ -3703,7 +3803,7 @@ declare module '@polkadot/types/lookup' {
3703
3803
  | 'UnrecoverableHold';
3704
3804
  }
3705
3805
 
3706
- /** @name ArgonPrimitivesBitcoinUtxoValue (377) */
3806
+ /** @name ArgonPrimitivesBitcoinUtxoValue (384) */
3707
3807
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3708
3808
  readonly utxoId: u64;
3709
3809
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3712,7 +3812,7 @@ declare module '@polkadot/types/lookup' {
3712
3812
  readonly watchForSpentUntilHeight: Compact<u64>;
3713
3813
  }
3714
3814
 
3715
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
3815
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (385) */
3716
3816
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3717
3817
  readonly isP2wsh: boolean;
3718
3818
  readonly asP2wsh: {
@@ -3721,7 +3821,7 @@ declare module '@polkadot/types/lookup' {
3721
3821
  readonly type: 'P2wsh';
3722
3822
  }
3723
3823
 
3724
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
3824
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (394) */
3725
3825
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3726
3826
  readonly isBitcoin: boolean;
3727
3827
  readonly isTestnet: boolean;
@@ -3730,7 +3830,7 @@ declare module '@polkadot/types/lookup' {
3730
3830
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3731
3831
  }
3732
3832
 
3733
- /** @name PalletBitcoinUtxosError (388) */
3833
+ /** @name PalletBitcoinUtxosError (395) */
3734
3834
  interface PalletBitcoinUtxosError extends Enum {
3735
3835
  readonly isNoPermissions: boolean;
3736
3836
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3765,7 +3865,7 @@ declare module '@polkadot/types/lookup' {
3765
3865
  | 'LockAlreadyFunded';
3766
3866
  }
3767
3867
 
3768
- /** @name ArgonPrimitivesVault (389) */
3868
+ /** @name ArgonPrimitivesVault (396) */
3769
3869
  interface ArgonPrimitivesVault extends Struct {
3770
3870
  readonly operatorAccountId: AccountId32;
3771
3871
  readonly delegateAccountId: Option<AccountId32>;
@@ -3774,9 +3874,12 @@ declare module '@polkadot/types/lookup' {
3774
3874
  readonly securitization: Compact<u128>;
3775
3875
  readonly securitizationTarget: Compact<u128>;
3776
3876
  readonly securitizationLocked: Compact<u128>;
3877
+ readonly backfillSecuritizationLocked: Compact<u128>;
3878
+ readonly backfillSecuritizationReserved: Compact<u128>;
3777
3879
  readonly securitizationPendingActivation: Compact<u128>;
3778
3880
  readonly lockedSatoshis: Compact<u64>;
3779
3881
  readonly securitizedSatoshis: Compact<u64>;
3882
+ readonly backfillSecuritizedSatoshis: Compact<u64>;
3780
3883
  readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
3781
3884
  readonly securitizationRatio: Compact<u128>;
3782
3885
  readonly isClosed: bool;
@@ -3786,13 +3889,13 @@ declare module '@polkadot/types/lookup' {
3786
3889
  readonly operationalMinimumReleaseTick: Option<u64>;
3787
3890
  }
3788
3891
 
3789
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
3892
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (403) */
3790
3893
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3791
3894
  readonly committedMicronots: Compact<u128>;
3792
3895
  readonly encumberedMicronots: Compact<u128>;
3793
3896
  }
3794
3897
 
3795
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
3898
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (405) */
3796
3899
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3797
3900
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3798
3901
  readonly depth: Compact<u8>;
@@ -3802,14 +3905,14 @@ declare module '@polkadot/types/lookup' {
3802
3905
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3803
3906
  }
3804
3907
 
3805
- /** @name ArgonPrimitivesBitcoinNetworkKind (400) */
3908
+ /** @name ArgonPrimitivesBitcoinNetworkKind (407) */
3806
3909
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3807
3910
  readonly isMain: boolean;
3808
3911
  readonly isTest: boolean;
3809
3912
  readonly type: 'Main' | 'Test';
3810
3913
  }
3811
3914
 
3812
- /** @name PalletVaultsVaultFrameRevenue (409) */
3915
+ /** @name PalletVaultsVaultFrameRevenue (416) */
3813
3916
  interface PalletVaultsVaultFrameRevenue extends Struct {
3814
3917
  readonly frameId: Compact<u64>;
3815
3918
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3829,7 +3932,7 @@ declare module '@polkadot/types/lookup' {
3829
3932
  readonly uncollectedRevenue: Compact<u128>;
3830
3933
  }
3831
3934
 
3832
- /** @name PalletVaultsRecentCapacityDrop (412) */
3935
+ /** @name PalletVaultsRecentCapacityDrop (419) */
3833
3936
  interface PalletVaultsRecentCapacityDrop extends Struct {
3834
3937
  readonly blockNumber: Compact<u32>;
3835
3938
  readonly availableBeforeDrop: Compact<u128>;
@@ -3837,7 +3940,7 @@ declare module '@polkadot/types/lookup' {
3837
3940
  readonly noFeeFailuresUsed: Compact<u32>;
3838
3941
  }
3839
3942
 
3840
- /** @name PalletVaultsError (414) */
3943
+ /** @name PalletVaultsError (421) */
3841
3944
  interface PalletVaultsError extends Enum {
3842
3945
  readonly isNoMoreVaultIds: boolean;
3843
3946
  readonly isInsufficientFunds: boolean;
@@ -3910,7 +4013,7 @@ declare module '@polkadot/types/lookup' {
3910
4013
  | 'CommittedArgonotsBelowEncumberedBacking';
3911
4014
  }
3912
4015
 
3913
- /** @name PalletBitcoinLocksLockedBitcoin (415) */
4016
+ /** @name PalletBitcoinLocksLockedBitcoin (422) */
3914
4017
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
3915
4018
  readonly vaultId: Compact<u32>;
3916
4019
  readonly liquidityPromised: Compact<u128>;
@@ -3930,11 +4033,12 @@ declare module '@polkadot/types/lookup' {
3930
4033
  readonly createdAtHeight: Compact<u64>;
3931
4034
  readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
3932
4035
  readonly isFunded: bool;
4036
+ readonly isBackfill: bool;
3933
4037
  readonly fundHoldExtensions: BTreeMap<u64, u128>;
3934
4038
  readonly createdAtArgonBlock: Compact<u32>;
3935
4039
  }
3936
4040
 
3937
- /** @name PalletBitcoinLocksLockReleaseRequest (419) */
4041
+ /** @name PalletBitcoinLocksLockReleaseRequest (426) */
3938
4042
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3939
4043
  readonly utxoId: Compact<u64>;
3940
4044
  readonly vaultId: Compact<u32>;
@@ -3944,7 +4048,7 @@ declare module '@polkadot/types/lookup' {
3944
4048
  readonly redemptionAmount: Compact<u128>;
3945
4049
  }
3946
4050
 
3947
- /** @name PalletBitcoinLocksOrphanedUtxo (421) */
4051
+ /** @name PalletBitcoinLocksOrphanedUtxo (428) */
3948
4052
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3949
4053
  readonly utxoId: Compact<u64>;
3950
4054
  readonly vaultId: Compact<u32>;
@@ -3953,14 +4057,14 @@ declare module '@polkadot/types/lookup' {
3953
4057
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3954
4058
  }
3955
4059
 
3956
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
4060
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (430) */
3957
4061
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3958
4062
  readonly bitcoinNetworkFee: u64;
3959
4063
  readonly toScriptPubkey: Bytes;
3960
4064
  readonly createdAtArgonBlockNumber: u32;
3961
4065
  }
3962
4066
 
3963
- /** @name PalletBitcoinLocksError (430) */
4067
+ /** @name PalletBitcoinLocksError (437) */
3964
4068
  interface PalletBitcoinLocksError extends Enum {
3965
4069
  readonly isInsufficientFunds: boolean;
3966
4070
  readonly isInsufficientVaultFunds: boolean;
@@ -4036,7 +4140,7 @@ declare module '@polkadot/types/lookup' {
4036
4140
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
4037
4141
  }
4038
4142
 
4039
- /** @name ArgonPrimitivesVaultVaultError (431) */
4143
+ /** @name ArgonPrimitivesVaultVaultError (438) */
4040
4144
  interface ArgonPrimitivesVaultVaultError extends Enum {
4041
4145
  readonly isVaultClosed: boolean;
4042
4146
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -4067,7 +4171,7 @@ declare module '@polkadot/types/lookup' {
4067
4171
  | 'CommittedArgonotsBelowEncumberedBacking';
4068
4172
  }
4069
4173
 
4070
- /** @name PalletNotariesError (443) */
4174
+ /** @name PalletNotariesError (450) */
4071
4175
  interface PalletNotariesError extends Enum {
4072
4176
  readonly isProposalNotFound: boolean;
4073
4177
  readonly isMaxNotariesExceeded: boolean;
@@ -4090,7 +4194,7 @@ declare module '@polkadot/types/lookup' {
4090
4194
  | 'InvalidNotary';
4091
4195
  }
4092
4196
 
4093
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
4197
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (454) */
4094
4198
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
4095
4199
  readonly notebookNumber: Compact<u32>;
4096
4200
  readonly tick: Compact<u64>;
@@ -4099,7 +4203,7 @@ declare module '@polkadot/types/lookup' {
4099
4203
  readonly parentSecret: Option<H256>;
4100
4204
  }
4101
4205
 
4102
- /** @name PalletNotebookError (450) */
4206
+ /** @name PalletNotebookError (457) */
4103
4207
  interface PalletNotebookError extends Enum {
4104
4208
  readonly isDuplicateNotebookNumber: boolean;
4105
4209
  readonly isMissingNotebookNumber: boolean;
@@ -4134,7 +4238,7 @@ declare module '@polkadot/types/lookup' {
4134
4238
  | 'InvalidNotebookSubmissionTick';
4135
4239
  }
4136
4240
 
4137
- /** @name PalletLocalchainTransferQueuedTransferOut (451) */
4241
+ /** @name PalletLocalchainTransferQueuedTransferOut (458) */
4138
4242
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
4139
4243
  readonly accountId: AccountId32;
4140
4244
  readonly amount: u128;
@@ -4142,10 +4246,10 @@ declare module '@polkadot/types/lookup' {
4142
4246
  readonly notaryId: u32;
4143
4247
  }
4144
4248
 
4145
- /** @name FrameSupportPalletId (453) */
4249
+ /** @name FrameSupportPalletId (460) */
4146
4250
  interface FrameSupportPalletId extends U8aFixed {}
4147
4251
 
4148
- /** @name PalletLocalchainTransferError (454) */
4252
+ /** @name PalletLocalchainTransferError (461) */
4149
4253
  interface PalletLocalchainTransferError extends Enum {
4150
4254
  readonly isMaxBlockTransfersExceeded: boolean;
4151
4255
  readonly isInsufficientFunds: boolean;
@@ -4166,7 +4270,7 @@ declare module '@polkadot/types/lookup' {
4166
4270
  | 'NoAvailableTransferId';
4167
4271
  }
4168
4272
 
4169
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
4273
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (465) */
4170
4274
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
4171
4275
  readonly notaryId: Compact<u32>;
4172
4276
  readonly notebookNumber: Compact<u32>;
@@ -4175,13 +4279,13 @@ declare module '@polkadot/types/lookup' {
4175
4279
  readonly blockVotingPower: Compact<u128>;
4176
4280
  }
4177
4281
 
4178
- /** @name PalletBlockSealSpecError (463) */
4282
+ /** @name PalletBlockSealSpecError (470) */
4179
4283
  interface PalletBlockSealSpecError extends Enum {
4180
4284
  readonly isMaxNotebooksAtTickExceeded: boolean;
4181
4285
  readonly type: 'MaxNotebooksAtTickExceeded';
4182
4286
  }
4183
4287
 
4184
- /** @name PalletDomainsError (465) */
4288
+ /** @name PalletDomainsError (472) */
4185
4289
  interface PalletDomainsError extends Enum {
4186
4290
  readonly isDomainNotRegistered: boolean;
4187
4291
  readonly isNotDomainOwner: boolean;
@@ -4196,34 +4300,43 @@ declare module '@polkadot/types/lookup' {
4196
4300
  | 'AccountDecodingError';
4197
4301
  }
4198
4302
 
4199
- /** @name PalletPriceIndexCpiMeasurementBucket (467) */
4303
+ /** @name PalletPriceIndexEthereumPriceFrameAccumulator (474) */
4304
+ interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
4305
+ readonly totalUsdPrice: u128;
4306
+ readonly totalWeiPerGas: Compact<u128>;
4307
+ readonly sampleCount: Compact<u32>;
4308
+ }
4309
+
4310
+ /** @name PalletPriceIndexCpiMeasurementBucket (479) */
4200
4311
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
4201
4312
  readonly tickRange: ITuple<[u64, u64]>;
4202
4313
  readonly totalCpi: i128;
4203
4314
  readonly measurementsCount: u32;
4204
4315
  }
4205
4316
 
4206
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
4317
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (483) */
4207
4318
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
4208
4319
  readonly frameId: Compact<u64>;
4209
4320
  readonly totalMicrogonsPerArgonot: Compact<u128>;
4210
4321
  readonly sampleCount: Compact<u32>;
4211
4322
  }
4212
4323
 
4213
- /** @name PalletPriceIndexError (472) */
4324
+ /** @name PalletPriceIndexError (484) */
4214
4325
  interface PalletPriceIndexError extends Enum {
4215
4326
  readonly isNotAuthorizedOperator: boolean;
4216
4327
  readonly isMissingValue: boolean;
4217
4328
  readonly isPricesTooOld: boolean;
4218
4329
  readonly isMaxPriceChangePerTickExceeded: boolean;
4330
+ readonly isInvalidEthereumPrices: boolean;
4219
4331
  readonly type:
4220
4332
  | 'NotAuthorizedOperator'
4221
4333
  | 'MissingValue'
4222
4334
  | 'PricesTooOld'
4223
- | 'MaxPriceChangePerTickExceeded';
4335
+ | 'MaxPriceChangePerTickExceeded'
4336
+ | 'InvalidEthereumPrices';
4224
4337
  }
4225
4338
 
4226
- /** @name PalletGrandpaStoredState (473) */
4339
+ /** @name PalletGrandpaStoredState (485) */
4227
4340
  interface PalletGrandpaStoredState extends Enum {
4228
4341
  readonly isLive: boolean;
4229
4342
  readonly isPendingPause: boolean;
@@ -4240,7 +4353,7 @@ declare module '@polkadot/types/lookup' {
4240
4353
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4241
4354
  }
4242
4355
 
4243
- /** @name PalletGrandpaStoredPendingChange (474) */
4356
+ /** @name PalletGrandpaStoredPendingChange (486) */
4244
4357
  interface PalletGrandpaStoredPendingChange extends Struct {
4245
4358
  readonly scheduledAt: u32;
4246
4359
  readonly delay: u32;
@@ -4248,7 +4361,7 @@ declare module '@polkadot/types/lookup' {
4248
4361
  readonly forced: Option<u32>;
4249
4362
  }
4250
4363
 
4251
- /** @name PalletGrandpaError (476) */
4364
+ /** @name PalletGrandpaError (488) */
4252
4365
  interface PalletGrandpaError extends Enum {
4253
4366
  readonly isPauseFailed: boolean;
4254
4367
  readonly isResumeFailed: boolean;
@@ -4267,14 +4380,14 @@ declare module '@polkadot/types/lookup' {
4267
4380
  | 'DuplicateOffenceReport';
4268
4381
  }
4269
4382
 
4270
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
4383
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (489) */
4271
4384
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
4272
4385
  readonly blockAuthorAccountId: AccountId32;
4273
4386
  readonly blockVoteRewardsAccount: Option<AccountId32>;
4274
4387
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
4275
4388
  }
4276
4389
 
4277
- /** @name PalletBlockSealError (479) */
4390
+ /** @name PalletBlockSealError (491) */
4278
4391
  interface PalletBlockSealError extends Enum {
4279
4392
  readonly isInvalidVoteSealStrength: boolean;
4280
4393
  readonly isInvalidSubmitter: boolean;
@@ -4321,10 +4434,10 @@ declare module '@polkadot/types/lookup' {
4321
4434
  | 'DuplicateVoteBlockAtTick';
4322
4435
  }
4323
4436
 
4324
- /** @name PalletBlockRewardsError (483) */
4437
+ /** @name PalletBlockRewardsError (495) */
4325
4438
  type PalletBlockRewardsError = Null;
4326
4439
 
4327
- /** @name PalletMintPendingMintUtxo (484) */
4440
+ /** @name PalletMintPendingMintUtxo (496) */
4328
4441
  interface PalletMintPendingMintUtxo extends Struct {
4329
4442
  readonly utxoId: Compact<u64>;
4330
4443
  readonly accountId: AccountId32;
@@ -4332,34 +4445,34 @@ declare module '@polkadot/types/lookup' {
4332
4445
  readonly maxAmountPerFrame: Compact<u128>;
4333
4446
  }
4334
4447
 
4335
- /** @name PalletMintMintQueueCursor (486) */
4448
+ /** @name PalletMintMintQueueCursor (498) */
4336
4449
  interface PalletMintMintQueueCursor extends Struct {
4337
4450
  readonly payoutStartIndex: Compact<u64>;
4338
4451
  readonly payoutCursorIndex: Compact<u64>;
4339
4452
  readonly payoutCursorFrameId: Option<u64>;
4340
4453
  }
4341
4454
 
4342
- /** @name PalletMintMintAction (489) */
4455
+ /** @name PalletMintMintAction (501) */
4343
4456
  interface PalletMintMintAction extends Struct {
4344
4457
  readonly argonBurned: u128;
4345
4458
  readonly argonMinted: u128;
4346
4459
  readonly bitcoinMinted: u128;
4347
4460
  }
4348
4461
 
4349
- /** @name PalletMintError (491) */
4462
+ /** @name PalletMintError (503) */
4350
4463
  interface PalletMintError extends Enum {
4351
4464
  readonly isTooManyPendingMints: boolean;
4352
4465
  readonly type: 'TooManyPendingMints';
4353
4466
  }
4354
4467
 
4355
- /** @name PalletBalancesBalanceLock (493) */
4468
+ /** @name PalletBalancesBalanceLock (505) */
4356
4469
  interface PalletBalancesBalanceLock extends Struct {
4357
4470
  readonly id: U8aFixed;
4358
4471
  readonly amount: u128;
4359
4472
  readonly reasons: PalletBalancesReasons;
4360
4473
  }
4361
4474
 
4362
- /** @name PalletBalancesReasons (494) */
4475
+ /** @name PalletBalancesReasons (506) */
4363
4476
  interface PalletBalancesReasons extends Enum {
4364
4477
  readonly isFee: boolean;
4365
4478
  readonly isMisc: boolean;
@@ -4367,38 +4480,38 @@ declare module '@polkadot/types/lookup' {
4367
4480
  readonly type: 'Fee' | 'Misc' | 'All';
4368
4481
  }
4369
4482
 
4370
- /** @name PalletBalancesReserveData (497) */
4483
+ /** @name PalletBalancesReserveData (509) */
4371
4484
  interface PalletBalancesReserveData extends Struct {
4372
4485
  readonly id: U8aFixed;
4373
4486
  readonly amount: u128;
4374
4487
  }
4375
4488
 
4376
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
4489
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (512) */
4377
4490
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
4378
4491
  readonly id: ArgonRuntimeRuntimeHoldReason;
4379
4492
  readonly amount: u128;
4380
4493
  }
4381
4494
 
4382
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
4495
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (515) */
4383
4496
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
4384
4497
  readonly id: ArgonRuntimeRuntimeFreezeReason;
4385
4498
  readonly amount: u128;
4386
4499
  }
4387
4500
 
4388
- /** @name ArgonRuntimeRuntimeFreezeReason (504) */
4501
+ /** @name ArgonRuntimeRuntimeFreezeReason (516) */
4389
4502
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
4390
4503
  readonly isBlockRewards: boolean;
4391
4504
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
4392
4505
  readonly type: 'BlockRewards';
4393
4506
  }
4394
4507
 
4395
- /** @name PalletBlockRewardsFreezeReason (505) */
4508
+ /** @name PalletBlockRewardsFreezeReason (517) */
4396
4509
  interface PalletBlockRewardsFreezeReason extends Enum {
4397
4510
  readonly isMaturationPeriod: boolean;
4398
4511
  readonly type: 'MaturationPeriod';
4399
4512
  }
4400
4513
 
4401
- /** @name PalletBalancesError (507) */
4514
+ /** @name PalletBalancesError (519) */
4402
4515
  interface PalletBalancesError extends Enum {
4403
4516
  readonly isVestingBalance: boolean;
4404
4517
  readonly isLiquidityRestrictions: boolean;
@@ -4427,7 +4540,7 @@ declare module '@polkadot/types/lookup' {
4427
4540
  | 'DeltaZero';
4428
4541
  }
4429
4542
 
4430
- /** @name PalletTxPauseError (509) */
4543
+ /** @name PalletTxPauseError (521) */
4431
4544
  interface PalletTxPauseError extends Enum {
4432
4545
  readonly isIsPaused: boolean;
4433
4546
  readonly isIsUnpaused: boolean;
@@ -4436,69 +4549,72 @@ declare module '@polkadot/types/lookup' {
4436
4549
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4437
4550
  }
4438
4551
 
4439
- /** @name PalletTransactionPaymentReleases (510) */
4552
+ /** @name PalletTransactionPaymentReleases (522) */
4440
4553
  interface PalletTransactionPaymentReleases extends Enum {
4441
4554
  readonly isV1Ancient: boolean;
4442
4555
  readonly isV2: boolean;
4443
4556
  readonly type: 'V1Ancient' | 'V2';
4444
4557
  }
4445
4558
 
4446
- /** @name FrameSupportStorageNoDrop (511) */
4559
+ /** @name FrameSupportStorageNoDrop (523) */
4447
4560
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4448
4561
 
4449
- /** @name FrameSupportTokensFungibleImbalance (512) */
4562
+ /** @name FrameSupportTokensFungibleImbalance (524) */
4450
4563
  interface FrameSupportTokensFungibleImbalance extends Struct {
4451
4564
  readonly amount: u128;
4452
4565
  }
4453
4566
 
4454
- /** @name PalletUtilityError (513) */
4567
+ /** @name PalletUtilityError (525) */
4455
4568
  interface PalletUtilityError extends Enum {
4456
4569
  readonly isTooManyCalls: boolean;
4457
4570
  readonly type: 'TooManyCalls';
4458
4571
  }
4459
4572
 
4460
- /** @name PalletSudoError (514) */
4573
+ /** @name PalletSudoError (526) */
4461
4574
  interface PalletSudoError extends Enum {
4462
4575
  readonly isRequireSudo: boolean;
4463
4576
  readonly type: 'RequireSudo';
4464
4577
  }
4465
4578
 
4466
- /** @name PalletTreasuryFrameVaultCapital (515) */
4579
+ /** @name PalletTreasuryFrameVaultCapital (527) */
4467
4580
  interface PalletTreasuryFrameVaultCapital extends Struct {
4468
4581
  readonly frameId: Compact<u64>;
4469
4582
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4470
4583
  }
4471
4584
 
4472
- /** @name PalletTreasuryVaultCapital (517) */
4585
+ /** @name PalletTreasuryVaultCapital (529) */
4473
4586
  interface PalletTreasuryVaultCapital extends Struct {
4474
4587
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4588
+ readonly backfillBondsEligible: Compact<u32>;
4589
+ readonly backfillProrata: u128;
4475
4590
  readonly eligibleBonds: Compact<u32>;
4476
4591
  }
4477
4592
 
4478
- /** @name PalletTreasuryBondLotAllocation (519) */
4593
+ /** @name PalletTreasuryBondLotAllocation (531) */
4479
4594
  interface PalletTreasuryBondLotAllocation extends Struct {
4480
4595
  readonly bondLotId: Compact<u64>;
4481
4596
  readonly prorata: u128;
4482
4597
  }
4483
4598
 
4484
- /** @name PalletTreasuryFrameArgonotBondParticipants (524) */
4599
+ /** @name PalletTreasuryFrameArgonotBondParticipants (536) */
4485
4600
  interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
4486
4601
  readonly frameId: Compact<u64>;
4487
4602
  readonly totalBonds: Compact<u32>;
4488
4603
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4489
4604
  }
4490
4605
 
4491
- /** @name PalletTreasuryBondLotSummary (526) */
4606
+ /** @name PalletTreasuryBondLotSummary (538) */
4492
4607
  interface PalletTreasuryBondLotSummary extends Struct {
4493
4608
  readonly bondLotId: Compact<u64>;
4494
4609
  readonly bonds: Compact<u32>;
4495
4610
  }
4496
4611
 
4497
- /** @name PalletTreasuryBondLot (528) */
4612
+ /** @name PalletTreasuryBondLot (540) */
4498
4613
  interface PalletTreasuryBondLot extends Struct {
4499
4614
  readonly owner: AccountId32;
4500
4615
  readonly program: PalletTreasuryBondProgram;
4501
4616
  readonly bonds: Compact<u32>;
4617
+ readonly isBackfill: bool;
4502
4618
  readonly createdFrameId: Compact<u64>;
4503
4619
  readonly participatedFrames: Compact<u32>;
4504
4620
  readonly lastFrameEarningsFrameId: Option<u64>;
@@ -4508,7 +4624,7 @@ declare module '@polkadot/types/lookup' {
4508
4624
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4509
4625
  }
4510
4626
 
4511
- /** @name PalletTreasuryBondProgram (529) */
4627
+ /** @name PalletTreasuryBondProgram (541) */
4512
4628
  interface PalletTreasuryBondProgram extends Enum {
4513
4629
  readonly isVault: boolean;
4514
4630
  readonly asVault: {
@@ -4520,7 +4636,14 @@ declare module '@polkadot/types/lookup' {
4520
4636
  readonly type: 'Vault' | 'Argonot';
4521
4637
  }
4522
4638
 
4523
- /** @name PalletTreasuryError (533) */
4639
+ /** @name PalletTreasuryVaultBondState (544) */
4640
+ interface PalletTreasuryVaultBondState extends Struct {
4641
+ readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4642
+ readonly backfillBonds: Compact<u32>;
4643
+ readonly backfillBondsReserved: Compact<u32>;
4644
+ }
4645
+
4646
+ /** @name PalletTreasuryError (546) */
4524
4647
  interface PalletTreasuryError extends Enum {
4525
4648
  readonly isBondPurchaseRejected: boolean;
4526
4649
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4540,6 +4663,8 @@ declare module '@polkadot/types/lookup' {
4540
4663
  readonly isInvalidBonusApprovalSignature: boolean;
4541
4664
  readonly isArgonotBondPurchaseBelowCutoff: boolean;
4542
4665
  readonly isArgonotBondPurchaseAboveCap: boolean;
4666
+ readonly isBondLotNotEligibleForBackfill: boolean;
4667
+ readonly isNoPermissions: boolean;
4543
4668
  readonly type:
4544
4669
  | 'BondPurchaseRejected'
4545
4670
  | 'VaultNotAcceptingBondPurchases'
@@ -4558,16 +4683,18 @@ declare module '@polkadot/types/lookup' {
4558
4683
  | 'BonusApprovalExistingBondLot'
4559
4684
  | 'InvalidBonusApprovalSignature'
4560
4685
  | 'ArgonotBondPurchaseBelowCutoff'
4561
- | 'ArgonotBondPurchaseAboveCap';
4686
+ | 'ArgonotBondPurchaseAboveCap'
4687
+ | 'BondLotNotEligibleForBackfill'
4688
+ | 'NoPermissions';
4562
4689
  }
4563
4690
 
4564
- /** @name PalletFeeControlError (534) */
4691
+ /** @name PalletFeeControlError (547) */
4565
4692
  interface PalletFeeControlError extends Enum {
4566
4693
  readonly isSponsoredFeeTooHigh: boolean;
4567
4694
  readonly type: 'SponsoredFeeTooHigh';
4568
4695
  }
4569
4696
 
4570
- /** @name PalletOperationalAccountsOperationalAccount (535) */
4697
+ /** @name PalletOperationalAccountsOperationalAccount (548) */
4571
4698
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4572
4699
  readonly vaultAccount: AccountId32;
4573
4700
  readonly miningAccount: AccountId32;
@@ -4590,13 +4717,13 @@ declare module '@polkadot/types/lookup' {
4590
4717
  readonly isOperationallyCertified: bool;
4591
4718
  }
4592
4719
 
4593
- /** @name PalletOperationalAccountsRewardsConfig (536) */
4720
+ /** @name PalletOperationalAccountsRewardsConfig (549) */
4594
4721
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4595
4722
  readonly operationalCertificationReward: Compact<u128>;
4596
4723
  readonly operationalCertificationBonusReward: Compact<u128>;
4597
4724
  }
4598
4725
 
4599
- /** @name PalletOperationalAccountsError (538) */
4726
+ /** @name PalletOperationalAccountsError (550) */
4600
4727
  interface PalletOperationalAccountsError extends Enum {
4601
4728
  readonly isAlreadyRegistered: boolean;
4602
4729
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4609,8 +4736,6 @@ declare module '@polkadot/types/lookup' {
4609
4736
  readonly isMinimumsNotMet: boolean;
4610
4737
  readonly isCannotGrantAccessToSelf: boolean;
4611
4738
  readonly isNoProgressUpdateProvided: boolean;
4612
- readonly isEncryptedServerTooLong: boolean;
4613
- readonly isNotUpstreamOfDownstream: boolean;
4614
4739
  readonly isNoPendingRewards: boolean;
4615
4740
  readonly isRewardClaimBelowMinimum: boolean;
4616
4741
  readonly isRewardClaimNotWholeArgon: boolean;
@@ -4631,8 +4756,6 @@ declare module '@polkadot/types/lookup' {
4631
4756
  | 'MinimumsNotMet'
4632
4757
  | 'CannotGrantAccessToSelf'
4633
4758
  | 'NoProgressUpdateProvided'
4634
- | 'EncryptedServerTooLong'
4635
- | 'NotUpstreamOfDownstream'
4636
4759
  | 'NoPendingRewards'
4637
4760
  | 'RewardClaimBelowMinimum'
4638
4761
  | 'RewardClaimNotWholeArgon'
@@ -4643,12 +4766,12 @@ declare module '@polkadot/types/lookup' {
4643
4766
  | 'UpstreamHasNoAvailableAccessCodes';
4644
4767
  }
4645
4768
 
4646
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
4769
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (551) */
4647
4770
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4648
4771
  readonly slot: Compact<u64>;
4649
4772
  }
4650
4773
 
4651
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
4774
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (552) */
4652
4775
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4653
4776
  readonly blockNumber: Compact<u64>;
4654
4777
  readonly timestampMillis: Compact<u64>;
@@ -4658,44 +4781,44 @@ declare module '@polkadot/types/lookup' {
4658
4781
  readonly receiptsRoot: H256;
4659
4782
  }
4660
4783
 
4661
- /** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
4784
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (553) */
4662
4785
  interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4663
4786
  readonly root: H256;
4664
4787
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4665
4788
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4666
4789
  }
4667
4790
 
4668
- /** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
4791
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (555) */
4669
4792
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4670
4793
  readonly point: SnowbridgeAmclBls381Ecp;
4671
4794
  }
4672
4795
 
4673
- /** @name SnowbridgeAmclBls381Ecp (544) */
4796
+ /** @name SnowbridgeAmclBls381Ecp (556) */
4674
4797
  interface SnowbridgeAmclBls381Ecp extends Struct {
4675
4798
  readonly x: SnowbridgeAmclBls381Fp;
4676
4799
  readonly y: SnowbridgeAmclBls381Fp;
4677
4800
  readonly z: SnowbridgeAmclBls381Fp;
4678
4801
  }
4679
4802
 
4680
- /** @name SnowbridgeAmclBls381Fp (545) */
4803
+ /** @name SnowbridgeAmclBls381Fp (557) */
4681
4804
  interface SnowbridgeAmclBls381Fp extends Struct {
4682
4805
  readonly x: SnowbridgeAmclBls381Big;
4683
4806
  readonly xes: i32;
4684
4807
  }
4685
4808
 
4686
- /** @name SnowbridgeAmclBls381Big (546) */
4809
+ /** @name SnowbridgeAmclBls381Big (558) */
4687
4810
  interface SnowbridgeAmclBls381Big extends Struct {
4688
4811
  readonly w: Vec<i32>;
4689
4812
  }
4690
4813
 
4691
- /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
4814
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (562) */
4692
4815
  interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4693
4816
  readonly isMainnet: boolean;
4694
4817
  readonly isMinimal: boolean;
4695
4818
  readonly type: 'Mainnet' | 'Minimal';
4696
4819
  }
4697
4820
 
4698
- /** @name PalletEthereumVerifierError (551) */
4821
+ /** @name PalletEthereumVerifierError (563) */
4699
4822
  interface PalletEthereumVerifierError extends Enum {
4700
4823
  readonly isSkippedSyncCommitteePeriod: boolean;
4701
4824
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4748,7 +4871,7 @@ declare module '@polkadot/types/lookup' {
4748
4871
  | 'Halted';
4749
4872
  }
4750
4873
 
4751
- /** @name PalletCrosschainTransferAccountTransferTotals (552) */
4874
+ /** @name PalletCrosschainTransferAccountTransferTotals (564) */
4752
4875
  interface PalletCrosschainTransferAccountTransferTotals extends Struct {
4753
4876
  readonly microgonsIn: u128;
4754
4877
  readonly microgonsOut: u128;
@@ -4760,21 +4883,21 @@ declare module '@polkadot/types/lookup' {
4760
4883
  readonly argonotTransfersOutCount: Compact<u32>;
4761
4884
  }
4762
4885
 
4763
- /** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
4886
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (566) */
4764
4887
  interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
4765
4888
  readonly epochMicrogonsPerArgonot: u128;
4766
4889
  readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
4767
4890
  readonly totalWeight: u128;
4768
4891
  }
4769
4892
 
4770
- /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
4893
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (568) */
4771
4894
  interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
4772
4895
  readonly accountId: AccountId32;
4773
4896
  readonly signer: H160;
4774
4897
  readonly weight: u128;
4775
4898
  }
4776
4899
 
4777
- /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
4900
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (573) */
4778
4901
  interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
4779
4902
  readonly approvingCouncilHash: H256;
4780
4903
  readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
@@ -4786,7 +4909,7 @@ declare module '@polkadot/types/lookup' {
4786
4909
  readonly signatures: BTreeMap<H160, U8aFixed>;
4787
4910
  }
4788
4911
 
4789
- /** @name PalletCrosschainTransferMintingAuthority (566) */
4912
+ /** @name PalletCrosschainTransferMintingAuthority (578) */
4790
4913
  interface PalletCrosschainTransferMintingAuthority extends Struct {
4791
4914
  readonly accountId: AccountId32;
4792
4915
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -4803,7 +4926,7 @@ declare module '@polkadot/types/lookup' {
4803
4926
  readonly deactivationApprovalQueueNonce: Option<u64>;
4804
4927
  }
4805
4928
 
4806
- /** @name PalletCrosschainTransferMintingAuthorityState (567) */
4929
+ /** @name PalletCrosschainTransferMintingAuthorityState (579) */
4807
4930
  interface PalletCrosschainTransferMintingAuthorityState extends Enum {
4808
4931
  readonly isPendingActivation: boolean;
4809
4932
  readonly isActive: boolean;
@@ -4811,7 +4934,7 @@ declare module '@polkadot/types/lookup' {
4811
4934
  readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
4812
4935
  }
4813
4936
 
4814
- /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
4937
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (581) */
4815
4938
  interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
4816
4939
  readonly argonAccountId: AccountId32;
4817
4940
  readonly argonTransferNonce: Compact<u64>;
@@ -4830,7 +4953,7 @@ declare module '@polkadot/types/lookup' {
4830
4953
  readonly state: PalletCrosschainTransferTransferOutTransferOutState;
4831
4954
  }
4832
4955
 
4833
- /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
4956
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (583) */
4834
4957
  interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
4835
4958
  readonly microgonCollateral: u128;
4836
4959
  readonly micronotCollateral: u128;
@@ -4838,27 +4961,27 @@ declare module '@polkadot/types/lookup' {
4838
4961
  readonly signature: U8aFixed;
4839
4962
  }
4840
4963
 
4841
- /** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
4964
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (587) */
4842
4965
  interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
4843
4966
  readonly isStarted: boolean;
4844
4967
  readonly isReady: boolean;
4845
4968
  readonly type: 'Started' | 'Ready';
4846
4969
  }
4847
4970
 
4848
- /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
4971
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (589) */
4849
4972
  interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
4850
4973
  readonly transferId: H256;
4851
4974
  readonly remainingCollateral: u128;
4852
4975
  readonly remainingMintingAuthorityTip: u128;
4853
4976
  }
4854
4977
 
4855
- /** @name PalletCrosschainTransferSourceChainCirculation (579) */
4978
+ /** @name PalletCrosschainTransferSourceChainCirculation (591) */
4856
4979
  interface PalletCrosschainTransferSourceChainCirculation extends Struct {
4857
4980
  readonly argonCirculation: u128;
4858
4981
  readonly argonotCirculation: u128;
4859
4982
  }
4860
4983
 
4861
- /** @name PalletCrosschainTransferError (580) */
4984
+ /** @name PalletCrosschainTransferError (592) */
4862
4985
  interface PalletCrosschainTransferError extends Enum {
4863
4986
  readonly isInvalidTransferToArgonActivity: boolean;
4864
4987
  readonly isNoGatewayProofBlocksProvided: boolean;
@@ -4914,6 +5037,7 @@ declare module '@polkadot/types/lookup' {
4914
5037
  readonly isInsufficientMintingAuthorityCollateral: boolean;
4915
5038
  readonly isTransferCollateralIncrementTooSmall: boolean;
4916
5039
  readonly isTooManyPendingTransferOuts: boolean;
5040
+ readonly isCouncilSignerRotationPending: boolean;
4917
5041
  readonly type:
4918
5042
  | 'InvalidTransferToArgonActivity'
4919
5043
  | 'NoGatewayProofBlocksProvided'
@@ -4968,48 +5092,60 @@ declare module '@polkadot/types/lookup' {
4968
5092
  | 'InvalidTransferCollateralSignature'
4969
5093
  | 'InsufficientMintingAuthorityCollateral'
4970
5094
  | 'TransferCollateralIncrementTooSmall'
4971
- | 'TooManyPendingTransferOuts';
5095
+ | 'TooManyPendingTransferOuts'
5096
+ | 'CouncilSignerRotationPending';
5097
+ }
5098
+
5099
+ /** @name PalletBootstrapError (594) */
5100
+ interface PalletBootstrapError extends Enum {
5101
+ readonly isEncryptedPayloadTooLong: boolean;
5102
+ readonly isInvalidRecoveryProof: boolean;
5103
+ readonly isEndpointOwnedByAnotherAccount: boolean;
5104
+ readonly type:
5105
+ | 'EncryptedPayloadTooLong'
5106
+ | 'InvalidRecoveryProof'
5107
+ | 'EndpointOwnedByAnotherAccount';
4972
5108
  }
4973
5109
 
4974
- /** @name FrameSystemExtensionsAuthorizeCall (583) */
5110
+ /** @name FrameSystemExtensionsAuthorizeCall (597) */
4975
5111
  type FrameSystemExtensionsAuthorizeCall = Null;
4976
5112
 
4977
- /** @name FrameSystemExtensionsCheckNonZeroSender (584) */
5113
+ /** @name FrameSystemExtensionsCheckNonZeroSender (598) */
4978
5114
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4979
5115
 
4980
- /** @name FrameSystemExtensionsCheckSpecVersion (585) */
5116
+ /** @name FrameSystemExtensionsCheckSpecVersion (599) */
4981
5117
  type FrameSystemExtensionsCheckSpecVersion = Null;
4982
5118
 
4983
- /** @name FrameSystemExtensionsCheckTxVersion (586) */
5119
+ /** @name FrameSystemExtensionsCheckTxVersion (600) */
4984
5120
  type FrameSystemExtensionsCheckTxVersion = Null;
4985
5121
 
4986
- /** @name FrameSystemExtensionsCheckGenesis (587) */
5122
+ /** @name FrameSystemExtensionsCheckGenesis (601) */
4987
5123
  type FrameSystemExtensionsCheckGenesis = Null;
4988
5124
 
4989
- /** @name FrameSystemExtensionsCheckNonce (590) */
5125
+ /** @name FrameSystemExtensionsCheckNonce (604) */
4990
5126
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
4991
5127
 
4992
- /** @name FrameSystemExtensionsCheckWeight (591) */
5128
+ /** @name FrameSystemExtensionsCheckWeight (605) */
4993
5129
  type FrameSystemExtensionsCheckWeight = Null;
4994
5130
 
4995
- /** @name PalletTransactionPaymentChargeTransactionPayment (592) */
5131
+ /** @name PalletTransactionPaymentChargeTransactionPayment (606) */
4996
5132
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
4997
5133
 
4998
- /** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
5134
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (607) */
4999
5135
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
5000
5136
  readonly mode: FrameMetadataHashExtensionMode;
5001
5137
  }
5002
5138
 
5003
- /** @name FrameMetadataHashExtensionMode (594) */
5139
+ /** @name FrameMetadataHashExtensionMode (608) */
5004
5140
  interface FrameMetadataHashExtensionMode extends Enum {
5005
5141
  readonly isDisabled: boolean;
5006
5142
  readonly isEnabled: boolean;
5007
5143
  readonly type: 'Disabled' | 'Enabled';
5008
5144
  }
5009
5145
 
5010
- /** @name FrameSystemExtensionsWeightReclaim (595) */
5146
+ /** @name FrameSystemExtensionsWeightReclaim (609) */
5011
5147
  type FrameSystemExtensionsWeightReclaim = Null;
5012
5148
 
5013
- /** @name ArgonRuntimeRuntime (597) */
5149
+ /** @name ArgonRuntimeRuntime (611) */
5014
5150
  type ArgonRuntimeRuntime = Null;
5015
5151
  } // declare module