UNPKG

@roochnetwork/rooch-sdk

Version:
10 lines (9 loc) 293 B
function fixedBalance(balance, decimals) { balance = typeof balance === "number" ? balance : Number(balance); decimals = typeof decimals === "number" ? decimals : Number(decimals); return balance / Math.pow(10, decimals); } export { fixedBalance }; //# sourceMappingURL=balance.js.map