├── .gitignore ├── README.md ├── config ├── bans.json ├── config.json └── poolRewards.json ├── dashboard ├── rewards.json ├── static │ ├── index.html │ ├── logo.png │ ├── script.js │ └── styles.css └── workers.json ├── package-lock.json ├── package.json ├── src ├── connectionHandler.js ├── dashboard.js ├── index.js ├── kolka.js ├── logging.js ├── mining.js └── sync.js └── utils └── createPool.js /.gitignore: -------------------------------------------------------------------------------- 1 | duinocoin/ 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
3 |
4 |
5 |
6 |
Welcome to
23 |
24 |
25 | Pulse Pool
26 |
28 | a 29 | 30 | Duino-Coin 31 | 32 | mining node 👋 33 |
34 |37 | 38 | Node statistics 39 |
40 |43 | 44 | Connections: 45 | 46 | 0 47 | 48 |
49 |52 | 53 | CPU usage: 54 | 55 | 0% 56 | 57 |
58 |61 | 62 | RAM usage: 63 | 64 | 0% 65 | 66 |
67 |70 | 71 | Workers: 72 | 73 | workers.json 74 | 75 |
76 |79 | ~ More data will be added here when Bila adds more api stuff ~ 80 |
81 |84 | 85 | History 86 |
87 |
88 | Pulse pool (also named Kolka pool) is the first Duino-Coin mining node created by Bilaboz from the Duino team.
89 | It was launched at 6/07/2021 and helps in off-loading the master server from PC and ESP miners.
90 |