UNPKG

iota-ternary

Version:

Fast utility functions for conversion between trytes, trits and bytes

13 lines (10 loc) 285 B
export type trit = ( -1 | 0 | 1 ) export type tryte = ( "9" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ) export type trits = trit[] export type trytes = string