Constants
The following sections contain the module constants, also known as parameter types. These can only be changed as part of a runtime upgrade. On the api, these are exposed via api.consts.<module>.<method>.
(NOTE: These were generated from a static/snapshot view of a recent default Polkadot runtime. Some items may not be available in older nodes, or in any customized implementations.)
auctions
endingPeriod: u32
- interface:
api.consts.auctions.endingPeriod - summary: The number of blocks over which an auction may be retroactively ended.
leasePeriodsPerSlot: u32
- interface:
api.consts.auctions.leasePeriodsPerSlot
sampleLength: u32
interface:
api.consts.auctions.sampleLengthsummary: The length of each sample to take during the ending period.
EndingPeriod/SampleLength= Total # of Samples
slotRangeCount: u32
- interface:
api.consts.auctions.slotRangeCount
babe
epochDuration: u64
- interface:
api.consts.babe.epochDuration - summary: The amount of time, in slots, that each epoch should last. NOTE: Currently it is not possible to change the epoch duration after the chain has started. Attempting to do so will brick block production.
expectedBlockTime: u64
- interface:
api.consts.babe.expectedBlockTime - summary: The expected average block time at which BABE should be creating blocks. Since BABE is probabilistic it is not trivial to figure out what the expected average block time should be based on the slot duration and the security parameter
c(where1 - crepresents the probability of a slot being empty).
maxAuthorities: u32
- interface:
api.consts.babe.maxAuthorities - summary: Max number of authorities allowed
maxNominators: u32
- interface:
api.consts.babe.maxNominators - summary: The maximum number of nominators for each validator.
balances
existentialDeposit: u128
interface:
api.consts.balances.existentialDepositsummary: The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
If you really need it to be zero, you can enable the feature
insecure_zero_edfor this pallet. However, you do so at your own risk: this will open up a major DoS vector. In case you have multiple sources of provider references, you may also get unexpected behaviour if you set this to zero.Bottom line: Do yourself a favour and make it at least one!
maxFreezes: u32
- interface:
api.consts.balances.maxFreezes - summary: The maximum number of individual freeze locks that can exist on an account at any time.
maxLocks: u32
interface:
api.consts.balances.maxLockssummary: The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Use of locks is deprecated in favour of freezes. See
https://github.com/paritytech/substrate/pull/12951/
maxReserves: u32
interface:
api.consts.balances.maxReservessummary: The maximum number of named reserves that can exist on an account.
Use of reserves is deprecated in favour of holds. See
https://github.com/paritytech/substrate/pull/12951/
beefy
maxAuthorities: u32
- interface:
api.consts.beefy.maxAuthorities - summary: The maximum number of authorities that can be added.
maxNominators: u32
- interface:
api.consts.beefy.maxNominators - summary: The maximum number of nominators for each validator.
maxSetIdSessionEntries: u64
interface:
api.consts.beefy.maxSetIdSessionEntriessummary: The maximum number of entries to keep in the set id to session index mapping.
Since the
SetIdSessionmap is only used for validating equivocations this value should relate to the bonding duration of whatever staking system is being used (if any). If equivocation handling is not enabled then this value can be zero.
bounties
bountyDepositBase: u128
- interface:
api.consts.bounties.bountyDepositBase - summary: The amount held on deposit for placing a bounty proposal.
bountyDepositPayoutDelay: u32
- interface:
api.consts.bounties.bountyDepositPayoutDelay - summary: The delay period for which a bounty beneficiary need to wait before claim the payout.
bountyUpdatePeriod: u32
interface:
api.consts.bounties.bountyUpdatePeriodsummary: The time limit for a curator to act before a bounty expires.
The period that starts when a curator is approved, during which they must execute or update the bounty via
extend_bounty_expiry. If missed, the bounty expires, and the curator may be slashed. IfBlockNumberFor::MAX, bounties stay active indefinitely, removing the need forextend_bounty_expiry.
bountyValueMinimum: u128
- interface:
api.consts.bounties.bountyValueMinimum - summary: Minimum value for a bounty.
curatorDepositMax: Option<u128>
- interface:
api.consts.bounties.curatorDepositMax - summary: Maximum amount of funds that should be placed in a deposit for making a proposal.
curatorDepositMin: Option<u128>
- interface:
api.consts.bounties.curatorDepositMin - summary: Minimum amount of funds that should be placed in a deposit for making a proposal.
curatorDepositMultiplier: Permill
interface:
api.consts.bounties.curatorDepositMultipliersummary: The curator deposit is calculated as a percentage of the curator fee.
This deposit has optional upper and lower bounds with
CuratorDepositMaxandCuratorDepositMin.
dataDepositPerByte: u128
- interface:
api.consts.bounties.dataDepositPerByte - summary: The amount held on deposit per byte within the tip report reason or bounty description.
maximumReasonLength: u32
interface:
api.consts.bounties.maximumReasonLengthsummary: Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
childBounties
childBountyValueMinimum: u128
- interface:
api.consts.childBounties.childBountyValueMinimum - summary: Minimum value for a child-bounty.
maxActiveChildBountyCount: u32
- interface:
api.consts.childBounties.maxActiveChildBountyCount - summary: Maximum number of child bounties that can be added to a parent bounty.
claims
prefix: Bytes
- interface:
api.consts.claims.prefix
convictionVoting
maxVotes: u32
interface:
api.consts.convictionVoting.maxVotessummary: The maximum number of concurrent votes an account may have.
Also used to compute weight, an overly large value can lead to extrinsics with large weight estimation: see
delegatefor instance.
voteLockingPeriod: u32
interface:
api.consts.convictionVoting.voteLockingPeriodsummary: The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
coretime
brokerId: u32
- interface:
api.consts.coretime.brokerId - summary: The ParaId of the coretime chain.
brokerPotLocation: StagingXcmV5Junctions
- interface:
api.consts.coretime.brokerPotLocation - summary: The coretime chain pot location.
crowdloan
minContribution: u128
- interface:
api.consts.crowdloan.minContribution - summary: The minimum amount that may be contributed into a crowdloan. Should almost certainly be at least
ExistentialDeposit.
palletId: FrameSupportPalletId
- interface:
api.consts.crowdloan.palletId - summary:
PalletIdfor the crowdloan pallet. An appropriate value could bePalletId(*b"py/cfund")
removeKeysLimit: u32
- interface:
api.consts.crowdloan.removeKeysLimit - summary: Max number of storage keys to remove per extrinsic call.
delegatedStaking
palletId: FrameSupportPalletId
- interface:
api.consts.delegatedStaking.palletId - summary: Injected identifier for the pallet.
slashRewardFraction: Perbill
- interface:
api.consts.delegatedStaking.slashRewardFraction - summary: Fraction of the slash that is rewarded to the caller of pending slash to the agent.
electionProviderMultiPhase
betterSignedThreshold: Perbill
- interface:
api.consts.electionProviderMultiPhase.betterSignedThreshold - summary: The minimum amount of improvement to the solution score that defines a solution as "better" in the Signed phase.
maxWinners: u32
interface:
api.consts.electionProviderMultiPhase.maxWinnerssummary: The maximum number of winners that can be elected by this
ElectionProviderimplementation.Note: This must always be greater or equal to
T::DataProvider::desired_targets().
minerMaxLength: u32
- interface:
api.consts.electionProviderMultiPhase.minerMaxLength
minerMaxVotesPerVoter: u32
- interface:
api.consts.electionProviderMultiPhase.minerMaxVotesPerVoter
minerMaxWeight: SpWeightsWeightV2Weight
- interface:
api.consts.electionProviderMultiPhase.minerMaxWeight
minerMaxWinners: u32
- interface:
api.consts.electionProviderMultiPhase.minerMaxWinners
minerTxPriority: u64
- interface:
api.consts.electionProviderMultiPhase.minerTxPriority - summary: The priority of the unsigned transaction submitted in the unsigned-phase
offchainRepeat: u32
interface:
api.consts.electionProviderMultiPhase.offchainRepeatsummary: The repeat threshold of the offchain worker.
For example, if it is 5, that means that at least 5 blocks will elapse between attempts to submit the worker's solution.
signedDepositByte: u128
- interface:
api.consts.electionProviderMultiPhase.signedDepositByte - summary: Per-byte deposit for a signed solution.
signedDepositWeight: u128
- interface:
api.consts.electionProviderMultiPhase.signedDepositWeight - summary: Per-weight deposit for a signed solution.
signedMaxRefunds: u32
- interface:
api.consts.electionProviderMultiPhase.signedMaxRefunds - summary: The maximum amount of unchecked solutions to refund the call fee for.
signedMaxSubmissions: u32
interface:
api.consts.electionProviderMultiPhase.signedMaxSubmissionssummary: Maximum number of signed submissions that can be queued.
It is best to avoid adjusting this during an election, as it impacts downstream data structures. In particular,
SignedSubmissionIndices<T>is bounded on this value. If you update this value during an election, you must ensure thatSignedSubmissionIndices.len()is less than or equal to the new value. Otherwise, attempts to submit new solutions may cause a runtime panic.
signedMaxWeight: SpWeightsWeightV2Weight
interface:
api.consts.electionProviderMultiPhase.signedMaxWeightsummary: Maximum weight of a signed solution.
If [
Config::MinerConfig] is being implemented to submit signed solutions (outside of this pallet), then [MinerConfig::solution_weight] is used to compare against this value.
signedRewardBase: u128
- interface:
api.consts.electionProviderMultiPhase.signedRewardBase - summary: Base reward for a signed solution
fastUnstake
deposit: u128
- interface:
api.consts.fastUnstake.deposit - summary: Deposit to take for unstaking, to make sure we're able to slash the it in order to cover the costs of resources on unsuccessful unstake.
grandpa
maxAuthorities: u32
- interface:
api.consts.grandpa.maxAuthorities - summary: Max Authorities in use
maxNominators: u32
- interface:
api.consts.grandpa.maxNominators - summary: The maximum number of nominators for each validator.
maxSetIdSessionEntries: u64
interface:
api.consts.grandpa.maxSetIdSessionEntriessummary: The maximum number of entries to keep in the set id to session index mapping.
Since the
SetIdSessionmap is only used for validating equivocations this value should relate to the bonding duration of whatever staking system is being used (if any). If equivocation handling is not enabled then this value can be zero.
indices
deposit: u128
- interface:
api.consts.indices.deposit - summary: The deposit needed for reserving an index.
messageQueue
heapSize: u32
interface:
api.consts.messageQueue.heapSizesummary: The size of the page; this implies the maximum message size which can be sent.
A good value depends on the expected message sizes, their weights, the weight that is available for processing them and the maximal needed message size. The maximal message size is slightly lower than this as defined by [
MaxMessageLenOf].
idleMaxServiceWeight: Option<SpWeightsWeightV2Weight>
interface:
api.consts.messageQueue.idleMaxServiceWeightsummary: The maximum amount of weight (if any) to be used from remaining weight
on_idlewhich should be provided to the message queue for servicing enqueued itemson_idle. Useful for parachains to process messages at the same block they are received.If
None, it will not callServiceQueues::service_queuesinon_idle.
maxStale: u32
- interface:
api.consts.messageQueue.maxStale - summary: The maximum number of stale pages (i.e. of overweight messages) allowed before culling can happen. Once there are more stale pages than this, then historical pages may be dropped, even if they contain unprocessed overweight messages.
serviceWeight: Option<SpWeightsWeightV2Weight>
interface:
api.consts.messageQueue.serviceWeightsummary: The amount of weight (if any) which should be provided to the message queue for servicing enqueued items
on_initialize.This may be legitimately
Nonein the case that you will callServiceQueues::service_queuesmanually or set [Self::IdleMaxServiceWeight] to have it run inon_idle.
multisig
depositBase: u128
interface:
api.consts.multisig.depositBasesummary: The base amount of currency needed to reserve for creating a multisig execution or to store a dispatch call for later.
This is held for an additional storage item whose value size is
4 + sizeof((BlockNumber, Balance, AccountId))bytes and whose key size is32 + sizeof(AccountId)bytes.
depositFactor: u128
interface:
api.consts.multisig.depositFactorsummary: The amount of currency needed per unit threshold when creating a multisig execution.
This is held for adding 32 bytes more into a pre-existing storage value.
maxSignatories: u32
- interface:
api.consts.multisig.maxSignatories - summary: The maximum amount of signatories allowed in the multisig.
nominationPools
maxPointsToBalance: u8
interface:
api.consts.nominationPools.maxPointsToBalancesummary: The maximum pool points-to-balance ratio that an
openpool can have.This is important in the event slashing takes place and the pool's points-to-balance ratio becomes disproportional.
Moreover, this relates to the
RewardCountertype as well, as the arithmetic operations are a function of number of points, and by setting this value to e.g. 10, you ensure that the total number of points in the system are at most 10 times the total_issuance of the chain, in the absolute worse case.For a value of 10, the threshold would be a pool points-to-balance ratio of 10:1. Such a scenario would also be the equivalent of the pool being 90% slashed.
maxUnbonding: u32
- interface:
api.consts.nominationPools.maxUnbonding - summary: The maximum number of simultaneous unbonding chunks that can exist per member.
palletId: FrameSupportPalletId
- interface:
api.consts.nominationPools.palletId - summary: The nomination pool's pallet id.
onDemand
maxHistoricalRevenue: u32
- interface:
api.consts.onDemand.maxHistoricalRevenue - summary: The maximum number of blocks some historical revenue information stored for.
palletId: FrameSupportPalletId
- interface:
api.consts.onDemand.palletId - summary: Identifier for the internal revenue balance.
trafficDefaultValue: u128
- interface:
api.consts.onDemand.trafficDefaultValue - summary: The default value for the spot traffic multiplier.
paras
unsignedPriority: u64
- interface:
api.consts.paras.unsignedPriority
proxy
announcementDepositBase: u128
interface:
api.consts.proxy.announcementDepositBasesummary: The base amount of currency needed to reserve for creating an announcement.
This is held when a new storage item holding a
Balanceis created (typically 16 bytes).
announcementDepositFactor: u128
interface:
api.consts.proxy.announcementDepositFactorsummary: The amount of currency needed per announcement made.
This is held for adding an
AccountId,HashandBlockNumber(typically 68 bytes) into a pre-existing storage value.
maxPending: u32
- interface:
api.consts.proxy.maxPending - summary: The maximum amount of time-delayed announcements that are allowed to be pending.
maxProxies: u32
- interface:
api.consts.proxy.maxProxies - summary: The maximum amount of proxies allowed for a single account.
proxyDepositBase: u128
interface:
api.consts.proxy.proxyDepositBasesummary: The base amount of currency needed to reserve for creating a proxy.
This is held for an additional storage item whose value size is
sizeof(Balance)bytes and whose key size issizeof(AccountId)bytes.
proxyDepositFactor: u128
interface:
api.consts.proxy.proxyDepositFactorsummary: The amount of currency needed per proxy added.
This is held for adding 32 bytes plus an instance of
ProxyTypemore into a pre-existing storage value. Thus, when configuringProxyDepositFactorone should take into account32 + proxy_type.encode().len()bytes of data.
referenda
alarmInterval: u32
- interface:
api.consts.referenda.alarmInterval - summary: Quantization level for the referendum wakeup scheduler. A higher number will result in fewer storage reads/writes needed for smaller voters, but also result in delays to the automatic referendum status changes. Explicit servicing instructions are unaffected.
maxQueued: u32
- interface:
api.consts.referenda.maxQueued - summary: Maximum size of the referendum queue for a single track.
submissionDeposit: u128
- interface:
api.consts.referenda.submissionDeposit - summary: The minimum amount to be used as a deposit for a public referendum proposal.
tracks: Vec<(u16,PalletReferendaTrackDetails)>
interface:
api.consts.referenda.trackssummary: A list of tracks.
Note: if the tracks are dynamic, the value in the static metadata might be inaccurate.
undecidingTimeout: u32
- interface:
api.consts.referenda.undecidingTimeout - summary: The number of blocks after submission that a referendum must begin being decided by. Once this passes, then anyone may cancel the referendum.
registrar
dataDepositPerByte: u128
- interface:
api.consts.registrar.dataDepositPerByte - summary: The deposit to be paid per byte stored on chain.
paraDeposit: u128
- interface:
api.consts.registrar.paraDeposit - summary: The deposit to be paid to run a on-demand parachain. This should include the cost for storing the genesis head and validation code.
scheduler
maximumWeight: SpWeightsWeightV2Weight
- interface:
api.consts.scheduler.maximumWeight - summary: The maximum weight that may be scheduled per block for any dispatchables.
maxScheduledPerBlock: u32
interface:
api.consts.scheduler.maxScheduledPerBlocksummary: The maximum number of scheduled calls in the queue for a single block.
NOTE: + Dependent pallets' benchmarks might require a higher limit for the setting. Set a higher limit under
runtime-benchmarksfeature.
slots
leaseOffset: u32
- interface:
api.consts.slots.leaseOffset - summary: The number of blocks to offset each lease period by.
leasePeriod: u32
- interface:
api.consts.slots.leasePeriod - summary: The number of blocks over which a single period lasts.
staking
bondingDuration: u32
- interface:
api.consts.staking.bondingDuration - summary: Number of eras that staked funds must remain bonded for.
historyDepth: u32
interface:
api.consts.staking.historyDepthsummary: Number of eras to keep in history.
Following information is kept for eras in
[current_era - HistoryDepth, current_era]:ErasStakers,ErasStakersClipped,ErasValidatorPrefs,ErasValidatorReward,ErasRewardPoints,ErasTotalStake,ErasStartSessionIndex,ClaimedRewards,ErasStakersPaged,ErasStakersOverview.Must be more than the number of eras delayed by session. I.e. active era must always be in history. I.e.
active_era > current_era - history_depthmust be guaranteed.If migrating an existing pallet from storage value to config value, this should be set to same value or greater as in storage.
Note:
HistoryDepthis used as the upper bound for theBoundedVecitemStakingLedger.legacy_claimed_rewards. Setting this value lower than the existing value can lead to inconsistencies in theStakingLedgerand will need to be handled properly in a migration. The testreducing_history_depth_abruptshows this effect.
maxExposurePageSize: u32
interface:
api.consts.staking.maxExposurePageSizesummary: The maximum size of each
T::ExposurePage.An
ExposurePageis weakly bounded to a maximum ofMaxExposurePageSizenominators.For older non-paged exposure, a reward payout was restricted to the top
MaxExposurePageSizenominators. This is to limit the i/o cost for the nominator payout.Note:
MaxExposurePageSizeis used to boundClaimedRewardsand is unsafe to reduce without handling it in a migration.
maxUnlockingChunks: u32
interface:
api.consts.staking.maxUnlockingChunkssummary: The maximum number of
unlockingchunks a [StakingLedger] can have. Effectively determines how many unique eras a staker may be unbonding in.Note:
MaxUnlockingChunksis used as the upper bound for theBoundedVecitemStakingLedger.unlocking. Setting this value lower than the existing value can lead to inconsistencies in theStakingLedgerand will need to be handled properly in a runtime migration. The testreducing_max_unlocking_chunks_abruptshows this effect.
sessionsPerEra: u32
- interface:
api.consts.staking.sessionsPerEra - summary: Number of sessions per era.
slashDeferDuration: u32
interface:
api.consts.staking.slashDeferDurationsummary: Number of eras that slashes are deferred by, after computation.
This should be less than the bonding duration. Set to 0 if slashes should be applied immediately, without opportunity for intervention.
stateTrieMigration
maxKeyLen: u32
interface:
api.consts.stateTrieMigration.maxKeyLensummary: Maximal number of bytes that a key can have.
FRAME itself does not limit the key length. The concrete value must therefore depend on your storage usage. A [
frame_support::storage::StorageNMap] for example can have an arbitrary number of keys which are then hashed and concatenated, resulting in arbitrarily long keys.Use the state migration RPC to retrieve the length of the longest key in your storage: https://github.com/paritytech/substrate/issues/11642
The migration will halt with a
Haltedevent if this value is too small. Since there is no real penalty from over-estimating, it is advised to use a large value. The default is 512 byte.Some key lengths for reference:
[
frame_support::storage::StorageValue]: 32 byte[
frame_support::storage::StorageMap]: 64 byte[
frame_support::storage::StorageDoubleMap]: 96 byteFor more info see https://www.shawntabrizi.com/blog/substrate/querying-substrate-storage-via-rpc/
system
blockHashCount: u32
- interface:
api.consts.system.blockHashCount - summary: Maximum number of block number to block hash mappings to keep (oldest pruned first).
blockLength: FrameSystemLimitsBlockLength
- interface:
api.consts.system.blockLength - summary: The maximum length of a block (in bytes).
blockWeights: FrameSystemLimitsBlockWeights
- interface:
api.consts.system.blockWeights - summary: Block & extrinsics weights: base values and limits.
dbWeight: SpWeightsRuntimeDbWeight
- interface:
api.consts.system.dbWeight - summary: The weight of runtime database operations the runtime can invoke.
ss58Prefix: u16
interface:
api.consts.system.ss58Prefixsummary: The designated SS58 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
version: SpVersionRuntimeVersion
- interface:
api.consts.system.version - summary: Get the chain's in-code version.
timestamp
minimumPeriod: u64
interface:
api.consts.timestamp.minimumPeriodsummary: The minimum period between blocks.
Be aware that this is different to the expected period that the block production apparatus provides. Your chosen consensus system will generally work with this to determine a sensible block time. For example, in the Aura pallet it will be double this period on default settings.
transactionPayment
operationalFeeMultiplier: u8
interface:
api.consts.transactionPayment.operationalFeeMultipliersummary: A fee multiplier for
Operationalextrinsics to compute "virtual tip" to boost theirpriorityThis value is multiplied by the
final_feeto obtain a "virtual tip" that is later added to a tip component in regularprioritycalculations. It means that aNormaltransaction can front-run a similarly-sizedOperationalextrinsic (with no tip), by including a tip value greater than the virtual tip.``
rust,ignore // ForNormal` let priority = priority_calc(tip);// For
Operationallet virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier; let priority = priority_calc(tip + virtual_tip); ```Note that since we use
final_feethe multiplier applies also to the regulartipsent with the transaction. So, not only does the transaction get a priority bump based on theinclusion_fee, but we also amplify the impact of tips applied toOperationaltransactions.
treasury
burn: Permill
- interface:
api.consts.treasury.burn - summary: Percentage of spare funds (if any) that are burnt per spend period.
maxApprovals: u32
interface:
api.consts.treasury.maxApprovalssummary: DEPRECATED: associated with
spend_localcall and will be removed in May 2025. Refer to https://github.com/paritytech/polkadot-sdk/pull/5961 for migration tospend.The maximum number of approvals that can wait in the spending queue.
NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
palletId: FrameSupportPalletId
- interface:
api.consts.treasury.palletId - summary: The treasury's pallet id, used for deriving its sovereign account ID.
payoutPeriod: u32
- interface:
api.consts.treasury.payoutPeriod - summary: The period during which an approved treasury spend has to be claimed.
potAccount: AccountId32
- interface:
api.consts.treasury.potAccount - summary: Gets this pallet's derived pot account.
spendPeriod: u32
- interface:
api.consts.treasury.spendPeriod - summary: Period between successive spends.
utility
batchedCallsLimit: u32
- interface:
api.consts.utility.batchedCallsLimit - summary: The limit on the number of batched calls.
vesting
maxVestingSchedules: u32
- interface:
api.consts.vesting.maxVestingSchedules
minVestedTransfer: u128
- interface:
api.consts.vesting.minVestedTransfer - summary: The minimum amount transferred to call
vested_transfer.
voterList
bagThresholds: Vec<u64>
interface:
api.consts.voterList.bagThresholdssummary: The list of thresholds separating the various bags.
Ids are separated into unsorted bags according to their score. This specifies the thresholds separating the bags. An id's bag is the largest bag for which the id's score is less than or equal to its upper threshold.
When ids are iterated, higher bags are iterated completely before lower bags. This means that iteration is semi-sorted: ids of higher score tend to come before ids of lower score, but peer ids within a particular bag are sorted in insertion order.
Expressing the constant
This constant must be sorted in strictly increasing order. Duplicate items are not permitted.
There is an implied upper limit of
Score::MAX; that value does not need to be specified within the bag. For any two threshold lists, if one ends withScore::MAX, the other one does not, and they are otherwise equal, the two lists will behave identically.Calculation
It is recommended to generate the set of thresholds in a geometric series, such that there exists some constant ratio such that
threshold[k + 1] == (threshold[k] * constant_ratio).max(threshold[k] + 1)for allk.The helpers in the
/utils/frame/generate-bagsmodule can simplify this calculation.Examples
If
BagThresholds::get().is_empty(), then all ids are put into the same bag, and iteration is strictly in insertion order.If
BagThresholds::get().len() == 64, and the thresholds are determined according to the procedure given above, then the constant ratio is equal to 2.If
BagThresholds::get().len() == 200, and the thresholds are determined according to the procedure given above, then the constant ratio is approximately equal to 1.248.If the threshold list begins
[1, 2, 3, ...], then an id with score 0 or 1 will fall into bag 0, an id with score 2 will fall into bag 1, etc.Migration
In the event that this list ever changes, a copy of the old bags list must be retained. With that
List::migratecan be called, which will perform the appropriate migration.
xcmPallet
advertisedXcmVersion: u32
- interface:
api.consts.xcmPallet.advertisedXcmVersion - summary: The latest supported version that we advertise. Generally just set it to
pallet_xcm::CurrentXcmVersion.