Limits complexity of balance management.
Current Value
50From Chain Metadata
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Use Cases
- Lock operations
- Staking
Code Examples
import { ApiPromise, WsProvider } from "@polkadot/api";
import { stringCamelCase } from "@polkadot/util";
const provider = new WsProvider("wss://entrypoint-finney.opentensor.ai:443");
const api = await ApiPromise.create({ provider });
// Query MaxLocks constant
const value = api.consts[stringCamelCase("Balances")][stringCamelCase("MaxLocks")];
console.log("MaxLocks:", value.toHuman());Type Information
- Type
- u32
- Byte Size
- 4 bytes
- Encoding
- fixed
- Raw Hex
- 0x32000000
Runtime Info
- Pallet
- Balances
- First Version
- v101
- Latest Version
- v101
- Current Runtime
- v393