All Projects → cronoh → Nanovault

cronoh / Nanovault

Open source wallet for using the Nano cryptocurrency

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Nanovault

Cryptokernel
A SDK for implementing blockchain-based digital currencies
Stars: ✭ 146 (-9.88%)
Mutual labels:  cryptocurrency
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+1206.17%)
Mutual labels:  cryptocurrency
Bot18
Bot18 is a high-frequency cryptocurrency trading bot developed by Zenbot creator @carlos8f
Stars: ✭ 157 (-3.09%)
Mutual labels:  cryptocurrency
Nsfminer
No Fee Ethash miner for AMD and Nvidia
Stars: ✭ 141 (-12.96%)
Mutual labels:  cryptocurrency
Coinx
Buy, sell, and find the best prices for crypto-currencies from multiple markets.
Stars: ✭ 150 (-7.41%)
Mutual labels:  cryptocurrency
React Coin Hive
Mine cryptocurrency while your users haven't engaged with your content lately
Stars: ✭ 153 (-5.56%)
Mutual labels:  cryptocurrency
Adalite
A lightweight web wallet for Cardano cryptocurrency with Trezor and Ledger support. Please note that the only valid domain for our wallet is adalite.io
Stars: ✭ 146 (-9.88%)
Mutual labels:  cryptocurrency
Stacks
Stacks ecosystem overview.
Stars: ✭ 1,921 (+1085.8%)
Mutual labels:  cryptocurrency
Gocryptotrader
A cryptocurrency trading bot and framework supporting multiple exchanges written in Golang.
Stars: ✭ 2,214 (+1266.67%)
Mutual labels:  cryptocurrency
Telegram Kraken Bot
Python bot to trade on Kraken via Telegram
Stars: ✭ 156 (-3.7%)
Mutual labels:  cryptocurrency
Coinlist
Comprehensive list of cryptocurrencies with metadata
Stars: ✭ 148 (-8.64%)
Mutual labels:  cryptocurrency
Awesome Token Sale
Curated list of token sale resources / ICO resources
Stars: ✭ 149 (-8.02%)
Mutual labels:  cryptocurrency
Dovizcom Api
Doviz.com Api (Döviz, Borsa, Altın, Kripto Paralar)
Stars: ✭ 153 (-5.56%)
Mutual labels:  cryptocurrency
Java Stellar Sdk
Stars: ✭ 146 (-9.88%)
Mutual labels:  cryptocurrency
Fluttercryptoui
Flutter representation of a Crypto app Concept
Stars: ✭ 158 (-2.47%)
Mutual labels:  cryptocurrency
Canoe
Canoe is a Nano Wallet heavily based on the MIT licensed Copay wallet from Bitpay
Stars: ✭ 146 (-9.88%)
Mutual labels:  cryptocurrency
Socktrader
🚀 Websocket based trading bot for 💰cryptocurrencies 📈
Stars: ✭ 152 (-6.17%)
Mutual labels:  cryptocurrency
Minesweeper
A Burpsuite plugin (BApp) to aid in the detection of scripts being loaded from over 23000 malicious cryptocurrency mining domains (cryptojacking).
Stars: ✭ 162 (+0%)
Mutual labels:  cryptocurrency
Stock.indicators
Stock indicator technical analysis library package for .NET. Send in historical price quotes and get back desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this community library. Current indicators include: Accumulation/Distribution Line (ADL), Aroon Oscillator, Arnaud Legoux Moving Average (ALMA), Average Directional Index (ADX), Average True Range (ATR), Awesome Oscillator (AO), Balance of Power (BOP), Beta Coefficient, Bollinger Bands®, Chaikin Money Flow (CMF), Chaikin Oscillator, Chandelier Exit, Choppiness Index (CHOP), Commodity Channel Index (CCI), ConnorsRSI, Correlation Coefficient, Donchian Channels, Double Exponential Moving Average (DEMA), Elder-ray Index, Exponential Moving Average (EMA), Force Index, Fractal Chaos Bands (FCB), Gator Oscillator, Heikin-Ashi, Hull Moving Average (HMA), Ichimoku Cloud, Kaufman's Adaptive Moving Average (KAMA), KDJ Index, Keltner Channels, Momentum Oscillator, Money Flow Index (MFI), MESA Adaptive Moving Averages (MAMA), Moving Average Convergence/Divergence (MACD), Moving Average Envelopes, On-balance Volume (OBV), Parabolic SAR (stop and reverse), Percentage Volume Oscillator (PVO), Pivot Points and Rolling Pivot Points, Price Channels, Price (Comparative) Relative Strength (PRS), Price Momentum Oscillator (PMO), Rate of Change (ROC), Relative Strength Index (RSI), R-Squared (Coefficient of Determination), Simple Moving Average (SMA), Slope and Linear Regression, Smoothed Moving Average (SMMA), Standard Deviation, Stoller Average Range Channel (STARC) Bands, Stochastic Oscillator, Stochastic RSI, SuperTrend, Tillson T3 Moving Average, Triple Exponential Moving Average (TEMA), Triple EMA Oscillator (TRIX), True Strength Index (TSI), Ulcer Index, Ultimate Oscillator, Volume Simple Moving Average, Volume Weighted Average Price (VWAP), Vortex Indicator (VI), Weighted Moving Average (WMA), Williams %R, Williams Alligator, Williams Fractal, and Zig Zag.
Stars: ✭ 157 (-3.09%)
Mutual labels:  cryptocurrency
Krypton
Free Bulma ICO / Crypto template
Stars: ✭ 155 (-4.32%)
Mutual labels:  cryptocurrency

