UNPKG

iota-ternary

Version:

Fast utility functions for conversion between trytes, trits and bytes

7 lines (5 loc) 208 B
import { trytesToTrits } from "../trytes-to-trits" import { tritsToNumber } from "../trits-to-number" export function trytesToNumber(trytes: string): number { return tritsToNumber(trytesToTrits(trytes)) }