const balanceMinusFee = (balance: string) => { const [integer, decimal] = balance.split(`.`); const newInteger = Number(integer) - 1; return decimal ? `${newInteger}.${decimal}` : `${newInteger}`.toString(); }