#blockchain #eos #eosio #dapp #cryptography

eosio_numstr

Basic helper functions to work with EOSIO names and symbols

3 unstable releases

0.3.0 Feb 4, 2020
0.2.2 Jun 12, 2019
0.2.1 Jun 2, 2019

#6 in #eos

Download history 4/week @ 2024-12-02 36/week @ 2024-12-09 15/week @ 2024-12-16 6/week @ 2025-01-06 9/week @ 2025-01-13 9/week @ 2025-01-20 3/week @ 2025-01-27 17/week @ 2025-02-03 17/week @ 2025-02-10 7/week @ 2025-02-17 14/week @ 2025-02-24 9/week @ 2025-03-03 22/week @ 2025-03-10 7/week @ 2025-03-17

52 downloads per month
Used in 8 crates (4 directly)

MIT/Apache

20KB
362 lines

Build Status

eosio_numstr

This crate provides functions for converting EOSIO names and symbols to and from string representations.

Creating an EOSIO name:

use eosio_numstr::name_from_bytes;
let name = name_from_bytes("eosio".bytes()).unwrap();
assert_eq!(name, 6138663577826885632);

Creating an EOSIO symbol:

use eosio_numstr::symbol_from_bytes;
let symbol = symbol_from_bytes(4, "EOS".bytes()).unwrap();
assert_eq!(symbol, 1162826500);

License: MIT OR Apache-2.0

No runtime deps