diff --git a/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/EvmFeatureFaq.tsx b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/EvmFeatureFaq.tsx
new file mode 100644
index 0000000000..8a905349cb
--- /dev/null
+++ b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/EvmFeatureFaq.tsx
@@ -0,0 +1,97 @@
+import { ThemedScrollViewV2, ThemedTextV2 } from "@components/themed";
+import {
+ AccordionContent,
+ WalletAccordionV2,
+} from "@components/WalletAccordionV2";
+import { tailwind } from "@tailwind";
+import { translate } from "@translations";
+
+export function EvmFeatureFaq(): JSX.Element {
+ const faqContent: AccordionContent[] = [
+ {
+ title: translate(
+ "components/EvmFeatureFaq",
+ "What tokens are supported between DVM and EVM bidirectionally?"
+ ),
+ content: [
+ {
+ text: translate(
+ "components/EvmFeatureFaq",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category."
+ ),
+ type: "paragraph",
+ },
+ ],
+ },
+ {
+ title: translate(
+ "components/EvmFeatureFaq",
+ "How can I access the MetaChain layer from the Light Wallet?"
+ ),
+ content: [
+ {
+ text: translate(
+ "components/EvmFeatureFaq",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet."
+ ),
+ type: "paragraph",
+ },
+ ],
+ },
+ {
+ title: translate(
+ "components/EvmFeatureFaq",
+ "Why would I need to move dTokens from DVM to EVM?"
+ ),
+ content: [
+ {
+ text: translate(
+ "components/EvmFeatureFaq",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it."
+ ),
+ type: "paragraph",
+ },
+ ],
+ },
+ {
+ title: translate(
+ "components/EvmFeatureFaq",
+ "How can I move dTokens from DVM to EVM?"
+ ),
+ content: [
+ {
+ text: translate(
+ "components/EvmFeatureFaq",
+ 'You can do it through either the "Convert" or "Send" functions on Light Wallet. The "Convert" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe "Send" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.'
+ ),
+ type: "paragraph",
+ },
+ ],
+ },
+ ];
+
+ return (
+
+
+ {translate(
+ "components/EvmFeatureFaq",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem."
+ )}
+
+
+
+
+ );
+}
diff --git a/mobile-app/app/screens/AppNavigator/screens/Settings/SettingsNavigator.tsx b/mobile-app/app/screens/AppNavigator/screens/Settings/SettingsNavigator.tsx
index 1ab9d541c5..8b5a04382f 100644
--- a/mobile-app/app/screens/AppNavigator/screens/Settings/SettingsNavigator.tsx
+++ b/mobile-app/app/screens/AppNavigator/screens/Settings/SettingsNavigator.tsx
@@ -29,6 +29,7 @@ import {
ButtonGroupTabKey,
} from "../Portfolio/screens/AddressBookScreen";
import { AddOrEditAddressBookScreen } from "../Portfolio/screens/AddOrEditAddressBookScreen";
+import { EvmFeatureFaq } from "../Portfolio/screens/EvmFeatureFaq";
export interface SettingsParamList {
SettingsScreen: undefined;
@@ -276,6 +277,17 @@ export function SettingsNavigator(): JSX.Element {
),
}}
/>
+
+
);
}
diff --git a/mobile-app/app/screens/AppNavigator/screens/Settings/screens/KnowledgeBaseScreen.tsx b/mobile-app/app/screens/AppNavigator/screens/Settings/screens/KnowledgeBaseScreen.tsx
index 382f6384ba..f0994454dc 100644
--- a/mobile-app/app/screens/AppNavigator/screens/Settings/screens/KnowledgeBaseScreen.tsx
+++ b/mobile-app/app/screens/AppNavigator/screens/Settings/screens/KnowledgeBaseScreen.tsx
@@ -68,6 +68,12 @@ export function KnowledgeBaseScreen({ navigation }: Props): JSX.Element {
},
]
: []),
+ {
+ // TODO (Lyka): Check if we need to check for feature flag
+ label: "MetaChain (EVM)",
+ testID: "evm_feature_faq",
+ onPress: () => navigation.navigate("EvmFeatureFaq"),
+ },
];
return (
diff --git a/mobile-app/app/screens/AppNavigator/screens/Settings/screens/__snapshots__/KnowledgeBaseScreen.test.tsx.snap b/mobile-app/app/screens/AppNavigator/screens/Settings/screens/__snapshots__/KnowledgeBaseScreen.test.tsx.snap
index 43a01fce79..d9010db383 100644
--- a/mobile-app/app/screens/AppNavigator/screens/Settings/screens/__snapshots__/KnowledgeBaseScreen.test.tsx.snap
+++ b/mobile-app/app/screens/AppNavigator/screens/Settings/screens/__snapshots__/KnowledgeBaseScreen.test.tsx.snap
@@ -555,6 +555,7 @@ exports[`knowledge base screen should render 1`] = `
{
"alignItems": "center",
"borderBottomColor": "rgba(204, 204, 204, 1)",
+ "borderBottomWidth": 1,
"borderLeftColor": "rgba(204, 204, 204, 1)",
"borderRightColor": "rgba(204, 204, 204, 1)",
"borderTopColor": "rgba(204, 204, 204, 1)",
@@ -597,6 +598,80 @@ exports[`knowledge base screen should render 1`] = `
+
+
+ MetaChain (EVM)
+
+
+
diff --git a/shared/translations/languages/de.json b/shared/translations/languages/de.json
index c1c960aabd..6e8dd5ee50 100644
--- a/shared/translations/languages/de.json
+++ b/shared/translations/languages/de.json
@@ -538,6 +538,19 @@
"Are there other ways to submit proposals?": "Gibt es noch andere Möglichkeiten, Proposals einzureichen?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "Wenn du eine Full-Node-Wallet besitzt, kannst du die Proposals auch über Befehle per Befehlszeile einreichen. Befehle können auf DeFiScan unter dem Reiter Governance > Submit proposal erstellt werden."
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "HÄUFIG GESTELLTE FRAGEN",
+ "About MetaChain (EVM)": "MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "Der MetaChain-Layer bietet eine EVM-kompatible Umgebung, die es Entwicklern, die mit Ethereum vertraut sind, ermöglicht, nahtlos Anwendungen der nächsten Generation innerhalb des nativen DeFiChain-Ökosystems zu entwickeln.\n\nDer MetaChain-Layer bietet eine EVM-kompatible Umgebung, die es Entwicklern, die mit Ethereum vertraut sind, ermöglicht, Anwendungen innerhalb des DeFiChain-Ökosystems zu entwickeln.",
+ "What tokens are supported between DVM and EVM bidirectionally?": "Welche Token werden zwischen DVM und EVM bidirektional unterstützt?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "Alle dToken werden akzeptiert. dToken bestehen aus:\ndStocks (dTSLA, dGOOG.) + DFI\n\nDie vollständige Liste findest du unter https://defiscan.live/tokens unter der Kategorie DAT.",
+ "How can I access the MetaChain layer from the Light Wallet?": "Wie kann ich von der Lightwallet aus auf den MetaChain-Layer zugreifen?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "Bewege deine dToken zwischen dem nativen Layer von DeFiChain (DVM) und dem MetaChain-Layer (EVM) bidirektional.\n\nÜbertrage z.B. DFI/DUSD/dBTC oder jeden anderen dToken von DVM zu EVM und zurück, alles direkt in der Lightwallet.",
+ "Why would I need to move dTokens from DVM to EVM?": "Warum sollte ich dToken von DVM zu EVM verschieben?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "Mit dem Gateway kannst du deine dToken von der Lightwallet zu jeder EVM-kompatiblen Wallet auf dem MetaChain-Layer (z. B. MetaMask) verschieben. So kannst du mit dem ständig wachsenden EVM-Ökosystem auf MetaChain und den verschiedenen Projekten interagieren.",
+ "How can I move dTokens from DVM to EVM?": "Wie kann ich dToken von DVM zu EVM verschieben?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "Du kannst dies entweder über die Funktionen \"Umwandeln\" oder \"Senden\" in der Lightwallet tun. Mit der Option \"Konvertieren\" kannst du alle DVM-dToken in deine eigene EVM-Adresse in der Lightwallet umwandeln (und umgekehrt).\n\nDeine Seed-Phrase kann auch verwendet werden, um deine Lightwallet-EVM-Adresse in externe Wallets zu importieren, die eine 24-Wörter-Wiederherstellungsphrase wie MetaMask unterstützen.\n\nMit der Option \"Senden\" kannst du dToken von deiner DVM-Adresse an eine beliebige EVM-Adresse auf dem MetaChain-Layer senden und umgekehrt. Beachte, dass du deine dToken vor dem Senden nicht umwandeln musst, das geschieht automatisch für dich."
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "NETZWERK",
"Select network": "Netzwerkauswahl",
diff --git a/shared/translations/languages/es.json b/shared/translations/languages/es.json
index 4c4cb0242a..a61d044fdc 100644
--- a/shared/translations/languages/es.json
+++ b/shared/translations/languages/es.json
@@ -554,6 +554,19 @@
"Are there other ways to submit proposals?": "Are there other ways to submit proposals?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal."
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "PREGUNTAS FRECUENTES",
+ "About MetaChain (EVM)": "About MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.",
+ "What tokens are supported between DVM and EVM bidirectionally?": "What tokens are supported between DVM and EVM bidirectionally?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.",
+ "How can I access the MetaChain layer from the Light Wallet?": "How can I access the MetaChain layer from the Light Wallet?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.",
+ "Why would I need to move dTokens from DVM to EVM?": "Why would I need to move dTokens from DVM to EVM?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.",
+ "How can I move dTokens from DVM to EVM?": "How can I move dTokens from DVM to EVM?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you."
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "RED",
"Select network": "Seleccionar red",
diff --git a/shared/translations/languages/fr.json b/shared/translations/languages/fr.json
index 6a90518b68..d706827d16 100644
--- a/shared/translations/languages/fr.json
+++ b/shared/translations/languages/fr.json
@@ -548,6 +548,19 @@
"Are there other ways to submit proposals?": "Existe-t-il d'autres façons de soumettre des propositions ?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "Si vous possédez un portefeuille de nœud complet, vous pouvez également choisir de soumettre en utilisant des commandes via ILC. Les commandes peuvent être générées sur DeFiScan, sous l'onglet Governance > Submit proposal."
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "FOIRE AUX QUESTIONS",
+ "About MetaChain (EVM)": "MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "La couche MetaChain fournit un environnement compatible EVM qui permet aux développeurs familiarisés avec Ethereum de créer des applications de nouvelle génération dans l'écosystème natif DeFiChain.\n\nLa couche MetaChain fournit un environnement compatible avec l'EVM qui permet aux développeurs connaissant Ethereum de créer des applications au sein de l'écosystème DeFiChain.",
+ "What tokens are supported between DVM and EVM bidirectionally?": "Quels tokens sont pris en charge entre DVM et EVM de manière bidirectionnelle ?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "Tous les dTokens sont acceptés. Les dTokens se composent de :\ndStocks (dTSLA, dGOOG.) + DFI\n\nPour la liste complète, vous pouvez vous référer à https://defiscan.live/tokens sur tous les tokens de la catégorie DAT.",
+ "How can I access the MetaChain layer from the Light Wallet?": "Comment puis-je accéder à la couche MetaChain à partir du portefeuille léger ?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "Déplacez vos dTokens entre la couche native de DeFiChain (DVM) et la couche MetaChain (EVM) de manière bidirectionnelle.\n\nPar exemple, transférez DFI/DUSD/dBTC ou tout autre dToken de DVM à EVM et retour, le tout directement dans le portefeuille léger.",
+ "Why would I need to move dTokens from DVM to EVM?": "Pourquoi aurais-je besoin de déplacer des dTokens de DVM à EVM ?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "L'utilisation de la passerelle vous permet de déplacer vos dTokens du portefeuille léger vers n'importe quel portefeuille compatible EVM sur la couche MetaChain (ex : MetaMask). Cela vous permettra d'interagir avec l'écosystème EVM en croissance constante sur MetaChain et les différents projets qui s'y trouvent.",
+ "How can I move dTokens from DVM to EVM?": "Comment puis-je déplacer des dTokens de DVM à EVM?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "Vous pouvez le faire via les fonctions \"Convertir\" ou \"Envoyer\" sur le portefeuille léger. L'option \"Convertir\" vous permet de convertir tous les dTokens sur DVM en votre propre adresse EVM dans le portefeuille léger (et vice-versa).\n\nVotre phrase de récupération peut également être utilisée pour importer l'adresse EVM de votre portefeuille léger dans n'importe quel portefeuille externe qui supporte une phrase de récupération de 24 mots comme MetaMask.\n\nL'option \"Envoyer\" vous permet d'envoyer des dTokens depuis votre adresse DVM vers n'importe quelle adresse EVM sur la couche MetaChain et vice versa. Notez que vous n'avez pas besoin de convertir vos dTokens avant de les envoyer, ce processus le fait automatiquement pour vous."
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "RÉSEAU",
"Select network": "Sélectionnez un réseau",
diff --git a/shared/translations/languages/it.json b/shared/translations/languages/it.json
index 0a6b91d701..9e9828f873 100644
--- a/shared/translations/languages/it.json
+++ b/shared/translations/languages/it.json
@@ -553,6 +553,19 @@
"Are there other ways to submit proposals?": "Are there other ways to submit proposals?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal."
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "DOMANDE FREQUENTI",
+ "About MetaChain (EVM)": "About MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.",
+ "What tokens are supported between DVM and EVM bidirectionally?": "What tokens are supported between DVM and EVM bidirectionally?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.",
+ "How can I access the MetaChain layer from the Light Wallet?": "How can I access the MetaChain layer from the Light Wallet?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.",
+ "Why would I need to move dTokens from DVM to EVM?": "Why would I need to move dTokens from DVM to EVM?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.",
+ "How can I move dTokens from DVM to EVM?": "How can I move dTokens from DVM to EVM?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you."
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "RETE",
"Select network": "Selezionare la rete",
diff --git a/shared/translations/languages/zh-Hans.json b/shared/translations/languages/zh-Hans.json
index 0936ff5c64..3439074181 100644
--- a/shared/translations/languages/zh-Hans.json
+++ b/shared/translations/languages/zh-Hans.json
@@ -539,6 +539,19 @@
"Are there other ways to submit proposals?": "还有其他的方式提交提案吗?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "如果您拥有全节点钱包,你可以选择通过CLI界面使用命令进行提交。该命令可以在DeFiScan上生成,在\"Governance\" > \"Submit proposal\" 选项里。"
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "常见问题",
+ "About MetaChain (EVM)": "MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "MetaChain 层提供了一个与 EVM 兼容的环境,允许熟悉以太坊的开发人员在 DeFiChain 生态系统内无缝构建下一代应用程序。\n\nMetaChain 层提供了一个与 EVM 兼容的环境,允许熟悉以太坊的开发人员在 DeFiChain 生态系统内构建应用程序。",
+ "What tokens are supported between DVM and EVM bidirectionally?": "DVM 和 EVM 这两个之间支持哪些双向代币?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "所有 dToken 均被接受。 dToken 包括:\ndStocks (dTSLA, dGOOG.) + DFI\n\n有关完整列表,您可以参考 https://defiscan.live/tokens 了解 DAT 类别下的任何代币。",
+ "How can I access the MetaChain layer from the Light Wallet?": "如何从轻钱包访问MetaChain层?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "在原生 DeFiChain 的原链层 (DVM) 和 MetaChain 层 (EVM) 之间双向移动您的 dToken。\n\n例如,将 DFI/DUSD/dBTC 或任何其他 dToken 从 DVM 转移到 EVM 并返回,所有这些操作都直接在轻钱包内进行。",
+ "Why would I need to move dTokens from DVM to EVM?": "为什么我需要将 dToken 从 DVM 转移到 EVM?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "使用这路线可以让您将 dToken 从 Light Wallet 移动到 MetaChain 层上的任何 EVM 兼容钱包(例如:MetaMask)。 这将使您能够与 MetaChain 上不断发展的 EVM 生态系统及其上的各种项目进行交互。",
+ "How can I move dTokens from DVM to EVM?": "如何将 dToken 从 DVM 转移到 EVM?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "您可以通过 Light Wallet 上的\"转换\"或\"发送\"功能来完成此操作。 \"转换\"选项允许您将 DVM 上的任何 dToken 转换为您自己的轻钱包中的 EVM 地址(反之亦然)。\n\n您的助记词还可用于将您的轻钱包 EVM 地址导入任何支持 24 个单词恢复短语(如 MetaMask)的外部钱包。\n\n\"发送\"选项允许您将 dToken 从您的 DVM 地址发送到 MetaChain 层上的任何 EVM 地址,反之亦然。 请注意,您无需在发送前转换 dToken,此过程会自动为您完成。"
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "网络",
"Select network": "切换网络",
diff --git a/shared/translations/languages/zh-Hant.json b/shared/translations/languages/zh-Hant.json
index 6107532457..c411557c84 100644
--- a/shared/translations/languages/zh-Hant.json
+++ b/shared/translations/languages/zh-Hant.json
@@ -539,6 +539,19 @@
"Are there other ways to submit proposals?": "還有其他的方式提交提案嗎?",
"If you own a full node wallet, you may also choose to submit using commands via CLI. Commands can be generated on DeFiScan, under Governance tab > Submit proposal.": "如果您擁有全節點錢包,你可以選擇通過CLI界面使用命令進行提交。該命令可以在DeFiScan上生成,在\"Governance\" > \"Submit proposal\" 選項裡。"
},
+ "components/EvmFeatureFaq": {
+ "FREQUENTLY ASKED QUESTIONS": "常見問題",
+ "About MetaChain (EVM)": "MetaChain (EVM)",
+ "The MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to seamlessly build next generation applications inside the native DeFiChain ecosystem.\n\nThe MetaChain layer provides an EVM-compatible environment that allows developers familiar with Ethereum to build applications inside the DeFiChain ecosystem.": "MetaChain 層提供了一個與EVM 兼容的環境,允許熟悉以太坊的開發人員在DeFiChain 生態系統內無縫構建下一代應用程序。\n\nMetaChain 層提供了一個與EVM 兼容的環境,允許熟悉以太坊的開發人員在DeFiChain 生態系統內構建應用程序。",
+ "What tokens are supported between DVM and EVM bidirectionally?": "DVM 和 EVM 這兩個之間支持哪些雙向代幣?",
+ "All dTokens are accepted. dTokens consist of:\ndStocks (dTSLA, dGOOG.) + DFI\n\nFor the full list, you may refer to https://defiscan.live/tokens on any tokens under DAT category.": "所有 dToken 均被接受。 dToken 包括:\ndStocks (dTSLA, dGOOG.) + DFI\n\n有關完整列表,您可以參考https://defiscan.live/tokens 了解DAT 類別下的任何代幣。",
+ "How can I access the MetaChain layer from the Light Wallet?": "如何從輕錢包訪問MetaChain層?",
+ "Move your dTokens between native DeFiChain's native layer (DVM) and the MetaChain layer (EVM) bidirectionally.\n\nFor instance, transfer DFI/DUSD/dBTC or any other dToken from DVM to EVM and back, all directly within the Light Wallet.": "在原生 DeFiChain 的原鏈層 (DVM) 和 MetaChain 層 (EVM) 之間雙向移動您的 dToken。\n\n例如,將DFI/DUSD/dBTC 或任何其他dToken 從DVM 轉移到EVM 並返回,所有這些操作都直接在輕錢包內進行。",
+ "Why would I need to move dTokens from DVM to EVM?": "為什麼我需要將 dToken 從 DVM 轉移到 EVM?",
+ "Using the gateway allows you to move your dTokens from the Light Wallet to any EVM compatible wallet on the MetaChain layer (ex: MetaMask). This would allow you to interact with the constantly growing EVM ecosystem on MetaChain and the various projects on it.": "使用這路線可以讓您將dToken 從Light Wallet 移動到MetaChain 層上的任何EVM 兼容錢包(例如:MetaMask)。這將使您能夠與 MetaChain 上不斷發展的 EVM 生態系統及其上的各種項目進行交互。",
+ "How can I move dTokens from DVM to EVM?": "如何將 dToken 從 DVM 轉移到 EVM?",
+ "You can do it through either the \"Convert\" or \"Send\" functions on Light Wallet. The \"Convert\" option allows you to convert any dTokens on DVM to your own EVM address within the Light Wallet (and vice versa).\n\nYour seed phrase can also be used to import your Light Wallet EVM address into any external wallets which support a 24 words recovery phrase like MetaMask.\n\nThe \"Send\" option allows you to send dTokens from your DVM address to any EVM address on the MetaChain layer and vice versa. Note that you do not need to convert your dTokens before sending, this process does it automatically for you.": "您可以通過Light Wallet 上的\"轉換\"或\"發送\"功能來完成此操作。 \"轉換\"選項允許您將 DVM 上的任何 dToken 轉換為您自己的輕錢包中的 EVM 地址(反之亦然)。\n\n您的助記詞還可用於將您的輕錢包EVM 地址導入任何支持24 個單詞恢復短語(如MetaMask)的外部錢包。\n\n\"發送\"選項允許您將dToken 從您的DVM 地址發送到MetaChain 層上的任何EVM 地址,反之亦然。請注意,您無需在發送前轉換 dToken,此過程會自動為您完成。"
+ },
"screens/NetworkSelectionScreen": {
"NETWORK": "網絡",
"Select network": "切換網絡",