1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2024-11-15 09:35:14 +01:00
blowfish/README.md

51 lines
1.1 KiB
Markdown
Raw Normal View History

2019-05-05 13:34:21 +02:00
# ocean-balance
2019-05-06 01:04:17 +02:00
> 🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.
2019-05-06 00:10:28 +02:00
> https://oceanprotocol.com
2019-05-05 13:34:21 +02:00
2019-05-06 01:04:17 +02:00
---
2019-05-06 14:02:49 +02:00
- [Features](#features)
2019-05-06 01:04:17 +02:00
- [Usage](#usage)
- [Build packages](#build-packages)
---
2019-05-06 14:02:49 +02:00
## Features
- show Ocean Token balances from a list of Ethereum account addresses
- show a total balance of all account balances
- convert those balances against multiple currencies
- re-fetches everything automatically every minute
- balances are fetched via etherscan.io API
- spot prices are fetched from coingecko.com API
2019-05-05 13:34:21 +02:00
## Usage
2019-05-06 00:10:28 +02:00
Clone, add adresses, and run:
2019-05-05 13:34:21 +02:00
```bash
# Clone this repository
git clone git@github.com:kremalicious/ocean-balance.git
cd ocean-balance
# Install dependencies
npm install
# Run the app in dev mode
npm start
```
2019-05-06 01:04:17 +02:00
## Build packages
2019-05-05 13:34:21 +02:00
```bash
npm run build
```
2019-05-06 01:04:17 +02:00
Will build and package the app into platform specific packages for macOS, Windows & Linux.
On a Mac and Linux machine, packaging requires [`wine`](https://www.winehq.org) in your `PATH`. To install on macOS with [Homebrew](https://brew.sh):
```bash
brew install wine
```