From a65a5f4f5b3b61610116af038c9f3be15968edc5 Mon Sep 17 00:00:00 2001 From: Lyka Labrada Date: Wed, 22 Nov 2023 17:10:09 +0800 Subject: [PATCH] chore(ops): enable evm on mainnet (#116) Co-authored-by: Pierre Gee --- cypress/fixtures/flags.json | 9 ++++++++- src/pages/api/v0/settings/flags.ts | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/cypress/fixtures/flags.json b/cypress/fixtures/flags.json index fe403c5..c613593 100644 --- a/cypress/fixtures/flags.json +++ b/cypress/fixtures/flags.json @@ -321,7 +321,14 @@ "stage": "public", "version": ">2.14.0", "description": "Enables seamless bidirectional transfer between EVM and DVM", - "networks": ["TestNet", "Playground", "Local", "DevNet", "Changi"], + "networks": [ + "MainNet", + "TestNet", + "Playground", + "Local", + "DevNet", + "Changi" + ], "platforms": ["ios", "android", "web"], "app": ["MOBILE_LW"] }, diff --git a/src/pages/api/v0/settings/flags.ts b/src/pages/api/v0/settings/flags.ts index 276bfb2..f2962b6 100644 --- a/src/pages/api/v0/settings/flags.ts +++ b/src/pages/api/v0/settings/flags.ts @@ -346,6 +346,7 @@ export default async function handle( description: "Enables seamless bidirectional transfer between EVM and DVM", networks: [ + EnvironmentNetwork.MainNet, EnvironmentNetwork.TestNet, EnvironmentNetwork.RemotePlayground, EnvironmentNetwork.LocalPlayground,