Skip to content

Commit 035f722

Browse files
author
peterrr
committed
add support for memorycoin
* add tests * change README * new version 0.3.6
1 parent c5b1dc8 commit 035f722

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
* JKC
9898
* TEA
9999
* VTC
100+
* MMC
100101

101102
## Requirements
102103

address/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
'jkc': {'pub': 16, 'priv': 146},
108108
'tea': {'pub': 66, 'priv': 224},
109109
'vtc': {'pub': 71, 'priv': 199},
110+
'mmc': {'pub': 50, 'priv': 178},
110111
}
111112

112113

address/test.py

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
'jkc': '7kM6CeNK8ZWjUpf8HhAoEYtsBfgmSJxBai',
110110
'tea': 'TsFFS5GidagYNVdTWfpjUpWCetZvxoP7wH',
111111
'vtc': 'VswGMcmABUzvTfKtdmVKuSs8oQreYcmZeM',
112+
'mmc': 'MRqbgLW7GhGXHZQ57xVdip9capSqZatiut',
112113
}
113114
priv = {'btc': '5KJvsngHeMpm884wtkJNzQGaCErckhHJBGFsvd3VyK5qMZXj3hS',
114115
'ltc': '6vcfLvDpYnHdbVxoQa6Lmo3k9iR5xVjKwwf3dp4XgmQT3QJywYi',
@@ -212,6 +213,7 @@
212213
'jkc': '5vJL3xkrz1zqYtXeDBUNAB4WgHwYTNT4LmXpKKRds7CpEhQ9rE7',
213214
'tea': '8XvPp3mMTCkW4srevPtJZBpv7ByZAJBMid4DM15ZQDj4jGYEcFe',
214215
'vtc': '7hKnQFYZ9ZqqhNL2FuNKiAqZDLabuh7U3eHXFFt9YqZNPcf8YWd',
216+
'mmc': '6zW9hP7tFde5s98DDjLLgSFHyweXFuR5XDoG87SKg5RE2dHMpaF',
215217
}
216218

217219

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from distutils.core import setup
55

66
setup(name='cryptoaddress',
7-
version='0.3.5',
7+
version='0.3.6',
88
license='GPL',
99
description='generate, validate, convert and detect addresses from different crypto currencies.',
1010
author='peterr',

0 commit comments

Comments
 (0)