-
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
Ola Czerepak
committed
Feb 28, 2018
1 parent
fd10582
commit 7b51bdc
Showing
835 changed files
with
2,418 additions
and
2,343 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 |
---|---|---|
@@ -1,24 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
class Coin007(Bitcoin): | ||
|
||
class Coin007(Bitcoin): | ||
""" | ||
Class with all the necessary 007Coin (007) network information based on | ||
https://github.com/007coindev/007coin/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = '007coin' | ||
symbols = ('007', ) | ||
seeds = ('46.101.7.165') | ||
seeds = ('46.101.7.165') | ||
port = 11007 | ||
|
||
|
||
class Coin007TestNet(Coin007): | ||
class Coin007TestNet(Coin007): | ||
""" | ||
Class with all the necessary 007Coin (007) network information based on | ||
https://github.com/007coindev/007coin/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-007coin' | ||
symbols = ('007', ) | ||
seeds = () | ||
port = 21007 | ||
seeds = () | ||
port = 21007 |
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 |
---|---|---|
@@ -1,24 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
class TwoGIVE(Bitcoin): | ||
|
||
class TwoGIVE(Bitcoin): | ||
""" | ||
Class with all the necessary 2GIVE (2GIVE) network information based on | ||
https://github.com/LittleDuke/2GIVE/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = '2give' | ||
symbols = ('2GIVE', ) | ||
seeds = ('seed2.givecoin.io') | ||
seeds = ('seed2.givecoin.io') | ||
port = 6763 | ||
|
||
|
||
class TwoGIVETestNet(TwoGIVE): | ||
class TwoGIVETestNet(TwoGIVE): | ||
""" | ||
Class with all the necessary 2GIVE (2GIVE) network information based on | ||
https://github.com/LittleDuke/2GIVE/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-2give' | ||
symbols = ('2GIVE', ) | ||
seeds = () | ||
port = 16763 | ||
seeds = () | ||
port = 16763 |
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 |
---|---|---|
@@ -1,24 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
class Three65Coin(Bitcoin): | ||
|
||
class Three65Coin(Bitcoin): | ||
""" | ||
Class with all the necessary 365Coin (365) network information based on | ||
https://github.com/365coindev/365/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = '365coin' | ||
symbols = ('365', ) | ||
seeds = ('198.199.90.93') | ||
seeds = ('198.199.90.93') | ||
port = 15663 | ||
|
||
|
||
class Three65CoinTestNet(Three65Coin): | ||
class Three65CoinTestNet(Three65Coin): | ||
""" | ||
Class with all the necessary 365Coin (365) network information based on | ||
https://github.com/365coindev/365/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-365coin' | ||
symbols = ('365', ) | ||
seeds = () | ||
seeds = () | ||
port = 17778 |
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Eight08Coin(Bitcoin): | ||
class Eight08Coin(Bitcoin): | ||
""" | ||
Class with all the necessary 808Coin (808) network information based on | ||
https://github.com/maxxine/808/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = '808coin' | ||
symbols = ('808', ) | ||
seeds = ('dns.808bass.space') | ||
seeds = ('dns.808bass.space') | ||
port = 8087 | ||
|
||
|
||
class Eight08CoinTestNet(Eight08Coin): | ||
class Eight08CoinTestNet(Eight08Coin): | ||
""" | ||
Class with all the necessary 808Coin (808) network information based on | ||
https://github.com/maxxine/808/blob/master/src/net.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-808coin' | ||
symbols = ('808', ) | ||
seeds = () | ||
port = 6903 | ||
seeds = () | ||
port = 6903 |
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
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 |
---|---|---|
|
@@ -12,4 +12,3 @@ class SPEC(Bitcoin): | |
seeds = ("node.speccoin.com", | ||
"node2.speccoin.com") | ||
port = 4319 | ||
|
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Abjcoin(Bitcoin): | ||
class Abjcoin(Bitcoin): | ||
""" | ||
Class with all the necessary Abjcoin (ABJ) network information based on | ||
https://github.com/abjcoinblockchain/Abjcoin/blob/master/src/net.cpp | ||
(date of access: 02/17/2018) | ||
""" | ||
name = 'abjcoin' | ||
symbols = ('ABJ', ) | ||
seeds = ('209.188.21.177', '199.188.207.212') | ||
seeds = ('209.188.21.177', '199.188.207.212') | ||
port = 29303 | ||
|
||
|
||
class AbjcoinTestNet(Abjcoin): | ||
class AbjcoinTestNet(Abjcoin): | ||
""" | ||
Class with all the necessary Abjcoin (ABJ) network information based on | ||
https://github.com/abjcoinblockchain/Abjcoin/blob/master/src/net.cpp | ||
(date of access: 02/17/2018) | ||
""" | ||
name = 'test-abjcoin' | ||
symbols = ('ABJ', ) | ||
seeds = () | ||
seeds = () | ||
port = 39303 |
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
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class AccoladeCoin(Bitcoin): | ||
class AccoladeCoin(Bitcoin): | ||
""" | ||
Class with all the necessary AccoladeCoin (ACCO) network information based on | ||
https://github.com/AccoladeCoin/accoladecoin-core/blob/master/Accolade-master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'accoladecoin' | ||
symbols = ('ACCO', ) | ||
seeds = ('45.55.85.44', '45.55.169.173', '104.236.230.23', '45.55.248.114') | ||
seeds = ('45.55.85.44', '45.55.169.173', '104.236.230.23', '45.55.248.114') | ||
port = 13117 | ||
|
||
|
||
class AccoladeCoinTestNet(AccoladeCoin): | ||
class AccoladeCoinTestNet(AccoladeCoin): | ||
""" | ||
Class with all the necessary AccoladeCoin (ACCO) network information based on | ||
https://github.com/AccoladeCoin/accoladecoin-core/blob/master/Accolade-master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-accoladecoin' | ||
symbols = ('ACCO', ) | ||
seeds = () | ||
port = 20114 | ||
seeds = () | ||
port = 20114 |
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ class Aces(Bitcoin): | |
name = 'Acesc' | ||
symbols = ('ACES', ) | ||
seeds = ('81.4.123.155') | ||
port = 21274 | ||
port = 21274 |
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Aces(Bitcoin): | ||
class Aces(Bitcoin): | ||
""" | ||
Class with all the necessary Aces (ACES) network information based on | ||
https://github.com/aces-coin/AcesCoin/blob/master/src/net.cpp | ||
(date of access: 02/17/2018) | ||
""" | ||
name = 'aces' | ||
symbols = ('ACES', ) | ||
seeds = ('81.4.123.155') | ||
seeds = ('81.4.123.155') | ||
port = 21274 | ||
|
||
|
||
class AcesTestNet(Aces): | ||
class AcesTestNet(Aces): | ||
""" | ||
Class with all the necessary Aces (ACES) network information based on | ||
https://github.com/aces-coin/AcesCoin/blob/master/src/net.cpp | ||
(date of access: 02/17/2018) | ||
""" | ||
name = 'test-aces' | ||
symbols = ('ACES', ) | ||
seeds = () | ||
seeds = () | ||
port = 21275 |
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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
from clove.network.bitcoin import Bitcoin | ||
|
||
|
||
class Acoin(Bitcoin): | ||
class Acoin(Bitcoin): | ||
""" | ||
Class with all the necessary Acoin (ACOIN) network information based on | ||
https://github.com/acoin-project/acoin/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'acoin' | ||
symbols = ('ACOIN', ) | ||
seeds = ('seed1.a-coin.info', 'seed2.a-coin.info', 'seed3.a-coin.info', 'seed4.a-coin.info', | ||
'seed5.a-coin.info', 'seed6.a-coin.info', 'seed7.a-coin.info', 'seed8.a-coin.info') | ||
seeds = ('seed1.a-coin.info', 'seed2.a-coin.info', 'seed3.a-coin.info', 'seed4.a-coin.info', | ||
'seed5.a-coin.info', 'seed6.a-coin.info', 'seed7.a-coin.info', 'seed8.a-coin.info') | ||
port = 17883 | ||
|
||
|
||
class AcoinTestNet(Acoin): | ||
class AcoinTestNet(Acoin): | ||
""" | ||
Class with all the necessary Acoin (ACOIN) network information based on | ||
https://github.com/acoin-project/acoin/blob/master/src/chainparams.cpp | ||
(date of access: 02/19/2018) | ||
""" | ||
name = 'test-acoin' | ||
symbols = ('ACOIN', ) | ||
seeds = () | ||
port = 27883 | ||
seeds = () | ||
port = 27883 |
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
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
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
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
Oops, something went wrong.