hive-nectar 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hive-nectar might be problematic. Click here for more details.
- {hive_nectar-0.1.1.dist-info → hive_nectar-0.1.3.dist-info}/METADATA +1 -2
- {hive_nectar-0.1.1.dist-info → hive_nectar-0.1.3.dist-info}/RECORD +22 -21
- nectar/account.py +86 -35
- nectar/block.py +3 -3
- nectar/blockchain.py +2 -2
- nectar/blockchaininstance.py +11 -1
- nectar/cli.py +292 -266
- nectar/comment.py +19 -16
- nectar/haf.py +380 -0
- nectar/hivesigner.py +9 -0
- nectar/market.py +2 -4
- nectar/memo.py +2 -2
- nectar/nodelist.py +0 -24
- nectar/utils.py +60 -37
- nectar/version.py +1 -1
- nectarapi/version.py +1 -1
- nectarbase/version.py +1 -1
- nectargraphenebase/account.py +1 -2
- nectargraphenebase/version.py +1 -1
- {hive_nectar-0.1.1.dist-info → hive_nectar-0.1.3.dist-info}/WHEEL +0 -0
- {hive_nectar-0.1.1.dist-info → hive_nectar-0.1.3.dist-info}/entry_points.txt +0 -0
- {hive_nectar-0.1.1.dist-info → hive_nectar-0.1.3.dist-info}/licenses/LICENSE.txt +0 -0
nectarapi/version.py
CHANGED
nectarbase/version.py
CHANGED
nectargraphenebase/account.py
CHANGED
|
@@ -501,8 +501,7 @@ class Mnemonic(object):
|
|
|
501
501
|
@classmethod
|
|
502
502
|
def normalize_string(cls, txt):
|
|
503
503
|
"""Normalizes strings"""
|
|
504
|
-
|
|
505
|
-
return unicodedata.normalize("NFKD", utxt)
|
|
504
|
+
return unicodedata.normalize("NFKD", txt)
|
|
506
505
|
|
|
507
506
|
@classmethod
|
|
508
507
|
def to_seed(cls, mnemonic, passphrase=""):
|
nectargraphenebase/version.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|