add support multisig

This commit is contained in:
ncoelho 2021-04-02 00:09:46 +02:00
parent 701561a2ed
commit 8ff6539d7e
81 changed files with 3836 additions and 1156 deletions

13
_data/boxes-docs.yaml Normal file
View File

@ -0,0 +1,13 @@
# Boxes include navigation
- title: Bitcoin Wallets
desc: How to create and recover wallets. Information about Transactions.
url: /docs/create-bitcoin-wallet/
- title: Cold Storage
desc: Connect to your favourite device and learn how to do transactions offline.
url: /docs/coldcard/
- title: Multisig Vaults
desc: Understand Multisig, its complexities and how to better handle it for yourself.
url: /docs/multisig-wallet/

View File

@ -1,6 +1,5 @@
- title: Help section
docs:
- intro
- create-bitcoin-wallet
- import-wallet
- create-lightning-wallet
@ -12,12 +11,17 @@
- title: Cold storage
docs:
- sign-offline
- multisig-spend
- coldcard
- coldcard-dropbox
- coldcard-watch
- cobo-vault
- title: Multisig
docs:
- multisig-wallet
- create-multisig-wallet
- multisig-spend
- title: Local Trader
docs:
- local-trader

View File

@ -48,7 +48,7 @@ This is a single address wallet, in case you want a wallet with just one address
#### Manual entropy
BlueWallet supports manual entropy. See [here](./manual-entropy.md) for more details.
BlueWallet supports manual entropy. See [here](../manual-entropy/) for more details.
When you're ready, you can click on "Create" to make your new wallet.
</div>

View File

@ -0,0 +1,11 @@
---
title: How to create a Vault
tags: [usage, featured]
---
<div class="uk-container{{container}}">
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/UszgwtbkNmg?autoplay=0&amp;showinfo=0&amp;rel=0&amp;modestbranding=1&amp;playsinline=1" frameborder="0" allowfullscreen uk-responsive uk-video="automute: true"></iframe>
</div>
</div>

39
_docs/multisig-wallet.md Normal file
View File

@ -0,0 +1,39 @@
---
title: Multisig Vault General
tags: [usage, featured]
---
A Multisig Vault is a wallet with multiple keys. This allows you to exponentially increse security (if used correctly) or for shared custody as well. Shared custody is When you want to share a wallet with a group of people.
Multiple devices are advised. The Vault will work with other BlueWallet apps and PSBT compatible wallets, like Electrum, Specter, Coldcard, Cobo vault, etc. It is advided that you use multiple devices, and considered store these devices in multiple locations if you see it is fit for your use case.
{% include image.html img="tip2.png" alt="Multisig bitcoin wallet" %}
## Editing Keys
You can create all Vault keys in the same device, and remove or edit these keys later. Having all keys on the same device has the equivalent security of a regular Bitcoin wallet. As advise above, please consider multiple devices from the start.
{% include image.html img="tip3.png" alt="Multisig bitcoin wallet" %}
## Vault Backups
On the wallet options you will find your Vault backup and watch-only (coordination) backup. This backup is like a map to your wallet. It is essential for wallet recover in case you lose one of your seeds.
{% include image.html img="tip4.png" alt="Multisig bitcoin wallet" %}
## Importing Vaults
To import a Multisig, use your multisig backup file and use the import feature. If you only have extended keys and seeds, you can use the individual import fields on the Add Vault creation option.
{% include image.html img="tip5.png" alt="Multisig bitcoin wallet" %}
## Advanced options
By default BlueWallet will generate a 2of3 Vault. To create a different quorum or to change the address type, activate the advanced options in the Settings.

View File

@ -1,5 +1,5 @@
---
title: Recover your wallet
title: Recover on another wallet
subtitle: Recover your wallet on external software
tags: [usage, featured]
---

View File

