{% extends "base.html" %} {% block main %}

{{wallet.name}}

{% set active_menuitem = "settings" %} {% include "includes/wallet_menu.html" %}

Keypool control

Currently watching {{wallet["keypool"]}} receiving and {{wallet["change_keypool"]}} change addresses.
Watch more addresses
{% if wallet.rescan_progress %}
Rescanning blochchain: {{"%.2f" % (wallet.rescan_progress*100)}}%
{% else %} Rescan blockchain from block:
{% if specter.info.chain == "main" %} {% set startblock=(481824 if not specter.info['pruned'] or specter.info['pruneheight'] < 481824 else specter.info['pruneheight']) %} {% else %} {% set startblock=(0 if not specter.info['pruned'] else specter.info['pruneheight']) %} {% endif %}
{% if specter.info['pruned'] %}
Note: You are using a pruned node. Rescan is limited by the pruned height to block: {{specter.info['pruneheight']}}
{% endif %}
481824 was the first Segwit block.
{% endif %}

Cache


Import / Export

Import this wallet to the device by scanning QR code below.
{% if wallet.is_multisig %}
{% if cc_file %} Download ColdCard file {% else %}
Coldcard file is unavailable - we don't have enough information to generate it
{% endif %}
{% endif %}
{{qr_text}}

Delete Wallet

{% endblock %}