UNPKG

@ledgerhq/coin-stellar

Version:
6 lines 253 B
import { fetchAccount } from "../network"; export async function getBalance(addr) { const { balance } = await fetchAccount(addr); return [{ value: BigInt(balance.toString()), asset: { type: "native" } }]; } //# sourceMappingURL=getBalance.js.map