{% extends 'includes/base.html' %} {% block content %} {% set info = wallet.get_wallet_info() %}

{{ wallet.name }}

{{ wallet.description }}
{{ wallet.date }}

Restore Height: {{ wallet.restore_height }}

Address: {{ wallet.address }}

Locked: {{ info['locked_funds'] }}

Received: {{ info['total_received'] }}

Sent: {{ info['total_sent'] }}

Scanned Height: {{ info['scanned_height'] }} ({{ info['blockchain_height'] - info['scanned_height'] }} blocks away from top)

Chain Height: {{ info['blockchain_height'] }}

Spent Outputs: {{ info['spent_outputs'] | length }}

{% endblock %}