Skip to content

Commit cf1ca49

Browse files
authored
Lazer protocol/expose channel ids (#2605)
* refactor(lazer/sdk/protocol): expose channel_ids publicly * chore(lazer/contracts/solana): bump protocol dep version
1 parent c68c309 commit cf1ca49

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lazer/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lazer/contracts/solana/programs/pyth-lazer-solana-contract/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-solana-contract"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
description = "Pyth Lazer Solana contract and SDK."
66
license = "Apache-2.0"
@@ -19,7 +19,7 @@ no-log-ix-name = []
1919
idl-build = ["anchor-lang/idl-build"]
2020

2121
[dependencies]
22-
pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.7.0" }
22+
pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.7.2" }
2323

2424
anchor-lang = "0.30.1"
2525
bytemuck = "1.20.0"

lazer/sdk/rust/protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-protocol"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition = "2021"
55
description = "Pyth Lazer SDK - protocol types."
66
license = "Apache-2.0"

lazer/sdk/rust/protocol/src/router.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ impl Serialize for Channel {
246246
}
247247
}
248248

249-
mod channel_ids {
249+
pub mod channel_ids {
250250
use super::ChannelId;
251251

252252
pub const FIXED_RATE_1: ChannelId = ChannelId(1);

0 commit comments

Comments
 (0)