Skip to content

Commit

Permalink
added GeoCoin
Browse files Browse the repository at this point in the history
  • Loading branch information
jabef committed Feb 22, 2018
1 parent f8f4739 commit 6e22468
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions network/geocoin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

from clove.network.bitcoin import Bitcoin


class GeoCoin(Bitcoin):
"""
Class with all the necessary GeoCoin network information based on
https://github.com/onetimer/onetimer/blob/master/src/net.cpp
(date of access: 02/22/2018)
"""
name = 'geocoin'
symbols = ('GEO', )
seeds = ("104.236.52.122")
port = 9748


class GeoCoinTestNet(GeoCoin):
"""
Class with all the necessary GeoCoin testing network information based on
https://github.com/onetimer/onetimer/blob/master/src/net.cpp
(date of access: 02/21/2018)
"""
name = 'test-geocoin'
seeds = ("104.236.52.122")
port = 9748

0 comments on commit 6e22468

Please sign in to comment.