You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Daedalus runs a full Cardano node locally. On first install, that node must sync the entire Cardano blockchain from genesis, replaying every block. Even on modern hardware, this takes many hours and significant bandwidth, historically a major friction point for users picking up a full-node wallet.
26
+
Daedalus runs a full Cardano node locally. On first install, that node must sync the entire Cardano blockchain from genesis, replaying every block. Even on modern hardware, this usually takes more than 24-36 hours, historically a major friction point for users picking up a full-node wallet.
Copy file name to clipboardExpand all lines: docs/website/versioned_docs/version-maintained/manual/develop/nodes/mithril-aggregator.md
+8-20Lines changed: 8 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -451,20 +451,6 @@ If you wish to delve deeper and access several levels of logs from the Mithril a
451
451
452
452
<CompiledBinariesnode="mithril-aggregator"/>
453
453
454
-
## Build and run the Docker container
455
-
456
-
Build a local Docker image:
457
-
458
-
```bash
459
-
make docker-build
460
-
```
461
-
462
-
Run a local Docker container:
463
-
464
-
```bash
465
-
make docker-run
466
-
```
467
-
468
454
## Subcommands
469
455
470
456
Here are the available subcommands:
@@ -527,7 +513,7 @@ Here is a list of the available parameters for the serve command:
527
513
|`era_reader_adapter_type`|`--era-reader-adapter-type`| - |`ERA_READER_ADAPTER_TYPE`| Era reader adapter type that can be `cardano-chain`, `file` or `bootstrap`. |`bootstrap`| - | - |
528
514
|`era_reader_adapter_params`|`--era-reader-adapter-params`| - |`ERA_READER_ADAPTER_PARAMS`| Era reader adapter params that is an optional JSON encoded parameters structure that is expected depending on the `era_reader_adapter_type` parameter | - | - | - |
529
515
|`ancillary_files_signer_config`| - | - |`ANCILLARY_FILES_SIGNER_CONFIG`| Configuration of the ancillary files signer<br/><br/>Can either be a secret key or a key stored in a Google Cloud Platform KMS account.<br/><br/>**IMPORTANT**: The cryptographic scheme used is ED25519 | - | - secret-key:<br/>`{ "type": "secret-key", "secret_key": "136372c3138312c3138382c3130352c3233312c3135" }`<br/>- Gcp kms:<br/>`{ "type": "gcp-kms", "resource_name": "projects/project_name/locations/_location_name/keyRings/key_ring_name/cryptoKeys/key_name/cryptoKeyVersions/key_version" }`| - |
530
-
|`signed_entity_types`|`--signed-entity-types`| - |`SIGNED_ENTITY_TYPES`| Signed entity types parameters (discriminants names in an ordered comma separated list) | - |`MithrilStakeDistribution,CardanoImmutableFilesFull,CardanoStakeDistribution,CardanoDatabase,CardanoTransactions`| - |
516
+
|`signed_entity_types`|`--signed-entity-types`| - |`SIGNED_ENTITY_TYPES`| Signed entity types parameters (discriminants names in an ordered comma separated list) | - |`MithrilStakeDistribution,CardanoStakeDistribution,CardanoDatabase,CardanoTransactions`| - |
531
517
|`snapshot_compression_algorithm`|`--snapshot-compression-algorithm`| - |`SNAPSHOT_COMPRESSION_ALGORITHM`| Compression algorithm of the snapshot archive |`zstandard`|`gzip` or `zstandard`| - |
532
518
|`zstandard_parameters`| - | - |`ZSTANDARD_PARAMETERS__LEVEL` and `ZSTANDARD_PARAMETERS__NUMBER_OF_WORKERS`| Zstandard specific parameters | - |`{ level: 9, number_of_workers: 4 }`| - |
533
519
|`blockfrost_parameters`| - | - |`BLOCKFROST_PARAMETERS`| Optional parameters to connect to the Blockfrost API. Used to fetch the ticker and name of<br/>the registered stake pools.<br/><br/>`base_url` (optional) allows you to override the default URL, which is otherwise automatically determined from the project ID. | - |`{ "project_id": "preprodWuV1ICdtOWfZYfdcxpZ0tsS1N9rVZomQ" }`<br/>or `{ "project_id": "preprodWuV1ICdtOWfZYfdcxpZ0tsS1N9rVZomQ", "base_url": "https://your-custom-blockfrost-server.io/api/v0/" }`| - |
@@ -582,6 +568,7 @@ Here is a list of the available parameters for the serve command:
|`mithril_era`|`--mithril-era`| - | - | Mithril era to use for the genesis certificate | - | - | - |
585
572
|`data_stores_directory`| - | - |`DATA_STORES_DIRECTORY`| Directory to store aggregator databases | - |`./mithril-aggregator/stores`|:heavy_check_mark:|
586
573
|`cardano_node_socket_path`| - | - |`CARDANO_NODE_SOCKET_PATH`| Path of the socket opened by the Cardano node | - |`/ipc/node.socket`|:heavy_check_mark:|
docker run --rm --name='mithril-client' mithril/mithril-client
499
-
```
500
-
</TabItem>
501
-
</Tabs>
502
-
503
471
## Subcommands
504
472
505
473
Here are the subcommands available:
@@ -861,7 +829,9 @@ This command is not compatible with **Linux ARM environments**.
861
829
|`db_directory`|`--db-directory`| - | - | Path to the Cardano node database directory | - | - |:heavy_check_mark:|
862
830
|`cardano_node_version`|`--cardano-node-version`| - | - | Cardano node version of the Mithril signed snapshot (`latest` and `pre-release` are also supported to download the latest or pre-release distribution). | - | - |:heavy_check_mark:|
0 commit comments