UNPKG

@krobinalpha/ens-namehash

Version:

A simple module for generating ENS namehashes per spec https://github.com/ethereum/EIPs/issues/137

9 lines (7 loc) 237 B
declare const namehash: { hash: (inputName: string) => string; normalize: (name: string) => string; keccak256: (label: string) => string; reverseNode: (address: string) => string; }; export { namehash as default };