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
| Name | Type | Description |
|---|---|---|
node | bytes32 | The node to query. |
key | string | The text data key to query. |
Returns
| Name | Type | Description |
|---|---|---|
<none> | string | The associated text data. |
Events
TextChanged
event TextChanged(bytes32 indexed node, string indexed indexedKey, string key, string value);