Skip to content
On this page

namehash

Hashes ENS name.

Import

ts
import { namehash, normalize } from 'viem/ens'

Usage

ts
import { namehash, normalize } from 'viem/ens'

namehash('wagmi-dev.eth') 
// '0xf246651c1b9a6b141d19c2604e9a58f567973833990f830d882534a747801359'

WARNING

A name must be normalized via UTS-46 normalization before being hashed with namehash. This can be achieved by using the normalize utility.

Returns

string

The hashed ENS name.

Parameters

name

  • Type: string

A ENS name.

Released under the MIT License.