{% import "bootstrap/wtf.html" as wtf %} {% from "_macros.html" import formatUser %} {% extends "layout.html" %} {% block content %} {% include "_messages.html" %} {% if posting_key %}

Posting Private Key

This private key gives access to voting and posting permission of your account.

{{ posting_key_pub }}
{{ posting_key }}
{% endif %} {% if active_key %}

Active Private Key

This key has access to the funds of your account and can change keys (except for the owner key)

{{ active_key_pub }}
{{ active_key }}
{% endif %} {% if owner_key %}

Owner Private Key

The owner key has SUPERPOWERS over your account. The fact that you have the owner key installed in piston tells us that you are doing something wrong!

{{ owner_key_pub }}
{{ owner_key }}
{% endif %} {% if memo_key %}

Memo Private Key

This key is used for encrypted messaging within the Steem blockchain.

{{ memo_key_pub }}
{{ memo_key }}
{% endif %} {% endblock %}