33
44import type { Vec , u16 , u32 , u64 , u8 } from '@polkadot/types' ;
55import type { Codec } from '@polkadot/types/types' ;
6- import type { Balance , BalanceOf , BlockNumber , LockIdentifier , ModuleId , Moment , Perbill , Percent , Permill , RuntimeDbWeight , Weight } from '@polkadot/types/interfaces/runtime' ;
6+ import type { Balance , BalanceOf , BlockNumber , LockIdentifier , Moment , PalletId , Perbill , Percent , Permill , RuntimeDbWeight , Weight } from '@polkadot/types/interfaces/runtime' ;
77import type { SessionIndex } from '@polkadot/types/interfaces/session' ;
88import type { EraIndex } from '@polkadot/types/interfaces/staking' ;
99import type { RuntimeVersion } from '@polkadot/types/interfaces/state' ;
@@ -203,7 +203,7 @@ declare module '@polkadot/api/types/consts' {
203203 candidacyBond : BalanceOf & AugmentedConst < ApiType > ;
204204 desiredMembers : u32 & AugmentedConst < ApiType > ;
205205 desiredRunnersUp : u32 & AugmentedConst < ApiType > ;
206- moduleId : LockIdentifier & AugmentedConst < ApiType > ;
206+ palletId : LockIdentifier & AugmentedConst < ApiType > ;
207207 termDuration : BlockNumber & AugmentedConst < ApiType > ;
208208 votingBondBase : BalanceOf & AugmentedConst < ApiType > ;
209209 votingBondFactor : BalanceOf & AugmentedConst < ApiType > ;
@@ -295,7 +295,7 @@ declare module '@polkadot/api/types/consts' {
295295 lottery : {
296296 [ key : string ] : Codec ;
297297 maxCalls : u32 & AugmentedConst < ApiType > ;
298- moduleId : ModuleId & AugmentedConst < ApiType > ;
298+ palletId : PalletId & AugmentedConst < ApiType > ;
299299 } ;
300300 multisig : {
301301 [ key : string ] : Codec ;
@@ -381,6 +381,10 @@ declare module '@polkadot/api/types/consts' {
381381 * The number of blocks between membership challenges.
382382 **/
383383 challengePeriod : BlockNumber & AugmentedConst < ApiType > ;
384+ /**
385+ * Maximum candidate intake per round.
386+ **/
387+ maxCandidateIntake : u32 & AugmentedConst < ApiType > ;
384388 /**
385389 * The number of times a member may vote the wrong way (or not at all, when they are a skeptic)
386390 * before they become suspended.
@@ -389,7 +393,7 @@ declare module '@polkadot/api/types/consts' {
389393 /**
390394 * The societies's module id
391395 **/
392- moduleId : ModuleId & AugmentedConst < ApiType > ;
396+ palletId : PalletId & AugmentedConst < ApiType > ;
393397 /**
394398 * The amount of incentive paid within each period. Doesn't include VoterTip.
395399 **/
@@ -410,6 +414,10 @@ declare module '@polkadot/api/types/consts' {
410414 * Number of eras that staked funds must remain bonded for.
411415 **/
412416 bondingDuration : EraIndex & AugmentedConst < ApiType > ;
417+ /**
418+ * Maximum number of nominations per nominator.
419+ **/
420+ maxNominations : u32 & AugmentedConst < ApiType > ;
413421 /**
414422 * The maximum number of nominators rewarded for each validator.
415423 *
@@ -514,7 +522,7 @@ declare module '@polkadot/api/types/consts' {
514522 /**
515523 * The treasury's module id, used for deriving its sovereign account ID.
516524 **/
517- moduleId : ModuleId & AugmentedConst < ApiType > ;
525+ palletId : PalletId & AugmentedConst < ApiType > ;
518526 /**
519527 * Fraction of a proposal's value that should be bonded in order to place the proposal.
520528 * An accepted proposal gets these back. A rejected proposal does not.
@@ -532,7 +540,7 @@ declare module '@polkadot/api/types/consts' {
532540 vesting : {
533541 [ key : string ] : Codec ;
534542 /**
535- * The minimum amount to be transferred to create a new vesting schedule .
543+ * The minimum amount transferred to call `vested_transfer` .
536544 **/
537545 minVestedTransfer : BalanceOf & AugmentedConst < ApiType > ;
538546 } ;
0 commit comments