Skip to content

Commit

Permalink
Fixed more coin configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bonesoul committed Sep 23, 2014
1 parent 4c967f0 commit 179c967
Show file tree
Hide file tree
Showing 53 changed files with 151 additions and 131 deletions.
33 changes: 0 additions & 33 deletions src/CoiniumServ/CoiniumServ.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -570,60 +570,30 @@
<None Include="config\coins\elephantcoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\emark.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\emerald.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\execoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\ezcoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\fastcoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\fastcoinsha.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\feathercoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\fedoracoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\fireflycoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\flappycoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\florincoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\frankocoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\freecoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\freicoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\galaxycoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\galleon.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\gamecoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\giarcoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\globalboost.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand All @@ -633,9 +603,6 @@
<None Include="config\coins\globaldenomination.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\goldpressedlatinum.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="config\coins\grandcoin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/21coin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "21coin",
"symbol": "21",
"algorithm": "sha256",
"site": "https://github.com/21coin/21coin",
"node": {
"magic": "21212121",
"testnetMagic": "01fefe05"
Expand Down
3 changes: 2 additions & 1 deletion src/CoiniumServ/config/coins/365coin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "365coin",
"symbol": "365",
"algorithm": "keccak"
"algorithm": "keccak",
"site": "https://github.com/365-Coin/365Coin"
}
10 changes: 6 additions & 4 deletions src/CoiniumServ/config/coins/README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# Coin definition file format

Json files in this folder are used for defining coin properties so, CoiniumServ can use them.
Json files in this folder are used for defining coin properties so, CoiniumServ can use them. If you can't find an existing file for a coin, make sure too [here](https://github.com/zone117x/node-open-mining-portal/tree/master/coins) to get a sample config.

Sample file;
```json
{
"name": "Litecoin",
"symbol": "LTC",
"algorithm": "scrypt",
"site": "https://litecoin.org/",
"reward": "pow",
"txMessages": false,
"blockExplorer": {
"block": "http://block-explorer.com/block/",
"tx": "http://block-explorer.com/tx",
"tx": "http://block-explorer.com/tx/",
"address": "http://block-explorer.com/address/"
},
"getBlockTemplate": {
Expand All @@ -22,7 +23,7 @@ Sample file;
"magic": "fbc0b6db",
"testnetMagic": "fcc1b7dc"
},
"algorithm": {
"extra": {
}
}
```
Expand All @@ -31,6 +32,7 @@ Fields;
- __name__: name of the coin
- __symbol__: symbol of the coin
- __algorithm__: algorithm used by the coin
- __site__: coins official site
- reward: reward system of the coin - possible values;
- pow (proof-of-work) [default]
- pos (proof-of-work + proof-of-stake hybrid)
Expand All @@ -51,6 +53,6 @@ Not in use yet, will be used once embedded daemon-node is developed which will b
- __magic__: Coin's magic string.
- __testnetMagic__: Magic string for Testnet.

__algorithm__ options
__extra__ options

