Skip to content

Commit 473c836

Browse files
author
shadowy-pycoder
committedFeb 4, 2023
added support for Electrum signatures
1 parent c1b7c36 commit 473c836

File tree

4 files changed

+5
-20
lines changed

4 files changed

+5
-20
lines changed
 

‎bitcoin_message_tool/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from bitcoin_message_tool import bmt
1+
import bmt
22

33
if __name__ == '__main__':
44
bmt.main()

‎bitcoin_message_tool/bmt.py

-10
Original file line numberDiff line numberDiff line change
@@ -835,13 +835,3 @@ def main():
835835

836836
if __name__ == '__main__':
837837
main()
838-
839-
840-
# -----BEGIN BITCOIN SIGNED MESSAGE-----
841-
# ECDSA is the most fun I have ever experienced
842-
# -----BEGIN BITCOIN SIGNATURE-----
843-
# bc1qsexve09agl8e9gwkflr85x6s2szh27efcts6v5
844-
845-
# KAaU/5cb7jPkNQxTtapPqR3EKyDU1Esjd4aZly+5Rwd6Cjlvgw6X0gUQjkrMa8Z+vl/tNcfgcuwzcCE3NtRk6Gk=
846-
# -----END BITCOIN SIGNATURE-----
847-
# KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M7rFU9EMfkHW6w

‎requirements.txt

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
attrs==22.2.0 ; python_version >= "3.10" and python_version < "4.0"
21
base58==2.1.1 ; python_version >= "3.10" and python_version < "4.0"
32
bech32==1.2.0 ; python_version >= "3.10" and python_version < "4.0"
4-
colorama==0.4.6 ; python_version >= "3.10" and python_version < "4.0" and sys_platform == "win32"
5-
exceptiongroup==1.1.0 ; python_version >= "3.10" and python_version < "3.11"
6-
iniconfig==2.0.0 ; python_version >= "3.10" and python_version < "4.0"
7-
packaging==23.0 ; python_version >= "3.10" and python_version < "4.0"
8-
pluggy==1.0.0 ; python_version >= "3.10" and python_version < "4.0"
9-
pytest==7.2.1 ; python_version >= "3.10" and python_version < "4.0"
103
ripemd-hash==1.0.0 ; python_version >= "3.10" and python_version < "4.0"
11-
tomli==2.0.1 ; python_version >= "3.10" and python_version < "3.11"
4+

‎setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name="bitcoin_message_tool",
2121
version=version,
22-
url="https://github.com/shadowy_pycoder/bitcoin_message_tool",
22+
url="https://github.com/shadowy-pycoder/bitcoin_message_tool",
2323
author="shadowy_pycoder",
2424
author_email="shadowy_pycoder@example.com",
2525
description=("""Bitcoin message signing/verification tool"""),
@@ -40,5 +40,7 @@
4040
"Programming Language :: Python :: 3.7",
4141
"Programming Language :: Python :: 3.8",
4242
"Programming Language :: Python :: 3.9",
43+
"Programming Language :: Python :: 3.10",
44+
"Programming Language :: Python :: 3.11",
4345
],
4446
)

0 commit comments

Comments
 (0)
Please sign in to comment.