UNPKG
@newcoin-foundation/newcoin-sdk
Version:
latest (1.0.319)
1.0.319
1.0.318
1.0.317
1.0.316
1.0.315
1.0.314
1.0.313
1.0.312
1.0.311
1.0.310
1.0.309
1.0.308
1.0.307
1.0.305
1.0.304
1.0.303
1.0.302
1.0.301
1.0.300
1.0.284
1.0.283
1.0.282
1.0.281
1.0.31
1.0.28
1.0.27
1.0.25
1.0.24
1.0.23
1.0.21
1.0.20
1.0.19
1.0.18
1.0.17
1.0.16
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
SDK for Newcoin blockchain
github.com/newcoin-foundation/newcoin-sdk
newcoin-foundation/newcoin-sdk
@newcoin-foundation/newcoin-sdk
/
src
/
neftymarket
/
utils
/
transaction.ts
11 lines
(9 loc)
•
254 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
const
getNameForTransaction = (
name
:
string
):
string
=>
name.
toLowerCase
().
trim
();
export
const
priceForCurrency
= (
price
:
number
,
currency
:
string
,
decimals
:
number
) => {
return
`
${price.toFixed(decimals)}
${currency}
`
; };