Skip to content

Rari-Capital/golf-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

golf-course

A list of common Solidity optimization tips and myths.

Tips

Right Shift Instead of Dividing By 2

The SHR opcode is 3 gas cheaper than DIV and also bypasses Solidity's division by 0 prevention overhead.

// Unoptimized:
uint256 two = 4 / 2;

// Optimized:
uint256 two = 4 >> 1;

Myths

About

A list of common Solidity optimization tips and myths.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published