53da48b646
* refactor: add an import sorting plugin * Fix code style issues with ESLint Co-authored-by: Lint Action <lint-action@samuelmeuli.com>
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { namehash } from 'ethers/lib/utils'
|
|
import { useMemo } from 'react'
|
|
|
|
import { useSingleCallResult } from '../state/multicall/hooks'
|
|
import isZero from '../utils/isZero'
|
|
import { useENSRegistrarContract, useENSResolverContract } from './useContract'
|
|
|
|
/**
|
|
* Does a lookup for an ENS name to find its contenthash.
|
|
*/
|
|
export default function useENSContentHash(ensName?: string | null): { loading: boolean; contenthash: string | null } {
|
|
const ensNodeArgument = useMemo(() => {
|
|
if (!ensName) return [undefined]
|
|
try {
|
|
return ensName ? [namehash(ensName)] : [undefined]
|
|
} catch (error) {
|
|
return [undefined]
|
|
}
|
|
}, [ensName])
|
|
const registrarContract = useENSRegistrarContract(false)
|
|
const resolverAddressResult = useSingleCallResult(registrarContract, 'resolver', ensNodeArgument)
|
|
const resolverAddress = resolverAddressResult.result?.[0]
|
|
const resolverContract = useENSResolverContract(
|
|
resolverAddress && isZero(resolverAddress) ? undefined : resolverAddress,
|
|
false
|
|
)
|
|
const contenthash = useSingleCallResult(resolverContract, 'contenthash', ensNodeArgument)
|
|
|
|
return {
|
|
contenthash: contenthash.result?.[0] ?? null,
|
|
loading: resolverAddressResult.loading || contenthash.loading,
|
|
}
|
|
}
|