Skip to content

Commit

Permalink
Added link to coin configuration documentation, and added lots of scr…
Browse files Browse the repository at this point in the history
…ypt-jane coins with their proper config
  • Loading branch information
zone117x committed Mar 31, 2014
1 parent 7a806b9 commit 5344471
Show file tree
Hide file tree
Showing 12 changed files with 77 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions coins/applecoin.json
@@ -0,0 +1,6 @@
{
"name": "Applecoin",
"symbol": "APC",
"algorithm": "scrypt-jane",
"chainStartTime": 1384720832
}
6 changes: 6 additions & 0 deletions coins/cachecoin.json
@@ -0,0 +1,6 @@
{
"name": "Cachecoin",
"symbol": "CACH",
"algorithm": "scrypt-jane",
"chainStartTime": 1388949883
}
8 changes: 8 additions & 0 deletions coins/freecoin.json
@@ -0,0 +1,8 @@
{
"name": "Freecoin",
"symbol": "FEC",
"algorithm": "scrypt-jane",
"chainStartTime": 1375801200,
"nMin": 6,
"nMax": 32
}
6 changes: 6 additions & 0 deletions coins/goldpressedlatinum.json
@@ -0,0 +1,6 @@
{
"name": "GoldPressedLatinum",
"symbol": "GPL",
"algorithm": "scrypt-jane",
"chainStartTime": 1377557832
}
6 changes: 6 additions & 0 deletions coins/internetcoin.json
@@ -0,0 +1,6 @@
{
"name": "Internetcoin",
"symbol": "ITC",
"algorithm": "scrypt-jane",
"chainStartTime": 1388385602
}
8 changes: 8 additions & 0 deletions coins/microcoin.json
@@ -0,0 +1,8 @@
{
"name": "Microcoin",
"symbol": "MCR",
"algorithm": "scrypt-jane",
"chainStartTime": 1389028879,
"nMin": 6,
"nMax": 32
}
7 changes: 7 additions & 0 deletions coins/onecoin.json
@@ -0,0 +1,7 @@
{
"name": "Onecoin",
"symbol": "ONC",
"algorithm": "scrypt-jane",
"chainStartTime": 1371119462,
"nMin": 6
}
6 changes: 6 additions & 0 deletions coins/radioactivecoin.json
@@ -0,0 +1,6 @@
{
"name": "Radioactivecoin",
"symbol": "RAD",
"algorithm": "scrypt-jane",
"chainStartTime": 1389196388
}
6 changes: 6 additions & 0 deletions coins/velocitycoin.json
@@ -0,0 +1,6 @@
{
"name": "Velocitycoin",
"symbol": "VEL",
"algorithm": "scrypt-jane",
"chainStartTime": 1387769316
}
6 changes: 6 additions & 0 deletions coins/ybcoin.json
@@ -0,0 +1,6 @@
{
"name": "YBcoin",
"symbol": "YBC",
"algorithm": "scrypt-jane",
"chainStartTime": 1372386273
}
7 changes: 7 additions & 0 deletions coins/zzcoin.json
@@ -0,0 +1,7 @@
{
"name": "ZZcoin",
"symbol": "ZZC",
"algorithm": "scrypt-jane",
"chainStartTime": 1375817223,
"nMin": 12
}

0 comments on commit 5344471

Please sign in to comment.