ens-normalize-rs 0.2.0

Ethereum Name Service (ENS) name normalization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod beautify;
mod code_points;
pub(crate) mod constants;
mod error;
mod join;
mod normalizer;
mod static_data;
mod tokens;
mod utils;
mod validate;

pub(crate) use code_points::*;
pub use error::{CurrableError, DisallowedSequence, ProcessError};
pub use normalizer::{beautify, normalize, process, tokenize, EnsNameNormalizer, ProcessedName};
pub use tokens::*;
pub use validate::{LabelType, ValidatedLabel};