Skip to content

Commit

Permalink
added geertcoin - still need WIF version byte
Browse files Browse the repository at this point in the history
  • Loading branch information
priestc committed May 27, 2017
1 parent 61658c9 commit ae473d7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions moneywagon/crypto_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1285,6 +1285,31 @@
'get_block': [LemoncoinOfficial]
},
},
'geert': {
'name': 'Geertcoin',
'address_version_byte': 38,
'bip44_coin_type': None,
'private_key_prefix': None,
'message_magic': None,
'genesis_date': datetime(2017, 2, 12, 6, 25, 23),
'supply_data': {
'method': 'standard',
'start_coins_per_block': 200,
'minutes_per_block': 2.5,
'full_cap': None,
'blocks_per_era': 24000,
'reward_ends_at_block': None
},
'services': {
'current_price': [Cryptopia],
'address_balance': [GeertcoinExplorer],
'historical_transactions': [GeertcoinExplorer],
'single_transaction': [GeertcoinExplorer],
'push_tx': [],
'unspent_outputs': [],
'get_block': [GeertcoinExplorer]
},
},
# TEMPLATE
'': {
'name': '',
Expand Down
5 changes: 5 additions & 0 deletions moneywagon/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -2629,3 +2629,8 @@ class LemoncoinOfficial(HolyTransaction):
service_id = 85
domain = "http://45.32.180.199:3001/"
supported_crypto = ['lemon']

class GeertcoinExplorer(HolyTransaction):
service_id = 86
domain = "http://geertcoin.com:1963"
supported_crypto = ['geert']

0 comments on commit ae473d7

Please sign in to comment.