Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ dependencies = [
"aleph-message==0.6.1",
"aleph-nuls2==0.1",
"aleph-p2p-client @ git+https://github.com/aleph-im/p2p-service-client-python@cbfebb871db94b2ca580e66104a67cd730c5020c",
"aleph-pytezos==3.13.4",
"asyncpg==0.30",
"base58>=1.0.3",
"coincurve==20",
Expand All @@ -50,6 +49,7 @@ dependencies = [
"pycryptodome==3.21.0", # for libp2p-stubs
"pymultihash==0.8.2", # for libp2p-stubs
"pynacl==1.5",
"pytezos-crypto==3.13.4.1",
"python-dateutil==2.8.2",
"pytz==2023.3",
"pyyaml==6.0.1",
Expand All @@ -62,7 +62,7 @@ dependencies = [
"sqlalchemy-utils==0.38.3",
"substrate-interface==1.7.4",
"types-aiofiles==23.2.0.20240403",
"ujson==5.10.0", # required by aiocache
"ujson==5.10.0", # required by aiocache
"urllib3==2.3",
"uvloop==0.21",
"web3==6.11.2",
Expand Down
2 changes: 1 addition & 1 deletion src/aleph/chains/tezos.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

import aiohttp
from aleph_message.models import Chain
from aleph_pytezos.crypto.key import Key
from configmanager import Config
from nacl.exceptions import BadSignatureError
from pytezos_crypto.key import Key

import aleph.toolkit.json as aleph_json
from aleph.chains.abc import ChainReader, Verifier
Expand Down
Loading