get-crypto-fiat-values
v1.1.0
Published
[![Build Status](https://travis-ci.org/samthomson/get-crypto-fiat-values.svg?branch=master)](https://travis-ci.org/samthomson/get-crypto-fiat-values) [![Coverage Status](https://coveralls.io/repos/github/samthomson/get-crypto-fiat-values/badge.svg?branch=
Downloads
6
Readme
Get Crypto FIAT Values
For a crypto currency or several, get its/their FIAT value (in USD).
install
yarn add get-crypto-fiat-values
use
get a single crypto usd value
import { getCryptoUSDValue } from 'get-crypto-fiat-values'
let aPortfolioAllocation: string[] = ['bitcoin', 'ethereum', 'litecoin', 'dogecoin']
aPortfolioAllocation.forEach(async sCurrency => {
const value = await getCryptoUSDValue(sCurrency)
console.log(`Got value: ${value}, for ${sCurrency}`)
})
prints:
Got value: 248.464, for litecoin
Got value: 11519.5, for bitcoin
Got value: 944.51, for ethereum
Got value: 0.00707836, for dogecoin
get multiple crypto usd values
import { getMultipleCryptoUSDValue } from 'get-crypto-fiat-values'
const oResult: any = await getMultipleCryptoUSDValue(['ethereum', 'dogecoin', 'litecoin', 'ripple'])
const sETHKey = 'ethereum'
const sDOGEKey = 'dogecoin'
console.log('ethereum value is: ', oResult[sETHKey].usdValue)
console.log('dogecoin value is: ', oResult[sDOGEKey].usdValue)
prints:
ethereum value is: 749.677
dogecoin value is: 0.00421033