mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +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>
14 lines
657 B
JavaScript
14 lines
657 B
JavaScript
// no destructuring as process.env detection stops working
|
|
// eslint-disable-next-line prefer-destructuring
|
|
export const SUPPORT_LINK = process.env.SUPPORT_LINK;
|
|
|
|
export const COINGECKO_LINK = 'https://www.coingecko.com/';
|
|
export const CRYPTOCOMPARE_LINK = 'https://www.cryptocompare.com/';
|
|
export const PRIVACY_POLICY_LINK = 'https://consensys.net/privacy-policy/';
|
|
|
|
// TODO make sure these links are correct
|
|
export const ETHERSCAN_PRIVACY_LINK = 'https://etherscan.io/privacyPolicy';
|
|
export const CONSENSYS_PRIVACY_LINK = 'https://consensys.net/privacy-policy/';
|
|
export const AUTO_DETECT_TOKEN_LEARN_MORE_LINK =
|
|
'https://consensys.net/privacy-policy/';
|