// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@pezkuwi/api'; import { useMemo } from 'react'; import { createNamedHook } from './createNamedHook.js'; import { useApi } from './useApi.js'; function useSystemApiImpl (): ApiPromise | undefined { const { api, apiRelay } = useApi(); return useMemo(() => apiRelay || api, [apiRelay, api]); } export const useSystemApi = createNamedHook('useSystemApi', useSystemApiImpl);