useAddress
The useAddress
hook is used to get an address from an onchain identity provider for a given name.
It is implemented with useQuery from @tanstack/react-query
, and returns a UseQueryResult
object, allowing you to pass through all @tanstack/react-query
options.
Usage
import { useAddress } from '@coinbase/onchainkit/identity';
const { data: address, isLoading } = useAddress({ name: 'zizzamia.base.eth' });
Returns
useQuery<Promise<GetAddressReturnType>>