How to get .hype integrated in your dApp
This guide will help you integrate resolution into your HyperEVM application using our contract, with a real-world example for customizing your wallet connect UI.
Use .hype Names in Your App
.hype Names in Your AppThe dotHYPE resolver is fully ENS-compatible, making integration simple for developers already familiar with Ethereum naming systems. You can use standard addr(), getName(), and text() calls to resolve identity information from .hype domains. No proprietary logic required.
Basic Usage
To resolve .hype names, use the dotHYPEResolver contract and the following standard functions:
addr(bytes32 node)
Returns the address for a .hype name
getName(address)
Returns the primary .hype name for a wallet
text(bytes32 node, string key)
Returns a text record (e.g. twitter, avatar)
Note: The
noderefers to the ENS-compatible namehash of the.hypedomain.
Last updated

