mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
|
import { HardwareKeyringType } from './hardware-wallets';
|
||
|
|
||
|
/**
|
||
|
* These are the keyrings that are managed entirely by MetaMask.
|
||
|
*/
|
||
|
export enum InternalKeyringType {
|
||
|
hdKeyTree = 'HD Key Tree',
|
||
|
imported = 'Simple Key Pair',
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* All keyrings supported by MetaMask.
|
||
|
*/
|
||
|
export const KeyringType = {
|
||
|
...HardwareKeyringType,
|
||
|
...InternalKeyringType,
|
||
|
};
|