Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 962 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 962 Bytes

Forge ZKsync Standard Library

Forge ZKsync Standard Library is a collection of helpful contracts and libraries for use with Forge and Foundry ZKsync. It leverages Forge's cheatcodes to make writing tests easier and faster, while improving the UX of cheatcodes.

Learn how to use Forge-ZKsync-Std with the 📖 Foundry ZKsync Book.

Install

forge install Moonsong-Labs/forge-zksync-std

Usage

import {Test, console2 as console} from "forge-std/Test.sol";
import {TestExt} from "forge-zksync-std/TestExt.sol";

contract FooTest is Test, TestExt {
    function testZkTraceOutputDuringCreate() public {
        vm.startPrank(address(65536));  // normal foundry cheatcodes
        new Contract1();

        vmExt.zkVmSkip();               // additional foundry-zksync cheatcodes
        new Contract2();
    }
}