export const toFixed = (value: number, decimals: number = 4) => { return Number(value.toFixed(decimals)); };