useConnectorClient
Hook to get the current connector client.
Usage
import { useConnectorClient } from "@hyper-gate/react";
export function App() {
const const connectorClient: UseConnectorClientReturnType<Config, number, {
readonly connection: Connection;
readonly feeCushion: number;
readonly maxFeeXRP: string;
networkID: number | undefined;
... 30 more ...;
accounts: readonly [Address, ...Address[]];
}>connectorClient = useConnectorClient();
}