Metadata-Version: 2.1
Name: cryptowrench
Version: 0.1.2
Summary: A set of tools for nerding around with crypto.
License: MIT
Author: Federico Giancarelli
Author-email: hello@federicogiancarelli.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: base58 (>=2.1.1,<3.0.0)
Requires-Dist: bech32 (>=1.2.0,<2.0.0)
Requires-Dist: ecdsa (>=0.18.0,<0.19.0)
Requires-Dist: mnemonic (>=0.20,<0.21)
Requires-Dist: pycryptodome (>=3.15.0,<4.0.0)
Description-Content-Type: text/markdown

# Cryptowrench

This is a set of tools that I created to learn and play around with blockchains and cryptocurrencies in general.

Install with:
```
pip -m install cryptowrench
```

Feel free to use it for your own projects.

## Disclaimer
Although I try my best to make these tools as correct and reliable as possible, `please for the love of dinosaurs` do not rely on them for storing your money. Use a proper wallet for that instead (see: [ethereum.org/en/wallets/](https://ethereum.org/en/wallets), for some wallets).

That said, this library has been tested against publicly available test vectors (i.e. from [bip32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#Test_Vectors) and [bip39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#Test_vectors), among others), which means that it should be mostly correct for those functionalities. Expect more tests to be added in the future, and see [`run_tests.py`](https://github.com/omirete/cryptowrench/blob/master/run_tests.py) if you would like to run these tests yourself.

## Colaborate :)
Please create issues/pull requests/feature requests where needed. I'm also looking to collaborate in other open source projects, so let me know if you would like to talk!

