Skip to content

Commit 890c5a7

Browse files
committed
Update: README.md and index.rst repo names
1 parent eba9cc6 commit 890c5a7

File tree

2 files changed

+21
-34
lines changed

2 files changed

+21
-34
lines changed

README.md

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
1-
<h1 align="center" style="border-bottom: none">
2-
<img height="100" alt="BIP38" src="docs/static/svg/bip38.svg"><br>Bitcoin Improvement Proposal - 0038
3-
</h1>
1+
# Bitcoin Improvement Proposal - 0038 / BIP38
42

5-
<p align="center">
6-
<a href="https://github.com/meherett/python-bip38/releases" target="_blank">Releases</a> · <a href="https://talonlab.gitbook.io/bip38/manual" target="_blank">Manual</a> · <a href="https://bip38.readthedocs.io" target="_blank">API Docs</a> · <a href="#donations">Donation</a>
7-
</p>
8-
9-
<div align="center">
10-
11-
[![Build Status](https://img.shields.io/github/actions/workflow/status/meherett/python-bip38/build.yml)](https://github.com/meherett/python-bip38/actions/workflows/build.yml)
3+
[![Build Status](https://img.shields.io/github/actions/workflow/status/talonlab/python-bip38/build.yml)](https://github.com/talonlab/python-bip38/actions/workflows/build.yml)
124
[![PyPI Version](https://img.shields.io/pypi/v/bip38.svg?color=blue)](https://pypi.org/project/bip38)
135
[![Documentation Status](https://readthedocs.org/projects/bip38/badge/?version=master)](https://bip38.readthedocs.io)
146
[![PyPI License](https://img.shields.io/pypi/l/bip38?color=black)](https://pypi.org/project/bip38)
157
[![PyPI Python Version](https://img.shields.io/pypi/pyversions/bip38.svg)](https://pypi.org/project/bip38)
16-
[![Coverage Status](https://coveralls.io/repos/github/meherett/python-bip38/badge.svg?branch=master)](https://coveralls.io/github/meherett/python-bip38)
17-
18-
</div>
8+
[![Coverage Status](https://coveralls.io/repos/github/talonlab/python-bip38/badge.svg?branch=master)](https://coveralls.io/github/talonlab/python-bip38)
199

2010
A Python library for the implementation of Bitcoin Improvement Proposal - 0038 / (BIP38) protocol.
2111
This library supports both [No EC-multiply](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki#encryption-when-ec-multiply-flag-is-not-used) and [EC-multiply](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki#encryption-when-ec-multiply-mode-is-used) modes and is compatible with over 150+ cryptocurrencies.
2212
It's specifically tailored for Pay-to-PubKey-Hash (P2PKH) address types.
2313

24-
![Desktop Application](docs/static/gif/bip38.gif)
25-
2614
For more info see the [Passphrase-protected private key - BIP38](https://en.bitcoin.it/wiki/BIP_0038) spec.
2715

2816
## Installation
@@ -36,7 +24,7 @@ pip install bip38
3624
If you want to run the latest version of the code, you can install from the git:
3725

3826
```
39-
pip install git+git://github.com/meherett/python-bip38.git
27+
pip install git+ssh://github.com/talonlab/python-bip38.git
4028
```
4129

4230
## Quick Usage
@@ -429,7 +417,7 @@ BIP38 Decrypted: {
429417
To get started, just fork this repo, clone it locally, and run:
430418

431419
```
432-
pip install -e .[desktop,tests,docs]
420+
pip install -e .[tests,docs]
433421
```
434422

435423
## Testing
@@ -445,12 +433,12 @@ tests against a specific version of Python.
445433

446434
## Contributing
447435

448-
Feel free to open an [issue](https://github.com/meherett/python-bip38/issues) if you find a problem,
436+
Feel free to open an [issue](https://github.com/talonlab/python-bip38/issues) if you find a problem,
449437
or a pull request if you've solved an issue. And also any help in testing, development,
450438
documentation and other tasks is highly appreciated and useful to the project.
451439
There are tasks for contributors of all experience levels.
452440

453-
For more information, see the [CONTRIBUTING.md](https://github.com/meherett/python-bip38/blob/master/CONTRIBUTING.md) file.
441+
For more information, see the [CONTRIBUTING.md](https://github.com/talonlab/python-bip38/blob/master/CONTRIBUTING.md) file.
454442

455443
## Supported Cryptocurrencies
456444

@@ -469,4 +457,4 @@ Thank you very much for your support.
469457

470458
## License
471459

472-
Distributed under the [MIT](https://github.com/meherett/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.
460+
Distributed under the [MIT](https://github.com/talonlab/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.

docs/index.rst

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Bitcoin Improvement Proposal - 0038 / BIP38
44

55
|Build Status| |PyPI Version| |Documentation Status| |PyPI License| |PyPI Python Version| |Coverage Status|
66

7-
.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/meherett/python-bip38/build.yml
8-
:target: https://github.com/meherett/python-bip38/actions/workflows/build.yml
7+
.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/talonlab/python-bip38/build.yml
8+
:target: https://github.com/talonlab/python-bip38/actions/workflows/build.yml
99

1010
.. |PyPI Version| image:: https://img.shields.io/pypi/v/bip38.svg?color=blue
1111
:target: https://pypi.org/project/bip38
@@ -19,8 +19,8 @@ Bitcoin Improvement Proposal - 0038 / BIP38
1919
.. |PyPI Python Version| image:: https://img.shields.io/pypi/pyversions/bip38.svg
2020
:target: https://pypi.org/project/bip38
2121

22-
.. |Coverage Status| image:: https://coveralls.io/repos/github/meherett/python-bip38/badge.svg?branch=master
23-
:target: https://coveralls.io/github/meherett/python-bip38?branch=master
22+
.. |Coverage Status| image:: https://coveralls.io/repos/github/talonlab/python-bip38/badge.svg?branch=master
23+
:target: https://coveralls.io/github/talonlab/python-bip38?branch=master
2424

2525
A Python library for the implementation of Bitcoin Improvement Proposal - 0038 / (BIP38) protocol.
2626
This library supports both `No EC-multiply <https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki#encryption-when-ec-multiply-flag-is-not-used>`_ and `EC-multiply <https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki#encryption-when-ec-multiply-mode-is-used>`_ modes and is compatible with over 150+ cryptocurrencies.
@@ -42,10 +42,10 @@ If you want to run the latest version of the code, you can install from git:
4242

4343
::
4444

45-
pip install git+git://github.com/meherett/python-bip38.git
45+
pip install git+ssh://github.com/talonlab/python-bip38.git
4646

4747

48-
For the versions available, see the `tags on this repository <https://github.com/meherett/python-bip38/tags>`_.
48+
For the versions available, see the `tags on this repository <https://github.com/talonlab/python-bip38/tags>`_.
4949

5050
Quick Usage
5151
===========
@@ -451,11 +451,11 @@ EC multiply:
451451
Development
452452
===========
453453

454-
We welcome pull requests. To get started, just fork this `github repository <https://github.com/meherett/python-bip38>`_, clone it locally, and run:
454+
We welcome pull requests. To get started, just fork this `github repository <https://github.com/talonlab/python-bip38>`_, clone it locally, and run:
455455

456456
::
457457

458-
pip install -e .[desktop,tests,docs]
458+
pip install -e .[tests,docs]
459459

460460

461461
Testing
@@ -475,26 +475,25 @@ tests against a specific version of Python.
475475
Contributing
476476
============
477477

478-
Feel free to open an `issue <https://github.com/meherett/python-bip38/issues>`_ if you find a problem,
478+
Feel free to open an `issue <https://github.com/talonlab/python-bip38/issues>`_ if you find a problem,
479479
or a pull request if you've solved an issue. And also any help in testing, development,
480480
documentation and other tasks is highly appreciated and useful to the project.
481481
There are tasks for contributors of all experience levels.
482482

483-
For more information, see the `CONTRIBUTING.md <https://github.com/meherett/python-bip38/blob/master/CONTRIBUTING.md>`_ file.
483+
For more information, see the `CONTRIBUTING.md <https://github.com/talonlab/python-bip38/blob/master/CONTRIBUTING.md>`_ file.
484484

485485
Donations
486486
=========
487487

488488
Buy me a coffee if You found this tool helpful:
489489

490-
- **Bitcoin** - 12uaGVdX1t86FXLQ4yYPrRQDCK7xGGu82r
491-
- **Ethereum / Tether** - 0xCCAad7A87fd81553d0F93F743Fb4Fc6B213b228B
492-
- **Bitcoin / Ethereum / Tether** - With Unstoppable `hd.wallet <https://ud.me/hd.wallet>`_
490+
- **Bitcoin** - 16c7ajUwHEMaafrceuYSrd35SDjmfVdjoS
491+
- **Ethereum / Tether** - 0xD3cbCB0B6F82A03C715D665b72dC44CEf54e6D9B
493492

494493
Thank you very much for your support.
495494

496495

497496
License
498497
=======
499498

500-
Distributed under the `MIT <https://github.com/meherett/python-bip38/blob/master/LICENSE>`_ license. See **LICENSE** for more information.
499+
Distributed under the `MIT <https://github.com/talonlab/python-bip38/blob/master/LICENSE>`_ license. See **LICENSE** for more information.

0 commit comments

Comments
 (0)