Smart Contracts
Interfaces
Resolvers
IAddrResolver

IAddrResolver

Git Source (opens in a new tab)

Includes the interface for the legacy (ETH-only) addr function.

Functions

addr

Returns the address associated with an ENS node.

function addr(bytes32 node) external view returns (address payable);

Parameters

NameTypeDescription
nodebytes32The node to query.

Returns

NameTypeDescription
<none>address payableThe associated address.

Events

AddrChanged

event AddrChanged(bytes32 indexed node, address a);