Skip to content

chore(pyth-sdk-solana): add notice and bump to 0.10.6 #136

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

Merged
merged 1 commit into from
Aug 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [

[workspace.dependencies]
pyth-sdk = { path = "./pyth-sdk", version = "0.8.0" }
pyth-sdk-solana = { path = "./pyth-sdk-solana", version = "0.10.4" }
pyth-sdk-solana = { path = "./pyth-sdk-solana", version = "0.10.6" }

solana-program = ">= 1.10"
borsh = "0.10.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ default = []
anchor-lang = "0.28.0"
pyth-sdk = { path = "../../../../pyth-sdk", version = "0.8.0" }
solana-program = ">= 1.10, < 2.0"
pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.10.2" }
pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.10.6" }
2 changes: 1 addition & 1 deletion pyth-sdk-solana/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyth-sdk-solana"
version = "0.10.5"
version = "0.10.6"
authors = ["Pyth Data Foundation"]
workspace = "../"
edition = "2018"
Expand Down
2 changes: 2 additions & 0 deletions pyth-sdk-solana/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Pyth Network Solana SDK

> Notice: This crate contains the internal implementation details of Pyth on Pythnet. If you want to use Pyth prices on Solana, use the [pyth-solana-receiver-sdk](https://crates.io/crates/pyth-solana-receiver-sdk) crate instead.

This crate provides utilities for reading price feeds from the [pyth.network](https://pyth.network/) oracle on the Solana network.
It also includes several [off-chain example programs](examples/).

Expand Down
2 changes: 1 addition & 1 deletion pyth-sdk-solana/test-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test-bpf = []
no-entrypoint = []

[dependencies]
pyth-sdk-solana = { path = "../", version = "0.10.0" }
pyth-sdk-solana = { path = "../", version = "0.10.6" }
solana-program = ">= 1.10"
bytemuck = "1.7.2"
borsh = "0.10.3"
Expand Down
Loading