UNPKG

@frak-labs/react-sdk

Version:

React SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.

12 lines (10 loc) 234 B
import { useContext } from "react"; import { FrakIFrameClientContext } from "../provider"; /** * Get the current Frak client * * @group hooks */ export function useFrakClient() { return useContext(FrakIFrameClientContext); }