Skip to content

Commit 77c55d8

Browse files
committed
feat: add push_updates method to jrpc lazer protocol
1 parent 01b98f7 commit 77c55d8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

lazer/publisher_sdk/rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "pyth-lazer-publisher-sdk"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Pyth Lazer Publisher SDK types."
66
license = "Apache-2.0"
77
repository = "https://github.com/pyth-network/pyth-crosschain"
88

99
[dependencies]
10-
pyth-lazer-protocol = { version = "0.15.0", path = "../../sdk/rust/protocol" }
10+
pyth-lazer-protocol = { version = "0.15.1", path = "../../sdk/rust/protocol" }
1111
anyhow = "1.0.98"
1212
protobuf = "3.7.2"
1313
serde_json = "1.0.140"

lazer/sdk/rust/protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-protocol"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
edition = "2021"
55
description = "Pyth Lazer SDK - protocol types."
66
license = "Apache-2.0"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ pub struct PythLazerAgentJrpcV1 {
1919
#[serde(rename_all = "snake_case")]
2020
pub enum JrpcCall {
2121
PushUpdate(FeedUpdateParams),
22+
PushUpdates(Vec<FeedUpdateParams>),
2223
GetMetadata(GetMetadataParams),
2324
}
2425

0 commit comments

Comments
 (0)