mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 10:07:57 +00:00
17 lines
616 B
TypeScript
17 lines
616 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { AccountId, BalanceOf } from '@pezkuwi/types/interfaces';
|
|
|
|
import { createNamedHook } from './createNamedHook.js';
|
|
import { useApi } from './useApi.js';
|
|
import { useCall } from './useCall.js';
|
|
|
|
function useSubidentitiesImpl (address: string): AccountId[] | undefined {
|
|
const { apiIdentity } = useApi();
|
|
|
|
return useCall<[BalanceOf, AccountId[]]>(apiIdentity.query.identity?.subsOf, [address])?.[1];
|
|
}
|
|
|
|
export const useSubidentities = createNamedHook('useSubidentities', useSubidentitiesImpl);
|