Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/improvein/personal-cryptofolio
Mobile personal crypto portfolio manager focusing on privacy and data availability.
https://github.com/improvein/personal-cryptofolio
bitcoin crypto crypto-assets cryptocurrency financial mobile portfolio portfolio-management privacy
Last synced: 2 months ago
JSON representation
Mobile personal crypto portfolio manager focusing on privacy and data availability.
- Host: GitHub
- URL: https://github.com/improvein/personal-cryptofolio
- Owner: improvein
- License: mit
- Created: 2018-09-16T19:18:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-23T21:53:31.000Z (7 months ago)
- Last Synced: 2024-06-24T15:12:49.176Z (7 months ago)
- Topics: bitcoin, crypto, crypto-assets, cryptocurrency, financial, mobile, portfolio, portfolio-management, privacy
- Language: TypeScript
- Homepage:
- Size: 3.62 MB
- Stars: 9
- Watchers: 4
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Personal CryptoFolio
![Personal CryptoFolio logo](https://github.com/improvein/personal-cryptofolio/blob/master/src/assets/images/main_logo.png)
Personal Portfolio for crypto assets.
This mobile app allows you to track your portfolio registering all the transactions for each asset you have. It is very similar to many others that exists in the market, but with focus on privacy and data availability.
We think it's worth having a portfolio manager that allows you to keep your information isolated and private from anyone else.
You can download the app directly from this GitHub repo. You can even get it automated with the Obtainium app.
Download and old unmaintained version from the Google Play Store: old v1.x app
## Core principles - where we are different
* **Data availability**: export and import your data and allow YOU to be the owner of it
* **Privacy**: no 3rd parties involved in the storage of your data## Features
* Track several crypto assets (we will add more)
* Track each asset's transactions by registering your operations (buy or sell)
* See your portfolio valuation and profit/loss
* You can see it at a portfolio level by clicking on the total valuation amount in the main screen
* Or you can see it an asset level in each asset's screen
* Online price retrieval from different sources:
* Binance
* Bitfinex
* Bitstamp
* Bittrex
* Kraken
* Export your entire portfolio in JSON format
_(at the moment only available with the "share" option)_
* Import your entire portfolio in JSON format
_(at the moment only by copy-pasting the JSON content)_
* PIN protection for the app## Privacy
Some things to consider regarding your privacy:* Your entire portfolio data is stored in your device. Nothing is sent to any server.
* The only contact with the "outside world" is for price retrieval from price sources like exchanges. But in those cases, nothing from your portfolio is revelead except for the coin which you want to fetch the price for.
* The App can be protected with a PIN.
* Data is stored non-encrypted in the device. (see [future features](https://github.com/improvein/personal-cryptofolio/issues)).
However, the isolation the modern OS provides protects you from other apps trying to access it in most cases.## Contribute
You are more than welcome to contribute!Just [report an issue](https://github.com/improvein/personal-cryptofolio/issues) or [make a pull request](https://github.com/improvein/personal-cryptofolio/pulls), whatever you want.
## Development
This is a React Native application.So after cloning the repo make sure you install all the dependencies:
```
npm install
```Then plug your phone or start an emulator for the OS you want. OS specific instructions below.
### Android
Before starting you need to create the file `android/local.properties` with this:
```
APP_RELEASE_STORE_FILE=/location/to/your/keystore.file
APP_RELEASE_STORE_PASSWORD=your_store_password
APP_RELEASE_KEY_ALIAS=your_key_alias
APP_RELEASE_KEY_PASSWORD=your_key_password
```
(if you have any doubt as for the use of these parameters, check the [android/app/build.grade](https://github.com/improvein/personal-cryptofolio/blob/master/android/app/build.grade) file)Then run the project in debug mode in Android:
```
react-native run-android --appIdSuffix "debug"
```
(the suffix thing is because the app is configured to add a "debug" prefix to the package name when running on debug mode. That way it doesn't run into conflics with your production app that might be installed on the device)### iOS
(@TODO: NEED MORE DETAILS HERE)Run the project in iOS:
```
npm run ios
```For more information about how to develop and build using React Native: https://facebook.github.io/react-native/