@@ -143,17 +143,18 @@ declare module '@polkadot/api/types/consts' {
143143 * deposited while the contract is alive. Costs for additional storage are added to
144144 * this base cost.
145145 *
146- * This is a simple way to ensure that contracts with empty storage eventually get deleted by
147- * making them pay rent. This creates an incentive to remove them early in order to save rent.
146+ * This is a simple way to ensure that contracts with empty storage eventually get deleted
147+ * by making them pay rent. This creates an incentive to remove them early in order to save
148+ * rent.
148149 **/
149150 depositPerContract : BalanceOf & AugmentedConst < ApiType > ;
150151 /**
151152 * The balance a contract needs to deposit per storage byte to stay alive indefinitely.
152153 *
153- * Let's suppose the deposit is 1,000 BU (balance units)/byte and the rent is 1 BU/byte/day,
154- * then a contract with 1,000,000 BU that uses 1,000 bytes of storage would pay no rent.
155- * But if the balance reduced to 500,000 BU and the storage stayed the same at 1,000,
156- * then it would pay 500 BU/day.
154+ * Let's suppose the deposit is 1,000 BU (balance units)/byte and the rent is 1
155+ * BU/byte/day, then a contract with 1,000,000 BU that uses 1,000 bytes of storage would
156+ * pay no rent. But if the balance reduced to 500,000 BU and the storage stayed the same at
157+ * 1,000, then it would pay 500 BU/day.
157158 **/
158159 depositPerStorageByte : BalanceOf & AugmentedConst < ApiType > ;
159160 /**
@@ -201,21 +202,22 @@ declare module '@polkadot/api/types/consts' {
201202 **/
202203 cooloffPeriod : BlockNumber & AugmentedConst < ApiType > ;
203204 /**
204- * The minimum period of locking and the period between a proposal being approved and enacted.
205+ * The minimum period of locking and the period between a proposal being approved and
206+ * enacted.
205207 *
206208 * It should generally be a little more than the unstake period to ensure that
207- * voting stakers have an opportunity to remove themselves from the system in the case where
208- * they are on the losing side of a vote.
209+ * voting stakers have an opportunity to remove themselves from the system in the case
210+ * where they are on the losing side of a vote.
209211 **/
210212 enactmentPeriod : BlockNumber & AugmentedConst < ApiType > ;
211213 /**
212214 * Minimum voting period allowed for a fast-track referendum.
213215 **/
214216 fastTrackVotingPeriod : BlockNumber & AugmentedConst < ApiType > ;
215217 /**
216- * Indicator for whether an emergency origin is even allowed to happen. Some chains may want
217- * to set this permanently to `false`, others may want to condition it on things such as
218- * an upgrade having happened recently.
218+ * Indicator for whether an emergency origin is even allowed to happen. Some chains may
219+ * want to set this permanently to `false`, others may want to condition it on things such
220+ * as an upgrade having happened recently.
219221 **/
220222 instantAllowed : bool & AugmentedConst < ApiType > ;
221223 /**
@@ -449,8 +451,8 @@ declare module '@polkadot/api/types/consts' {
449451 maxSubAccounts : u32 & AugmentedConst < ApiType > ;
450452 /**
451453 * The amount held on deposit for a registered subaccount. This should account for the fact
452- * that one storage item's value will increase by the size of an account ID, and there will be
453- * another trie item whose value is the size of an account ID plus 32 bytes.
454+ * that one storage item's value will increase by the size of an account ID, and there will
455+ * be another trie item whose value is the size of an account ID plus 32 bytes.
454456 **/
455457 subAccountDeposit : BalanceOf & AugmentedConst < ApiType > ;
456458 /**
@@ -503,8 +505,8 @@ declare module '@polkadot/api/types/consts' {
503505 } ;
504506 multisig : {
505507 /**
506- * The base amount of currency needed to reserve for creating a multisig execution or to store
507- * a dispatch call for later.
508+ * The base amount of currency needed to reserve for creating a multisig execution or to
509+ * store a dispatch call for later.
508510 *
509511 * This is held for an additional storage item whose value size is
510512 * `4 + sizeof((BlockNumber, Balance, AccountId))` bytes and whose key size is
@@ -530,7 +532,8 @@ declare module '@polkadot/api/types/consts' {
530532 /**
531533 * The base amount of currency needed to reserve for creating an announcement.
532534 *
533- * This is held when a new storage item holding a `Balance` is created (typically 16 bytes).
535+ * This is held when a new storage item holding a `Balance` is created (typically 16
536+ * bytes).
534537 **/
535538 announcementDepositBase : BalanceOf & AugmentedConst < ApiType > ;
536539 /**
@@ -558,9 +561,9 @@ declare module '@polkadot/api/types/consts' {
558561 /**
559562 * The amount of currency needed per proxy added.
560563 *
561- * This is held for adding 32 bytes plus an instance of `ProxyType` more into a pre-existing
562- * storage value. Thus, when configuring `ProxyDepositFactor` one should take into account
563- * `32 + proxy_type.encode().len()` bytes of data.
564+ * This is held for adding 32 bytes plus an instance of `ProxyType` more into a
565+ * pre-existing storage value. Thus, when configuring `ProxyDepositFactor` one should take
566+ * into account `32 + proxy_type.encode().len()` bytes of data.
564567 **/
565568 proxyDepositFactor : BalanceOf & AugmentedConst < ApiType > ;
566569 /**
@@ -577,9 +580,11 @@ declare module '@polkadot/api/types/consts' {
577580 **/
578581 configDepositBase : BalanceOf & AugmentedConst < ApiType > ;
579582 /**
580- * The amount of currency needed per additional user when creating a recovery configuration.
583+ * The amount of currency needed per additional user when creating a recovery
584+ * configuration.
581585 *
582- * This is held for adding `sizeof(AccountId)` bytes more into a pre-existing storage value.
586+ * This is held for adding `sizeof(AccountId)` bytes more into a pre-existing storage
587+ * value.
583588 **/
584589 friendDepositFactor : BalanceOf & AugmentedConst < ApiType > ;
585590 /**
@@ -603,8 +608,8 @@ declare module '@polkadot/api/types/consts' {
603608 } ;
604609 scheduler : {
605610 /**
606- * The maximum weight that may be scheduled per block for any dispatchables of less priority
607- * than `schedule::HARD_DEADLINE`.
611+ * The maximum weight that may be scheduled per block for any dispatchables of less
612+ * priority than `schedule::HARD_DEADLINE`.
608613 **/
609614 maximumWeight : Weight & AugmentedConst < ApiType > ;
610615 /**
@@ -666,8 +671,8 @@ declare module '@polkadot/api/types/consts' {
666671 /**
667672 * The maximum number of nominators rewarded for each validator.
668673 *
669- * For each validator only the `$MaxNominatorRewardedPerValidator` biggest stakers can claim
670- * their reward. This used to limit the i/o cost for the nominator payout.
674+ * For each validator only the `$MaxNominatorRewardedPerValidator` biggest stakers can
675+ * claim their reward. This used to limit the i/o cost for the nominator payout.
671676 **/
672677 maxNominatorRewardedPerValidator : u32 & AugmentedConst < ApiType > ;
673678 /**
@@ -722,10 +727,10 @@ declare module '@polkadot/api/types/consts' {
722727 } ;
723728 timestamp : {
724729 /**
725- * The minimum period between blocks. Beware that this is different to the *expected* period
726- * that the block production apparatus provides. Your chosen consensus system will generally
727- * work with this to determine a sensible block time. e.g. For Aura, it will be double this
728- * period on default settings.
730+ * The minimum period between blocks. Beware that this is different to the *expected*
731+ * period that the block production apparatus provides. Your chosen consensus system will
732+ * generally work with this to determine a sensible block time. e.g. For Aura, it will be
733+ * double this period on default settings.
729734 **/
730735 minimumPeriod : Moment & AugmentedConst < ApiType > ;
731736 /**
@@ -843,6 +848,16 @@ declare module '@polkadot/api/types/consts' {
843848 **/
844849 [ key : string ] : Codec ;
845850 } ;
851+ utility : {
852+ /**
853+ * The limit on the number of batched calls.
854+ **/
855+ batchedCallsLimit : u32 & AugmentedConst < ApiType > ;
856+ /**
857+ * Generic const
858+ **/
859+ [ key : string ] : Codec ;
860+ } ;
846861 vesting : {
847862 /**
848863 * The minimum amount transferred to call `vested_transfer`.
0 commit comments