File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ cargo run
28
28
# Run with your custom network configuration
29
29
AGGREGATOR_ENDPOINT=YOUR_AGGREGATOR_ENDPOINT GENESIS_VERIFICATION_KEY=YOUR_GENESIS_VERIFICATION_KEY cargo run
30
30
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
33
33
```
34
34
35
35
## Links
Original file line number Diff line number Diff line change 1
1
//! This example shows how to implement a Mithril client and use its features.
2
2
//!
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.
4
4
//!
5
5
//! A [FeedbackReceiver] using [indicatif] is used to nicely report the progress to the console.
6
6
@@ -33,7 +33,7 @@ pub struct Args {
33
33
#[ clap(
34
34
long,
35
35
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"
37
37
) ]
38
38
aggregator_endpoint : String ,
39
39
}
You can’t perform that action at this time.
0 commit comments