Any extra options that will be handled to algorithm itself.
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/alphacoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Alphacoin",
"symbol": "ALF",
"algorithm": "scrypt",
"site": "https://github.com/alphacoin/alphacoin",
"node": {
"magic": "fbc0b6db",
"testnetMagic": "fcc1b7dc"
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/anoncoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Anoncoin",
"symbol": "ANC",
"algorithm": "scrypt",
"site": "https://anoncoin.net/",
"blockExplorer": {
"block": "http://ancblockchain.com/block/",
"tx": "http://ancblockchain.com/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/bitcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Bitcoin",
"symbol": "BTC",
"algorithm": "sha256",
"site": "https://bitcoin.org/",
"blockExplorer": {
"block": "https://blockchain.info/block-index/",
"tx": "https://blockchain.info/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/bitcoindark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"name": "BitcoinDark",
"symbol": "BTCD",
"algorithm": "sha256",
"site": "http://bitcoindark.pw/",
"reward": "pos"
}
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/bottlecaps.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Bottlecaps",
"symbol": "CAP",
"algorithm": "scrypt",
"site": "https://github.com/bottlecaps-foundation/bottlecaps",
"reward": "pos",
"node": {
"magic": "e4e8e9e5",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/casinocoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Casinocoin",
"symbol": "CSC",
"algorithm": "scrypt",
"site": "http://casinocoin.org/",
"blockExplorer": {
"block": "http://csc.blockexp.info/block/",
"tx": "http://csc.blockexp.info/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/catcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Catcoin",
"symbol": "CAT",
"algorithm": "scrypt",
"site": "http://catcoins.biz/",
"blockExplorer": {
"block": "http://catchain.info/block/",
"tx": "http://catchain.info/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/continuumcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Continuumcoin",
"symbol": "CTM",
"algorithm": "sha256",
"site": "http://www.continuumcoin.com/",
"blockExplorer": {
"block": "http://ctminsight.buddylabsapps.com/block/",
"tx": "http://ctminsight.buddylabsapps.com/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/copperlark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Copperlark",
"symbol": "CLR",
"algorithm": "keccak",
"site": "https://copperlark.com/",
"blockExplorer": {
"block": "http://blockchain.copperlark.com/block/",
"tx": "http://blockchain.copperlark.com/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/cryptogenicbullion.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "CryptogenicBullion",
"symbol": "CGB",
"algorithm": "scrypt",
"site": "http://cgb.holdings/",
"blockExplorer": {
"block": "http://blocks.gotcrypto.net/block/",
"tx": "http://blocks.gotcrypto.net/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/darkcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Darkcoin",
"symbol": "DRK",
"algorithm": "x11",
"site": "https://www.darkcoin.io/",
"blockExplorer": {
"block": "http://explorer.darkcoin.io/block/",
"tx": "http://explorer.darkcoin.io/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/devcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Devcoin",
"symbol": "DVC",
"algorithm": "sha256",
"site": "http://devcoin.org/",
"blockExplorer": {
"block": "http://d.evco.in/abe/block/",
"tx": "http://d.evco.in/abe/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/digibyte.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Digibyte",
"symbol": "DGB",
"algorithm": "scrypt",
"site": "http://www.digibyte.co/",
"blockExplorer": {
"block": "http://insight.dgb.cryptopoolmining.com/block/",
"tx": "http://insight.dgb.cryptopoolmining.com/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/dogecoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Dogecoin",
"symbol": "DOGE",
"algorithm": "scrypt",
"site": "http://dogecoin.com/",
"blockExplorer": {
"block": "https://chain.so/block/DOGE/",
"tx": "https://chain.so/tx/DOGE/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/earthcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Earthcoin",
"symbol": "EAC",
"algorithm": "scrypt",
"site": "http://getearthcoin.com/",
"blockExplorer": {
"block": "http://earthchain.info/block/",
"tx": "http://earthchain.info/tx/",
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/config/coins/einsteinium.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "Einsteinium",
"symbol": "EMC2",
"algorithm": "scrypt",
"site": "http://einsteinium.org/",
"blockExplorer": {
"block": "http://chain.einsteinium.org/block/",
"tx": "http://chain.einsteinium.org/tx/",
Expand Down
7 changes: 6 additions & 1 deletion src/CoiniumServ/config/coins/elephantcoin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"name": "Elephantcoin",
"symbol": "ELP",
"algorithm": "scrypt"
"algorithm": "scrypt",
"site": "http://elephantcoin.wordpress.com/",
"blockExplorer": {
"block": "http://www.exploretheblocks.com/elephantcoin/block_crawler.php?block_hash=",
"tx": "http://www.exploretheblocks.com/elephantcoin/block_crawler.php?transaction="
}
}
6 changes: 0 additions & 6 deletions src/CoiniumServ/config/coins/emark.json

This file was deleted.

8 changes: 7 additions & 1 deletion src/CoiniumServ/config/coins/emerald.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"name": "Emerald",
"symbol": "EMD",
"algorithm": "scrypt"
"algorithm": "scrypt",
"site": "https://github.com/emeraldproject/emerald",
"blockExplorer": {
"block": "http://emd.blockexp.info/block/",
"tx": "http://emd.blockexp.info/tx/",
"address": "http://emd.blockexp.info/address/"
}
}
29 changes: 18 additions & 11 deletions src/CoiniumServ/config/coins/execoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,22 @@
"name": "Execoin",
"symbol": "EXE",
"algorithm": "scrypt-n",
"timeTable": {
"2048": 1390959880,
"4096": 1438295269,
"8192": 1485630658,
"16384": 1532966047,
"32768": 1580301436,
"65536": 1627636825,
"131072": 1674972214,
"262144": 1722307603
"site": "http://execoin.net/",
"blockExplorer": {
"block": "http://explorer.execoin.net/block/",
"tx": "http://explorer.execoin.net/tx/",
"address": "http://explorer.execoin.net/address/"
},
"extra": {
"timeTable": {
"2048": 1390959880,
"4096": 1438295269,
"8192": 1485630658,
"16384": 1532966047,
"32768": 1580301436,
"65536": 1627636825,
"131072": 1674972214,
"262144": 1722307603
}
}

}
}
5 changes: 0 additions & 5 deletions src/CoiniumServ/config/coins/ezcoin.json

This file was deleted.

11 changes: 10 additions & 1 deletion src/CoiniumServ/config/coins/fastcoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,14 @@
"name": "Fastcoin",
"symbol": "FST",
"algorithm": "scrypt",
"peerMagic": "fbc0b6db"
"site": "http://www.fastcoin.ca/",
"blockExplorer": {
"block": "http://fst.webboise.com/block/",
"tx": "http://fst.webboise.com/tx/",
"address": "http://fst.webboise.com/address/"
},
"node": {
"magic": "fbc0b6db",
"testnetMagic": "fcc1b7dc"
}
}
5 changes: 0 additions & 5 deletions src/CoiniumServ/config/coins/fastcoinsha.json

This file was deleted.

7 changes: 6 additions & 1 deletion src/CoiniumServ/config/coins/feathercoin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@
"name": "Feathercoin",
"symbol": "FTC",
"algorithm": "scrypt",
"blockExplorer": "https://explorer.feathercoin.com"
"site": "http://feathercoin.com/",
"blockExplorer": {
"block": "https://explorer.feathercoin.com/block/",
"tx": "https://explorer.feathercoin.com/tx/",
"address": "https://explorer.feathercoin.com/address/"
}
}
8 changes: 7 additions & 1 deletion src/CoiniumServ/config/coins/fedoracoin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"name": "FedoraCoin",
"symbol": "TiPS",
"algorithm": "scrypt"
"algorithm": "scrypt",
"site": "http://fedoraco.in/",
"blockExplorer": {
"block": "http://fedoracha.in/block/",
"tx": "http://fedoracha.in/tx/",
"address": "http://fedoracha.in/address/"
}
}
5 changes: 0 additions & 5 deletions src/CoiniumServ/config/coins/fireflycoin.json

This file was deleted.

5 changes: 0 additions & 5 deletions src/CoiniumServ/config/coins/flappycoin.json

This file was deleted.

0 comments on commit 179c967

Please sign in to comment.