{% extends "base.html" %} {% block content %}
Wallet - chia keys show
{% if keys.rows|length > 0 %} {% for key in keys.rows %}

{{key.hostname}}

{{ key.details}}
{% endfor %}
{% else %}
No keys found from any farmers. Not added?
Try running 'chia key show' on your farmers to verify.
{% endif %}

NOTE: Machinaris will never display your private key here.

However, you may view it yourself by executing this from within the Docker container.

chia keys show --show-mnemonic-seed

Also, you may view the key file(s) on the host, which you mounted within the Docker container:

{% endblock %}