├── .dockerignore
├── .gitignore
├── static
├── img
│ ├── nano-mark-light.png
│ ├── favicon
│ │ ├── Nano
│ │ │ ├── favicon.ico
│ │ │ ├── favicon-16.png
│ │ │ ├── favicon-32.png
│ │ │ ├── favicon-57.png
│ │ │ ├── favicon-60.png
│ │ │ ├── favicon-64.png
│ │ │ ├── favicon-70.png
│ │ │ ├── favicon-72.png
│ │ │ ├── favicon-76.png
│ │ │ ├── favicon-96.png
│ │ │ ├── favicon-114.png
│ │ │ ├── favicon-120.png
│ │ │ ├── favicon-144.png
│ │ │ ├── favicon-150.png
│ │ │ ├── favicon-152.png
│ │ │ ├── favicon-160.png
│ │ │ ├── favicon-180.png
│ │ │ ├── favicon-192.png
│ │ │ ├── favicon-310.png
│ │ │ └── browserconfig.xml
│ │ ├── PAW
│ │ │ ├── favicon.ico
│ │ │ ├── favicon-150.png
│ │ │ ├── favicon-16.png
│ │ │ ├── favicon-180.png
│ │ │ ├── favicon-192.png
│ │ │ ├── favicon-256.png
│ │ │ ├── favicon-32.png
│ │ │ └── browserconfig.xml
│ │ └── Banano
│ │ │ ├── favicon.ico
│ │ │ ├── favicon-114.png
│ │ │ ├── favicon-120.png
│ │ │ ├── favicon-144.png
│ │ │ ├── favicon-150.png
│ │ │ ├── favicon-152.png
│ │ │ ├── favicon-16.png
│ │ │ ├── favicon-160.png
│ │ │ ├── favicon-180.png
│ │ │ ├── favicon-192.png
│ │ │ ├── favicon-310.png
│ │ │ ├── favicon-32.png
│ │ │ ├── favicon-57.png
│ │ │ ├── favicon-60.png
│ │ │ ├── favicon-64.png
│ │ │ ├── favicon-70.png
│ │ │ ├── favicon-72.png
│ │ │ ├── favicon-76.png
│ │ │ ├── favicon-96.png
│ │ │ └── browserconfig.xml
│ ├── nano-mark-light.svg
│ ├── nano-full-dark.svg
│ ├── nano-full-paw.svg
│ ├── nano-mark-paw.svg
│ ├── nano-full-light.svg
│ └── nano-mark-dark.svg
├── webfonts
│ ├── fa-brands-400.eot
│ ├── fa-brands-400.ttf
│ ├── fa-solid-900.eot
│ ├── fa-solid-900.ttf
│ ├── fa-solid-900.woff
│ ├── fa-brands-400.woff
│ ├── fa-brands-400.woff2
│ ├── fa-regular-400.eot
│ ├── fa-regular-400.ttf
│ ├── fa-regular-400.woff
│ ├── fa-regular-400.woff2
│ └── fa-solid-900.woff2
├── themes
│ ├── light
│ │ ├── img
│ │ │ └── bg-logo-dark.png
│ │ └── css
│ │ │ └── theme.css
│ ├── banano
│ │ └── css
│ │ │ └── theme.css
│ ├── dark
│ │ └── css
│ │ │ └── theme.css
│ ├── paw
│ │ └── css
│ │ │ └── theme.css
│ └── banano-dark
│ │ └── css
│ │ └── theme.css
├── js
│ ├── main.js
│ ├── index.js
│ ├── clipboard.min.js
│ ├── axios.min.js
│ ├── popper.min.js
│ └── bootstrap-native-v4.min.js
└── css
│ └── main.css
├── .github
├── theme-preview
│ ├── nano-dark.png
│ ├── nano-light.png
│ ├── banano-dark.png
│ └── banano-light.png
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
└── workflows
│ └── docker-publish.yml
├── docker-compose.dev.yml
├── modules
├── cache
│ ├── NullCache.php
│ ├── ApcCache.php
│ ├── ApcuCache.php
│ ├── RedisCache.php
│ └── FileCache.php
├── widget.php
├── navbar.php
├── includes.php
├── Cache.php
├── constants.php
├── footer.php
├── defaults.php
├── config.sample.php
├── functions_rpc.php
├── header.php
└── functions.php
├── Dockerfile
├── entry.sh
├── index.php
├── README.md
├── templates
└── index.hbs
├── api.php
└── LICENSE
/.dockerignore:
--------------------------------------------------------------------------------
1 | .*
2 | *.md
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .vscode/
2 | modules/config.php
3 | .idea/
4 | nanote.txt
5 | nanoNodeMonitor
--------------------------------------------------------------------------------
/static/img/nano-mark-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/nano-mark-light.png
--------------------------------------------------------------------------------
/static/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/static/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/static/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/static/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/static/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/.github/theme-preview/nano-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/.github/theme-preview/nano-dark.png
--------------------------------------------------------------------------------
/.github/theme-preview/nano-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/.github/theme-preview/nano-light.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon.ico
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon.ico
--------------------------------------------------------------------------------
/static/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/static/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/static/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/static/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/static/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/static/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/static/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/.github/theme-preview/banano-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/.github/theme-preview/banano-dark.png
--------------------------------------------------------------------------------
/.github/theme-preview/banano-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/.github/theme-preview/banano-light.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon.ico
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-16.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-32.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-57.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-60.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-64.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-70.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-72.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-76.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-96.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-150.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-16.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-180.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-192.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-256.png
--------------------------------------------------------------------------------
/static/img/favicon/PAW/favicon-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/PAW/favicon-32.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-114.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-120.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-144.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-150.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-152.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-16.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-160.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-180.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-192.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-310.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-32.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-57.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-60.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-64.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-70.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-72.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-76.png
--------------------------------------------------------------------------------
/static/img/favicon/Banano/favicon-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Banano/favicon-96.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-114.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-120.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-144.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-150.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-152.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-160.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-180.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-192.png
--------------------------------------------------------------------------------
/static/img/favicon/Nano/favicon-310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/img/favicon/Nano/favicon-310.png
--------------------------------------------------------------------------------
/static/themes/light/img/bg-logo-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NanoTools/nanoNodeMonitor/HEAD/static/themes/light/img/bg-logo-dark.png
--------------------------------------------------------------------------------
/docker-compose.dev.yml:
--------------------------------------------------------------------------------
1 | version: '3'
2 | services:
3 | web:
4 | build: .
5 | ports:
6 | - "3000:80"
7 | volumes:
8 | - .:/var/www/html
9 | - .:/opt
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | # GitHub Sponsor
4 | github: BitDesert
5 |
6 | # donate NANO
7 | custom: https://mynano.ninja/account/my-nano-ninja/send
8 |
--------------------------------------------------------------------------------
/static/js/main.js:
--------------------------------------------------------------------------------
1 | for (i = 0, length = init.length; i < length; i++) {
2 | try {
3 | init[i]();
4 | } catch (e) {
5 | console.error('Error in init %d', i);
6 | console.error(e);
7 | }
8 | }
--------------------------------------------------------------------------------
/modules/cache/NullCache.php:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/modules/navbar.php:
--------------------------------------------------------------------------------
1 |