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
bootstrap Bootstrap a genesis certificate Test only usage
189
+
export Export payload to sign with genesis secret key
190
+
help Print this message or the help of the given subcommand(s)
191
+
import Import payload signed with genesis secret key and create & import a genesis certificate
192
+
```
193
+
194
+
Run 'genesis bootstrap' command in release with default configuration, **only in test mode**.
195
+
This allows the Mithril Aggregator node to bootstrap a `Genesis Certificate`. After this operation, the Mithril Aggregator will be able to produce new snapshots and certificates.
196
+
197
+
```bash
198
+
./mithril-aggregator genesis bootstrap
199
+
```
200
+
201
+
Or with a specific `Genesis Secret Key`, **only in test mode**.
Run 'genesis export' command in release with default configuration.
208
+
This allows the Mithril Aggregator node to export the `Genesis Payload` that needs to be signed (and later reimported) of the `Genesis Certificate`. The signature of the `Genesis Payload` must be done manually with the owner of the `Genesis Secret Key`.
209
+
210
+
```bash
211
+
./mithril-aggregator genesis export
212
+
```
213
+
214
+
Or with a custom export path (to override the default value `./mithril-genesis-payload.txt`)
Run 'genesis import' command in release with default configuration.
221
+
This allows the Mithril Aggregator node to import the signed payload of the `Genesis Certificate` and create it in the store. After this operation, the Mithril Aggregator will be able to produce new snapshots and certificates.
222
+
223
+
```bash
224
+
./mithril-aggregator genesis import
225
+
```
226
+
227
+
Or with a custom export path (to override the default value `./mithril-genesis-signed-payload.txt`)
In the following part of the document, you will need to replace the `./mithril-client` commands with `mithril_client` in order to use the above shell function.
196
+
197
+
:::
198
+
161
199
## Bootstrap a Cardano node from a testnet Mithril snapshot
0 commit comments