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

Select the {{device["name"] }}'s key to use in {{wallet_name}}.

{% else %}

Select the key of devices to use in {{wallet_name}}.

{% endif %}
i

Importing an existing wallet
Check this option to scan the blockchain for existing wallet balance and history. {% if specter.info["pruned"] %} Please Note:
You are using a pruned node.
Wallet history may not fully appear.
{% endif %}

{% if cosigners %}
{% for cosigner in cosigners %} {% endfor %} {% for device in cosigners %}

Signer {{ loop.index }} - {{device["name"]}}

{% set outer_loop = loop %} {% if device["keys"] | length > 0 %} {% for key in device["keys"] %} {% endfor %}
NetworkPurposeDerivationKeyActions
{% if key["xpub"].startswith("xpub") %} {%else%} {%endif%} {% if key["xpub"].startswith("xpub") %} Mainnet {%else%} Testnet {%endif%} {{ purposes[key["type"]] }} {{key["derivation"]}} {{key["original"]}}
{% else %}
Looks like this device doesn't have keys matching this type of wallet.
{% endif %}
{% endfor %} {% if not error %} {% endif %}
{% else %}
{% for key in device["keys"] %} {% endfor %}
NetworkPurposeDerivationKeyActions
{% if key["xpub"].startswith("xpub") %} {%else%} {%endif%} {% if key["xpub"].startswith("xpub") %} Main {%else%} Test {%endif%} {{ purposes[key["type"]] }} {{key["derivation"]}} {{key["original"]}}
{% endif %}
Here we only show {{purposes[wallet_type]}} and General keys. Follow the standards.
{% endblock %}