- Fork of NanoLooker for Banano
The goal of Banano is to create an efficient cryptocurrency, one that could be used for daily payments, by anyone in the world, without the emissions that come with Bitcoin. Banano makes money efficient for a more equal world — simple to pay with, easy to accept and open to all.
- Banano is a fee-less cryptocurrency, making it practical and inclusive for everyone in the world.
- Instant and secure, a transaction is fully confirmed on the network under 1 second.
Copy the .env
variables.
cp .env.template .env
# NodeJS server port, default 3010
SERVER_PORT=
# Nano node RPC domain with port, default http://0.0.0.0:7076
RPC_DOMAIN=
# Used to get the ledger size given the nano node installation folder, default /nano/Nano
NANO_FOLDER=
# Error logging (optional)
SENTRY_DNS=
# Translations (optional)
GOOGLE_APPLICATION_CREDENTIALS=
npm install
- Install dependenciesnpm star
- Start the Webservernode server/server2.js
- On another tab, start the NodeJS server
The language set in the Browser determines the language that NanoLooker will load and default to en
if it's not in the supported list. Since most languages were generated using Google Translation API, some translations may be inaccurate.
Many of the most common languages are supported.
- English (en)
- Français (fr)
- Español (es)
- العربية (ar)
- Deutsch (de)
- فارسی (fa)
- हिन्दी (hi)
- Italiano (it)
- 日本語 (ja)
- 한국어 (ko)
- Nederlands (nl)
- Português (pt)
- Pусский (ru)
- Türkçe (tr)
- 中文 (zh)
If you think some strings should be corrected open a PR with the corrections on the language file.
- Setup a Google translate API key at https://cloud.google.com/translate
- Add a file named
translate.json
at the root (same level aspackage.json
) with your API credentials from Google - Link that file using its path inside the
.env
under the keyGOOGLE_APPLICATION_CREDENTIALS=translate.json
- run
npm run translate -- --language=LANGUAGE_CODE
whereLANGUAGE_CODE
isru
,fr
,es
or any new language supported by Google's API.