mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 07:48:00 +00:00
16 lines
492 B
TypeScript
16 lines
492 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Accounts, Addresses } from './ctx/types.js';
|
|
|
|
import { useContext } from 'react';
|
|
|
|
import { KeyringCtx } from './ctx/Keyring.js';
|
|
import { createNamedHook } from './createNamedHook.js';
|
|
|
|
function useKeyringImpl (): { accounts: Accounts, addresses: Addresses } {
|
|
return useContext(KeyringCtx);
|
|
}
|
|
|
|
export const useKeyring = createNamedHook('useKeyring', useKeyringImpl);
|