mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
532a10f9f5
* Adding browser outdated notification * updating dependency * adding unit tests for util function * adding unit tests for selectors, lintfix * Added Tests, refactored notification delay logic * lint:fix * adding test coverage for method parameter * Update app/scripts/controllers/app-state.js adding documentation details Co-authored-by: Mark Stacey <markjstacey@gmail.com> * moving declaration into test * Update app/scripts/controllers/app-state.test.js spacing in test file Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Update jest.config.js removing duplicate entries Co-authored-by: Mark Stacey <markjstacey@gmail.com> * using async submitRequestToBackground method * removing unused import * removing unnecessary link syntax in notification * adding opera and edge and associated tests * handling the undefined case in bowser.satisfies * setOutdatedBrowserWarningLastShown try/catch * lint:fix * Removing try/catch and letting errors bubble up Removing deprecated displayWarning method Co-authored-by: Mark Stacey <markjstacey@gmail.com> * taking out forceMetamaskUpdateState call * excludint app-state test from mocha test suite * Added note: Jest files should match Mocha excluded * syntax error, lint:fix --------- Co-authored-by: Mark Stacey <markjstacey@gmail.com>
22 lines
689 B
TypeScript
22 lines
689 B
TypeScript
export const PRIMARY = 'PRIMARY';
|
|
export const SECONDARY = 'SECONDARY';
|
|
|
|
let _supportRequestLink = 'https://metamask.zendesk.com/hc/en-us';
|
|
const _contractAddressLink =
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360020028092-What-is-the-known-contract-address-warning-';
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
_supportRequestLink =
|
|
'https://metamask-flask.zendesk.com/hc/en-us/requests/new';
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
export const SUPPORT_REQUEST_LINK = _supportRequestLink;
|
|
export const CONTRACT_ADDRESS_LINK = _contractAddressLink;
|
|
export const PASSWORD_MIN_LENGTH = 8;
|
|
export const OUTDATED_BROWSER_VERSIONS = {
|
|
chrome: '<80',
|
|
edge: '<80',
|
|
firefox: '<78',
|
|
opera: '<67',
|
|
};
|