-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use latest wallet package #354
Conversation
Add .yml file for label `ignore-for-release-notes`
Fixed sdk-py-wallet version
message = ArbitraryMessage(bytes.fromhex(account.address.hex())) | ||
|
||
signed_message = validator_signer.sign(message).hex() | ||
signed_message = validator_signer.sign(account.address.pubkey).hex() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 here we do not use MessageV1
, correct.
pyproject.toml
Outdated
@@ -27,7 +28,7 @@ dependencies = [ | |||
"requests-cache", | |||
"rich==13.3.4", | |||
"multiversx-sdk-network-providers>=0.11.0", | |||
"multiversx-sdk-wallet>=0.7.0", | |||
"multiversx-sdk-wallet>=0.8.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, we should protect against breaking changes, and add upper bounds, as well. Perhaps for all our libraries?
In requirements.txt, as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done for our libraries
requirements.txt
Outdated
multiversx-sdk-wallet>=0.8.0 | ||
multiversx-sdk-core>=0.6.0,<0.7.0 | ||
multiversx-sdk-network-providers>=0.11.0,<0.12.0 | ||
multiversx-sdk-wallet>=0.8.0,<0.9.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo 0.9.0
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indeed, fixed
Integrated
sdk-py-wallet v0.8.0
into mxpy.