The Best Solidity Gas Optimization Tips With Code Examples

The Best Solidity Gas Optimization Tips With Code Examples
Do not index
Do not index
Hello, brilliant minds! It's me again, diving deep into the world of Ethereum.
Today, I've got a special treat for you – a masterclass in Solidity gas optimization. I'll walk you through some savvy tips and code examples that I've personally found to be game-changers. Let's make those smart contracts not just smart but also gas-efficient!
But the main question is - what does gas costs really mean, and how is it connected with smart contract creation?
As a solidity developer, it is important to understand the concept of gas in Ethereum and how to optimize smart contracts. Gas is the unit of measurement for the amount of computational work required to execute a transaction on Ethereum.
notion image
It is important to optimize your smart contracts to minimize gas costs. Gas optimization makes transactions efficient and cost-effective for users. Every operation in a smart contract requires a certain amount of gas. The total gas cost of a transaction is the sum of the gas costs of all the operations it contains.
When a user sends a transaction to the Ethereum network, they must specify the maximum amount of gas. This is based on what the user is willing to pay for the transaction to be processed. If the gas limit is reached before the transaction is complete, the transaction will fail. Ultimately, the user will lose the gas that was used.
This blog post will cover several tips and best practices for gas optimization in solidity. We will discuss how to optimize your contract code, how to use the Solidity compiler to optimize gas usage, and how to test your contracts to ensure they are gas-efficient.

Optimize Smart Contract Code

notion image
One of the most important ways to optimize gas usage in your contracts is to write efficient and optimized code.
Here are a few tips for optimizing your contract code:

1. Use the Latest Version of Solidity

The Solidity compiler is constantly being updated with new optimization features and improvements. By using the latest version of Solidity, you can take advantage of these improvements and potentially reduce gas costs.

2. Avoid Unnecessary Operations

Every operation in a smart contract requires gas, so it is important to avoid unnecessary operations whenever possible.
For example, if you are iterating through an array, consider using a for loop instead of a for-each loop, as the latter requires more gas.
When working with state variables, there are a few things you should look out for. Here are some articles that can help you:

3. Use Built-in Functions Whenever Possible

Solidity has a number of built-in functions that can be used to perform common operations, such as checking if a value is within a certain range or calculating the length of an array. These functions are optimized for gas efficiency and should be used whenever possible.

4. Avoid Nested Function Calls

Every time a function is called, it requires gas. If a function calls another function, which then calls another function, and so on, the gas cost can quickly add up. Try to avoid nested function calls whenever possible.
Remember, just because a function is "view" or "pure" or an internal function, you are still going to incur gas usage if you call this variable from within a function or other smart contracts.

5. Use Libraries

Libraries are smart contracts that can be called by other contracts, allowing you to reuse code and reduce the amount of gas needed for a particular operation.

6. Utilize Memory Until Storage Updates are Essential

When using local variables, you generally do not need to write them to storage variables. Writing data to storage is a high gas consumption task.
Leverage memory instead of storage whenever possible. Remember, the cost of storage variables will get exponentially more expensive over time.
Saving variables to storage can be expensive. Expect to pay around 20,000 gas to save a variable. You'll pay about 5,000 gas to overwrite the variable. Keep in mind writing multiple variables will incur more gas. Reading from storage will cost you about 800 gas while reading from memory will be about 3 gas. Memory variables are truly the way to go for smart contract gas optimization.

7. Keep Function Parameters Small

Having fewer function parameters will reduce gas consumption because there is less to store in memory. Keeping your functions small is a great way of optimizing gas.

8. Cache Function Calls

A practical approach to saving gas in smart contract operations is to cache the result of a function call in a local variable, particularly when the function is invoked multiple times. This method is beneficial as it circumvents the need to repeatedly execute the function's code, which is a process that consumes a significant amount of gas and processing power.
I recommend this article if you're seeking an in-depth understanding of Cache Function Calls.
  • Here's a little sneak peek!
    • notion image

9. Use the Payable Modifier

Any function sending or receiving Ether should use the "payable" modifier within the smart contract code. This tells the compiler that the function can send and receive Ether, which will save on gas usage.

10. Use External Instead of Public (most of the time)

Public functions write parameters to storage, while external functions read directly from the `calldata`. Reading from memory is expensive compared to reading from `calldata`. Use external whenever you need a publicly available method.

11. Optimize Loops

In Solidity's array operations, utilizing loops for element traversal is common. But not caching the array length outside the loop compels the compiler to retrieve the array's length in every iteration. Such an approach can consume more gas and decrease the efficiency of the smart contract.
Here are some key points of what you should avoid when optimizing loops:
  • Avoid external calls
  • Unchecked ++i
Check out this article for an in-depth exploration of Cache Array Length Outside of Loop.
  • Here's a little sneak peek!
    • notion image
      notion image

12. Use Arrays Sparingly

An unbounded array can ruin a smart contract. Whenever possible, use mappings instead of arrays. If you are using an array, make sure it's a fixed-size array so the storage costs are known upfront. Using smaller, fixed-sized arrays are gas optimized.

13. Name the Function Return Value

Naming the function return value does not require one to initialize the variable in the code. You also don't have to explicitly return the variable. This helps out the compiler and will save you precious gas. This is a little-known smart contract gas optimization that is very easy to implement.

14. Use Events Rather than data storage whenever possible

Events in Solidity are useful for broadcasting messages from smart contracts. Since you are not writing to storage, and merely broadcasting a massage, they incur minimal gas usage.
You can also index events by a certain value, so they are easily searchable. If you do not need the data directly in the smart contracts, and you can read the values off-chain, then events are a very attractive Solidity gas optimization.

15. Set your Variable Access Correctly

Leverage global variables with private visibility over public variables.

16. Use Pointers Instead of Copying

Copying variables between memory and storage incurs gas consumption. Use a pointer whenever possible to cut back on those gas fees.

17. Use Structs Over Multiple Storage Variables

As we know, writing to memory instead of storage is one of the best gas optimizations you can be alert for. Similarly, if your smart contract is writing to multiple variables at the same time, then it will probably save gas to use a struct. The gas fees required to update two storage variables are usually greater than writing one storage variable for a struct.
notion image
notion image

18. Get a Gas Refund

Did you know you can get a refund of gas costs when you set a variable back to the default value of zero? This will return about 15,000 gas and reduce gas costs for other functions.
You can remove a contract using the Selfdestruct opcodes. This will refund about 24,000 gas.

19. Use bytes32 Instead of String

If you have a known length of string, consider using bytes32 instead of string because bytes32 is the most optimized type.

20. Optimize your Unit Type

Storing a small number? Consider a uint1, uint8, or other value. There's no sense in using the space required for a uint256 when you know the numbers will never get that high.

Bonus Nerd Tip: Order functions alphabetically in order of most usage

Due to how the ethereum virtual machine stores functions, you will get a small gas benefit by ordering your functions by usage AND in alphabetical order. The Ethereum Virtual Machine (EVM) stores function names in a jump table alphabetically. You will slightly reduce gas fees using this strategy, but you may sacrifice readability. This is certainly not a common gas optimization...

Use the Solidity Compiler to Optimize Gas Usage

notion image
The Solidity compiler has several optimization options that can be used to reduce gas costs. These options can be specified when compiling your contract using the Solidity compiler's command line interface.
  • The “–optimize” flag: This flag enables the optimization of the contract code. To reduce gas costs, the Solidity compiler will perform various optimization techniques, such as inlining functions and removing unnecessary code.
  • The “–optimize-runs” flag: This flag allows you to specify the number of times the compiler should run the optimization pass. The more times the optimization pass is run, the more optimization will be performed and the lower the gas costs will be. However, note that increasing the number of optimization runs will also increase the compilation time.
  • The “–optimize-yul” flag: This flag enables the Yul optimizer, which is a low-level intermediate representation (IR) optimizer that can further reduce gas costs by optimizing the IR code generated by the Solidity compiler.

Test your smart contract for gas optimization

notion image
We recommend using the Hardhat framework, which has built-in support for the ETH Gas Reporting module. This will allow you to see how code changes affect the gas costs in your functions.
Gas optimization will set you apart from other Solidity developers and make users happier with your protocol.

Stay ahead of the Web3 security curve!

Learn tips and tricks from top auditors and stay up-to-date on the latest news.

Subscribe