This repository was archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Will add Travis config to pyota-ccurl repo for its own testing.
We cannot use security level 3 until #28 is implemented.
Fixed a bunch of bugs preventing core API commands from working properly. Moved `random` into `TryteString`.
PyOTA now has a normal package structure!
See #51 for more info.
- Moved signature functionality into new `PrivateKey.sign_bundle_at` method. - Split out `BundleValidator` into own module to avoid circular import. - Renamed `iota.transaction.{read,write}` to `base` and `creation`, respectively. - Removed some unit tests that would conflict with multisig (might add back later tho).
marko-k0
pushed a commit
to marko-k0/iota.lib.py
that referenced
this pull request
Jul 28, 2018
Release/1.2.0-beta1
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PyOTA v1.2.0-beta1
Backwards-Incompatible Changes
BaseAddressCache._gen_cache_key
is too fast #51] Removed address caches.requests
library #39] PyOTA now requiresrequests
2.4.1 or later.head_to_tail
parameter inBundle.as_tryte_strings
.head_to_tail=True
would return transactions in reverse order (and mutatis mutandis), which is incorrect. Now it returns the transactions in the correct order.Digest
now requires that its length be a multiple of 81 trytes.iota
symlink at the top level of the package structure, renamedsrc
toiota
.New Features
convert_value_to_standard_unit
(thanks @vynes!).iota-cli
app into env path.examples/repl.py
.pyota-ccurl
extension (Python 3 only, for the moment).Enhancements and Bugfixes
TryteString
(and subclasses) now support creating new instances from unicode values.Seed.random
now generates 81-tryte seeds by default.hash
argument toTransaction.from_tryte_string
#42]Transaction.from_tryte_string
now accepts optionalhash
argument (thanks @alon-e for reporting!).help(iota)
in examples/shell.py #41] Fixed error when invokinghelp(api)
in the REPL script.Address.with_valid_checksum
now also copiesbalance
,key_index
andsecurity_level
.typing
andmock
libraries.transactions
module into its own package.examples/address_generator.py
(thanks @ivoscc!).examples/sandbox.py
.