This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
Add Trezor Suite connection details #413
Open
sime
wants to merge
14
commits into
getumbrel:master
Choose a base branch
from
sime:add-trezor-connection
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ee23828
Add Trezor Suite connection details
sime 7840882
Add Trezor Suite: copy tweak
sime 4089685
Add Trezor Suite to wallets list
marekrjpolak 7afc04c
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime 2bbd39f
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime a25aa58
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime e700955
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime 3ac3a7b
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime c9c3dc0
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime 25bd154
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime c08dbe2
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime 8d96687
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime f0f2584
Update src/components/ConnectWallet/Wallets/TrezorSuite.vue
sime 008613b
Trezor: remove DIY TOR server references
sime File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| <template> | ||
| <connection-details name="Trezor Suite" requires="electrum"> | ||
| <step-list> | ||
| <step> | ||
| Open Trezor Suite and connect your Trezor. | ||
| </step> | ||
| <step> | ||
| Go to <span class="font-weight-bold">Settings > Application</span> and make sure <span class="font-weight-bold">"Tor"</span> is enabled. | ||
| </step> | ||
| <step> | ||
| Go to <span class="font-weight-bold">Settings > Crypto</span>. | ||
| </step> | ||
| <step> | ||
| Hover above <span class="font-weight-bold">"Bitcoin"</span> and click the gear icon. | ||
| </step> | ||
| <step> | ||
| Under <span class="font-weight-bold">"Backends"</span> click <span class="font-weight-bold">"Trezor servers"</span> and select | ||
| <span class="font-weight-bold">"Custom Electrum server"</span> from the dropdown menu. | ||
| </step> | ||
| <step> | ||
| In the next field enter: | ||
| <input-copy class="my-1" :value="`${urls.bitcoin.electrum.address}:${urls.bitcoin.electrum.port}:t`" auto-width></input-copy> | ||
| </step> | ||
| <step> | ||
| Press the <span class="font-weight-bold">"Confirm"</span> button. | ||
| </step> | ||
| <step> | ||
| Congratulations! You've successfully connected Trezor Suite to your Umbrel. | ||
| </step> | ||
| </step-list> | ||
sime marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </connection-details> | ||
| </template> | ||
|
|
||
| <script> | ||
| import ConnectionDetails from "@/components/ConnectWallet/ConnectionDetails"; | ||
| import StepList from "@/components/ConnectWallet/StepList"; | ||
| import Step from "@/components/ConnectWallet/Step"; | ||
| import InputCopy from "@/components/Utility/InputCopy"; | ||
sime marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| export default { | ||
| props: { | ||
| urls: Object | ||
| }, | ||
| components: { | ||
| ConnectionDetails, | ||
| StepList, | ||
| Step, | ||
| InputCopy | ||
| } | ||
| }; | ||
| </script> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.