-
Notifications
You must be signed in to change notification settings - Fork 261
refactor: move wormhole attester to pythnet_sdk legacy module #2353
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
refactor: move wormhole attester to pythnet_sdk legacy module #2353
Conversation
- Move wormhole_attester code to pythnet_sdk/legacy - Update downstream dependencies - Delete original wormhole_attester directory Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
pythnet/pythnet_sdk/Cargo.toml
Outdated
serde_wormhole = {version ="0.1.0", optional = true} | ||
wormhole-vaas-serde = {version = "0.1.0", optional = true} | ||
libsecp256k1 = {version ="0.7.1", optional = true} | ||
rand = {version = "0.8.5", optional = true} | ||
solana-program = {version = ">=1.13.6", optional = true} | ||
solana-program = { version = ">=1.14.6", optional = true } |
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.
Please don't change the versions of these dependencies.
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
@@ -33,18 +33,16 @@ generic-array = { version = "0.14.4" } | |||
hex = "0.4.2" | |||
lazy_static = "1.4.0" | |||
bigint = "4" | |||
pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" } |
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.
Please bump the patch version of this file.
…fier Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
7c91674
to
25fa03e
Compare
@@ -1346,18 +1423,18 @@ dependencies = [ | |||
|
|||
[[package]] | |||
name = "home" | |||
version = "0.5.9" | |||
version = "0.5.11" |
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.
This upgrades a dependency to a version that doesn't build on the pinned toolchain version, so the CI fails. Either revert the dependency update or bump the toolchain version.
3fed4fd
to
6a19007
Compare
Move wormhole_attester code to pythnet_sdk/legacy module
Link to Devin run: https://app.devin.ai/sessions/a17618f07a054fbd8d28c57a4eedf941
Requested by: Jayant