{% extends "start.html" %} {% set symbol = session["symbol"]|safe %} {% if not tx %} {% set tx = {} %} {% endif %} {% set type = tx.get("type", -1) %} {% block content %}
{% if type == 0 %}

Send {{ symbol }}{{ tx["amount"]|float / 100000000 }} {%- if tx["vendorField"] -%} 🔗{{ tx["vendorField"] }} {% endif %}

to

{{ tx["recipientId"] }}

cost

{{ symbol }}{{ tx["fee"]|float / 100000000 }}

{% elif type == 1 %}

Add second signature

cost

{{ symbol }}{{ tx["fee"]|float / 100000000 }}

{% elif type == 2 %}

Register as delegate{{ tx["asset"]["delegate"]["username"]}}

cost

{{ symbol }}{{ tx["fee"]|float / 100000000 }}

{% elif type == 3 %} {% else %} {% for key,value in tx.items() %} {% if "sign" not in key %} {% endif %} {% endfor %}
{{ key }}{{ value }}
{% endif %}
{% endblock content %} {% block validate %}

Validate Cancel

{% endblock validate %}