Fetch the balance of the current account.
This API may not be available on all .
async function getBalance(): BalanceResponse;
type BalanceResponse = {
balance: number;
currency?: "sats" | "EUR" | "USD"
}
await webln.enable();
const result = await webln.getBalance();