diff --git a/Cargo.lock b/Cargo.lock index 84102dcb41..97131ea841 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5728,7 +5728,7 @@ dependencies = [ [[package]] name = "pyth-lazer-publisher-sdk" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "fs-err", diff --git a/lazer/publisher_sdk/proto/transaction_envelope.proto b/lazer/publisher_sdk/proto/transaction_envelope.proto index d6c5f1056f..b75a5c4b54 100644 --- a/lazer/publisher_sdk/proto/transaction_envelope.proto +++ b/lazer/publisher_sdk/proto/transaction_envelope.proto @@ -65,4 +65,6 @@ enum RejectReason { InvalidFeedId = 3; MissingFields = 4; InactiveFeedId = 5; + MarketClosed = 6; + Unauthorized = 7; } diff --git a/lazer/publisher_sdk/rust/Cargo.toml b/lazer/publisher_sdk/rust/Cargo.toml index 3ddd1802cf..e5f41dc10b 100644 --- a/lazer/publisher_sdk/rust/Cargo.toml +++ b/lazer/publisher_sdk/rust/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "pyth-lazer-publisher-sdk" -version = "0.4.0" +version = "0.4.1" edition = "2021" description = "Pyth Lazer Publisher SDK types." license = "Apache-2.0" repository = "https://github.com/pyth-network/pyth-crosschain" [dependencies] -pyth-lazer-protocol = { version = "0.10.1", path = "../../sdk/rust/protocol" } +pyth-lazer-protocol = { version = "0.10.2", path = "../../sdk/rust/protocol" } anyhow = "1.0.98" protobuf = "3.7.2" serde_json = "1.0.140" diff --git a/lazer/sdk/rust/client/Cargo.toml b/lazer/sdk/rust/client/Cargo.toml index 35de9978a3..36927a49ed 100644 --- a/lazer/sdk/rust/client/Cargo.toml +++ b/lazer/sdk/rust/client/Cargo.toml @@ -6,7 +6,7 @@ description = "A Rust client for Pyth Lazer" license = "Apache-2.0" [dependencies] -pyth-lazer-protocol = { path = "../protocol", version = "0.10.1" } +pyth-lazer-protocol = { path = "../protocol", version = "0.10.2" } tokio = { version = "1", features = ["full"] } tokio-tungstenite = { version = "0.20", features = ["native-tls"] } futures-util = "0.3"