-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible to generate address on Trezor after disconnecting #1583
Comments
Thanks for the issue! We can ask the user to confirm the new address. Then if the Trezor device is disconnected, we'll return an error.
This is the topic for discussion. The first (and probably the only one) way how to implement this is to notify the GUI that the device is disconnected. GUI in its turn should disable all coins activated with this Trezor.
|
If by 'We can ask the user to confirm the new address' you mean 'confirm on trezor device' then I totally agree. It will also resolve second problem. One can not simply confirm address on device, if device was disconnected ) |
Yes, Trezor provides such functionality.
This is how Trezor suite actually works: if the device is unplugged, the GUI forgets everything and asks the user to connect the device again.
|
Referencing to the // If the actual number of addresses is less than this value,
// we will generate up to `min_addresses_number` new addresses.
"min_addresses_number": 3, we generate up to |
We could mimic Trezor Suite behavior. Not sure, if it's possible to implement, but from user perspective it looks like this: if I have balances on some addresses - I can see those addresses from the start, otherwise - only one, first address. If I want to add more - I must confirm on device. |
Faced with the problem that it is possible to use Trezor even after disconnecting the physical device.
Actual result:
Users can generate as many addresses as user wants without a connected Trezor device. It doesn't seem right. And haven’t found anything strange in the logs.
It seems that after disconnecting the device, the user should lose any access to his data and the ability to use them (including address generation). In this case, the user will be sure of the safety of his assets and trust as more at least.
It is also possible that address generation should not be left unchecked. It would be nice to ask for confirmation on the Trezor device screen if the user really wants to generate an address. This will solve the problem above
UPD:
so yes there are two topics:
The text was updated successfully, but these errors were encountered: