Get balance of current account.
async function getBalance(): BalanceInfo
the balance.
type BalanceInfo = {
confirmed: number;
unconfirmed: number;
total: number
};
const provider = (window.$onekey && window.$onekey.btc) || window.unisat;
const balance = async provider.getBalance();