UNPKG

@mysten/dapp-kit

Version:

A collection of React hooks and components for interacting with the Sui blockchain and wallets.

9 lines (5 loc) 240 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 import { createContext } from 'react'; import type { WalletStore } from '../walletStore.js'; export const WalletContext = createContext<WalletStore | null>(null);