mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
95c37e1ba3
* feat: add yaml feature management Add yaml feature file per build type. Also add method to parse yaml and set enabled features env to true. The build process will then replace any process.env[feature] that exists on the config by its value * chore: add example for desktop * Added initial draft of build features * [TMP] Sync between computers * Is able to succesfully build stable extension with snaps feature * Removing var context from builds.yml * Add asssets to builds.yml * Minor bug fixes and removing debug logs * [WIP] Test changes * Removed TODOs * Fix regession bug Also * remove debug logs * merge Variables.set and Variables.setMany with an overload * Fix build, lint and a bunch of issues * Update LavaMoat policies * Re-add desktop build type * Fix some tests * Fix desktop build * Define some env variables used by MV3 * Fix lint * Fix remove-fenced-code tests * Fix README typo * Move new code * Fix missing asset copy * Move Jest env setup * Fix path for test after rebase * Fix code fences * Fix fencing and LavaMoat policies * Fix MMI code-fencing after rebase * Fix MMI code fencing after merge * Fix more MMI code fencing --------- Co-authored-by: cryptotavares <joao.tavares@consensys.net> Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com> Co-authored-by: Brad Decker <bhdecker84@gmail.com>
360 lines
11 KiB
JavaScript
360 lines
11 KiB
JavaScript
import { ICON_NAMES } from '../../components/component-library/icon/deprecated';
|
|
import {
|
|
ALERTS_ROUTE,
|
|
ADVANCED_ROUTE,
|
|
SECURITY_ROUTE,
|
|
GENERAL_ROUTE,
|
|
ABOUT_US_ROUTE,
|
|
NETWORKS_ROUTE,
|
|
CONTACT_LIST_ROUTE,
|
|
EXPERIMENTAL_ROUTE,
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
SNAPS_LIST_ROUTE,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} from './routes';
|
|
|
|
export const SETTINGS_CONSTANTS = [
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('currencyConversion'),
|
|
descriptionMessage: (t) => t('currencyConversion'),
|
|
route: `${GENERAL_ROUTE}#currency-conversion`,
|
|
iconName: ICON_NAMES.SETTING,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('primaryCurrencySetting'),
|
|
descriptionMessage: (t) => t('primaryCurrencySettingDescription'),
|
|
route: `${GENERAL_ROUTE}#primary-currency`,
|
|
iconName: ICON_NAMES.SETTING,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('currentLanguage'),
|
|
descriptionMessage: (t) => t('currentLanguage'),
|
|
route: `${GENERAL_ROUTE}#current-language`,
|
|
iconName: ICON_NAMES.SETTING,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('theme'),
|
|
descriptionMessage: (t) => t('themeDescription'),
|
|
route: `${GENERAL_ROUTE}#theme`,
|
|
icon: 'fa fa-flask',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('accountIdenticon'),
|
|
descriptionMessage: (t) => t('accountIdenticon'),
|
|
route: `${GENERAL_ROUTE}#account-identicon`,
|
|
iconName: ICON_NAMES.SETTING,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('general'),
|
|
sectionMessage: (t) => t('hideZeroBalanceTokens'),
|
|
descriptionMessage: (t) => t('hideZeroBalanceTokens'),
|
|
route: `${GENERAL_ROUTE}#zero-balancetokens`,
|
|
iconName: ICON_NAMES.SETTING,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('stateLogs'),
|
|
descriptionMessage: (t) => t('stateLogsDescription'),
|
|
route: `${ADVANCED_ROUTE}#state-logs`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('clearActivity'),
|
|
descriptionMessage: (t) => t('clearActivityDescription'),
|
|
route: `${ADVANCED_ROUTE}#clear-activity`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('showHexData'),
|
|
descriptionMessage: (t) => t('showHexDataDescription'),
|
|
route: `${ADVANCED_ROUTE}#show-hexdata`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('showFiatConversionInTestnets'),
|
|
descriptionMessage: (t) => t('showFiatConversionInTestnetsDescription'),
|
|
route: `${ADVANCED_ROUTE}#conversion-testnetworks`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('showTestnetNetworks'),
|
|
descriptionMessage: (t) => t('showTestnetNetworksDescription'),
|
|
route: `${ADVANCED_ROUTE}#show-testnets`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('nonceField'),
|
|
descriptionMessage: (t) => t('nonceFieldDescription'),
|
|
route: `${ADVANCED_ROUTE}#customize-nonce`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('autoLockTimeLimit'),
|
|
descriptionMessage: (t) => t('autoLockTimeLimitDescription'),
|
|
route: `${ADVANCED_ROUTE}#autolock-timer`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('preferredLedgerConnectionType'),
|
|
descriptionMessage: (t) => t('preferredLedgerConnectionType'),
|
|
route: `${ADVANCED_ROUTE}#ledger-connection`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('dismissReminderField'),
|
|
descriptionMessage: (t) => t('dismissReminderDescriptionField'),
|
|
route: `${ADVANCED_ROUTE}#dimiss-secretrecovery`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('toggleEthSignField'),
|
|
descriptionMessage: (t) => t('toggleEthSignDescriptionField'),
|
|
route: `${ADVANCED_ROUTE}#toggle-ethsign`,
|
|
icon: 'fas fa-sliders-h',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('contacts'),
|
|
sectionMessage: (t) => t('contacts'),
|
|
descriptionMessage: (t) => t('contacts'),
|
|
route: CONTACT_LIST_ROUTE,
|
|
icon: ICON_NAMES.BOOK,
|
|
},
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
{
|
|
tabMessage: (t) => t('snaps'),
|
|
sectionMessage: (t) => t('snaps'),
|
|
descriptionMessage: (t) => t('snaps'),
|
|
route: SNAPS_LIST_ROUTE,
|
|
icon: 'fa fa-flask',
|
|
},
|
|
///: END:ONLY_INCLUDE_IN
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('revealSeedWords'),
|
|
descriptionMessage: (t) => t('revealSeedWords'),
|
|
route: `${SECURITY_ROUTE}#reveal-secretrecovery`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('showIncomingTransactions'),
|
|
descriptionMessage: (t) => t('showIncomingTransactionsDescription'),
|
|
route: `${SECURITY_ROUTE}#incoming-transaction`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('usePhishingDetection'),
|
|
descriptionMessage: (t) => t('usePhishingDetectionDescription'),
|
|
route: `${SECURITY_ROUTE}#phishing-detection`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('participateInMetaMetrics'),
|
|
descriptionMessage: (t) => t('participateInMetaMetricsDescription'),
|
|
route: `${SECURITY_ROUTE}#metrametrics`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('chooseYourNetwork'),
|
|
descriptionMessage: (t) => t('chooseYourNetworkDescription'),
|
|
route: `${SECURITY_ROUTE}#-chose-your-network`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('addCustomIPFSGateway'),
|
|
descriptionMessage: (t) => t('addCustomIPFSGatewayDescription'),
|
|
route: `${SECURITY_ROUTE}#-add-custom-ipfs-gateway`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('autoDetectTokens'),
|
|
descriptionMessage: (t) => t('autoDetectTokensDescription'),
|
|
route: `${SECURITY_ROUTE}#-auto-detect-tokens`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('useMultiAccountBalanceChecker'),
|
|
descriptionMessage: (t) => t('useMultiAccountBalanceCheckerDescription'),
|
|
route: `${SECURITY_ROUTE}#-use-milti-account-balance-checker`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('securityAndPrivacy'),
|
|
sectionMessage: (t) => t('currencyRateCheckToggle'),
|
|
descriptionMessage: (t) => t('currencyRateCheckToggleDescription'),
|
|
route: `${SECURITY_ROUTE}#price-checker`,
|
|
icon: 'fa fa-lock',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('alerts'),
|
|
sectionMessage: (t) => t('alertSettingsUnconnectedAccount'),
|
|
descriptionMessage: (t) => t('alertSettingsUnconnectedAccount'),
|
|
route: `${ALERTS_ROUTE}#unconnected-account`,
|
|
iconName: ICON_NAMES.NOTIFICATION,
|
|
},
|
|
{
|
|
tabMessage: (t) => t('alerts'),
|
|
sectionMessage: (t) => t('alertSettingsWeb3ShimUsage'),
|
|
descriptionMessage: (t) => t('alertSettingsWeb3ShimUsage'),
|
|
route: `${ALERTS_ROUTE}#web3-shimusage`,
|
|
icon: 'fa fa-bell',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('networks'),
|
|
sectionMessage: (t) => t('mainnet'),
|
|
descriptionMessage: (t) => t('mainnet'),
|
|
route: `${NETWORKS_ROUTE}#networks-mainnet`,
|
|
icon: 'fa fa-plug',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('networks'),
|
|
sectionMessage: (t) => t('goerli'),
|
|
descriptionMessage: (t) => t('goerli'),
|
|
route: `${NETWORKS_ROUTE}#networks-goerli`,
|
|
icon: 'fa fa-plug',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('networks'),
|
|
sectionMessage: (t) => t('sepolia'),
|
|
descriptionMessage: (t) => t('sepolia'),
|
|
route: `${NETWORKS_ROUTE}#networks-sepolia`,
|
|
icon: 'fa fa-plug',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('networks'),
|
|
sectionMessage: (t) => t('lineatestnet'),
|
|
descriptionMessage: (t) => t('lineatestnet'),
|
|
route: `${NETWORKS_ROUTE}#networks-lineatestnet`,
|
|
icon: 'fa fa-plug',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('networks'),
|
|
sectionMessage: (t) => t('localhost'),
|
|
descriptionMessage: (t) => t('localhost'),
|
|
route: `${NETWORKS_ROUTE}#networks-localhost`,
|
|
icon: 'fa fa-plug',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('metamaskVersion'),
|
|
descriptionMessage: (t) => t('builtAroundTheWorld'),
|
|
route: `${ABOUT_US_ROUTE}#version`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('links'),
|
|
descriptionMessage: (t) => t('links'),
|
|
route: `${ABOUT_US_ROUTE}#links`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('privacyMsg'),
|
|
descriptionMessage: (t) => t('privacyMsg'),
|
|
route: `${ABOUT_US_ROUTE}#privacy-policy`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('terms'),
|
|
descriptionMessage: (t) => t('terms'),
|
|
route: `${ABOUT_US_ROUTE}#terms`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('attributions'),
|
|
descriptionMessage: (t) => t('attributions'),
|
|
route: `${ABOUT_US_ROUTE}#attributions`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('supportCenter'),
|
|
descriptionMessage: (t) => t('supportCenter'),
|
|
route: `${ABOUT_US_ROUTE}#supportcenter`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('visitWebSite'),
|
|
descriptionMessage: (t) => t('visitWebSite'),
|
|
route: `${ABOUT_US_ROUTE}#visitwebsite`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('contactUs'),
|
|
descriptionMessage: (t) => t('contactUs'),
|
|
route: `${ABOUT_US_ROUTE}#contactus`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('about'),
|
|
sectionMessage: (t) => t('betaTerms'),
|
|
descriptionMessage: (t) => t('betaTerms'),
|
|
route: `${ABOUT_US_ROUTE}#beta-terms`,
|
|
icon: 'fa fa-info-circle',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('experimental'),
|
|
sectionMessage: (t) => t('enableOpenSeaAPI'),
|
|
descriptionMessage: (t) => t('enableOpenSeaAPIDescription'),
|
|
route: `${EXPERIMENTAL_ROUTE}#opensea-api`,
|
|
icon: 'fa fa-flask',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('experimental'),
|
|
sectionMessage: (t) => t('useNftDetection'),
|
|
descriptionMessage: (t) => t('useNftDetectionDescription'),
|
|
route: `${EXPERIMENTAL_ROUTE}#autodetect-nfts`,
|
|
icon: 'fa fa-flask',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('backupUserData'),
|
|
descriptionMessage: (t) => t('backupUserDataDescription'),
|
|
route: `${ADVANCED_ROUTE}#backup-userdata`,
|
|
icon: 'fas fa-download',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('advanced'),
|
|
sectionMessage: (t) => t('restoreUserData'),
|
|
descriptionMessage: (t) => t('restoreUserDataDescription'),
|
|
route: `${ADVANCED_ROUTE}#restore-userdata`,
|
|
icon: 'fas fa-upload',
|
|
},
|
|
{
|
|
tabMessage: (t) => t('experimental'),
|
|
sectionMessage: (t) => t('transactionSecurityCheck'),
|
|
descriptionMessage: (t) => t('transactionSecurityCheckDescription'),
|
|
route: `${EXPERIMENTAL_ROUTE}#transaction-security-check`,
|
|
icon: 'fa fa-flask',
|
|
},
|
|
];
|