UNPKG

@newcoin-foundation/newcoin-sdk

Version:
11 lines (9 loc) 254 B
export const getNameForTransaction = (name: string): string => name.toLowerCase().trim(); export const priceForCurrency = ( price: number, currency: string, decimals: number ) => { return `${price.toFixed(decimals)} ${currency}`; };