pub trait Strategy {
    type Strategy;

    const HRP: &'static str;
}
Expand description

Helper trait for implementing specific strategy for Bech32 construction

Required Associated Types

Specific strategy used for automatic implementation of all Bech32-related traits.

Required Associated Constants

Bech32 HRP prefix used by a type

Implementors