Skip to content

useAccount

Hook to get the current balance of the account. It supports XRP balance and token balances.

Usage

 
import { useBalance } from "@hyper-gate/react";
 
export function App() {
  const 
const balance: UseQueryReturnType<{ decimals: number; symbol: string; value: bigint; }, GetBalanceErrorType>
balance
= useBalance();
}