From 69bce3733955fd2dc8650459cf7769feb6092b0c Mon Sep 17 00:00:00 2001 From: Damien Lachaume <135982616+dlachaume@users.noreply.github.com> Date: Thu, 28 Nov 2024 17:59:17 +0100 Subject: [PATCH] chore: update aggregator target in the `client-snapshot` example --- examples/client-snapshot/README.md | 4 ++-- examples/client-snapshot/src/main.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/client-snapshot/README.md b/examples/client-snapshot/README.md index 0ef77fb4b96..00e6dabf48d 100644 --- a/examples/client-snapshot/README.md +++ b/examples/client-snapshot/README.md @@ -28,8 +28,8 @@ cargo run # Run with your custom network configuration AGGREGATOR_ENDPOINT=YOUR_AGGREGATOR_ENDPOINT GENESIS_VERIFICATION_KEY=YOUR_GENESIS_VERIFICATION_KEY cargo run -# Example with 'pre-release-preview' network -AGGREGATOR_ENDPOINT=https://aggregator.pre-release-preview.api.mithril.network/aggregator GENESIS_VERIFICATION_KEY=$(curl -s https://raw.githubusercontent.com/input-output-hk/mithril/main/mithril-infra/configuration/pre-release-preview/genesis.vkey) cargo run +# Example with 'release-preprod' network +AGGREGATOR_ENDPOINT=https://aggregator.release-preprod.api.mithril.network/aggregator GENESIS_VERIFICATION_KEY=$(curl -s https://raw.githubusercontent.com/input-output-hk/mithril/main/mithril-infra/configuration/release-preprod/genesis.vkey) cargo run ``` ## Links diff --git a/examples/client-snapshot/src/main.rs b/examples/client-snapshot/src/main.rs index 2f39c67258b..3b76b6c0730 100644 --- a/examples/client-snapshot/src/main.rs +++ b/examples/client-snapshot/src/main.rs @@ -1,6 +1,6 @@ //! This example shows how to implement a Mithril client and use its features. //! -//! In this example, the client interacts by default with a real aggregator (`testing-preview`) to get the data. +//! In this example, the client interacts by default with a real aggregator (`release-preprod`) to get the data. //! //! A [FeedbackReceiver] using [indicatif] is used to nicely report the progress to the console. @@ -33,7 +33,7 @@ pub struct Args { #[clap( long, env = "AGGREGATOR_ENDPOINT", - default_value = "https://aggregator.testing-preview.api.mithril.network/aggregator" + default_value = "https://aggregator.release-preprod.api.mithril.network/aggregator" )] aggregator_endpoint: String, }