Open gantunesr opened 10 months ago
The approach used in this PR to pair a QRKeyring shows how we could extract the QR scan process from the QRKeyring, and submit the scan result directly.
Currently, the client modals are controlled by an event emitted by the QRKeyring. But since the connection between the devices is stateless, and only uses qr codes, there is no reason why we should do this.
if we could:
Keyring<Json>
's main methodssubmitCryptoHDKey
and submitCryptoAccount
do in a initialize
method instead, so that it is compatible with our typesThen we would probably be able to have a fully compatible QRKeyring, except for methods related to pagination, e.g.:
getPreviousPage
getNextPage
Since we also need these in other hardware keyrings, we could take this chance to add those to our Keyring<Json>
type, or perhaps to a separate PaginatedKeyring
type to prefer composability over inheritance.
The eventual remaining methods would be then accessible through KeyringController.withKeyring
cc @Gudahtt
Description
The current QRKeyring from
@keystonehq/metamask-airgapped-keyring
has a custom interface that is not compatible with our current implementation. This work is aimed to align theQRKeyring
to use our Keyring interface.Consider starting a new repository to fully own the QRKeyring package.
References
eth-keyring-controller
and@metamask/keyring-controller