Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 583 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 583 Bytes

Yul developer experience

Repository installation

  1. Install Foundry
curl -L https://foundry.paradigm.xyz | bash
foundryup
  1. Install solidity compiler https://docs.soliditylang.org/en/latest/installing-solidity.html#installing-the-solidity-compiler

NOTE:

Added: --evm-version=paris to YulDeployer.sol to work around PUSH0 issue.

  1. Build Yul contracts and check tests pass
forge test

Running tests

Run tests (compiles yul then fetch resulting bytecode in test)

forge test

To see the console logs during tests

forge test -vvv