Smart Contracts
Interfaces
Resolvers
ITextResolver

ITextResolver

Git Source (opens in a new tab)

Functions

text

Returns the text data associated with an ENS node and key.

function text(bytes32 node, string calldata key) external view returns (string memory);

Parameters

NameTypeDescription
nodebytes32The node to query.
keystringThe text data key to query.

Returns

NameTypeDescription
<none>stringThe associated text data.

Events

TextChanged

event TextChanged(bytes32 indexed node, string indexed indexedKey, string key, string value);