0xbyte0 / gas-puzzles

A sequence of smart contracts to practice gas optimization. These are used as practice assignments for RareSkills.io and the Udemy Gas Optimization Course

Home Page:https://rareskills.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RareSkills Gas Puzzles

If you want to learn about gas optimization, take the Udemy gas optimization course!

Puzzles that are ready for you

  • Distribute (hard)
  • Array Sum (easy)
  • Mint150 (very hard)
  • Escrow
  • EscrowV2
  • Mint
  • Presale
  • Require (easy)
  • Staking

Contributors

DO NOT COMMIT SOLUTIONS, BE SURE TO PUT ANSWERS IN contracts/contracts_optimized to ensure they fall into the .gitignore

Players

Your goal is to optimize the contracts such that they reach the target efficiency.

Rules

  • you may not change the optimizer level
  • you may not change the solidity version
  • you may refactor functionality as long as you don't break the business logic
  • you may make reasonable assumptions about what variable sizes are necessary to get things done
  • you may remove unnecessary or redunant logic (some have been intentionally added)
  • because making functions payable is a controversial optimization, you do not need to make functions payable to reach the gas target unless the function needs to be payable to fulfill its business logic

Testing

As mentioned above, optimized contracts should be created in their own sub-folder to prevent commiting them publicly.

The file structure should look similar to this:

- GasPuzzles
  |_
    contracts
    |_
      contracts_optimized
    | |_
    |   ArraySum.sol
    |   Distribute.sol
    |   ..
    |   ...
    |
    ArraySum.sol
    Distribute.sol
    ..
    ...

Within the contracts that are optimized be sure to follow the following naming convention to ensure tests run smoothly:

contract OptimizedArraySum {

...

contract OptimizedDistribute {

...
npx hardhat test
npx hardhat test test/ArraySum
npx prettier --write *

About

A sequence of smart contracts to practice gas optimization. These are used as practice assignments for RareSkills.io and the Udemy Gas Optimization Course

https://rareskills.io


Languages

Language:JavaScript 66.6%Language:Solidity 33.4%