gas-optimizations icon indicating copy to clipboard operation
gas-optimizations copied to clipboard

List of smart contract optimizations in solidity

Results 13 gas-optimizations issues
Sort by recently updated
recently updated
newest added

outline use of the new yul IR pipeline and how it may save gas see: https://blog.soliditylang.org/2022/03/16/solidity-0.8.13-release-announcement/

enhancement

The `payable` modifier can also help to reduce deployment costs. You can cut out 10 opcodes in the creation-time EVM bytecode if you declare a constructor `payable`. The following opcodes...

enhancement

## Alleged Gas Costs At the time of opening the issue, the [Optimal Comparison Operator](https://github.com/kadenzipfel/gas-optimizations/blob/3260258f38aa436503e30ed117262da4e9f5b1ab/gas-golfing/optimal-comparison-operator.md) document makes the following claim: > In the case of a conditional statement, it is...