Updated link to NOMP
This commit is contained in:
parent
1bb73ae2a0
commit
3a718de1f8
@ -4,10 +4,10 @@ node-stratum
|
|||||||
High performance Stratum poolserver in Node.js. One instance of this software can startup and manage multiple coin
|
High performance Stratum poolserver in Node.js. One instance of this software can startup and manage multiple coin
|
||||||
pools, each with their own daemon and stratum port :)
|
pools, each with their own daemon and stratum port :)
|
||||||
|
|
||||||
This project does not handle share rewards (payment processing). A
|
This project does not handle share rewards (payment processing).
|
||||||
[fully functioning portal](https://github.com/zone117x/node-stratum-portal) is currently under development which will
|
[NOMP (Node Open Mining Portal)](https://github.com/zone117x/node-open-mining-portal) - a fully functioning portal -
|
||||||
handle payments, website front-end, database layer, mutli-coin/pool support, auto-switching miners between coins/pools,
|
is currently under development. It handles payments, website front-end, database layer, mutli-coin/pool support,
|
||||||
etc.. The portal also has an [MPOS](https://github.com/MPOS/php-mpos)
|
auto-switching miners between coins/pools, etc.. The portal also has an [MPOS](https://github.com/MPOS/php-mpos)
|
||||||
compatibility mode so that the it can function as a drop-in-replacement for
|
compatibility mode so that the it can function as a drop-in-replacement for
|
||||||
[python-stratum-mining](https://github.com/Crypto-Expert/stratum-mining).
|
[python-stratum-mining](https://github.com/Crypto-Expert/stratum-mining).
|
||||||
|
|
||||||
|
|||||||
32
package.json
32
package.json
@ -1,22 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "stratum-pool",
|
"name": "stratum-pool",
|
||||||
"version": "0.1.1",
|
"version": "0.1.1",
|
||||||
"author": "Matthew Little",
|
|
||||||
"description": "High performance Stratum poolserver in Node.js",
|
"description": "High performance Stratum poolserver in Node.js",
|
||||||
"contributors": [
|
|
||||||
"vekexasia",
|
|
||||||
"TheSeven"
|
|
||||||
],
|
|
||||||
"bin": {
|
|
||||||
"block-notify": "./scripts/blockNotify.js"
|
|
||||||
},
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/zone117x/node-stratum.git"
|
|
||||||
},
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"stratum",
|
"stratum",
|
||||||
|
"mining",
|
||||||
"pool",
|
"pool",
|
||||||
"server",
|
"server",
|
||||||
"poolserver",
|
"poolserver",
|
||||||
@ -24,6 +12,21 @@
|
|||||||
"litecoin",
|
"litecoin",
|
||||||
"scrypt"
|
"scrypt"
|
||||||
],
|
],
|
||||||
|
"homepage": "https://github.com/zone117x/node-stratum",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/zone117x/node-stratum/issues"
|
||||||
|
},
|
||||||
|
"license": "GPL-2.0",
|
||||||
|
"author": "Matthew Little",
|
||||||
|
"contributors": [
|
||||||
|
"vekexasia",
|
||||||
|
"TheSeven"
|
||||||
|
],
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/zone117x/node-stratum.git"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"scrypt256-hash": "https://github.com/zone117x/node-scrypt256-hash/archive/master.tar.gz",
|
"scrypt256-hash": "https://github.com/zone117x/node-scrypt256-hash/archive/master.tar.gz",
|
||||||
"scrypt-jane-hash": "https://github.com/zone117x/node-scrypt-jane-hash/archive/master.tar.gz",
|
"scrypt-jane-hash": "https://github.com/zone117x/node-scrypt-jane-hash/archive/master.tar.gz",
|
||||||
@ -33,8 +36,7 @@
|
|||||||
"base58-native": "*",
|
"base58-native": "*",
|
||||||
"async": "*"
|
"async": "*"
|
||||||
},
|
},
|
||||||
"license": "GPL-2.0",
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10"
|
"node": ">=0.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user