package emergencykit type pageData struct { Css string Content string } type contentData struct { FirstEncryptedKey string SecondEncryptedKey string VerificationCode string CurrentDate string Descriptors string IconHelp string IconPadlock string } const page = ` Emergency Kit {{.Content}} ` const contentEN = `

Emergency Kit

Verification #{{.VerificationCode}}

{{.IconPadlock}}

Encrypted backup

It can only be decrypted using your Recovery Code.

First key

{{.FirstEncryptedKey}}

Second key

{{.SecondEncryptedKey}}

Created on {{.CurrentDate}}

Instructions

This emergency procedure will help you recover your funds if you are unable to use Muun on your phone.

1

Find your Recovery Code

You wrote this code on paper before creating your Emergency Kit. You’ll need it later.

2

Download the Recovery Tool

Go to github.com/muun/recovery and download the tool on your computer.

3

Recover your funds

Run the Recovery Tool and follow the steps. It will safely transfer your funds to a Bitcoin address that you choose.

{{.IconHelp}}

Need help?

Contact us at support@muun.com. We’re always there to help.

Advanced information

Output descriptors

These descriptors, combined with your keys, specify how to locate your wallet’s funds on the Bitcoin blockchain.

{{ if .Descriptors }} {{.Descriptors}} {{ else }} {{ end }}

Output descriptors are part of a developing standard for Recovery that Muun intends to support and is helping grow. Since the standard is in a very early stage, the list above includes some non-standard elements.

When descriptors reach a more mature stage, you’ll be able to take your funds from one wallet to another with complete independence. Muun believes this freedom is at the core of Bitcoin’s promise, and is working towards that goal.

` const contentES = `

Kit de Emergencia

Verificación #{{.VerificationCode}}

{{.IconPadlock}}

Respaldo encriptado

Sólo puede ser desencriptado con tu Código de Recuperación.

Primera clave

{{.FirstEncryptedKey}}

Segunda clave

{{.SecondEncryptedKey}}

Creado el {{.CurrentDate}}

Instrucciones

Éste procedimiento de emergencia te ayudará a recuperar tus fondos si no puedes usar Muun en tu teléfono.

1

Encuentra tu Código de Recuperación

Lo escribiste en papel antes de crear tu Kit de Emergencia. Lo necesitarás después.

2

Descarga la Herramienta de Recuperación

Ingresa en github.com/muun/recovery y descarga la herramienta en tu computadora..

3

Recupera tus fondos

Ejecuta la Herramienta de Recuperación y sigue los pasos. Transferirá tus fondos a una dirección de Bitcoin que elijas.

{{.IconHelp}}

¿Necesitas ayuda?

Contáctanos en support@muun.com. Siempre estamos disponibles para ayudar.

Información Avanzada

Output descriptors

Estos descriptors, combinados con tus claves, indican cómo encontrar los fondos de tu billetera en la blockchain de Bitcoin.

{{ if .Descriptors }} {{.Descriptors}} {{ else }} {{ end }}

Los output descriptors son parte de un estándar de recuperación actualmente en desarrollo. Muun tiene la intención de soportar este estándar y apoyar su crecimiento. Dado que se encuentra en una etapa muy temprana, la siguiente lista incluye algunos elementos que aún no están estandarizados.

Cuando los descriptors lleguen a una etapa más madura, podrás llevar tus fondos de una billetera a la otra con completa independencia. Muun cree que ésta libertad es central a la promesa de Bitcoin, y está trabajando para que eso suceda.

` const iconHelp = ` ` const iconPadlock = ` `