File tree Expand file tree Collapse file tree
layouts/partials/hardware-signer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ signers:
7373 name :
7474 en : " Jade"
7575 summary :
76- en : " USB + QR signer; Bitcoin-only firmware."
76+ en : " USB + QR + Bluetooth signer; Bitcoin-only firmware."
7777 image : " https://raw.githubusercontent.com/thebitcoinhole/database/refs/heads/master/item-types/hardware-wallets/img/jade-thumb.webp"
7878 shop_url : " https://rewards.blockstream.com/885who"
7979 discount :
@@ -83,6 +83,7 @@ signers:
8383 features :
8484 usb : true
8585 qr : true
86+ bluetooth : true
8687 bitcoin_only : true
8788
8889 - id : jade-plus
@@ -91,7 +92,7 @@ signers:
9192 name :
9293 en : " Jade Plus"
9394 summary :
94- en : " USB + QR + SD signer with metal body; Bitcoin-only firmware."
95+ en : " USB + QR + SD + Bluetooth signer with metal body; Bitcoin-only firmware."
9596 image : " https://raw.githubusercontent.com/thebitcoinhole/database/refs/heads/master/item-types/hardware-wallets/img/jade-plus-metal-thumb.webp"
9697 shop_url : " https://rewards.blockstream.com/885who"
9798 discount :
@@ -102,6 +103,7 @@ signers:
102103 usb : true
103104 qr : true
104105 sd : true
106+ bluetooth : true
105107 bitcoin_only : true
106108
107109 - id : trezor
Original file line number Diff line number Diff line change 99{{ if $signer.features.usb }}{{ $connections = $connections | append "USB" }}{{ end }}
1010{{ if $signer.features.qr }}{{ $connections = $connections | append "QR" }}{{ end }}
1111{{ if $signer.features.sd }}{{ $connections = $connections | append "microSD" }}{{ end }}
12+ {{ if $signer.features.bluetooth }}{{ $connections = $connections | append "Bluetooth" }}{{ end }}
1213{{ $connectionLabel := cond (gt (len $connections) 0) (delimit $connections " + ") "USB" }}
1314
1415< article class ="hardware-signer ">
@@ -53,6 +54,7 @@ <h2>{{ i18n "hardware_expect_title" }}</h2>
5354 {{ if $signer.features.usb }}< li > {{ i18n "hardware_expect_usb" }}</ li > {{ end }}
5455 {{ if $signer.features.qr }}< li > {{ i18n "hardware_expect_qr" }}</ li > {{ end }}
5556 {{ if $signer.features.sd }}< li > {{ i18n "hardware_expect_sd" }}</ li > {{ end }}
57+ {{ if $signer.features.bluetooth }}< li > Use Bluetooth for a cable-free signing workflow.</ li > {{ end }}
5658 {{ if $signer.bitcoin_only }}< li > {{ i18n "hardware_expect_bitcoin_only" }}</ li > {{ else if $signer.bitcoin_only_available }}< li > {{ i18n "hardware_expect_bitcoin_only_available" }}</ li > {{ end }}
5759 </ ul >
5860 < p class ="text-muted mb-0 "> {{ i18n "hardware_default_body" }}</ p >
Original file line number Diff line number Diff line change 1515 {{ if $f.sd }}
1616 < span class ="feature-chip "> < img src ="/images/sd-card.svg " class ="coloredicon " alt ="SD card "> SD</ span >
1717 {{ end }}
18+ {{ if $f.bluetooth }}
19+ < span class ="feature-chip "> < img src ="/images/bluetooth.svg " class ="coloredicon " alt ="Bluetooth "> Bluetooth</ span >
20+ {{ end }}
1821</ div >
You can’t perform that action at this time.
0 commit comments