From 8684b08e40427cfcf586378c7996de3b84511b02 Mon Sep 17 00:00:00 2001 From: KAMBALENGUNUNU Date: Sun, 8 Sep 2024 23:13:54 +0200 Subject: [PATCH 01/21] making the french version of the explained code --- README.fr.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 README.fr.md diff --git a/README.fr.md b/README.fr.md new file mode 100644 index 0000000..80b187a --- /dev/null +++ b/README.fr.md @@ -0,0 +1,51 @@ +# morph-examples +Ceci est le repo d'une série d'exemples de code qui aide les développeurs à s'intégrer à l'écosystème Morph. + + + +# Morph Examples + +Les exemples de code dans ce Repo vont de la mise en ligne de contrats simples sur Morph à la création d'applications décentralisées (dApps) complètes utilisant Morph comme solution de couche 2 (L2). +D'autres exemples seront ajoutés à ce dépôt, et nous sommes ouverts aux suggestions d'exemples de code que vous aimeriez voir à l'avenir. + +## Getting Started + +### [contract-deploy-demo](https://github.com/morph-l2/morph-examples/tree/main/contract-deployment-demos) +* [foundry-deploy](https://github.com/varun-doshi/morph-examples/tree/main/contract-deployment-demos/foundry-demo) +* [hardhat-deploy](https://github.com/varun-doshi/morph-examples/tree/main/contract-deployment-demos/hardhat-demo) + +Ce répertoire contient des projets qui démontrent comment utiliser **Hardhat** ou **Foundry** pour déployer un contrat sur le réseau rollup de Morph. + +Ce projet contient un contrat simple qui verrouillera une certaine quantité d'Ether dans le contrat déployé pendant une durée déterminée. + + +### [frontend-demo](https://github.com/varun-doshi/morph-examples/tree/main/frontend_examples/nextjs_wagmi_template) +This directory consists of a simple Frontend setup allowing you to connect to your smart contract and interact with them from the UI. + + + +## Chain Configuration + +``` +network:morphTestnet +chainId:2810 +apiURL: 'https://explorer-api-holesky.morphl2.io/api?' +browserURL: 'https://explorer-holesky.morphl2.io/' +rpcURL: 'https://rpc-quicknode-holesky.morphl2.io' +currencySymbol: ETH +``` From 1f0d6e652a369fdcc30b867db1307d7eb96b1fcc Mon Sep 17 00:00:00 2001 From: KAMBALENGUNUNU Date: Sun, 8 Sep 2024 23:17:07 +0200 Subject: [PATCH 02/21] making the french version of the explained code --- README.fr.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.fr.md b/README.fr.md index 80b187a..7fba0e8 100644 --- a/README.fr.md +++ b/README.fr.md @@ -23,8 +23,7 @@ Ce projet contient un contrat simple qui verrouillera une certaine quantité d'E ### [frontend-demo](https://github.com/varun-doshi/morph-examples/tree/main/frontend_examples/nextjs_wagmi_template) -This directory consists of a simple Frontend setup allowing you to connect to your smart contract and interact with them from the UI. - +Ce répertoire contient une configuration Frontend simple vous permettant de connecter et d'interagir avec vos contrats intelligents directement depuis l'interface utilisateur.