lookupAddress method

Future<String?> lookupAddress(
  1. String address
)

Performs a reverse lookup of the address in ENS using the Reverse Registrar. If the name does not exist, or the forward lookup does not match, null is returned.

An ENS name requries additional configuration to setup a reverse record, they are not automatically set up.

Implementation

Future<String?> lookupAddress(String address) =>
    call<String?>('lookupAddress', [address]);