File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
Bitcoin Message Tool
2
2
======
3
3
4
- Bitcoin message signing/verification tool
4
+ Bitcoin Message Tool
5
5
6
6
A lightweight CLI tool for signing and verification of bitcoin messages.
7
7
Bitcoin message is the most straightforward and natural way to prove ownership over
8
8
a given address without revealing any confidential information.
9
9
10
+ This tool closely follows specification described in BIP137:
11
+
12
+ Please note that "since this format includes P2PKH keys, it is backwards compatible,
13
+ but keep in mind some software has checks for ranges of headers and will report the newer
14
+ segwit header types as errors."
15
+
16
+ More info: https://github.com/bitcoin/bips/blob/master/bip-0137.mediawiki
17
+
10
18
Installation
11
19
------------
12
20
Original file line number Diff line number Diff line change 1
1
"""
2
2
Bitcoin Message Tool by shadowy-pycoder 2023
3
+
3
4
A lightweight CLI tool for signing and verification of bitcoin messages.
4
5
Bitcoin message is the most straightforward and natural way to prove ownership over
5
6
a given address without revealing any confidential information.
6
7
8
+ This tool closely follows specification described in BIP137:
9
+
10
+ Please note that "since this format includes P2PKH keys, it is backwards compatible,
11
+ but keep in mind some software has checks for ranges of headers and will report the newer
12
+ segwit header types as errors."
13
+
14
+ More info: https://github.com/bitcoin/bips/blob/master/bip-0137.mediawiki
15
+
16
+
17
+
18
+
7
19
Usage:
8
20
9
21
python -m bitcoin_message_tool -h
Original file line number Diff line number Diff line change 26
26
long_description = long_description ,
27
27
long_description_content_type = "text/markdown" ,
28
28
license = "MIT" ,
29
- packages = find_packages (where = "src " ),
30
- package_dir = {"" : "src " },
29
+ packages = find_packages (where = "bitcoin_message_tool " ),
30
+ package_dir = {"" : "bitcoin_message_tool " },
31
31
test_suite = "tests" ,
32
32
install_requires = [],
33
33
keywords = "" ,
You can’t perform that action at this time.
0 commit comments