From e07a098d9fe89140f5fd822e8b407932f74984b4 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 11 Sep 2022 16:28:18 +0300 Subject: [PATCH] add bech32 --- poetry.lock | 14 +++++++++++++- pyproject.toml | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 8dce9b9..5570765 100644 --- a/poetry.lock +++ b/poetry.lock @@ -23,6 +23,14 @@ docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"] +[[package]] +name = "bech32" +version = "1.2.0" +description = "Reference implementation for Bech32 and segwit addresses." +category = "main" +optional = false +python-versions = ">=3.5" + [[package]] name = "certifi" version = "2021.10.8" @@ -430,7 +438,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "1e701d518de005180db09ea00bc40e2c9d34530eb7e650b5739cce4989c4d8ba" +content-hash = "657559e5922a0e964ed520795655bb55227edf765099deaa3ef9c6fb01446fea" [metadata.files] asgiref = [ @@ -441,6 +449,10 @@ attrs = [ {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, ] +bech32 = [ + {file = "bech32-1.2.0-py3-none-any.whl", hash = "sha256:990dc8e5a5e4feabbdf55207b5315fdd9b73db40be294a19b3752cde9e79d981"}, + {file = "bech32-1.2.0.tar.gz", hash = "sha256:7d6db8214603bd7871fcfa6c0826ef68b85b0abd90fa21c285a9c5e21d2bd899"}, +] certifi = [ {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, diff --git a/pyproject.toml b/pyproject.toml index f24df2d..840d01f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ ecc-pycrypto = {git = "https://github.com/lc6chang/ecc-pycrypto.git", rev = "v1. psycopg2 = "^2.9.3" asgiref = "^3.5.2" pydantic = "^1.10.2" +bech32 = "^1.2.0" [tool.poetry.dev-dependencies]