This tool allows you to get a total overview of your crypto assets. These assets can either be on an exchange (currently only binance) or in another wallet.
Download the relevant binary from releases.
All configuration is done using a .avida.toml
file in your user's home directory.
To add an exchange you should add a section as below. (Currently only binance is supported).
[[exchanges]]
exchange = "binance"
apikey = "<API_KEY>"
apisecret = "<API_SECRET>"
You can also add fixed positions/coins (not on an exchange).
[[positions]]
symbol = "XMR"
amount = 199.34
Just run avida
$ avida
XMR : 199.34 => $ 199.34
LTC : 0.00 => $ 0.01
------------
Total ==> $ 199.35
Unfortunately Binance and CoinMarketCap don't use the same symbols for all cryptocurrencies. This can lead to an incorrect total values of your portfolio.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D.
This project is licensed under the MIT License - see the LICENSE.md file for details