add bech32

This commit is contained in:
callebtc
2022-09-11 16:28:18 +03:00
parent cb45268547
commit e07a098d9f
2 changed files with 14 additions and 1 deletions

14
poetry.lock generated
View File

@@ -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"},

View File

@@ -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]