Skip to content

Commit a3f6e78

Browse files
committed
chore: update aggregator target in the client-snapshot example
1 parent 41260ab commit a3f6e78

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/client-snapshot/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ cargo run
2828
# Run with your custom network configuration
2929
AGGREGATOR_ENDPOINT=YOUR_AGGREGATOR_ENDPOINT GENESIS_VERIFICATION_KEY=YOUR_GENESIS_VERIFICATION_KEY cargo run
3030

31-
# Example with 'pre-release-preview' network
32-
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
31+
# Example with 'release-preprod' network
32+
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
3333
```
3434

3535
## Links

examples/client-snapshot/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! This example shows how to implement a Mithril client and use its features.
22
//!
3-
//! In this example, the client interacts by default with a real aggregator (`testing-preview`) to get the data.
3+
//! In this example, the client interacts by default with a real aggregator (`release-preprod`) to get the data.
44
//!
55
//! A [FeedbackReceiver] using [indicatif] is used to nicely report the progress to the console.
66
@@ -33,7 +33,7 @@ pub struct Args {
3333
#[clap(
3434
long,
3535
env = "AGGREGATOR_ENDPOINT",
36-
default_value = "https://aggregator.testing-preview.api.mithril.network/aggregator"
36+
default_value = "https://aggregator.release-preprod.api.mithril.network/aggregator"
3737
)]
3838
aggregator_endpoint: String,
3939
}

0 commit comments

Comments
 (0)