NanoVault

NanoVault is a fully client-side signing wallet for sending and receiving Nano on your desktop or in your browser

NanoVault Screenshot


Table of Contents

Install NanoVault

NanoVault is available on your desktop (Windows/Mac/Linux) - just head over to the releases section and download the latest version for your OS.

You can also use NanoVault from any device on the web at nanovault.io

Bugs/Feedback

If you run into any issues, please use the GitHub Issue Tracker or head over to our Discord Server!
We are continually improving and adding new features based on the feedback you provide, so please let your opinions be known!

To get an idea of some of the things that are planned for the near future, check out the Road Map.


Everything below is only for contributing to the development of NanoVault

To download NanoVault go to the releases section, or use the web wallet at nanovault.io


Application Structure

The application is broken into a few separate pieces:

  • NanoVault - The main wallet application (UI + Seed Generation/Block Signing/Etc).
  • NanoVault-Server - Serves the Wallet UI and brokers public communication between the wallet and the Nano Node.
  • NanoVault-WS - Websocket server that receives new blocks from the Nano node and sends them in real time to the wallet ui.

Development Prerequisites

  • Node Package Manager: Install NPM
  • Angular CLI: npm install -g @angular/cli

Development Guide

Clone repository and install dependencies

git clone https://github.com/cronoh/nanovault
cd nanovault
npm install

Run the wallet in dev mode

npm run wallet:dev

Build Wallet (For Production)

Build a production version of the wallet for web:

npm run wallet:build

Build a production version of the wallet for desktop: (Required for all desktop builds)

npm run wallet:build-desktop

Desktop Builds

All desktop builds require that you have built a desktop version of the wallet before running!

Run the desktop wallet in dev mode:

npm run desktop:dev

Build the desktop wallet for your local OS (Will be in dist-desktop):

npm run desktop:local

Build the desktop wallet for Windows+Mac+Linux (May require dependencies for your OS View them here):

npm run desktop:full

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Acknowledgements

Special thanks to the following!

If you have found NanoVault useful and are feeling generous, you can donate at xrb_318syypnqcgdouy3p3ekckwmnmmyk5z3dpyq48phzndrmmspyqdqjymoo8hj

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].