From 03cb2089fcc18c0c3eac7a00e65c73ca18de80e3 Mon Sep 17 00:00:00 2001 From: Bart Platak Date: Fri, 18 Jul 2025 21:35:01 +0100 Subject: [PATCH] fix(pyth-lazer-agent) Fix the jRPC path --- Cargo.lock | 2 +- apps/pyth-lazer-agent/Cargo.toml | 2 +- apps/pyth-lazer-agent/src/http_server.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 78b82647e3..61999958cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5611,7 +5611,7 @@ dependencies = [ [[package]] name = "pyth-lazer-agent" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "backoff", diff --git a/apps/pyth-lazer-agent/Cargo.toml b/apps/pyth-lazer-agent/Cargo.toml index eef49e5fa3..919bb01d6b 100644 --- a/apps/pyth-lazer-agent/Cargo.toml +++ b/apps/pyth-lazer-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-lazer-agent" -version = "0.2.0" +version = "0.3.0" edition = "2024" [dependencies] diff --git a/apps/pyth-lazer-agent/src/http_server.rs b/apps/pyth-lazer-agent/src/http_server.rs index 8e5b5a2bec..7464ddad77 100644 --- a/apps/pyth-lazer-agent/src/http_server.rs +++ b/apps/pyth-lazer-agent/src/http_server.rs @@ -33,7 +33,7 @@ pub struct RelayerRequest(pub http::Request); const PUBLISHER_WS_URI_V1: &str = "/v1/publisher"; const PUBLISHER_WS_URI_V2: &str = "/v2/publisher"; -const JRPC_WS_URI_V1: &str = "/v1/jprc"; +const JRPC_WS_URI_V1: &str = "/v1/jrpc"; const READINESS_PROBE_PATH: &str = "/ready"; const LIVENESS_PROBE_PATH: &str = "/live";