Compare commits
3 Commits
lash/messa
...
v0.6.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a534f8ca1e
|
||
|
|
d9531c33cb
|
||
|
|
385578e582
|
@@ -1,7 +1,12 @@
|
||||
* 0.6.1
|
||||
- Avoid padding of addresses missing one nibble
|
||||
* 0.6.0
|
||||
- Upgrade confini
|
||||
* 0.5.4
|
||||
- Add message signer cli
|
||||
- Add pbkdf2 support
|
||||
- Add -0 flag for omitting newline on output
|
||||
- Revert RLP to 2.0.1, to not break eth-tester in dependents
|
||||
* 0.5.3
|
||||
- Upgrade RLP to 3.0.0 (eliminates really annoying cytoolz warning on stdout)
|
||||
---
|
||||
|
||||
@@ -41,7 +41,7 @@ def private_key_to_address(pk, result_format='hex'):
|
||||
|
||||
def is_address(address_hex):
|
||||
try:
|
||||
address_hex = strip_0x(address_hex)
|
||||
address_hex = strip_0x(address_hex, pad=False)
|
||||
except ValueError:
|
||||
return False
|
||||
return len(address_hex) == 40
|
||||
@@ -57,10 +57,10 @@ def is_checksum_address(address_hex):
|
||||
|
||||
|
||||
def to_checksum_address(address_hex):
|
||||
address_hex = strip_0x(address_hex)
|
||||
address_hex = uniform(address_hex)
|
||||
address_hex = strip_0x(address_hex, pad=False)
|
||||
if len(address_hex) != 40:
|
||||
raise ValueError('Invalid address length')
|
||||
address_hex = uniform(address_hex)
|
||||
h = sha3.keccak_256()
|
||||
h.update(address_hex.encode('utf-8'))
|
||||
z = h.digest()
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
cryptography==3.2.1
|
||||
pysha3==1.0.2
|
||||
#rlp==2.0.1
|
||||
rlp==3.0.0
|
||||
rlp==2.0.1
|
||||
#rlp==3.0.0
|
||||
json-rpc==1.13.0
|
||||
confini~=0.5.1
|
||||
confini~=0.6.0
|
||||
coincurve==15.0.0
|
||||
hexathon~=0.1.0
|
||||
hexathon~=0.1.6
|
||||
pycryptodome==3.10.1
|
||||
funga==0.5.1
|
||||
funga==0.5.2
|
||||
|
||||
4
setup.py
4
setup.py
@@ -33,7 +33,7 @@ f.close()
|
||||
|
||||
setup(
|
||||
name="funga-eth",
|
||||
version="0.5.4b2",
|
||||
version="0.6.1",
|
||||
description="Ethereum implementation of the funga keystore and signer",
|
||||
author="Louis Holbrook",
|
||||
author_email="dev@holbrook.no",
|
||||
@@ -58,6 +58,6 @@ setup(
|
||||
'eth-sign-msg=funga.eth.runnable.msg:main',
|
||||
],
|
||||
},
|
||||
url='https://gitlab.com/chaintool/funga-eth',
|
||||
url='https://git.grassecon.net/chaintool/funga-eth',
|
||||
include_package_data=True,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user