diff --git a/README.md b/README.md index ccd6a28..d2a98fd 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/coins/applecoin.json b/coins/applecoin.json new file mode 100644 index 0000000..624320c --- /dev/null +++ b/coins/applecoin.json @@ -0,0 +1,6 @@ +{ + "name": "Applecoin", + "symbol": "APC", + "algorithm": "scrypt-jane", + "chainStartTime": 1384720832 +} \ No newline at end of file diff --git a/coins/cachecoin.json b/coins/cachecoin.json new file mode 100644 index 0000000..61d6f2e --- /dev/null +++ b/coins/cachecoin.json @@ -0,0 +1,6 @@ +{ + "name": "Cachecoin", + "symbol": "CACH", + "algorithm": "scrypt-jane", + "chainStartTime": 1388949883 +} \ No newline at end of file diff --git a/coins/freecoin.json b/coins/freecoin.json new file mode 100644 index 0000000..b58ac36 --- /dev/null +++ b/coins/freecoin.json @@ -0,0 +1,8 @@ +{ + "name": "Freecoin", + "symbol": "FEC", + "algorithm": "scrypt-jane", + "chainStartTime": 1375801200, + "nMin": 6, + "nMax": 32 +} \ No newline at end of file diff --git a/coins/goldpressedlatinum.json b/coins/goldpressedlatinum.json new file mode 100644 index 0000000..d61f262 --- /dev/null +++ b/coins/goldpressedlatinum.json @@ -0,0 +1,6 @@ +{ + "name": "GoldPressedLatinum", + "symbol": "GPL", + "algorithm": "scrypt-jane", + "chainStartTime": 1377557832 +} \ No newline at end of file diff --git a/coins/internetcoin.json b/coins/internetcoin.json new file mode 100644 index 0000000..bdccfa3 --- /dev/null +++ b/coins/internetcoin.json @@ -0,0 +1,6 @@ +{ + "name": "Internetcoin", + "symbol": "ITC", + "algorithm": "scrypt-jane", + "chainStartTime": 1388385602 +} \ No newline at end of file diff --git a/coins/microcoin.json b/coins/microcoin.json new file mode 100644 index 0000000..1d3792f --- /dev/null +++ b/coins/microcoin.json @@ -0,0 +1,8 @@ +{ + "name": "Microcoin", + "symbol": "MCR", + "algorithm": "scrypt-jane", + "chainStartTime": 1389028879, + "nMin": 6, + "nMax": 32 +} \ No newline at end of file diff --git a/coins/onecoin.json b/coins/onecoin.json new file mode 100644 index 0000000..b37345f --- /dev/null +++ b/coins/onecoin.json @@ -0,0 +1,7 @@ +{ + "name": "Onecoin", + "symbol": "ONC", + "algorithm": "scrypt-jane", + "chainStartTime": 1371119462, + "nMin": 6 +} \ No newline at end of file diff --git a/coins/radioactivecoin.json b/coins/radioactivecoin.json new file mode 100644 index 0000000..c7fbd18 --- /dev/null +++ b/coins/radioactivecoin.json @@ -0,0 +1,6 @@ +{ + "name": "Radioactivecoin", + "symbol": "RAD", + "algorithm": "scrypt-jane", + "chainStartTime": 1389196388 +} \ No newline at end of file diff --git a/coins/velocitycoin.json b/coins/velocitycoin.json new file mode 100644 index 0000000..24bad9c --- /dev/null +++ b/coins/velocitycoin.json @@ -0,0 +1,6 @@ +{ + "name": "Velocitycoin", + "symbol": "VEL", + "algorithm": "scrypt-jane", + "chainStartTime": 1387769316 +} \ No newline at end of file diff --git a/coins/ybcoin.json b/coins/ybcoin.json new file mode 100644 index 0000000..982007b --- /dev/null +++ b/coins/ybcoin.json @@ -0,0 +1,6 @@ +{ + "name": "YBcoin", + "symbol": "YBC", + "algorithm": "scrypt-jane", + "chainStartTime": 1372386273 +} \ No newline at end of file diff --git a/coins/zzcoin.json b/coins/zzcoin.json new file mode 100644 index 0000000..44dbf60 --- /dev/null +++ b/coins/zzcoin.json @@ -0,0 +1,7 @@ +{ + "name": "ZZcoin", + "symbol": "ZZC", + "algorithm": "scrypt-jane", + "chainStartTime": 1375817223, + "nMin": 12 +} \ No newline at end of file