From 4c15629d2ca63f4d23270ec6df00328b1e120935 Mon Sep 17 00:00:00 2001 From: Samarth Patel Date: Sun, 26 Jan 2025 20:39:43 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0cc55db..18ed914 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Knowing about various DeFi protocols and how they work is important. Apart from ### EVM and Security *** -Learning solidity is not enough be an expert in writing smart contracts. Deploying and interacting with these contracts require gas, so as a developer you should optimise your code to consume th eleast amount of gas possibel. Also since smart contracts are immutable and transparent, anyone can find vulnerabilities in your code and exploit it. Therefore, making sure that your contract is secure is a top priority for any protocol. +Learning solidity is not enough be an expert in writing smart contracts. Deploying and interacting with these contracts require gas, so as a developer you should optimise your code to consume the least amount of gas possible. Also since smart contracts are immutable and transparent, anyone can find vulnerabilities in your code and exploit it. Therefore, making sure that your contract is secure is a top priority for any protocol.

In order to write optmised and secure code, a deep knowledge of EVM and security practices is crucial. This field is so vast and technical that the best way to learn is reading blogs and articles from multiple experts.