Added link to coin configuration documentation, and added lots of scrypt-jane coins with their proper config

This commit is contained in:
Matt 2014-03-31 17:44:05 -06:00
parent 7a806b9b8c
commit 5344471f46
12 changed files with 77 additions and 2 deletions

View File

@ -150,11 +150,14 @@ Here is an example of the required fields:
{
"name": "Litecoin",
"symbol": "ltc",
"algorithm": "scrypt", //or "sha256", "scrypt-jane", "quark", "x11"
"txMessages": false //or true
"algorithm": "scrypt", //or "sha256", "scrypt-jane", "scrypt-n", "quark", "x11"
"txMessages": false, //or true (not required, defaults to false)
}
````
For additional documentation how to configure coins __(especially important for scrypt-n and scrypt-jane coins)__
see these instructions: https://github.com/zone117x/node-stratum-pool/edit/master/README.md#module-usage
##### Pool config
Take a look at the example json file inside the `pool_configs` directory. Rename it to `yourcoin.json` and change the

6
coins/applecoin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "Applecoin",
"symbol": "APC",
"algorithm": "scrypt-jane",
"chainStartTime": 1384720832
}

6
coins/cachecoin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "Cachecoin",
"symbol": "CACH",
"algorithm": "scrypt-jane",
"chainStartTime": 1388949883
}

8
coins/freecoin.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "Freecoin",
"symbol": "FEC",
"algorithm": "scrypt-jane",
"chainStartTime": 1375801200,
"nMin": 6,
"nMax": 32
}

View File

@ -0,0 +1,6 @@
{
"name": "GoldPressedLatinum",
"symbol": "GPL",
"algorithm": "scrypt-jane",
"chainStartTime": 1377557832
}

6
coins/internetcoin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "Internetcoin",
"symbol": "ITC",
"algorithm": "scrypt-jane",
"chainStartTime": 1388385602
}

8
coins/microcoin.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "Microcoin",
"symbol": "MCR",
"algorithm": "scrypt-jane",
"chainStartTime": 1389028879,
"nMin": 6,
"nMax": 32
}

7
coins/onecoin.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "Onecoin",
"symbol": "ONC",
"algorithm": "scrypt-jane",
"chainStartTime": 1371119462,
"nMin": 6
}

View File

@ -0,0 +1,6 @@
{
"name": "Radioactivecoin",
"symbol": "RAD",
"algorithm": "scrypt-jane",
"chainStartTime": 1389196388
}

6
coins/velocitycoin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "Velocitycoin",
"symbol": "VEL",
"algorithm": "scrypt-jane",
"chainStartTime": 1387769316
}

6
coins/ybcoin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "YBcoin",
"symbol": "YBC",
"algorithm": "scrypt-jane",
"chainStartTime": 1372386273
}

7
coins/zzcoin.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "ZZcoin",
"symbol": "ZZC",
"algorithm": "scrypt-jane",
"chainStartTime": 1375817223,
"nMin": 12
}