Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cointop | 3,611 | 2 | 6 months ago | 45 | March 19, 2022 | 41 | apache-2.0 | Go | ||
A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀 | ||||||||||
Financial Machine Learning | 3,395 | a day ago | 4 | Python | ||||||
A curated list of practical financial machine learning tools and applications. | ||||||||||
Rotki | 2,169 | 11 hours ago | 344 | agpl-3.0 | Python | |||||
A portfolio tracking, analytics, accounting and tax reporting application that protects your privacy | ||||||||||
Node Binance Trader | 1,116 | 7 days ago | 4 | mit | TypeScript | |||||
💰 Cryptocurrency Trading Strategy & Portfolio Management Development Framework for Binance. 🤖 | ||||||||||
Alphapy | 894 | a month ago | 25 | August 29, 2020 | 13 | apache-2.0 | Python | |||
Automated Machine Learning [AutoML] with Python, scikit-learn, Keras, XGBoost, LightGBM, and CatBoost | ||||||||||
Lionshare Desktop | 570 | 5 years ago | 48 | mit | JavaScript | |||||
🦁 Simple cryptocurrency price and portfolio monitor for macOS | ||||||||||
Trace | 543 | 3 years ago | 6 | gpl-3.0 | Dart | |||||
Full-featured, modern crypto portfolio & market explorer. Built with @Flutter | ||||||||||
Rl Portfolio Management | 417 | 3 years ago | 10 | Jupyter Notebook | ||||||
Attempting to replicate "A Deep Reinforcement Learning Framework for the Financial Portfolio Management Problem" https://arxiv.org/abs/1706.10059 (and an openai gym environment) | ||||||||||
Cryptoshadow | 242 | 3 years ago | 3 | mit | Dart | |||||
CryptoCurrency Tracker for Android & iOS built with @flutter | ||||||||||
Cryptoview | 210 | 2 years ago | 6 | Python | ||||||
Elegant portfolio management for multi-exchange traders |
A decentralized cryptocurrency portfolio manager and exchange. https://faa.st
This repository contains code for both the Faast static website and single page application. Both are built using React.
NPM is required, please see the website for installation instructions.
This repository includes a prebuilt version of the application located in dist
. To run it you'll need to install local-web-server:
npm install local-web-server
Then start the application with:
npm start
Then open https://localhost:8000. To resolve the SSL warning follow these steps to install the certificate.
To build the application, you will need to install all of the modules:
npm install
Build the app:
npm run build
Files will be built to the dist folder. They can be served from your machine with:
npm start
The static website is built using react-static, which uses webpack under the hood. And the single page app is built directly with Webpack. For easier development, both can be run with webpack dev server. This allows live reloading on code changes. To start both dev servers behind a frontend proxy, run:
npm run dev
Once compiled, open http://localhost:8000 in your browser.
This concurrently runs the following:
npm run dev:site
-> Start dev server for static website at http://localhost:3000
npm run dev:app
-> Start dev server for single page app at http://localhost:8080/app
npm run dev:proxy
-> Provide a proxy to both dev servers at http://localhost:8000
To run the development server over https use HTTPS=true npm run dev
To resolve the SSL warning follow these steps.
or on Google Chrome Browser visit chrome://flags/#allow-insecure-localhost and set the property to Enabled
.
For mobile development you can run the development server behind ngrok by running npm run ngrok
in a separate terminal.
The OneFlow model will be followed as best as possible, with develop being the working branch and master pointing to the latest release tag.
Run:
npm run test
Wallet
abstraction which specifies how to load balances, generate/sign transactions, etc. (see src/services/Wallet/lib/Wallet.ts
)
BitcoreWallet
instead. For an example refer to one of the existing implementations for Bitcoin/Litecoin.src/services/Wallet/lib/WalletSerializer.ts
src/utilities/walletIcon.js
src/app/components/ConfirmTransactionModal/index.jsx
src/config/index.js
src/app/actions/connectHardwareWallet.js
src/config/walletTypes.js
src/app/components/HardwareWalletModal/ConnectionInstructions.jsx
src/app/components/Access
src/app/actions/access.js
Faast is a fully client side application. Faast is never in control of user funds, and private keys never leave the browser, they are only used to sign transactions. This is similar to myetherwallet.com
Faast never stores, transmits or otherwise knows of private keys. If you are interesting in auditing this, you can find the wallet handling logic located in src/services/Wallet.
This project is licensed under the MIT License - see the LICENSE file for details