Gas Optimizations #233
Labels
bug
Something isn't working
G (Gas Optimization)
resolved
Finding has been patched by sponsor (sponsor pls link to PR containing fix)
Using unchecked blocks to save gas
Solidity version 0.8+ comes with implicit overflow and underflow checks on unsigned integers. When an overflow or an underflow isn’t possible (as an example, when a comparison is made before the arithmetic operation), some gas can be saved by using an unchecked block
File: BridgeFacet.sol line 1099-1100
The line
availableAmount - backUnbackedAmount;
should be wrapped in an unchecked block since it cannot underflow due to the check on line 1099 that ensures that availableAmount is greater than backUnbackedAmountWe can modify the above as follows:
Other Instances to modify
File:PortalFacet.sol line 147
The above cannot underflow due to the check on line 146 which ensures that total is greater than amount before performing the arithmetic operation.
File:PortalFacet.sol line 150
The above cannot underflow due the check on line 148 which ensures that
_feeAmount
is greater thanmissing
before performing the arithmetic operation.File:PortalFacet.sol line 153
The above line would only be executed if the check on line 148 fails. That check ensure that
_feeAmount
is greater thanmissing
which means if this check fails thenmissing
is greater than_feeAmount
therefore our arithmetic operationmissing -= _feeAmount;
would not underflow.For loops Increments can be unchecked to save gas.
The majority of Solidity for loops increment a uint256 variable that starts at 0. These increment operations never need to be checked for over/underflow because the variable will never reach the max number of uint256 (will run out of gas long before that happens). The default over/underflow check wastes gas in every iteration of virtually every for loop.
e.g Let's work with a sample loop below to demonstrate how to use unchecked blocks
can be written as shown below.
We can also write it as an inlined function like below.
Affected code
File: DiamondLoupeFacet.sol line 31
The above function can be modified to the following
Other instances
File: ConnextPriceOracle.sol line 176
File: LibDiamond.sol line 104
Something similar to my proposal for the above has already been implemented on contract BridgeFacet.sol at line 610-614
See line 683,line 798 to for another implementation of the same.
Cache the length of arrays in loops ~6 gas per iteration
Reading array length at each iteration of the loop takes 6 gas (3 for mload and 3 to place memory_offset) in the stack.
The solidity compiler will always read the length of the array during each iteration. That is,
1.if it is a storage array, this is an extra sload operation (100 additional extra gas (EIP-2929 2) for each iteration except for the first),
2.if it is a memory array, this is an extra mload operation (3 additional gas for each iteration except for the first),
3.if it is a calldata array, this is an extra calldataload operation (3 additional gas for each iteration except for the first)
This extra costs can be avoided by caching the array length (in stack):
When reading the length of an array, sload or mload or calldataload operation is only called once and subsequently replaced by a cheap dupN instruction. Even though mload , calldataload and dupN have the same gas cost, mload and calldataload needs an additional dupN to put the offset in the stack, i.e., an extra 3 gas. which brings this to 6 gas
Here, I suggest storing the array’s length in a variable before the for-loop, and use it instead:
File:RelayerFacet.sol line 130-146
From the above function we can see that
_transferIds.length
is being read first when checking whether it's value is 0 and then read again inside the for loop. The length should be cached and used instead of repeatedly fetching it from the array.Other instances
File:RelayerFacet.sol line 164
File:StableSwapFacet.sol line 415
File: ConnextPriceOracle.sol line 176
File: StableSwap.sol line 75-81
Other than being repeatedly read inside the the for loop,
_pooledTokens.length
is also being read three times in the require statement . Caching this variable would save alot of gas as it would not have to be checked up everytime.File: LibDiamond.sol line 104
In the above we should cache
_diamondCut.length
File:SwapUtils.sol line 205
Other than being repeatedly read inside the the for loop,
xp.length
is also being read in the require statement at line 191 and line 202. Caching this variable would save alot of gas as it would not have to be checked up everytime. See line 247 to see how a good impelementation would look.File:SwapUtils.sol line 558
File:SwapUtils.sol line 591
File:SwapUtils.sol line 844
File:SwapUtils.sol line 869
File:SwapUtils.sol line 924
File:SwapUtils.sol line 1014
File:LibDiamond.sol line 147
File:LibDiamond.sol line 162
Splitting require() statements that use && saves gas - 8 gas per &&
Instead of using the && operator in a single require statement to check multiple conditions,using multiple require statements with 1 condition per require statement will save 8 GAS per &&
The gas difference would only be realized if the revert condition is realized(met).
File: StableSwap.sol line 84
The above should be modified to:
Other instances
File:AmplificationUtils.sol line 86
File: SwapUtils.sol line 397
File: SwapUtils.sol line 493
File: SwapUtils.sol line 524
File: SwapUtils.sol line 1007
Proof
The following tests were carried out in remix with both optimization turned on and off
Execution cost
21617 with optimization and using &&
21976 without optimization and using &&
After splitting the require statement
Execution cost
21609 with optimization and split require
21968 without optimization and using split require
No need to initialize variables with their default values
If a variable is not set/initialized, it is assumed to have the default value (0, false, 0x0 etc depending on the data type). If you explicitly initialize it with its default value, you are just wasting gas.
It costs more gas to initialize variables to zero than to let the default of zero be applied
File: ConnextPriceOracle.sol line 176
Other instances to modify
File:SwapUtils.sol line 205
File:SwapUtils.sol line 254
File:SwapUtils.sol line 268
File:SwapUtils.sol line 558
File:SwapUtils.sol line 591
For the loops my suggestion would be to modify them as follows
Comparisons: != is more efficient than > in require
!= 0 costs less gas compared to > 0 for unsigned integers in require statements with the optimizer enabled (6 gas)
For uints the minimum value would be 0 and never a negative value. Since it cannot be a negative value, then the check > 0 is essentially checking that the value is not equal to 0 therefore >0 can be replaced with !=0 which saves gas.
Proof: While it may seem that > 0 is cheaper than !=, this is only true without the optimizer enabled and outside a require statement. If you enable the optimizer at 10k AND you're in a require statement, this will save gas. You can see this tweet for more proofs:
I suggest changing > 0 with != 0 here:
File: ConnextPriceOracle.sol line 150
Something similar to my proposal has already been implemented on line 35
use shorter revert strings(less than 32 bytes)
You can (and should) attach error reason strings along with require statements to make it easier to understand why a contract call reverted. These strings, however, take space in the deployed bytecode. Every reason string takes at least 32 bytes so make sure your string fits in 32 bytes or it will become more expensive.
Shortening revert strings to fit in 32 bytes will decrease deployment time gas and will decrease runtime gas when the revert condition is met.
Revert strings that are longer than 32 bytes require at least one additional mstore, along with additional overhead for computing memory offset, etc.
File: LibDiamond.sol line 66
Other instances
File: LibDiamond.sol line 113
File: LibDiamond.sol line 121
File: LibDiamond.sol line 123
File: LibDiamond.sol line 132
File: LibDiamond.sol line 139
File: LibDiamond.sol line 141
File: LibDiamond.sol line 150
File: LibDiamond.sol line 158
File: LibDiamond.sol line 161
File: LibDiamond.sol line 170
File: LibDiamond.sol line 191
File: LibDiamond.sol line 193
File: LibDiamond.sol line 224
File: LibDiamond.sol line 226
I suggest shortening the revert strings to fit in 32 bytes, or using custom errors.
Use Custom Errors instead of Revert Strings to save Gas
Custom errors from Solidity 0.8.4 are cheaper than revert strings (cheaper deployment cost and runtime cost when the revert condition is met)
see Source
Starting from Solidity v0.8.4, there is a convenient and gas-efficient way to explain to users why an operation failed through the use of custom errors. Until now, you could already use strings to give more information about failures (e.g., revert("Insufficient funds.");), but they are rather expensive, especially when it comes to deploy cost, and it is difficult to use dynamic information in them.
Custom errors are defined using the error statement, which can be used inside and outside of contracts (including interfaces and libraries).
The text was updated successfully, but these errors were encountered: