0.1.6 • Published 2 years ago

@forge-jig/cli v0.1.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Jig: a tool used to expedite some repetitive task and ensure that the results do not vary from project to project.

Jig generates a helper contract that abstracts away all storage slot math.

For example:

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.4.22 <0.9.0;

contract Baby {
    uint256 public simple;
    
}

Turns into...

// THIS FILE WAS GENERATED
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

interface CheatCodes {
...
}

contract BabyJig {
    address internal target;
    CheatCodes public constant VM =
        CheatCodes(
            address(bytes20(uint160(uint256(keccak256("hevm cheat code")))))
        );

    constructor(address _contractAddress) {
        target = _contractAddress;
    }

    ...
    
    uint256 public simpleStorageSlot = uint256(0);

    function simple(uint256 value) public {
        VM.store(target, bytes32(simpleStorageSlot), bytes32(uint256(value)));
    }
}

which allows you to do things like...

contract BabyTest is DSTest {
    Baby baby;
    BabyJig jig;

    function setUp() public {
        baby = new Baby();
        jig = new BabyJig(address(b));
    }

    function testJig(uint256 rand) public {
        jig.simple(rand);
        assert(b.simple() == rand);
    }
}

Check out the sample contracts to see how far Jig can push this pattern.

How

Jig is built on top the solc-type-ast library built by Consensys. By traversing the AST of your contract source, Jig as able to parse out the storage declarations, apply some math, and spit out this helper contract. In addition, if your storage variables are a struct, Jig will import the struct declaration into its contract file and use that struct as part of the function signature. This gets booooonkers, but allows users to quickly push complicated state into a contract.

Inspiration

forge-std is a major improvement over the native vm.store, we would not have been able to build up enough intuition

TODO

  • generate storage layout from contract source

    • parse out top level contract storage
    • parse out struct declarations
    • map contract storage vars to slots

      • mappings
      • arrays
      • custom structs
        • packed
        • multi-slot
        • nested
  • generate JigContract

    • generate struct imports for helper contract to consume
    • codegen slot storage helper per storage variable

      • builtin solidity types
      • mapping
        • nested mapping
        • struct
        • solidity type
        • array
      • array
        • manage array length
        • nested array
        • struct
        • solidity type
      • struct
        • packed
        • multi-slot
        • nested
        • array
        • solidity type
  • deep merge foundry.toml default values with local config

  • flatten structs to better handle AppStorage pattern
  • rename test contracts
  • build test cases around solmate

  • migrate to mono repo

    • split out storage layout processing into own package
    • split out built-in type processing into own package
  • [] refactor codegen to be more recursion focused
    • [] move magic strings into constants file

About

Storage Slot Tricks

  • multiple structs will not be packed into 1 slot
  • structs will always start in a new storage slot
  • in order to add an element to an array you must also increment the length