We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43bdc76 commit ef40aa7Copy full SHA for ef40aa7
pyproject.toml
@@ -80,8 +80,8 @@ optional-dependencies.substrate = [
80
"substrate-interface",
81
]
82
optional-dependencies.tezos = [
83
- "aleph-pytezos==3.13.4",
84
"pynacl",
+ "pytezos-crypto==3.13.4.1",
85
86
urls.Documentation = "https://aleph.im/"
87
urls.Homepage = "https://github.com/aleph-im/aleph-sdk-python"
src/aleph/sdk/chains/tezos.py
@@ -2,9 +2,9 @@
2
from pathlib import Path
3
from typing import Dict, Optional, Union
4
5
-from aleph_pytezos.crypto.key import Key
6
from nacl.public import SealedBox
7
from nacl.signing import SigningKey
+from pytezos_crypto.key import Key
8
9
from .common import BaseAccount, get_fallback_private_key, get_verification_buffer
10
0 commit comments