From 91d8e26ba7e8ad9a607eda4958dfc3fdbf6a4039 Mon Sep 17 00:00:00 2001
From: Pandit Dhamdhere <85685981+panditdhamdhere@users.noreply.github.com>
Date: Fri, 27 Dec 2024 22:13:13 +0530
Subject: [PATCH] Update interacting-with-smart-contracts-using-ethers.js.md
update with fixing minor typos.
---
.../interacting-with-smart-contracts-using-ethers.js.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build-on-mode/interacting-with-smart-contracts-using-ethers.js.md b/build-on-mode/interacting-with-smart-contracts-using-ethers.js.md
index 4f75a56..2ea3e25 100644
--- a/build-on-mode/interacting-with-smart-contracts-using-ethers.js.md
+++ b/build-on-mode/interacting-with-smart-contracts-using-ethers.js.md
@@ -65,7 +65,7 @@ export default App;
In this file are importing `useState` and `useEffect` which we'll be needing later in this tutorial, we’re also importing `ethers` to enable us to make a connection to our smart contract.
\
-The next thing we need to do is to declare our contract address and ABI file, there are different ways get the contract ABI but if you deployed you smart contract using foundry, you can find your ABI check the following directory:
+The next thing we need to do is to declare our contract address and ABI file, there are different ways get the contract ABI but if you deployed your smart contract using foundry, you can find your ABI check the following directory:
./out/MyContract.sol/MyContract.json.
@@ -115,7 +115,7 @@ export default App;
```
{% endcode %}
-We added the contract address, the abi, and a few states that we will need for our dApp to work. Don't worry about all these React states, they are particular for this app so you don't need to fully understand them. Please remember to paste you ABI in your App.js file.
+We added the contract address, the abi, and a few states that we will need for our dApp to work. Don't worry about all these React states, they are particular for this app so you don't need to fully understand them. Please remember to paste your ABI in your App.js file.
{% hint style="info" %}
Usually we would save the ABI in a different file and then import it but in this case we'll just paste all the ABI JSON in our App.js file.