An open API service indexing awesome lists of open source software.

https://github.com/synonymdev/lsp-exchange-rate


https://github.com/synonymdev/lsp-exchange-rate

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Exchange Rate

Call Bitfinex API to get exchange rate for BTC USD (and other tickers).

## How to use

```javascript

const satsUSD = await ExchangeRate.satsToUSD(100000000)
const btcUSDRate = await ExchangeRate.getBtcUsd()
const getRatesRaw = await ExchangeRate.getRatesRaw("bfx tickers")

// returns closing price of that day
const getHistoricalPrice = await ExchangeRate.historicalBtcUsd()

```