// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Header } from '@polkadot/types/interfaces'; import { createNamedHook } from './createNamedHook.js'; import { useApi } from './useApi.js'; import { useCall } from './useCall.js'; const OPT = { transform: (header: Header) => header.hash.toHex() }; function useBestHashImpl (): string | undefined { const { api } = useApi(); return useCall(api.rpc.chain.subscribeNewHeads, undefined, OPT); } export const useBestHash = createNamedHook('useBestHash', useBestHashImpl);