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

https://github.com/horothesun/coinbase-wrapper-nodejs

Coinbase accounts current total value.
https://github.com/horothesun/coinbase-wrapper-nodejs

axios coinbase coinbase-api coinbase-pro coinbase-pro-api nodejs

Last synced: about 2 months ago
JSON representation

Coinbase accounts current total value.

Awesome Lists containing this project

README

          

# Coinbase Wrapper - Node.js

Coinbase accounts current total value.

## Setup

### Environment

Run

```bash
cp .env.example .env
```

then edit the `.env` file with your Coinbase API key data.

### Node project

```bash
npm i
```

### Parameters

Edit the following values in `index.js` with your desired ones.

```javascript
const fromCoins = ['BTC', 'ETH', 'LTC']
const toCurrency = 'GBP'
```

## Execute

```bash
npm start
```