Skip to content

Commit 41260ab

Browse files
committed
chore: update aggregator target in the client-mithril-stake-distribution example
1 parent 4b19de7 commit 41260ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/client-mithril-stake-distribution/README.md

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

29-
# Example with 'pre-release-preview' network
30-
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
29+
# Example with 'release-preprod' network
30+
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
3131
```
3232

3333
## Links

examples/client-mithril-stake-distribution/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
use anyhow::anyhow;
66
use clap::Parser;
@@ -24,7 +24,7 @@ pub struct Args {
2424
#[clap(
2525
long,
2626
env = "AGGREGATOR_ENDPOINT",
27-
default_value = "https://aggregator.testing-preview.api.mithril.network/aggregator"
27+
default_value = "https://aggregator.release-preprod.api.mithril.network/aggregator"
2828
)]
2929
aggregator_endpoint: String,
3030
}

0 commit comments

Comments
 (0)