useAccount
Hook to get the current balance of the account. It supports XRP balance and token balances.
Usage
import { useBalance } from "@hypergate/react";
export function App() {
const const balance: UseBalanceReturnType<{
decimals: number;
symbol: string;
value: bigint;
}>balance = useBalance();
}