@@ -6,7 +6,7 @@ import type { ApiTypes, AugmentedConst } from 'https://deno.land/x/polkadot/api-
6
6
import type { Bytes , Option , Vec , u128 , u16 , u32 , u64 , u8 } from 'https://deno.land/x/polkadot/types-codec/mod.ts' ;
7
7
import type { Codec , ITuple } from 'https://deno.land/x/polkadot/types-codec/types/index.ts' ;
8
8
import type { Perbill , Permill , Perquintill } from 'https://deno.land/x/polkadot/types/interfaces/runtime/index.ts' ;
9
- import type { FrameSupportPalletId , FrameSystemLimitsBlockLength , FrameSystemLimitsBlockWeights , PalletReferendaTrackInfo , SpVersionRuntimeVersion , SpWeightsRuntimeDbWeight , SpWeightsWeightV2Weight } from 'https://deno.land/x/polkadot/types/lookup.ts' ;
9
+ import type { FrameSupportPalletId , FrameSystemLimitsBlockLength , FrameSystemLimitsBlockWeights , PalletReferendaTrackInfo , SpVersionRuntimeVersion , SpWeightsRuntimeDbWeight , SpWeightsWeightV2Weight , StagingXcmV4Junctions } from 'https://deno.land/x/polkadot/types/lookup.ts' ;
10
10
11
11
export type __AugmentedConst < ApiType extends ApiTypes > = AugmentedConst < ApiType > ;
12
12
@@ -77,10 +77,14 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
77
77
/**
78
78
* The maximum number of locks that should exist on an account.
79
79
* Not strictly enforced, but used for weight estimation.
80
+ *
81
+ * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
80
82
**/
81
83
maxLocks : u32 & AugmentedConst < ApiType > ;
82
84
/**
83
85
* The maximum number of named reserves that can exist on an account.
86
+ *
87
+ * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
84
88
**/
85
89
maxReserves : u32 & AugmentedConst < ApiType > ;
86
90
/**
@@ -201,9 +205,13 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
201
205
} ;
202
206
coretime : {
203
207
/**
204
- * The ParaId of the broker system parachain .
208
+ * The ParaId of the coretime chain .
205
209
**/
206
210
brokerId : u32 & AugmentedConst < ApiType > ;
211
+ /**
212
+ * The coretime chain pot location.
213
+ **/
214
+ brokerPotLocation : StagingXcmV4Junctions & AugmentedConst < ApiType > ;
207
215
/**
208
216
* Generic const
209
217
**/
@@ -287,18 +295,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
287
295
* this value.
288
296
**/
289
297
signedMaxWeight : SpWeightsWeightV2Weight & AugmentedConst < ApiType > ;
290
- /**
291
- * Duration of the signed phase.
292
- **/
293
- signedPhase : u32 & AugmentedConst < ApiType > ;
294
298
/**
295
299
* Base reward for a signed solution
296
300
**/
297
301
signedRewardBase : u128 & AugmentedConst < ApiType > ;
298
- /**
299
- * Duration of the unsigned phase.
300
- **/
301
- unsignedPhase : u32 & AugmentedConst < ApiType > ;
302
302
/**
303
303
* Generic const
304
304
**/
@@ -386,6 +386,14 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
386
386
* size is slightly lower than this as defined by [`MaxMessageLenOf`].
387
387
**/
388
388
heapSize : u32 & AugmentedConst < ApiType > ;
389
+ /**
390
+ * The maximum amount of weight (if any) to be used from remaining weight `on_idle` which
391
+ * should be provided to the message queue for servicing enqueued items `on_idle`.
392
+ * Useful for parachains to process messages at the same block they are received.
393
+ *
394
+ * If `None`, it will not call `ServiceQueues::service_queues` in `on_idle`.
395
+ **/
396
+ idleMaxServiceWeight : Option < SpWeightsWeightV2Weight > & AugmentedConst < ApiType > ;
389
397
/**
390
398
* The maximum number of stale pages (i.e. of overweight messages) allowed before culling
391
399
* can happen. Once there are more stale pages than this, then historical pages may be
@@ -394,10 +402,11 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
394
402
maxStale : u32 & AugmentedConst < ApiType > ;
395
403
/**
396
404
* The amount of weight (if any) which should be provided to the message queue for
397
- * servicing enqueued items.
405
+ * servicing enqueued items `on_initialize` .
398
406
*
399
407
* This may be legitimately `None` in the case that you will call
400
- * `ServiceQueues::service_queues` manually.
408
+ * `ServiceQueues::service_queues` manually or set [`Self::IdleMaxServiceWeight`] to have
409
+ * it run in `on_idle`.
401
410
**/
402
411
serviceWeight : Option < SpWeightsWeightV2Weight > & AugmentedConst < ApiType > ;
403
412
/**
@@ -512,10 +521,14 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
512
521
/**
513
522
* The maximum number of locks that should exist on an account.
514
523
* Not strictly enforced, but used for weight estimation.
524
+ *
525
+ * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
515
526
**/
516
527
maxLocks : u32 & AugmentedConst < ApiType > ;
517
528
/**
518
529
* The maximum number of named reserves that can exist on an account.
530
+ *
531
+ * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
519
532
**/
520
533
maxReserves : u32 & AugmentedConst < ApiType > ;
521
534
/**
@@ -553,6 +566,15 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
553
566
[ key : string ] : Codec ;
554
567
} ;
555
568
onDemandAssignmentProvider : {
569
+ /**
570
+ * The maximum number of blocks some historical revenue
571
+ * information stored for.
572
+ **/
573
+ maxHistoricalRevenue : u32 & AugmentedConst < ApiType > ;
574
+ /**
575
+ * Identifier for the internal revenue balance.
576
+ **/
577
+ palletId : FrameSupportPalletId & AugmentedConst < ApiType > ;
556
578
/**
557
579
* The default value for the spot traffic multiplier.
558
580
**/
@@ -869,7 +891,7 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
869
891
**/
870
892
ss58Prefix : u16 & AugmentedConst < ApiType > ;
871
893
/**
872
- * Get the chain's current version.
894
+ * Get the chain's in-code version.
873
895
**/
874
896
version : SpVersionRuntimeVersion & AugmentedConst < ApiType > ;
875
897
/**
@@ -941,19 +963,6 @@ declare module 'https://deno.land/x/polkadot/api-base/types/consts.ts' {
941
963
* The period during which an approved treasury spend has to be claimed.
942
964
**/
943
965
payoutPeriod : u32 & AugmentedConst < ApiType > ;
944
- /**
945
- * Fraction of a proposal's value that should be bonded in order to place the proposal.
946
- * An accepted proposal gets these back. A rejected proposal does not.
947
- **/
948
- proposalBond : Permill & AugmentedConst < ApiType > ;
949
- /**
950
- * Maximum amount of funds that should be placed in a deposit for making a proposal.
951
- **/
952
- proposalBondMaximum : Option < u128 > & AugmentedConst < ApiType > ;
953
- /**
954
- * Minimum amount of funds that should be placed in a deposit for making a proposal.
955
- **/
956
- proposalBondMinimum : u128 & AugmentedConst < ApiType > ;
957
966
/**
958
967
* Period between successive spends.
959
968
**/
0 commit comments