mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
e5688c024e
Consolidates the background and UI segment implementations into a shared solution. This results in the introduction of our first shared module. Co-authored-by: Erik Marks <25517051+rekmarks@users.noreply.github.com>
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/**
|
|
* A string representing the type of environment the application is currently running in
|
|
* popup - When the user click's the icon in their browser's extension bar; the default view
|
|
* notification - When the extension opens due to interaction with a Web3 enabled website
|
|
* fullscreen - When the user clicks 'expand view' to open the extension in a new tab
|
|
* background - The background process that powers the extension
|
|
* @typedef {'popup' | 'notification' | 'fullscreen' | 'background'} EnvironmentType
|
|
*/
|
|
|
|
const ENVIRONMENT_TYPE_POPUP = 'popup'
|
|
const ENVIRONMENT_TYPE_NOTIFICATION = 'notification'
|
|
const ENVIRONMENT_TYPE_FULLSCREEN = 'fullscreen'
|
|
const ENVIRONMENT_TYPE_BACKGROUND = 'background'
|
|
|
|
const PLATFORM_BRAVE = 'Brave'
|
|
const PLATFORM_CHROME = 'Chrome'
|
|
const PLATFORM_EDGE = 'Edge'
|
|
const PLATFORM_FIREFOX = 'Firefox'
|
|
const PLATFORM_OPERA = 'Opera'
|
|
|
|
const MESSAGE_TYPE = {
|
|
ETH_DECRYPT: 'eth_decrypt',
|
|
ETH_GET_ENCRYPTION_PUBLIC_KEY: 'eth_getEncryptionPublicKey',
|
|
ETH_SIGN: 'eth_sign',
|
|
ETH_SIGN_TYPED_DATA: 'eth_signTypedData',
|
|
LOG_WEB3_USAGE: 'metamask_logInjectedWeb3Usage',
|
|
PERSONAL_SIGN: 'personal_sign',
|
|
}
|
|
|
|
export {
|
|
ENVIRONMENT_TYPE_POPUP,
|
|
ENVIRONMENT_TYPE_NOTIFICATION,
|
|
ENVIRONMENT_TYPE_FULLSCREEN,
|
|
ENVIRONMENT_TYPE_BACKGROUND,
|
|
MESSAGE_TYPE,
|
|
PLATFORM_BRAVE,
|
|
PLATFORM_CHROME,
|
|
PLATFORM_EDGE,
|
|
PLATFORM_FIREFOX,
|
|
PLATFORM_OPERA,
|
|
}
|