All Projects → BitDesert → MyNanoNinja

BitDesert / MyNanoNinja

Licence: GPL-3.0 license
The perfect tool for Nano representatives lists and network statistics

Programming Languages

javascript
184084 projects - #8 most used programming language
EJS
674 projects
CSS
56736 projects

Projects that are alternatives of or similar to MyNanoNinja

RaiBlocksPHP
A bunch of PHP methods to build and sign transactions
Stars: ✭ 20 (-39.39%)
Mutual labels:  nano, nanocurrency
RaiBlocksWebAssemblyPoW
WebAssembly Nanocurrency PoW implementation
Stars: ✭ 33 (+0%)
Mutual labels:  nano, nanocurrency
Nano Node
Nano is a cryptocurrency
Stars: ✭ 3,336 (+10009.09%)
Mutual labels:  nano, nanocurrency
Nault
⚡ The most advanced Nano wallet with focus on security, speed and robustness
Stars: ✭ 228 (+590.91%)
Mutual labels:  nano, nanocurrency
nano-update-tx-work
Rebroadcast unconfirmed Nano transactions with higher proof-of-work (PoW) to help restart expired elections.
Stars: ✭ 14 (-57.58%)
Mutual labels:  nano, nanocurrency
nano-rs
An implementation of Nano in Rust using Tokio
Stars: ✭ 29 (-12.12%)
Mutual labels:  nano, nanocurrency
jNano
A comprehensive Java library for the Nano cryptocurrency.
Stars: ✭ 25 (-24.24%)
Mutual labels:  nano, nanocurrency
nanook
Ruby library for making and receiving payments and managing a nano currency node
Stars: ✭ 17 (-48.48%)
Mutual labels:  nano, nanocurrency
reblocks
React Components for Nano cryptocurrency (formerly RaiBlocks) - including Payments via Brainblocks
Stars: ✭ 21 (-36.36%)
Mutual labels:  nano, nanocurrency
Nano.Net
A .NET library for Nano
Stars: ✭ 19 (-42.42%)
Mutual labels:  nano, nanocurrency
Awesome Cheatsheets
超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 ⚡
Stars: ✭ 7,930 (+23930.3%)
Mutual labels:  nano
Arduino
🚀 Proyectos de todo tipo para arduino utilizando sus sensores y actuadores. 🤖
Stars: ✭ 27 (-18.18%)
Mutual labels:  nano
nano
API Documentation for Nano.to
Stars: ✭ 65 (+96.97%)
Mutual labels:  nano
NanoWalletBot
[DISCONTINUED] Open source Telegram bot for Nano currency
Stars: ✭ 52 (+57.58%)
Mutual labels:  nano
MPCNC-Nano-Estlcam-Shield
Ein CNC Shield für die MPCNC in Verwendung mit Estlcam
Stars: ✭ 60 (+81.82%)
Mutual labels:  nano
nanolinks
A curated link guide for finding anything about Nano; The fast, fee-less and green digital currency!
Stars: ✭ 25 (-24.24%)
Mutual labels:  nano
ledger-app-nano
Ledger Nano X, Nano S & Blue applications for NANO and derivative coins
Stars: ✭ 34 (+3.03%)
Mutual labels:  nano
nano-modeline
GNU Emacs / N Λ N O Modeline
Stars: ✭ 66 (+100%)
Mutual labels:  nano
gonano
An implementation of the Nano cryptocurrency in Go
Stars: ✭ 34 (+3.03%)
Mutual labels:  nano
nano-s3
Upload a file to S3.
Stars: ✭ 45 (+36.36%)
Mutual labels:  nano

Logo

My Nano Ninja

The perfect tool for Nano representatives lists and network statistics.

What is Nano?

Nano's goal is to become "a global currency with instantaneous transactions and zero fees over a secure, decentralized network." More information is available over on the official Nano repository.

Prerequisites

  • Webserver like nginx as a reverse proxy
  • MongoDB
  • Nano Node with RPC enabled
  • Node.js
  • PM2 npm install pm2 -g

Installation

Clone the repository to your server and install the dependencies with npm i.

After that copy the ecosystem.config.sample.js as ecosystem.config.js and edit the environment variables accordingly.

To start up the application execute pm2 start ecosystem.config.js.

It is recommended to put the application behind a proper webserver like nginx, a configuration for that could look like this:

server {
        listen 80;
        listen [::]:80;

        server_name mynano.ninja;

        // location to your MyNanoNinja
        location / {
                proxy_pass http://127.0.0.1:4000;
        }

        // location to your accept-nano instance
        location /payment/ {
                rewrite ^/payment(/.*)$ $1 break;
                proxy_pass         http://127.0.0.1:5000;
        }
}

Open Source Licenses

This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com.

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].