Skip to content

Commit a3442d0

Browse files
committed
Merge branch 'master' into feature/sending-bitcoin-lightning-iteration
2 parents ada5fbe + 019c577 commit a3442d0

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

_includes/custom-head.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,20 @@
55
2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
66
{% endcomment %}
77

8+
{% if page.video %}<meta property="og:video" content="{{ page.video | absolute_url }}">{% endif %}
9+
{% if page.videoSecure %}<meta property="og:video:secure_url" content="{{ page.videoSecure }}">{% endif %}
10+
{% if page.videoType %}<meta property="og:video:type" content="{{ page.videoType }}">{% endif %}
11+
{% if page.videoWidth %}<meta property="og:video:width" content="{{ page.videoWidth }}">{% endif %}
12+
{% if page.videoHeight %}<meta property="og:video:height" content="{{ page.videoHeight }}">{% endif %}
13+
814
<meta name="viewport" content="width=device-width, initial-scale=1.0">
915

1016
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url }}">
1117
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url }}">
1218
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicon-16x16.png" | relative_url }}">
1319
<link rel="manifest" href="{{ "/site.webmanifest" | relative_url }}">
1420
<link rel="mask-icon" href="{{ "/assets/safari-pinned-tab.svg" | relative_url }}" color="#f2a900">
21+
1522
<meta name="msapplication-TileColor" content="#f2a900">
16-
<meta name="theme-color" content="#f2a900">
23+
<meta name="theme-color" content="#f2a900">
24+
686 KB
Binary file not shown.

guide/designing-products/common-user-flows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ By _wallet_, we normally mean the [_wallet application_](/guide/glossary/wallet/
255255

256256
</div>
257257

258-
A good starting point today is an [HD wallet](/guide/glossary/wallet/#hd-wallet) implemented according to [BIP](/guide/glossary/#bip---bitcoin-improvement-proposal)32, 39, 43, 44, 49, 84 and 380.
258+
A good starting point today is an [HD wallet](/guide/glossary/wallet/#hd-wallet) implemented according to [BIP](/guide/glossary/#bip---bitcoin-improvement-proposal) [32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki), [39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki), [43](https://github.com/bitcoin/bips/blob/master/bip-0043.mediawiki), [44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki), [49](https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki), [84](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki) and [380](https://github.com/bitcoin/bips/blob/master/bip-0380.mediawiki).
259259

260-
Some older software may create wallets with outdated technical formats, while others allow users to choose specific formats for their particular needs. Generally, this is difficult to understand for regular users and should either be automatically handled with good default settings, or explained in layman terms. The Wallets Recovery project provides a great overview of different implementations and how nuanced some of the differences are.
260+
Some older software may create wallets with outdated technical formats, while others allow users to choose specific formats for their particular needs. Generally, this is difficult to understand for regular users and should either be automatically handled with good default settings, or explained in layman terms. [Wallets Recovery](https://walletsrecovery.org) provides a great overview of different implementations and how nuanced some of the differences are.
261261

262262
Most modern wallet applications should aim to support the Lightning network in addition to the base layer. While there are different options for how the applications interact with a Lightning network node, an HD wallet works fine for storing the required keys.
263263

guide/onboarding/cloud-backup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: guide
3-
title: Cloud backup
3+
title: Automatic cloud backup
44
description: How to backup bitcoin wallet data via cloud storage service providers.
55
grand_parent: Onboarding
66
parent: Backing up a wallet
@@ -32,7 +32,7 @@ height = 600
3232
layout = "full-width"
3333
%}
3434

35-
# Cloud backup
35+
# Automatic cloud backup
3636

3737
### How it works
3838

@@ -46,7 +46,7 @@ If the user's device is lost, stolen, or broken, they can use the backup from th
4646
4747
This method provides users with the feeling that they can rely on their cloud provider to regain access to their funds rather than putting the responsibility on themselves.
4848

49-
Below is an example of what the user interface might look like for a cloud backup that significantly reduces friction during onboarding. An optimal phase to show this may be after the wallet has received funds for the first time, so that the user has an incentive to back up their wallet.
49+
Below is an example of what the user interface might look like for an automatic cloud backup that significantly reduces friction during onboarding. An optimal phase to show this may be after the wallet has received funds for the first time, so that the user has an incentive to back up their wallet.
5050

5151
<div class="image-slide-gallery">
5252

@@ -126,7 +126,7 @@ Before creating a wallet backup via cloud backup, make sure the user knows what
126126

127127
### Tradeoffs
128128

129-
By not making users manually backup, you decrease the risk of self-inflicted loss of funds. Cloud backups put less pressure and responsibility on the user.
129+
By not making users manually backup, you decrease the risk of self-inflicted loss of funds. Automatic cloud backups put less pressure and responsibility on the user.
130130

131131
While this is an easier way for users to set up a wallet, it brings in the potential threat of malicious third-party access. If a user's cloud account is hacked, their funds could be compromised. This can be mitigated by encrypting the wallet recovery data before sending it to the cloud provider. However, the user could still lose access to funds if they forget their cloud login information or the cloud provider blocks their access.
132132

index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
layout: home
66
permalink: /
7+
video: /assets/images/bitcoin-design-preview.mp4
8+
videoType: 'video/mp4'
9+
videoWidth: 1600
10+
videoHeight: 840
711
---
812

913
## We are helping make [Bitcoin](https://bitcoin.org) more intuitive and accessible.

0 commit comments

Comments
 (0)