@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
12 lines (9 loc) • 307 B
text/typescript
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { useWalletStore } from './useWalletStore.js';
/**
* Retrieves a list of registered wallets available to the dApp sorted by preference.
*/
export function useWallets() {
return useWalletStore((state) => state.wallets);
}