mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-15 09:35:14 +01:00
51 lines
1.1 KiB
Markdown
51 lines
1.1 KiB
Markdown
# ocean-balance
|
|
|
|
> 🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.
|
|
> https://oceanprotocol.com
|
|
|
|
---
|
|
|
|
- [Features](#features)
|
|
- [Usage](#usage)
|
|
- [Build packages](#build-packages)
|
|
|
|
---
|
|
|
|
## 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
|
|
|
|
## Usage
|
|
|
|
Clone, add adresses, and run:
|
|
|
|
```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
|
|
```
|
|
|
|
## Build packages
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
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
|
|
```
|