-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
416 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Abncoin(Bitcoin): | ||
""" | ||
Class with all the necessary Abncoin network information based on | ||
https://github.com/AbnMainDev/abncoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'abncoin' | ||
symbols = ('ABN', ) | ||
seeds = ("node.walletbuilders.com") | ||
port = 10267 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Aseancoin(Bitcoin): | ||
""" | ||
Class with all the necessary Aseancoin network information based on | ||
https://github.com/tyemday/Aseancoin/blob/master/src/chainparams/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'aseancoin' | ||
symbols = ('ASN', ) | ||
seeds = ("seed.bitcoin.sipa.be", | ||
"dnsseed.bluematt.me", | ||
"dnsseed.bitcoin.dashjr.org", | ||
"seed.bitcoinstats.com", | ||
"bitseed.xf2.org") | ||
port = 8333 | ||
|
||
|
||
class AseancoinTestNet(Aseancoin): | ||
""" | ||
Class with all the necessary Aseancoin testing network information based on | ||
https://github.com/tyemday/Aseancoin/blob/master/src/chainparams/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-aseancoin' | ||
seeds = ("testnet-seed.alexykot.me", | ||
"testnet-seed.bitcoin.petertodd.org", | ||
"testnet-seed.bluematt.me", | ||
"testnet-seed.bitcoin.schildbach.de") | ||
port = 18333 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class BitcoinABC(Bitcoin): | ||
""" | ||
Class with all the necessary BitcoinABC network information based on | ||
https://github.com/Bitcoin-ABC/bitcoin-abc/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'bitcoinabc' | ||
symbols = ('BABC', ) | ||
seeds = ("seed.bitcoinabc.org", | ||
"seed-abc.bitcoinforks.org", | ||
"btccash-seeder.bitcoinunlimited.info", | ||
"seed.bitprim.org", | ||
"seed.deadalnix.me", | ||
"seeder.criptolayer.net") | ||
port = 8333 | ||
|
||
|
||
class BitcoinABCTestNet(Diamond): | ||
""" | ||
Class with all the necessary BitcoinABC testing network information based on | ||
https://github.com/Bitcoin-ABC/bitcoin-abc/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-bitcoinabc' | ||
seeds = ("testnet-seed.bitcoinabc.org", | ||
"testnet-seed-abc.bitcoinforks.org", | ||
"testnet-seed.bitprim.org", | ||
"testnet-seed.deadalnix.me", | ||
"testnet-seeder.criptolayer.net") | ||
port = 18333 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Concoin(Bitcoin): | ||
""" | ||
Class with all the necessary Concoin network information based on | ||
https://github.com/Concoin/concoin-master/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'concoin' | ||
symbols = ('CONX', ) | ||
seeds = ("94.176.236.84", | ||
"212.47.238.107", | ||
"94.176.235.111") | ||
port = 40100 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Coupecoin(Bitcoin): | ||
""" | ||
Class with all the necessary Coupecoin network information based on | ||
https://github.com/CoupecoinOriginal/coupecoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'coupecoin' | ||
symbols = ('COUPE', ) | ||
seeds = ("45.79.66.198", | ||
"electrum5.cryptolife.net") | ||
port = 17739 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Cryptographic_Anomaly(Bitcoin): | ||
""" | ||
Class with all the necessary Cryptographic Anomaly network information based on | ||
https://github.com/CryptographicAnomaly/CryptographicAnomaly2/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'cryptographic_anomaly' | ||
symbols = ('CGA', ) | ||
seeds = ("cga.dnsseed.crypto2.net") | ||
port = 3933 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class LandCoin(Bitcoin): | ||
""" | ||
Class with all the necessary LandCoin network information based on | ||
https://github.com/landcoin-project/landcoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'landcoin' | ||
symbols = ('LND', ) | ||
seeds = ("seed.landcoin.net") | ||
port = 1911 | ||
|
||
|
||
class LandCoinTestNet(LandCoin): | ||
""" | ||
Class with all the necessary LandCoin testing network information based on | ||
https://github.com/landcoin-project/landcoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-landcoin' | ||
seeds = ("seed.landcoin.net") | ||
port = 11911 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class PlusCoin(Bitcoin): | ||
""" | ||
Class with all the necessary PlusCoin network information based on | ||
https://github.com/BitcoinPlus-org/bitcoinplus/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'pluscoin' | ||
symbols = ('PLC', ) | ||
seeds = ("seed.xbcplus.com") | ||
port = 53518 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class PRCoin(Bitcoin): | ||
""" | ||
Class with all the necessary PRCoin network information based on | ||
https://github.com/prcoin/prcoin-wallet | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'prcoin' | ||
symbols = ('PRC', ) | ||
seeds = ("73.78.96.65:52698", | ||
"218.144.45.133:50090", | ||
"218.144.45.133:51045", | ||
"218.144.45.133:61276") | ||
port = 8535 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class ProCoin(Bitcoin): | ||
""" | ||
Class with all the necessary ProCoin network information based on | ||
https://github.com/Procoin-project/Procoin-Done/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'procoin' | ||
symbols = ('PCN', ) | ||
seeds = ("dnsseed.procointools.com", | ||
"dnsseed.procoinpool.org", | ||
"dnsseed.pro.xurious.com", | ||
"dnsseed.koin-project.com", | ||
"dnsseed.weminemnc.com") | ||
port = 4113 | ||
|
||
|
||
class ProCoinTestNet(ProCoin): | ||
""" | ||
Class with all the necessary ProCoin testing network information based on | ||
https://github.com/Procoin-project/Procoin-Done/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-procoin' | ||
seeds = ("testnet-seed.procointools.com", | ||
"testnet-seed.weminemnc.com") | ||
port = 51474 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Resumeo_Shares(Bitcoin): | ||
""" | ||
Class with all the necessary Resumeo Shares network information based on | ||
https://github.com/vanyabios/resumeo/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'resumeo_shares' | ||
symbols = ('RMS', ) | ||
seeds = ("107.170.189.185", | ||
"79.135.200.66") | ||
port = 38891 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class RichCoin(Bitcoin): | ||
""" | ||
Class with all the necessary RichCoin network information based on | ||
https://github.com/dmdcoin/diamond/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'richcoin' | ||
symbols = ('RICHX', ) | ||
seeds = ("richcoin.us") | ||
port = 11777 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Save_The_Ocean(Bitcoin): | ||
""" | ||
Class with all the necessary Save The Ocean network information based on | ||
https://github.com/SaveTheOceanMovement/SaveTheOceanCoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'save_the_ocean' | ||
symbols = ('STO', ) | ||
seeds = ("52.169.14.55") | ||
port = 4555 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Sex_Pistols(Bitcoin): | ||
""" | ||
Class with all the necessary Sex Pistols network information based on | ||
https://github.com/sexpist/sexpistols/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'sex_pistols' | ||
symbols = ('SP', ) | ||
seeds = ("node.walletbuilders.com") | ||
port = 7515 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class ShellCoin(Bitcoin): | ||
""" | ||
Class with all the necessary ShellCoin network information based on | ||
https://bitcointalk.org/index.php?topic=1054714.0 | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'shellcoin' | ||
symbols = ('SHELL', ) | ||
seeds = ("153.92.98.55") | ||
port = 12454 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class SIGMAcoin(Bitcoin): | ||
""" | ||
Class with all the necessary SIGMAcoin network information based on | ||
https://github.com/sigmadevelopment/sigma/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'sigmacoin' | ||
symbols = ('SIGMA', ) | ||
seeds = ("node.walletbuilders.com") | ||
port = 8211 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class SJWCoin(Bitcoin): | ||
""" | ||
Class with all the necessary SJWCoin network information based on | ||
https://github.com/sjwcoin/sjwcoin/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'sjwcoin' | ||
symbols = ('SJW', ) | ||
seeds = ("seed.sjwcoin.com") | ||
port = 19966 | ||
|
||
# no testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Stability_Shares(Bitcoin): | ||
""" | ||
Class with all the necessary Stability Shares network information based on | ||
https://bitcointalk.org/index.php?topic=490529.0 | ||
(date of access: 02/16/2018) | ||
""" | ||
name = 'stability_shares' | ||
symbols = ('XSS', ) | ||
seeds = ("80.112.144.84", | ||
"82.139.127.205", | ||
"23.253.82.83", | ||
"27.33.1.58", | ||
"87.147.43.53", | ||
"174.108.122.202", | ||
"204.195.130.236", | ||
"92.55.41.212", | ||
"88.127.170.75", | ||
"94.23.196.92") | ||
port = 7711 | ||
|
||
# no testnet | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Swapcoin(Bitcoin): | ||
""" | ||
Class with all the necessary Swapcoin network information based on | ||
https://github.com/swapcoin/swap/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'swapcoin' | ||
symbols = ('SWP', ) | ||
seeds = ("207.12.89.115") | ||
port = 19988 | ||
|
||
# no testnet |
Oops, something went wrong.