mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
a4c0133bc5
* EIP-1559 - Provide support for Ledger * Update ui/selectors/selectors.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Add shared constants for hw types * bump eth-ledger-bridge-keyring to v0.7.0 Co-authored-by: David Walsh <davidwalsh83@gmail.com> Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: Alex <adonesky@gmail.com>
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
/**
|
|
* Accounts can be instantiated from simple, HD or the two hardware wallet
|
|
* keyring types. Both simple and HD are treated as default but we do special
|
|
* case accounts managed by a hardware wallet.
|
|
*/
|
|
export const KEYRING_TYPES = {
|
|
LEDGER: 'Ledger Hardware',
|
|
TREZOR: 'Trezor Hardware',
|
|
};
|