@@ -4,5 +4,12 @@ use axum::{response::IntoResponse, Json};
///
/// TODO: Dynamically generate this list if possible.
pub async fn index() -> impl IntoResponse {
- Json(["/v1/chains", "/v1/chains/:chain_id/revelations/:sequence"])
+ Json([
+ "/",
+ "/live",
+ "/metrics",
+ "/ready",
+ "/v1/chains",
+ "/v1/chains/:chain_id/price-updates/:sequence"
+ ])
}