diff --git a/src/components/ConnectWallet/Wallets/TrezorSuite.vue b/src/components/ConnectWallet/Wallets/TrezorSuite.vue
new file mode 100644
index 00000000..f8c75eb1
--- /dev/null
+++ b/src/components/ConnectWallet/Wallets/TrezorSuite.vue
@@ -0,0 +1,51 @@
+
+
+
+
+ Open Trezor Suite and connect your Trezor.
+
+
+ Go to Settings > Application and make sure "Tor" is enabled.
+
+
+ Go to Settings > Crypto.
+
+
+ Hover above "Bitcoin" and click the gear icon.
+
+
+ Under "Backends" click "Trezor servers" and select
+ "Custom Electrum server" from the dropdown menu.
+
+
+ In the next field enter:
+
+
+
+ Press the "Confirm" button.
+
+
+ Congratulations! You've successfully connected Trezor Suite to your Umbrel.
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 28e1a339..02233fc9 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -35,6 +35,7 @@ import Phoenix from "../components/ConnectWallet/Wallets/Phoenix.vue";
import SamouraiWallet from "../components/ConnectWallet/Wallets/SamouraiWallet.vue";
import Sparrow from "../components/ConnectWallet/Wallets/Sparrow.vue";
import SpecterDesktop from "../components/ConnectWallet/Wallets/SpecterDesktop.vue";
+import TrezorSuite from "../components/ConnectWallet/Wallets/TrezorSuite.vue";
import Wasabi from "../components/ConnectWallet/Wallets/Wasabi.vue";
import ZapAndroid from "../components/ConnectWallet/Wallets/ZapAndroid.vue";
@@ -249,6 +250,13 @@ const routes = [
wallet: "specter-desktop"
}
},
+ {
+ path: "trezor-suite",
+ component: TrezorSuite,
+ meta: {
+ wallet: "trezor-suite"
+ }
+ },
{
path: "wasabi",
component: Wasabi,
diff --git a/src/views/ConnectWallet.vue b/src/views/ConnectWallet.vue
index b9a9f1c8..8b5cc8c0 100644
--- a/src/views/ConnectWallet.vue
+++ b/src/views/ConnectWallet.vue
@@ -61,6 +61,7 @@ export default {
{ value: "samourai-wallet", text: "Samourai Wallet" },
{ value: "sparrow", text: "Sparrow" },
{ value: "specter-desktop", text: "Specter Desktop" },
+ { value: "trezor-suite", text: "Trezor Suite" },
{ value: "wasabi", text: "Wasabi" },
{ value: "zap-android", text: "Zap (Android)" },
{ value: "zap-desktop", text: "Zap (Desktop)" },