@@ -168,7 +168,7 @@ Run in release mode with a specific mode:
168
168
Run in release mode with a custom configuration using environment variables:
169
169
170
170
``` bash
171
- GENESIS_VERIFICATION_KEY=$( wget -q -O - ** YOUR_GENESIS_VERIFICATION_KEY** ) NETWORK= ** YOUR_CARDANO_NETWORK ** AGGREGATOR_ENDPOINT=** YOUR_AGGREGATOR_ENDPOINT** ./mithril-client
171
+ GENESIS_VERIFICATION_KEY=$( wget -q -O - ** YOUR_GENESIS_VERIFICATION_KEY** ) AGGREGATOR_ENDPOINT=** YOUR_AGGREGATOR_ENDPOINT** ./mithril-client
172
172
```
173
173
174
174
::: tip
@@ -207,7 +207,6 @@ To prepare the environment variables, retrieve the values from the above **Mithr
207
207
208
208
``` bash
209
209
export MITHRIL_IMAGE_ID=** YOUR_MITHRIL_IMAGE_ID**
210
- export NETWORK=** YOUR_CARDANO_NETWORK**
211
210
export AGGREGATOR_ENDPOINT=** YOUR_AGGREGATOR_ENDPOINT**
212
211
export GENESIS_VERIFICATION_KEY=$( wget -q -O - ** YOUR_GENESIS_VERIFICATION_KEY** )
213
212
export SNAPSHOT_DIGEST=latest
@@ -217,7 +216,6 @@ Here is an example configuration for the `release-preprod` network and the `late
217
216
218
217
``` bash
219
218
export MITHRIL_IMAGE_ID=latest
220
- export NETWORK=preprod
221
219
export AGGREGATOR_ENDPOINT=https://aggregator.release-preprod.api.mithril.network/aggregator
222
220
export GENESIS_VERIFICATION_KEY=$( wget -q -O - https://raw.githubusercontent.com/input-output-hk/mithril/main/mithril-infra/configuration/release-preprod/genesis.vkey)
223
221
export SNAPSHOT_DIGEST=latest
@@ -227,7 +225,7 @@ Proceed by creating a shell function for the Mithril client:
227
225
228
226
``` bash
229
227
mithril_client () {
230
- docker run --rm -e NETWORK= $NETWORK -e GENESIS_VERIFICATION_KEY=$GENESIS_VERIFICATION_KEY -e AGGREGATOR_ENDPOINT=$AGGREGATOR_ENDPOINT --name=' mithril-client' -v $( pwd) :/app/data -u $( id -u) ghcr.io/input-output-hk/mithril-client:$MITHRIL_IMAGE_ID $@
228
+ docker run --rm -e GENESIS_VERIFICATION_KEY=$GENESIS_VERIFICATION_KEY -e AGGREGATOR_ENDPOINT=$AGGREGATOR_ENDPOINT --name=' mithril-client' -v $( pwd) :/app/data -u $( id -u) ghcr.io/input-output-hk/mithril-client:$MITHRIL_IMAGE_ID $@
231
229
}
232
230
```
233
231
@@ -336,7 +334,6 @@ Here is a list of the available parameters:
336
334
| ` verbose ` | ` --verbose ` | ` -v ` | ` VERBOSE ` | Verbosity level | - | Parsed from the number of occurrences: ` -v ` for ` Warning ` , ` -vv ` for ` Info ` , ` -vvv ` for ` Debug ` and ` -vvvv ` for ` Trace ` | :heavy_check_mark : |
337
335
| ` unstable ` | ` --unstable ` | - | - | Enable unstable commands | - | - | - |
338
336
| ` run_mode ` | ` --run-mode ` | - | ` RUN_MODE ` | Runtime mode | ` dev ` | - | :heavy_check_mark : |
339
- | ` network ` | - | - | ` NETWORK ` | Cardano network | - | ` testnet ` or ` mainnet ` or ` devnet ` | :heavy_check_mark : |
340
337
| ` aggregator_endpoint ` | ` --aggregator-endpoint ` | - | ` AGGREGATOR_ENDPOINT ` | Aggregator node endpoint | - | ` https://aggregator.pre-release-preview.api.mithril.network/aggregator ` | :heavy_check_mark : |
341
338
| ` genesis_verification_key ` | - | - | ` GENESIS_VERIFICATION_KEY ` | Genesis verification key | - | - | :heavy_check_mark : |
342
339
| ` log_format_json ` | ` --log-format-json ` | - | - | Enable JSON output for logs | - | - | - |
0 commit comments