UNPKG

@msquared/etherbase-client

Version:

React hooks for interacting with Etherbase smart contracts

8 lines (7 loc) 256 B
import type { PublicClient, WalletClient } from "viem"; type UseWebThreeReturn = { publicClient: PublicClient | null; getWalletClient: () => Promise<WalletClient | undefined>; }; export default function useWebThree(): UseWebThreeReturn; export {};