@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
4 lines (3 loc) • 381 B
TypeScript
import type { ResolvedNameServiceNames } from '@mysten/sui/client';
import type { UseQueryOptions, UseQueryResult } from '@tanstack/react-query';
export declare function useResolveSuiNSName(address?: string | null, options?: Omit<UseQueryOptions<ResolvedNameServiceNames, Error, string | null, unknown[]>, 'queryFn' | 'queryKey' | 'select'>): UseQueryResult<string | null, Error>;