Crate pallet_handles

source ·
Expand description

Unique human-readable strings for MSAs

Handles Pallet

Creates human-readable, homoglyph-attack resistant handles for MSAs.

Summary

Provides MSAs with an optional, but unique handle.

A handle consists of:

  • Base Handle: The user’s chosen handle. It is not guaranteed to be unique without the suffix. It is linked to a normalized version for Handle to MSA Id resolution. See Normalization Details below.
  • Suffix: The suffix is a numeric value appended to the user’s base handle to ensure the display handle (base handle + suffix) is unique.
  • Display Handle: The user’s original (un-normalized, but with whitespace trimmed and consolidated) base handle string and the suffix together (base.suffix) constitute a unique identifier for a user.

Suffixes

In order to allow multiple users to select the same base handle, a unique numeric suffix is appended to the Base Handle to form the Display Handle. The suffix is generated from a random sequence such that each suffix is unique based on the normalized version of the handle. For example, if there are two users who choose the handle alice, one would be alice.57 and the other alice.84.

Normalization Details

For safety, user handles are normalized for lookup purposes. An end user can therefore be reasonably assured that a display handle with the correct numeric suffix resolves to the desired user, regardless of the variant of the displayed base. (ie, for the suffix .25, all variants of the normalized base a1ice resolve to the same user: a1ice, alice, alicë, a1icé, etc…)

Character Normalization

Normalization removes diacriticals and converts to the lowercase version of the character. For example, Zaë will be normalized zae.

Homoglyph Normalization

Two or more characters that appear the same to the user are homoglyphs. To prevent most homoglyph attacks where one user attempts to impersonate another, the normalization converts all known homoglyphs to a single character. Thus, any version that normalizes to the same value are considered to be the same. For example, for the suffix .25, all variants of the normalized base a1ice resolve to the same user: a1ice, alice, alicë, a1icé, etc…

Handle Requirements

To programmatically check if a handle is valid, see the validate_handle RPC.

Pre-Normalization Validation

  • MUST be UTF-8
  • MUST NOT be more than 26 bytes
  • MUST not contain one of the blocked characters: " # % ( ) , . / : ; < > @ \ ` { }

Post-Normalization Validation

  • MUST have a character length of at least 3 and no more than 20
  • MUST not be a reserved word or a homoglyph of it:
    • adm1n (admin)
    • every0ne (everyone)
    • a11 (all)
    • adm1n1strat0r (administrator)
    • m0d (mod)
    • m0derat0r (moderator)
    • here (here)
    • channe1 (channel)
  • MUST only contain characters from the allowed unicode ranges (See ALLOWED_UNICODE_CHARACTER_RANGES for the full list)

Actions

The Handles pallet provides for:

  • Unique identifier for an MSA
  • Creation by proxy
  • Tokenless handle removal
  • Shuffled sequences for Suffixes

Interactions

Extrinsics

Name/DescriptionCallerPaymentKey EventsRuntime Added
claim_handle
Claim a handle with the given
Provider or MSA OwnerCapacity or TokensHandleClaimed27
retire_handle
Retire a handle. Retired handles + suffix are never reused.
MSA OwnerFreeHandleRetired27
change_handle
Convenience method to retire and then claim a new handle
Provider or MSA OwnerCapacity or TokensHandleRetired, HandleClaimed47

See Rust Docs for more details.

State Queries

Note: RPC use is suggested over the direct state queries for handles.

NameDescriptionQueryRuntime Added
Get Handle by MSA IdReturns the Display Handle and the block number in which it was claimedmsaIdToDisplayName29
Get MSA Id by Canonical Base and SuffixUses the stored canonical lookup string NOT the display handle with the suffix to retrieve the MSA IdcanonicalBaseHandleAndSuffixToMSAId29

See the Rust Docs for additional state queries and details.

RPCs

Note: May be restricted based on node settings and configuration.

NameDescriptionCallNode Version
Get Handle by MSA IdReturns the base handle and suffix as well as the canonical version of the handlegetHandleforMSAv1.6.0+
Get MSA Id by Display HandleReturns the MSA Id for a given Display HandlegetMsaForHandlev1.6.0+
Validate Handle StringChecks to see if the handle string validatesvalidateHandlev1.8.0+
Get Next SuffixesGiven a Base Handle and count, returns the next suffixes that will be used for claimed handlesgetNextSuffixesv1.8.0+

See Rust Docs for more details.

Shuffled Sequences

To limit the human value of low or particular suffixes, the pallet uses a shuffled sequence to choose a semi-randon suffix for a specific canonical handle string. The shuffle only requires storage of the current index, same as an ordered suffix system. The computational cost is greater the larger the index grows as it is lazy evaluation of the Rand32 given a deterministic seed generated from the canonical handle string. See more details at [handles_utils::suffix]

Re-exports

Modules

  • Substrate Signed Extension for validating requests to the handles pallet
  • The pallet module in each FRAME pallet hosts the most important items needed to construct this pallet.
  • Autogenerated weights for pallet_handles