Docs
/Hooks
/useEnsAddress
useEnsAddress
Hook for fetching the address for ENS name.
import { useEnsAddress } from 'wagmi'Usage
import { useEnsAddress } from 'wagmi'
function App() {
  const { data, isError, isLoading } = useEnsAddress({
    name: 'awkweb.eth',
  })
  if (isLoading) return <div>Fetching address…</div>
  if (isError) return <div>Error fetching address</div>
  return <div>Address: {data}</div>
}Return Values
{
  data?: string
  error?: Error
  isError: boolean
  isFetched: boolean
  isFetching: boolean
  isIdle: boolean
  isLoading: boolean
  isRefetching: boolean
  isStale: boolean
  isSuccess: boolean
  refetch: (options: {
    throwOnError: boolean
    cancelRefetch: boolean
  }) => Promise<string>
  status: 'idle' | 'error' | 'loading' | 'success'
}Configuration
name (optional)
ENS name to fetch address for. If name is not defined, hook will not run.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'moxey.eth',
  })
}cacheTime (optional)
Time (in ms) which the data should remain in the cache. Defaults to 0.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    cacheTime: 2_000,
  })
}enabled (optional)
Set this to false to disable this query from automatically running. Defaults to true.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    enabled: false,
  })
}staleTime (optional)
Time (in ms) after data is considered stale. If set to Infinity the data will never be considered stale. Defaults to 60 * 60 * 24 (24 hours).
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    staleTime: 2_000,
  })
}suspense (optional)
Set this to true to enable suspense mode.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    suspense: true,
  })
}onSuccess (optional)
Function to invoke when fetching new data is successful.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    onSuccess(data) {
      console.log('Success', data)
    },
  })
}onError (optional)
Function to invoke when an error is thrown while fetching new data.
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    onError(error) {
      console.log('Error', error)
    },
  })
}onSettled (optional)
Function to invoke when fetching is settled (either successfully fetched, or an error has thrown).
import { useEnsAddress } from 'wagmi'
function App() {
  const ensAddress = useEnsAddress({
    name: 'awkweb.eth',
    onSettled(data, error) {
      console.log('Settled', { data, error })
    },
  })
}