Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 32 additions & 44 deletions test/e2e/feature-flags/feature-flag-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export type FeatureFlagRegistryEntry = {
* Remote flag values are stored in the exact format returned by the production
* client-config API, so they can be served directly by mock-e2e.js.
*
* Production defaults last synced: 2026-08-11
* Production defaults last synced: 2026-08-18
* Source: https://client-config.api.cx.metamask.io/v1/flags?client=extension&distribution=main&environment=prod
*/
/* eslint-disable @typescript-eslint/naming-convention -- production API flag names */
Expand All @@ -92,7 +92,7 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
additionalNetworksBlacklist: {
inProd: true,
name: 'additionalNetworksBlacklist',
productionDefault: ['0x1079', '0x13b2'],
productionDefault: ['0x13b2'],
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
},
Expand Down Expand Up @@ -209,7 +209,7 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
enabled: true,
featureVersion: '1',
minimumVersion: '13.38.0',
tracesEnabled: true,
tracesEnabled: false,
},
},
},
Expand Down Expand Up @@ -1068,9 +1068,6 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
gaslessEnabled: false,
},
},
depositLimit: {
moneyAccountDeposit: 500000,
},
perpsWithdrawAnyToken: false,
predictWithdrawAnyToken: true,
relayDisabledGasStationChains: [],
Expand Down Expand Up @@ -1167,10 +1164,6 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
},
},
},
enableMoneyAccountTransactions: {
perpsDeposit: false,
perpsWithdraw: false,
},
},
},
{
Expand All @@ -1196,10 +1189,6 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
},
},
},
enableMoneyAccountTransactions: {
perpsDeposit: false,
perpsWithdraw: false,
},
},
},
],
Expand Down Expand Up @@ -1281,18 +1270,7 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
inProd: true,
name: 'confirmations_pay_tokens',
productionDefault: {
preferredTokens: {
default: [],
overrides: {},
},
blockedTokens: {
default: {
chainIds: [],
tokens: [],
},
overrides: {},
},
minimumRequiredTokenBalance: 10,
enabled: false,
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
Expand Down Expand Up @@ -2370,8 +2348,8 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
inProd: true,
name: 'dappOpenSidepanelEnabled',
productionDefault: {
enabled: false,
minimumVersion: '13.41.0',
enabled: true,
minimumVersion: '13.44.0',
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
Expand Down Expand Up @@ -2470,8 +2448,8 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
inProd: true,
name: 'earnMusdConversionFlowEnabled',
productionDefault: {
enabled: false,
minimumVersion: '0.0.0',
enabled: true,
minimumVersion: '13.44.0',
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
Expand Down Expand Up @@ -2499,8 +2477,8 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
inProd: true,
name: 'earnMusdConversionTokenListItemCtaEnabled',
productionDefault: {
enabled: false,
minimumVersion: '0.0.0',
enabled: true,
minimumVersion: '13.44.0',
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
Expand Down Expand Up @@ -2554,17 +2532,6 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
type: FeatureFlagType.Remote,
},

[MONEY_ENABLE_MONEY_ACCOUNT_FLAG_NAME]: {
inProd: false,
name: MONEY_ENABLE_MONEY_ACCOUNT_FLAG_NAME,
productionDefault: {
enabled: false,
minimumVersion: '0.0.0',
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
},

enableFiatToggle: {
inProd: true,
name: 'enableFiatToggle',
Expand Down Expand Up @@ -2656,7 +2623,7 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
inProd: true,
name: 'extensionTrustAndSecurityTdp',
productionDefault: {
enabled: false,
enabled: true,
minimumVersion: '13.44.0',
},
status: FeatureFlagStatus.Active,
Expand Down Expand Up @@ -2835,6 +2802,17 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
type: FeatureFlagType.Remote,
},

moneyEnableMoneyAccount: {
inProd: false,
name: 'moneyEnableMoneyAccount',
productionDefault: {
enabled: false,
minimumVersion: '0.0.0',
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
},

neNetworkDiscoverButton: {
inProd: true,
name: 'neNetworkDiscoverButton',
Expand Down Expand Up @@ -3140,6 +3118,16 @@ export const FEATURE_FLAG_REGISTRY: Record<string, FeatureFlagRegistryEntry> = {
type: FeatureFlagType.Remote,
},

productSafetyScamQuestionnaireURLList: {
inProd: true,
name: 'productSafetyScamQuestionnaireURLList',
productionDefault: {
enabled: false,
},
status: FeatureFlagStatus.Active,
type: FeatureFlagType.Remote,
},

rampsEnabled: {
inProd: true,
name: 'rampsEnabled',
Expand Down
Loading