File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
examples/client-cardano-stake-distribution Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ cargo run
26
26
# Run with your custom network configuration
27
27
AGGREGATOR_ENDPOINT=YOUR_AGGREGATOR_ENDPOINT GENESIS_VERIFICATION_KEY=YOUR_GENESIS_VERIFICATION_KEY cargo run
28
28
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
31
31
```
32
32
33
33
## 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
use anyhow:: anyhow;
6
6
use clap:: Parser ;
@@ -24,7 +24,7 @@ pub struct Args {
24
24
#[ clap(
25
25
long,
26
26
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"
28
28
) ]
29
29
aggregator_endpoint : String ,
30
30
}
You can’t perform that action at this time.
0 commit comments