Skip to content

Commit c3a69b1

Browse files
committed
chore: update aggregator target in the client-cardano-transaction example
1 parent 44004bf commit c3a69b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/client-cardano-transaction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ cargo build
2525
# Run from the crate directory
2626
AGGREGATOR_ENDPOINT=YOUR_AGGREGATOR_ENDPOINT GENESIS_VERIFICATION_KEY=YOUR_GENESIS_VERIFICATION_KEY cargo run CARDANO_TX_HASH1,CARDANO_TX_HASH2,CARDANO_TX_HASH3
2727

28-
# Example with from 'testing-sanchonet' network
29-
AGGREGATOR_ENDPOINT=https://aggregator.testing-sanchonet.api.mithril.network/aggregator GENESIS_VERIFICATION_KEY=$(curl -s https://raw.githubusercontent.com/input-output-hk/mithril/main/mithril-infra/configuration/testing-sanchonet/genesis.vkey) cargo run db0dfab664045b117375a743a925385a7a3fa6a104f8bd95fa0f748088bcaff0,b457a094439cc5e371474f5758b4ecded3e1b035fe0717e39d78080e6fe169b2
28+
# Example with from 'release-preprod' network
29+
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 0ea207ab71493f012faab0d1f8151eaf931901141c1482ce6e9a501498076484,326b5b67d926937bf19c6113d0957a39f2eae9df94875ce8a96eff5c8521303b
3030
```
3131

3232
## Links

examples/client-cardano-transaction/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub struct Args {
2525
#[clap(
2626
long,
2727
env = "AGGREGATOR_ENDPOINT",
28-
default_value = "https://aggregator.testing-sanchonet.api.mithril.network/aggregator"
28+
default_value = "https://aggregator.release-preprod.api.mithril.network/aggregator"
2929
)]
3030
aggregator_endpoint: String,
3131

0 commit comments

Comments
 (0)