@ -7,5 +7,5 @@ To recover or import a wallet you go to the import feature under `add wallet`
For instance: clock boat sunshine
In case you have doubts on any word, [here's the list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) of words:
In case you have doubts on any word, [here's the list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) of words

View File

@ -3,11 +3,7 @@ title: Refill is taking too much time
categories: [problems]
---
When this happens is usually because the Lightning wallet is not updating automatically for some reason.
To refill a wallet, 3 confirmations are needed for the transaction to clear. The 3 confirmations time will depend on the transaction fee added, bigger is the transaction fee, faster the Bitcoin Network will process the transaction.
The wallet provides a way to manually refresh. Go inside the wallet you want to update and do a "pull-to-refresh", drag the view down to activate the refresh mechanism.
The wallet also provides a way to manually refresh. Go inside the wallet you want to update and do a "pull-to-refresh", drag the view down to activate the refresh mechanism.
<br />
<center>
<img src="../../uploads/balance.gif">
</center>

48
_includes/boxes-docs.html Normal file
View File

@ -0,0 +1,48 @@
{% if include.columns %}
{% assign columns = include.columns %}
{% if columns == '1' %}
{% assign container = ' uk-container-xsmall' %}
{% elsif columns == '2' %}
{% assign container = ' uk-container-small' %}
{% else %}
{% assign container = '' %}
{% endif %}
{% else %}
{% assign columns = 3 %}
{% assign container = '' %}
{% endif %}
<div class="uk-section">
<div class="uk-container{{container}}">
<div class="uk-child-width-1-{{ columns }}@m uk-grid-match uk-text-center uk-margin-medium-top uk-grid-small" data-uk-grid>
{% for item in site.data.boxes-docs %}
<div>
<div class="uk-card uk-card-default uk-box-shadow-medium uk-card-hover uk-card-body uk-inline border-radius-medium border-light">
{% if item.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = '' | relative_url %}
<a class="uk-position-cover" href="{{ domain }}{{ item.url }}" {% if item.url contains 'http' %}{% endif %}></a>
{% endif %}
{% if item.icon %}
<span data-uk-icon="icon: {{ item.icon }}; ratio: 3.4" class="">
<img src="{{ site.uploads | absolute_url }}/{{ item.icon }}.svg" alt="download bitcoin wallet for ios">
</span>
{% endif %}
{% if item.title %}
<h3 class="uk-card-title uk-margin">{{ item.title }}</h3>
{% endif %}
{% if item.desc %}
<p>{{ item.desc }}</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>

View File

@ -2,4 +2,20 @@
layout: default
---
{% if page.width == 'expand' %}
{{ content }}
{% else %}
<div class="uk-section">
<div class="uk-container{% if page.width %} uk-container-{{page.width}}{% endif %}">
<article class="uk-article">
<div class="article-content link-primary">
{{ content }}
</div>
</article>
</div>
</div>
{% endif %}

View File

@ -6,7 +6,8 @@ layout: default
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
{% if page.sidebar == 'nosidebar' %}
{% else %}
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
{% for section in site.data.navigation_docs %}
@ -21,6 +22,7 @@ layout: default
{% endfor %}
</div>
</div>
{% endif %}
<div class="uk-width-1-1 uk-width-expand@m">
@ -33,16 +35,17 @@ layout: default
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
{% endif %}
{% endif %}
{% if page.sidebar == 'nosidebar' %}
{% else %}
<h1 class="uk-article-title uk-margin-remove-top">{{ page.title | escape }}</h1>
{% endif %}
{% if page.subtitle %}<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">{{ page.subtitle }}</p>{% endif %}
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
{% include post-meta.html %}
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
{{ content }}
{% if site.share.doc %}
{% include share.html %}

View File

@ -235,10 +235,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -255,7 +251,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -276,10 +272,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -296,6 +288,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -478,10 +478,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -498,7 +494,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -519,10 +515,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -539,6 +531,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -454,10 +454,6 @@ Plug your own Bitcoin Core node for a maximum sovereignty.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -474,7 +470,7 @@ Plug your own Bitcoin Core node for a maximum sovereignty.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -495,10 +491,6 @@ Plug your own Bitcoin Core node for a maximum sovereignty.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -515,6 +507,23 @@ Plug your own Bitcoin Core node for a maximum sovereignty.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -413,10 +413,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -433,7 +429,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -454,10 +450,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -474,6 +466,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -430,10 +430,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -450,7 +446,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -471,10 +467,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -491,6 +483,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -413,10 +413,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -433,7 +429,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -454,10 +450,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -474,6 +466,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -391,10 +391,6 @@ undefined</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -411,7 +407,7 @@ undefined</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -432,10 +428,6 @@ undefined</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -452,6 +444,23 @@ undefined</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -440,10 +440,6 @@ undefined</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -460,7 +456,7 @@ undefined</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -481,10 +477,6 @@ undefined</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -501,6 +493,23 @@ undefined</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -387,10 +387,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -407,7 +403,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -428,10 +424,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -448,6 +440,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -432,10 +432,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -452,7 +448,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -473,10 +469,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -493,6 +485,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -439,10 +439,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -459,7 +455,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -480,10 +476,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -500,6 +492,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -449,10 +449,6 @@ undefined</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -469,7 +465,7 @@ undefined</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -490,10 +486,6 @@ undefined</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -510,6 +502,23 @@ undefined</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -305,10 +305,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -325,7 +321,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -346,10 +342,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -366,6 +358,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -363,10 +363,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -383,7 +379,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -404,10 +400,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -424,6 +416,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -486,10 +486,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -506,7 +502,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -527,10 +523,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -547,6 +539,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -588,10 +588,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -608,7 +604,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -629,10 +625,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -649,6 +641,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -406,10 +406,6 @@ Further improving system, and allowing you to compare your results against wide
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -426,7 +422,7 @@ Further improving system, and allowing you to compare your results against wide
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -447,10 +443,6 @@ Further improving system, and allowing you to compare your results against wide
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -467,6 +459,23 @@ Further improving system, and allowing you to compare your results against wide
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -333,10 +333,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -353,7 +349,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -374,10 +370,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -394,6 +386,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -287,10 +287,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -307,7 +303,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -328,10 +324,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -348,6 +340,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -293,10 +293,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -313,7 +309,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -334,10 +330,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -354,6 +346,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/backup-wallet/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Backup/export a wallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/backup-wallet/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/backup-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To backup or export your wallet is pretty simple. This backup is the “key”, usually a mnemonic (set of 12 or 24 words) or just a “text” that will give you access to your wallet if you lose your device, uninstall the app, etc. In short, if something wrong happens and you want/need to get access to your wallet again.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Backup/export a wallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/backup-wallet/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/backup-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To backup or export your wallet is pretty simple. This backup is the “key”, usually a mnemonic (set of 12 or 24 words) or just a “text” that will give you access to your wallet if you lose your device, uninstall the app, etc. In short, if something wrong happens and you want/need to get access to your wallet again.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Backup/export a wallet</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Access to private keys and recover of wallets</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>To backup or export your wallet is pretty simple. This backup is the “key”, usually a mnemonic (set of 12 or 24 words) or just a “text” that will give you access to your wallet if you lose your device, uninstall the app, etc. In short, if something wrong happens and you want/need to get access to your wallet again.</p>
<h3>Things to know</h3>
@ -394,9 +404,6 @@
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
<div>
@ -413,7 +420,7 @@
<h5>Recover your wallet</h5>
<h5>Recover on another wallet</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/recover-wallet/">Next &rarr;</a></div>
</div>
@ -541,10 +548,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -561,7 +564,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -582,10 +585,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -602,6 +601,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/batching/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Send to many or Batching","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/batching/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/batching/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"This feature allows you to send multiple transactions in one batch. This is useful if you have two or more transactions that you want to make and spend less fees. All the transaction will be batched in a single transaction fee, making it less expensive for the sender and also they will spend less space on the blockchain. So a win-win for the bitcoin network and for the users.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Send to many or Batching","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/batching/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/batching/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"This feature allows you to send multiple transactions in one batch. This is useful if you have two or more transactions that you want to make and spend less fees. All the transaction will be batched in a single transaction fee, making it less expensive for the sender and also they will spend less space on the blockchain. So a win-win for the bitcoin network and for the users.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Send to many or Batching</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>This feature allows you to send multiple transactions in one batch. This is useful if you have two or more transactions that you want to make and spend less fees. All the transaction will be batched in a single transaction fee, making it less expensive for the sender and also they will spend less space on the blockchain. So a win-win for the bitcoin network and for the users.</p>
<div class="uk-section">
@ -395,9 +405,6 @@
@ -546,10 +553,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -566,7 +569,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -587,10 +590,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -607,6 +606,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/cobo-vault/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Cobo Vault","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/cobo-vault/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/cobo-vault/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet features Cobo Vault hardware wallet support.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Cobo Vault","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/cobo-vault/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/cobo-vault/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet features Cobo Vault hardware wallet support.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Cobo Vault</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Air-gapped offline transaction with BlueWallet and Cobo Vault</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>BlueWallet features Cobo Vault hardware wallet support.</p>
<p>With one of the first of its kind Air-gapped, PSBT with animated QR codes support.</p>
@ -405,12 +415,6 @@
@ -434,8 +438,8 @@
<h5>Use the Local Trader</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/local-trader/">Next &rarr;</a></div>
<h5>Multisig Vault General</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/multisig-wallet/">Next &rarr;</a></div>
</div>
</div>
@ -562,10 +566,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -582,7 +582,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -603,10 +603,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -623,6 +619,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/coldcard-dropbox/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Coldcard - Cloud","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/coldcard-dropbox/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard-dropbox/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Coldcard - Cloud","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/coldcard-dropbox/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard-dropbox/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Coldcard - Cloud</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Coldcard with Bluewallet - Using Dropbox</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<div class="uk-container">
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/hF2MyDB0nno?autoplay=0&amp;showinfo=0&amp;rel=0&amp;modestbranding=1&amp;playsinline=1" frameborder="0" allowfullscreen="" uk-responsive="" uk-video="automute: true"></iframe>
@ -411,12 +421,6 @@
@ -610,6 +614,24 @@
@ -661,10 +683,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -681,7 +699,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -702,10 +720,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -722,6 +736,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/coldcard-watch/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Coldcard - Watch-only","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/coldcard-watch/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard-watch/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Coldcard - Watch-only","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/coldcard-watch/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard-watch/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Coldcard - Watch-only</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">See your real time Bitcoin balance stored on your ColdCard hardware wallet anytime from your BlueWallet app</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<div class="uk-container">
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/xWeQwOyEDhI?autoplay=0&amp;showinfo=0&amp;rel=0&amp;modestbranding=1&amp;playsinline=1" frameborder="0" allowfullscreen="" uk-responsive="" uk-video="automute: true"></iframe>
@ -399,12 +409,6 @@
@ -598,6 +602,24 @@
@ -649,10 +671,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -669,7 +687,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -690,10 +708,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -710,6 +724,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/coldcard/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Coldcard with Bluewallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/coldcard/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Coldcard with Bluewallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/coldcard/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/coldcard/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class="uk-active"><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Coldcard with Bluewallet</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Using a Lightning SD card</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<div class="uk-container">
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/7pBhTRiwQL4?autoplay=0&amp;showinfo=0&amp;rel=0&amp;modestbranding=1&amp;playsinline=1" frameborder="0" allowfullscreen="" uk-responsive="" uk-video="automute: true"></iframe>
@ -414,12 +424,6 @@
@ -434,8 +438,8 @@
<h5>Vaults - spending</h5>
<div><a class="remove-underline hvr-back" href="/docs/multisig-spend/">&larr; Previous</a></div>
<h5>Sign a transaction offline</h5>
<div><a class="remove-underline hvr-back" href="/docs/sign-offline/">&larr; Previous</a></div>
</div>
<div>
@ -544,10 +548,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -564,7 +564,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -585,10 +585,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class="uk-active"><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -605,6 +601,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/create-bitcoin-wallet/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Create a Bitcoin wallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/create-bitcoin-wallet/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/create-bitcoin-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Creating a Bitcoin wallet on BlueWallet is easy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Create a Bitcoin wallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/create-bitcoin-wallet/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/create-bitcoin-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Creating a Bitcoin wallet on BlueWallet is easy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class="uk-active"><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Create a Bitcoin wallet</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>Creating a Bitcoin wallet on BlueWallet is easy.</p>
<p>You can either click on the “Add now” button or the “+” icon in the top right corner</p>
@ -426,10 +436,9 @@ youll see more options for creating the wallet.</p>
<h4>Manual entropy</h4>
<p>BlueWallet supports manual entropy. See <a href="./manual-entropy.md">here</a> for more details.</p>
<p>BlueWallet supports manual entropy. See <a href="../manual-entropy/">here</a> for more details.</p>
<p>When youre ready, you can click on “Create” to make your new wallet.</p>
</div>
@ -444,18 +453,10 @@ youll see more options for creating the wallet.</p>
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
<div>
<h5>Help and documentation</h5>
<div><a class="remove-underline hvr-back" href="/docs/intro/">&larr; Previous</a></div>
</div>
<div>
@ -582,10 +583,6 @@ youll see more options for creating the wallet.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class="uk-active"><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -602,7 +599,7 @@ youll see more options for creating the wallet.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -623,10 +620,6 @@ youll see more options for creating the wallet.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -643,6 +636,23 @@ youll see more options for creating the wallet.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/create-lightning-wallet/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Create a Lightning wallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/create-lightning-wallet/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/create-lightning-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Creating a Lightning wallet on BlueWallet is easy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Create a Lightning wallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/create-lightning-wallet/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/create-lightning-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Creating a Lightning wallet on BlueWallet is easy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Create a Lightning wallet</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>Creating a Lightning wallet on BlueWallet is easy.</p>
<p>You can either click on the “Add now” button or the “+” icon in the top right corner</p>
@ -437,9 +447,6 @@ youll see one more option for creating the wallet.</p>
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
<div>
@ -553,6 +560,15 @@ youll see one more option for creating the wallet.</p>
@ -635,6 +651,15 @@ youll see one more option for creating the wallet.</p>
@ -677,10 +702,6 @@ youll see one more option for creating the wallet.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -697,7 +718,7 @@ youll see one more option for creating the wallet.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -718,10 +739,6 @@ youll see one more option for creating the wallet.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -738,6 +755,23 @@ youll see one more option for creating the wallet.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

File diff suppressed because one or more lines are too long

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/import-wallet/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Import a wallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/import-wallet/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/import-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Instead of creating a new wallet, you can chose to import a wallet from another source or a wallet that youve previously created on BlueWallet.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Import a wallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/import-wallet/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/import-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Instead of creating a new wallet, you can chose to import a wallet from another source or a wallet that youve previously created on BlueWallet.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Import a wallet</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>Instead of creating a new wallet, you can chose to import a wallet from another source or a wallet that youve previously created on BlueWallet.</p>
<p>Click on “Import wallet” to open the import screen.</p>
@ -403,9 +413,6 @@
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
<div>
@ -541,10 +548,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -561,7 +564,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -582,10 +585,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -602,6 +601,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -218,8 +218,47 @@
</nav>
</div>
<div class="uk-section uk-padding-remove">
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="uk-width-1-1 uk-width-expand@m">
<article class="uk-article">
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
<img class="uk-border-circle avatar" src="https://bluewallet.io/uploads/nuno.png" alt="Nuno Coelho">
<div>
Written by <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Nuno Coelho</span></span><br>
<time datetime="" itemprop="datePublished">
<div class="uk-section section-hero uk-position-relative" data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; repeat: true">
</time>
</div>
</div>
-->
<div class="article-content">
<div class="uk-section section-hero uk-position-relative" data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; repeat: true">
<div class="uk-container uk-container-small">
<h1 class="uk-heading-primary uk-text-center uk-margin-remove-top">Can we help? 👇</h1>
<div class="hero-search">
@ -251,6 +290,75 @@
</div>
</div>
<div class="uk-section">
<div class="uk-container">
<div class="uk-child-width-1-3@m uk-grid-match uk-text-center uk-margin-medium-top uk-grid-small" data-uk-grid="">
<div>
<div class="uk-card uk-card-default uk-box-shadow-medium uk-card-hover uk-card-body uk-inline border-radius-medium border-light">
<a class="uk-position-cover" href="/docs/create-bitcoin-wallet/"></a>
<h3 class="uk-card-title uk-margin">Bitcoin Wallets</h3>
<p>How to create and recover wallets. Information about Transactions.</p>
</div>
</div>
<div>
<div class="uk-card uk-card-default uk-box-shadow-medium uk-card-hover uk-card-body uk-inline border-radius-medium border-light">
<a class="uk-position-cover" href="/docs/coldcard/"></a>
<h3 class="uk-card-title uk-margin">Cold Storage</h3>
<p>Connect to your favourite device and learn how to do transactions offline.</p>
</div>
</div>
<div>
<div class="uk-card uk-card-default uk-box-shadow-medium uk-card-hover uk-card-body uk-inline border-radius-medium border-light">
<a class="uk-position-cover" href="/docs/multisig-wallet/"></a>
<h3 class="uk-card-title uk-margin">Multisig Vaults</h3>
<p>Understand Multisig, its complexities and how to better handle it for yourself.</p>
</div>
</div>
</div>
</div>
</div>
<div class="uk-section">
<div class="uk-container uk-container-small">
@ -272,7 +380,7 @@
<p>For instance: clock boat sunshine</p>
<p>In case you have doubts on any word, <a href="https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt">heres the list</a> of words:</p>
<p>In case you have doubts on any word, <a href="https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt">heres the list</a> of words</p>
</div>
</li>
@ -299,14 +407,10 @@
<li>
<a class="lightbox uk-accordion-title uk-box-shadow-hover-small" href="#">Refill is taking too much time</a>
<div class="article-content uk-accordion-content link-primary"><p>When this happens is usually because the Lightning wallet is not updating automatically for some reason.</p>
<div class="article-content uk-accordion-content link-primary"><p>To refill a wallet, 3 confirmations are needed for the transaction to clear. The 3 confirmations time will depend on the transaction fee added, bigger is the transaction fee, faster the Bitcoin Network will process the transaction.</p>
<p>The wallet provides a way to manually refresh. Go inside the wallet you want to update and do a “pull-to-refresh”, drag the view down to activate the refresh mechanism.</p>
<p>The wallet also provides a way to manually refresh. Go inside the wallet you want to update and do a “pull-to-refresh”, drag the view down to activate the refresh mechanism.</p>
<p><br /></p>
<center>
<img src="../../uploads/balance.gif" />
</center>
</div>
</li>
@ -331,73 +435,286 @@
</div>
</div>
<div class="uk-section section-featured">
<div class="uk-container uk-container-small">
</div>
<h2 class="uk-h2">Popular Articles</h2>
<p class="uk-text-lead">Selected featured articles to get you started fast with BlueWallet</p>
<ul class="uk-list uk-list-large uk-margin-medium-top">
<li><a class="uk-box-shadow-hover-small" href="/docs/backup-wallet/">Backup/export a wallet</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/import-wallet/">Import a wallet</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/recover-wallet/">Recover your wallet</a></li>
</ul>
<hr class="uk-margin-medium">
<hr class="uk-margin-medium">
<!--
<div class="uk-margin-large-top">
<h3>Related Docs</h3>
<ul class="uk-list link-secondary">
</ul>
</div>
-->
</article>
<script>
// Table of contents scroll to
UIkit.scroll('#markdown-toc a', {
duration: 400,
offset: 120
});
</script>
</div>
</div>
</div>
<div id="offcanvas-docs" data-uk-offcanvas="overlay: true">
<div class="uk-offcanvas-bar">
@ -409,10 +726,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -429,7 +742,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -450,10 +763,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -470,6 +779,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -582,176 +908,9 @@
<div class="uk-section-large uk-padding-remove-horizontal">
<div class="uk-container">
<h3 class="uk-h3">Get the updates directly on your email</h3>
<div class="uk-child-width-expand@s" uk-grid>
<div>
<div class="newsletter uk-box-shadow-medium uk-card-hover border-radius-medium">
<form action="https://bluewallet.us17.list-manage.com/subscribe/post-json?u=6733da37320f82a3dbe84a9cc&amp;id=2474ce3b66&c=?" method="get" id="mc-embedded-subscribe-form" name="newslettermail" class="validate">
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="your email here..." required>
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input type="text" name="b_e44c1f194bec93e238615469e_f6f826e769" tabindex="-1" value="">
</div>
<input type="submit" value="subscribe" name="subscribe" id="mc-embedded-subscribe" class="mc-button">
<div id="subscribe-result">
</div>
</form>
</div>
</div>
<div class="uk-margin-auto-vertical">
<div class="uk-child-width-expand@s socialinks" uk-grid>
<div class="uk-first-column uk-text-center">
<a href="https://twitter.com/@bluewalletio" class="uk-icon-link uk-icon" target="_blank">
<img src="https://bluewallet.io/uploads//twitter.svg" alt="twitter bluewallet">
Twitter
</a>
</div>
<div class="uk-text-center">
<a href="https://t.me/bluewallet" class="uk-icon-link uk-icon" target="_blank">
<img src="https://bluewallet.io/uploads//telegram.svg" alt="telegram bluewallet">
Telegram
</a>
</div>
<div class="uk-text-center">
<a href="https://github.com/bluewallet/bluewallet" class="uk-icon-link uk-icon" target="_blank">
<img src="https://bluewallet.io/uploads//github.svg" alt="github bluewallet">
Github
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="uk-section uk-padding-large uk-padding-remove-horizontal uk-padding-remove-bottom">
<div class="uk-container">
<div class="uk-child-width-expand@s" uk-grid>
<div class="uk-margin-auto-vertical">
<p class="uk-padding uk-padding-remove-horizontal uk-text-lead uk-text-left@m uk-text-center@s"><strong>BlueWallet</strong> was forged in the ashes of the 2017 fork wars, in order to bring a powerful and Bitcoin only wallet for the community.</p>
</div>
<div class="uk-margin-auto-vertical">
<div class="" uk-grid>
<div class="uk-text-left@m uk-text-center uk-width-auto@m uk-width-1-2@s">
<a href="https://itunes.apple.com/app/bluewallet-bitcoin-wallet/id1376878040" target="_blank">
<img src="https://bluewallet.io/uploads//app-store-badge-blue.svg" alt="download bitcoin wallet for ios">
</a>
</div>
<div class="uk-padding-remove-left@m uk-text-center uk-text-left@m uk-width-auto@m uk-width-1-2@s">
<a href="https://play.google.com/store/apps/details?id=io.bluewallet.bluewallet" target="_blank">
<img src="https://bluewallet.io/uploads//play-store-badge-blue.svg" alt="download bitcoin wallet for android">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="uk-section uk-text-center uk-text-muted">
<div class="uk-container">
<div class="uk-padding-small uk-padding-remove-horizontal uk-padding-remove-top">
<h4 class="uk-h4 uk-text-left">Products</h4>
<ul class="uk-subnav">
<li><a href="/bitcoin-wallet" >Bitcoin Wallet</a></li>
<li><a href="/desktop-bitcoin-wallet" >Desktop App</a></li>
<li><a href="/local-trader/" >Local Trader</a></li>
<li><a href="/lndhub/" >LNDHub</a></li>
<li><a href="/watch-app/" >Apple Watch</a></li>
</ul>
</div>
<h4 class="uk-h4 uk-text-left">© BlueWallet</h4>
<div class="uk-child-width-1-2@m uk-grid-match uk-margin-remove-vertical" data-uk-grid>
<div>
<div class="uk-padding-remove-horizontal uk-margin-remove-vertical">
<ul class="uk-subnav uk-margin-remove-vertical">
<li><a href="/tos/" >Terms of use</a></li>
<li><a href="/privacy/" >Privacy policy</a></li>
<li><a href="/about/" >Contact</a></li>
<li><a href="/blog/" >Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/intro/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Help and documentation","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/intro/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/intro/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Contact support for any doubts bluewallet@bluewallet.io","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Help and documentation","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/intro/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/intro/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Contact support for any doubts bluewallet@bluewallet.io","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class="uk-active"><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Help and documentation</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p class="uk-text-lead">Contact support for any doubts <span class="uk-label">bluewallet@bluewallet.io</span></p>
<div class="uk-section">
@ -380,7 +390,7 @@
For instance: clock boat sunshine
In case you have doubts on any word, [here's the list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) of words:
In case you have doubts on any word, [here's the list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) of words
</div>
</li>
@ -407,14 +417,11 @@ The wallet provides a way to manually refresh. Go inside the wallet you want to
<li>
<a class="lightbox uk-accordion-title uk-box-shadow-hover-small" href="#">Refill is taking too much time</a>
<div class="article-content uk-accordion-content link-primary">When this happens is usually because the Lightning wallet is not updating automatically for some reason.
<div class="article-content uk-accordion-content link-primary">To refill a wallet, 3 confirmations are needed for the transaction to clear. The 3 confirmations time will depend on the transaction fee added, bigger is the transaction fee, faster the Bitcoin Network will process the transaction.
The wallet provides a way to manually refresh. Go inside the wallet you want to update and do a "pull-to-refresh", drag the view down to activate the refresh mechanism.
The wallet also provides a way to manually refresh. Go inside the wallet you want to update and do a "pull-to-refresh", drag the view down to activate the refresh mechanism.
<br />
<center>
<img src="../../uploads/balance.gif" />
</center></div>
</div>
</li>
<li>
@ -449,24 +456,61 @@ This is the worst known case at the moment on the network.</div>
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
<div>
</div>
<div>
<h5>Create a Bitcoin wallet</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/create-bitcoin-wallet/">Next &rarr;</a></div>
</div>
</div>
</div>
<hr class="uk-margin-medium">
<!--
@ -606,6 +650,15 @@ This is the worst known case at the moment on the network.</div>
@ -639,6 +692,15 @@ This is the worst known case at the moment on the network.</div>
@ -681,10 +743,6 @@ This is the worst known case at the moment on the network.</div>
<li class="uk-active"><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -701,7 +759,7 @@ This is the worst known case at the moment on the network.</div>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -722,10 +780,6 @@ This is the worst known case at the moment on the network.</div>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -742,6 +796,23 @@ This is the worst known case at the moment on the network.</div>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/lndhub-macos/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"LNDHub on Mac OSX","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/lndhub-macos/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-macos/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Requirements:","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"LNDHub on Mac OSX","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/lndhub-macos/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-macos/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Requirements:","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">LNDHub on Mac OSX</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p><strong>Requirements:</strong></p>
<ul>
@ -568,6 +578,9 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
@ -703,6 +716,15 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
@ -767,6 +789,15 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
@ -809,10 +840,6 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -829,7 +856,7 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -850,10 +877,6 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -870,6 +893,23 @@ mkdir buildbabel ./ out-dir ./build copy-files ignore node_modules</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/lndhub-raspibolt/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"LNDhub with raspibolt","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/lndhub-raspibolt/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-raspibolt/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Install Redis","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"LNDhub with raspibolt","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/lndhub-raspibolt/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-raspibolt/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Install Redis","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">LNDhub with raspibolt</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<h3>Install Redis</h3>
<p>Login as “admin”</p>
@ -723,6 +733,9 @@ $ sudo systemctl start lndhub
@ -844,6 +857,15 @@ $ sudo systemctl start lndhub
@ -917,6 +939,15 @@ $ sudo systemctl start lndhub
@ -959,10 +990,6 @@ $ sudo systemctl start lndhub
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -979,7 +1006,7 @@ $ sudo systemctl start lndhub
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -1000,10 +1027,6 @@ $ sudo systemctl start lndhub
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -1020,6 +1043,23 @@ $ sudo systemctl start lndhub
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/lndhub-ubuntu/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"LNDhub on VPS with Ubuntu","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/lndhub-ubuntu/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-ubuntu/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To avoid rewriting things already well explained in other tutorials, I leave here a link to set up your Bitcoin&amp;Lightning node on Ubuntu 16.04, if you already have one you can jump to Step 1.\\ You can follow this or other guides as long as LND is the implementation of choice for Lightning, we will apply the necessary changes to configurations files in the next steps. If you are starting from scratch, I suggest to execute this on a VPS, for example a Digital Oceans droplet.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"LNDhub on VPS with Ubuntu","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/lndhub-ubuntu/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/lndhub-ubuntu/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To avoid rewriting things already well explained in other tutorials, I leave here a link to set up your Bitcoin&amp;Lightning node on Ubuntu 16.04, if you already have one you can jump to Step 1.\\ You can follow this or other guides as long as LND is the implementation of choice for Lightning, we will apply the necessary changes to configurations files in the next steps. If you are starting from scratch, I suggest to execute this on a VPS, for example a Digital Oceans droplet.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">LNDhub on VPS with Ubuntu</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>To avoid rewriting things already well explained in other tutorials, I leave here <a href="https://gist.github.com/bretton/0b22a0503a9eba09df86a23f3d625c13">a link to set up</a> your Bitcoin&amp;Lightning node on Ubuntu 16.04, if you already have one you can jump to Step 1.\
You can follow this or other guides as long as LND is the implementation of choice for Lightning, we will apply the necessary changes to configurations files in the next steps. If you are starting from scratch, I suggest to execute this on a VPS, for example a Digital Oceans droplet.</p>
@ -653,6 +663,9 @@ Your bank is born, lets take a moment to think about what you achieved here:
@ -779,6 +792,15 @@ Your bank is born, lets take a moment to think about what you achieved here:
@ -852,6 +874,15 @@ Your bank is born, lets take a moment to think about what you achieved here:
@ -894,10 +925,6 @@ Your bank is born, lets take a moment to think about what you achieved here:
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -914,7 +941,7 @@ Your bank is born, lets take a moment to think about what you achieved here:
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -935,10 +962,6 @@ Your bank is born, lets take a moment to think about what you achieved here:
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -955,6 +978,23 @@ Your bank is born, lets take a moment to think about what you achieved here:
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/local-trader/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Use the Local Trader","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/local-trader/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/local-trader/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Use the Local Trader","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/local-trader/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/local-trader/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"Bitcoin wallet and Lightning wallet for iOS and Android extremely simple and powerful. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Use the Local Trader</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<div class="uk-section">
<div class="uk-container">
<div class="videoWrapper">
@ -415,6 +425,9 @@
@ -426,8 +439,8 @@
<h5>Cobo Vault</h5>
<div><a class="remove-underline hvr-back" href="/docs/cobo-vault/">&larr; Previous</a></div>
<h5>Vaults - spending</h5>
<div><a class="remove-underline hvr-back" href="/docs/multisig-spend/">&larr; Previous</a></div>
</div>
<div>
@ -554,10 +567,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -574,7 +583,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -595,10 +604,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -615,6 +620,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/manual-entropy/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Adding manual entropy","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/manual-entropy/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/manual-entropy/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet supports manual entropy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Adding manual entropy","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/manual-entropy/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/manual-entropy/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet supports manual entropy.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Adding manual entropy</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>BlueWallet supports manual entropy.</p>
<p>To use this feature, go to:</p>
@ -467,9 +477,6 @@
@ -481,7 +488,7 @@
<h5>Recover your wallet</h5>
<h5>Recover on another wallet</h5>
<div><a class="remove-underline hvr-back" href="/docs/recover-wallet/">&larr; Previous</a></div>
</div>
@ -591,6 +598,15 @@
@ -669,6 +685,15 @@
@ -711,10 +736,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -731,7 +752,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -752,10 +773,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -772,6 +789,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/multisig-spend/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Vaults - spending","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/multisig-spend/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/multisig-spend/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallets Bitcoin Multisig wallet Vaults feature. Where 2 BlueWallet apps are signing transactions offline and airgapped.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Vaults - spending","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/multisig-spend/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/multisig-spend/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallets Bitcoin Multisig wallet Vaults feature. Where 2 BlueWallet apps are signing transactions offline and airgapped.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class="uk-active"><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class="uk-active"><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Vaults - spending</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Air gapped offline transactions from a Multisig Vault</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>BlueWallets Bitcoin Multisig wallet Vaults feature. Where 2 BlueWallet apps are signing transactions offline and airgapped.</p>
<div class="uk-container">
@ -391,6 +401,21 @@
@ -411,8 +436,8 @@
<h5>Sign a transaction offline</h5>
<div><a class="remove-underline hvr-back" href="/docs/sign-offline/">&larr; Previous</a></div>
<h5>How to create a Vault</h5>
<div><a class="remove-underline hvr-back" href="/docs/create-multisig-wallet/">&larr; Previous</a></div>
</div>
<div>
@ -420,8 +445,8 @@
<h5>Coldcard with Bluewallet</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/coldcard/">Next &rarr;</a></div>
<h5>Use the Local Trader</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/local-trader/">Next &rarr;</a></div>
</div>
</div>
@ -539,10 +564,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -559,7 +580,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -580,10 +601,6 @@
<li class="uk-active"><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -600,6 +617,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class="uk-active"><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

File diff suppressed because one or more lines are too long

View File

@ -6,9 +6,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Begin Jekyll SEO tag v2.6.1 -->
<title>Recover your wallet | BlueWallet - Bitcoin Wallet for iOS and Android</title>
<title>Recover on another wallet | BlueWallet - Bitcoin Wallet for iOS and Android</title>
<meta name="generator" content="Jekyll v3.8.6" />
<meta property="og:title" content="Recover your wallet" />
<meta property="og:title" content="Recover on another wallet" />
<meta name="author" content="Nuno Coelho" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="BlueWallet provides 12 or 24 word mnemonic seeds for onchain Segwit wallets. These are standard BIP44, BIP49 and BIP84 addresses with the following derivation paths:" />
@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/recover-wallet/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Recover your wallet","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/recover-wallet/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/recover-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet provides 12 or 24 word mnemonic seeds for onchain Segwit wallets. These are standard BIP44, BIP49 and BIP84 addresses with the following derivation paths:","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Recover on another wallet","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/recover-wallet/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/recover-wallet/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"BlueWallet provides 12 or 24 word mnemonic seeds for onchain Segwit wallets. These are standard BIP44, BIP49 and BIP84 addresses with the following derivation paths:","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -28,15 +28,15 @@
<meta name="twitter:image" content="https://bluewallet.io/uploads/cover/home.png" />
<meta property="og:site_name" content="Recover your wallet" />
<meta property="og:site_name" content="Recover on another wallet" />
<meta property="og:type" content="website" />
<meta property="og:description" content="" />
<meta property="og:url" content="https://bluewallet.io/docs/recover-wallet/" />
<meta property="og:title" content="Recover your wallet" />
<meta property="og:title" content="Recover on another wallet" />
<meta property="fb:app_id" content="254973701957449" />
<meta property="fb:pages" content="499685187154976" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Recover your wallet" />
<meta name="twitter:title" content="Recover on another wallet" />
<meta name="twitter:description" content="" />
<meta name="twitter:url" content="https://bluewallet.io/docs/recover-wallet/" />
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class="uk-active"><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class="uk-active"><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Recover your wallet</h1>
<h1 class="uk-article-title uk-margin-remove-top">Recover on another wallet</h1>
<p class="uk-text-lead uk-text-muted uk-margin-top uk-margin-medium-bottom">Recover your wallet on external software</p>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>BlueWallet provides 12 or 24 word mnemonic seeds for onchain Segwit wallets. These are standard BIP44, BIP49 and BIP84 addresses with the following derivation paths:</p>
<h3>BIP44</h3>
@ -413,9 +423,6 @@
<div class="uk-margin-large-top paginate-post">
<div class="uk-child-width-expand@s uk-grid-large uk-pagi" data-uk-grid>
@ -552,10 +559,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -572,7 +575,7 @@
<li class="uk-active"><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class="uk-active"><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -593,10 +596,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -613,6 +612,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -17,9 +17,9 @@
<meta property="og:url" content="https://bluewallet.io/docs/sign-offline/" />
<meta property="og:site_name" content="BlueWallet - Bitcoin Wallet for iOS and Android" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2021-04-01T22:32:10+02:00" />
<meta property="article:published_time" content="2021-04-02T00:09:03+02:00" />
<script type="application/ld+json">
{"headline":"Sign a transaction offline","dateModified":"2021-04-01T22:32:10+02:00","url":"https://bluewallet.io/docs/sign-offline/","datePublished":"2021-04-01T22:32:10+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/sign-offline/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To sign an offline transaction you will need a watch-only (zpub) wallet on a device and a wallet with the seed on the other to sign it.","@type":"BlogPosting","@context":"https://schema.org"}</script>
{"headline":"Sign a transaction offline","dateModified":"2021-04-02T00:09:03+02:00","url":"https://bluewallet.io/docs/sign-offline/","datePublished":"2021-04-02T00:09:03+02:00","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://bluewallet.io/logo-bluewallet.svg"},"name":"Nuno Coelho"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://bluewallet.io/docs/sign-offline/"},"author":{"@type":"Person","name":"Nuno Coelho"},"description":"To sign an offline transaction you will need a watch-only (zpub) wallet on a device and a wallet with the seed on the other to sign it.","@type":"BlogPosting","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
@ -224,7 +224,7 @@
<div class="uk-container">
<div class="uk-grid-large" data-uk-grid>
<div class="sidebar-fixed-width uk-visible@m">
<div class="sidebar-docs uk-position-fixed uk-margin-top">
@ -233,10 +233,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -253,7 +249,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -274,10 +270,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -294,6 +286,23 @@
</ul>
<h5>Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5>Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">
@ -322,6 +331,7 @@
</div>
</div>
<div class="uk-width-1-1 uk-width-expand@m">
@ -332,9 +342,9 @@
<a class="uk-navbar-toggle uk-hidden@m" href="#offcanvas-docs" data-uk-toggle><span uk-icon="icon: lifesaver"></span>&nbsp;Documentation</a>
<h1 class="uk-article-title uk-margin-remove-top">Sign a transaction offline</h1>
<!--
<div class="uk-article-meta uk-margin-top uk-margin-medium-bottom uk-flex uk-flex-middle">
@ -356,7 +366,7 @@
</div>
</div>
-->
<div class="article-content link-primary">
<div class="article-content">
<p>To sign an offline transaction you will need a watch-only (zpub) wallet on a device and a wallet with the seed on the other to sign it.</p>
<p>On the watch-only you build your transaction. This will generate a QR code that you will be able to scan or a file that you can export.</p>
@ -403,9 +413,6 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
@ -426,8 +433,8 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
<h5>Vaults - spending</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/multisig-spend/">Next &rarr;</a></div>
<h5>Coldcard with Bluewallet</h5>
<div class="uk-text-right"><a class="remove-underline hvr-forward" href="/docs/coldcard/">Next &rarr;</a></div>
</div>
</div>
@ -545,10 +552,6 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -565,7 +568,7 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -586,10 +589,6 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -606,6 +605,23 @@ Then scan the QR code or import the file. Thats it the transaction is not sig
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -686,10 +686,6 @@ Recommended for cold storage and large amounts.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -706,7 +702,7 @@ Recommended for cold storage and large amounts.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -727,10 +723,6 @@ Recommended for cold storage and large amounts.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -747,6 +739,23 @@ Recommended for cold storage and large amounts.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -461,6 +461,10 @@
<li><a class="uk-box-shadow-hover-small" href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/import-wallet/">Import a wallet</a></li>
@ -479,7 +483,11 @@
<li><a class="uk-box-shadow-hover-small" href="/docs/recover-wallet/">Recover your wallet</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li><a class="uk-box-shadow-hover-small" href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -679,10 +687,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -699,7 +703,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -720,10 +724,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -740,6 +740,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -439,10 +439,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -459,7 +455,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -480,10 +476,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -500,6 +492,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -317,10 +317,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -337,7 +333,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -358,10 +354,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -378,6 +370,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -266,10 +266,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -286,7 +282,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -307,10 +303,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -327,6 +319,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -311,10 +311,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -331,7 +327,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -352,10 +348,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -372,6 +364,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -353,10 +353,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -373,7 +369,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -394,10 +390,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -414,6 +406,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -290,10 +290,6 @@ Send you the updates you subscribe for.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -310,7 +306,7 @@ Send you the updates you subscribe for.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -331,10 +327,6 @@ Send you the updates you subscribe for.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -351,6 +343,23 @@ Send you the updates you subscribe for.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -5,7 +5,7 @@
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/backup-wallet/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -13,7 +13,7 @@
"category" : "",
"tags" : "usage",
"url" : "/docs/batching/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -21,7 +21,7 @@
"category" : "",
"tags" : "usage",
"url" : "/docs/cobo-vault/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -29,7 +29,7 @@
"category" : "",
"tags" : "hww",
"url" : "/docs/coldcard-dropbox/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -37,7 +37,7 @@
"category" : "",
"tags" : "hww",
"url" : "/docs/coldcard-watch/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -45,7 +45,7 @@
"category" : "",
"tags" : "hww, usage, featured",
"url" : "/docs/coldcard/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -53,7 +53,7 @@
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/create-bitcoin-wallet/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -61,7 +61,15 @@
"category" : "",
"tags" : "setup",
"url" : "/docs/create-lightning-wallet/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
"title" : "How to create a Vault",
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/create-multisig-wallet/",
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -69,7 +77,7 @@
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/import-wallet/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -77,7 +85,7 @@
"category" : "",
"tags" : "setup",
"url" : "/docs/intro/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -85,7 +93,7 @@
"category" : "",
"tags" : "lndhub",
"url" : "/docs/lndhub-macos/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -93,7 +101,7 @@
"category" : "",
"tags" : "lndhub",
"url" : "/docs/lndhub-raspibolt/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -101,7 +109,7 @@
"category" : "",
"tags" : "lndhub",
"url" : "/docs/lndhub-ubuntu/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -109,7 +117,7 @@
"category" : "",
"tags" : "usage",
"url" : "/docs/local-trader/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -117,7 +125,7 @@
"category" : "",
"tags" : "setup",
"url" : "/docs/manual-entropy/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -125,15 +133,23 @@
"category" : "",
"tags" : "usage",
"url" : "/docs/multisig-spend/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
"title" : "Recover your wallet",
"title" : "Multisig Vault General",
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/multisig-wallet/",
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
"title" : "Recover on another wallet",
"category" : "",
"tags" : "usage, featured",
"url" : "/docs/recover-wallet/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
} ,
{
@ -141,7 +157,7 @@
"category" : "",
"tags" : "usage",
"url" : "/docs/sign-offline/",
"date" : "2021-04-01 22:32:10 +0200"
"date" : "2021-04-02 00:09:03 +0200"
}
]

View File

@ -65,8 +65,8 @@
<priority>0.80</priority>
</url>
<url>
<loc>https://bluewallet.io/docs/intro/</loc>
<lastmod>2021-01-27T17:34:18+00:00</lastmod>
<priority>0.50</priority>
<loc>https://bluewallet.io/docs/</loc>
<lastmod>2021-04-01T17:34:18+00:00</lastmod>
<priority>0.80</priority>
</url>
</urlset>

View File

@ -254,10 +254,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -274,7 +270,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -295,10 +291,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -315,6 +307,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -266,10 +266,6 @@ The hosted Lightnig Network wallets should be used as an experimental feature, f
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -286,7 +282,7 @@ The hosted Lightnig Network wallets should be used as an experimental feature, f
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -307,10 +303,6 @@ The hosted Lightnig Network wallets should be used as an experimental feature, f
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -327,6 +319,23 @@ The hosted Lightnig Network wallets should be used as an experimental feature, f
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

BIN
_site/uploads/tip2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
_site/uploads/tip3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
_site/uploads/tip4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
_site/uploads/tip5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -386,10 +386,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -406,7 +402,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -427,10 +423,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -447,6 +439,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -412,10 +412,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -432,7 +428,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -453,10 +449,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -473,6 +465,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -424,10 +424,6 @@ android: <a href="https://t.co/fUA6dVjtNw?amp=1" title="http://bit.ly/2XjBEnm">h
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -444,7 +440,7 @@ android: <a href="https://t.co/fUA6dVjtNw?amp=1" title="http://bit.ly/2XjBEnm">h
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -465,10 +461,6 @@ android: <a href="https://t.co/fUA6dVjtNw?amp=1" title="http://bit.ly/2XjBEnm">h
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -485,6 +477,23 @@ android: <a href="https://t.co/fUA6dVjtNw?amp=1" title="http://bit.ly/2XjBEnm">h
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -418,10 +418,6 @@ We are going to keep a look on its evolution closely.</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -438,7 +434,7 @@ We are going to keep a look on its evolution closely.</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -459,10 +455,6 @@ We are going to keep a look on its evolution closely.</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -479,6 +471,23 @@ We are going to keep a look on its evolution closely.</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -436,10 +436,6 @@ FIX: Font-Color in Input Field “transaction notes”</p>
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -456,7 +452,7 @@ FIX: Font-Color in Input Field “transaction notes”</p>
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -477,10 +473,6 @@ FIX: Font-Color in Input Field “transaction notes”</p>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -497,6 +489,23 @@ FIX: Font-Color in Input Field “transaction notes”</p>
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -293,10 +293,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -313,7 +309,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -334,10 +330,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -354,6 +346,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -323,10 +323,6 @@
<li class=""><a href="/docs/intro/">Help and documentation</a></li>
<li class=""><a href="/docs/create-bitcoin-wallet/">Create a Bitcoin wallet</a></li>
@ -343,7 +339,7 @@
<li class=""><a href="/docs/recover-wallet/">Recover your wallet</a></li>
<li class=""><a href="/docs/recover-wallet/">Recover on another wallet</a></li>
@ -364,10 +360,6 @@
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
<li class=""><a href="/docs/coldcard/">Coldcard with Bluewallet</a></li>
@ -384,6 +376,23 @@
</ul>
<h5 class="uk-margin-top">Multisig</h5>
<ul class="uk-nav uk-nav-default doc-nav">
<li class=""><a href="/docs/multisig-wallet/">Multisig Vault General</a></li>
<li class=""><a href="/docs/create-multisig-wallet/">How to create a Vault</a></li>
<li class=""><a href="/docs/multisig-spend/">Vaults - spending</a></li>
</ul>
<h5 class="uk-margin-top">Local Trader</h5>
<ul class="uk-nav uk-nav-default doc-nav">

View File

@ -1,5 +1,6 @@
---
layout: page
layout: doc
sidebar: nosidebar
title: Docs & Support - Bitcoin wallet and Lightning wallet for iOS and Android
description: Bitcoin wallet and Lightning wallet for iOS and Android focus on security and UX. Open source, Segwit and HD wallets, lightning network, plausible deniability, replace by fee and full encryption
width: expand
@ -8,8 +9,6 @@ cover: home.png
{% include search.html %}
{% include boxes-docs.html columns="3" title="What you can do with BlueWallet" subtitle="Besides receiving, sending and storing Bitcoin, you can do a lot more..." %}
{% include faqs.html multiple="true" title="Frequently asked questions" category="problems" subtitle="Find quick answers to frequent questions asked by fellow bitcoiners" %}
{% include featured.html tag="featured" title="Popular Articles" subtitle="Selected featured articles to get you started fast with BlueWallet" %}

View File

@ -65,8 +65,8 @@
<priority>0.80</priority>
</url>
<url>
<loc>https://bluewallet.io/docs/intro/</loc>
<lastmod>2021-01-27T17:34:18+00:00</lastmod>
<priority>0.50</priority>
<loc>https://bluewallet.io/docs/</loc>
<lastmod>2021-04-01T17:34:18+00:00</lastmod>
<priority>0.80</priority>
</url>
</urlset>

BIN
uploads/tip2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
uploads/tip3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
uploads/tip4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
uploads/tip5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB