From aee6bfa02e4345e5efaeed6576e6ae38ea0f3470 Mon Sep 17 00:00:00 2001 From: Franco NG Date: Wed, 12 Jun 2024 14:55:40 +0200 Subject: [PATCH] Added L2VotingPowerPaused and L2GovernorPaused contract with test cases (#165) * Added L2VotingPowerPaused and L2GovernorPaused contract with test cases * Add deployment script * Update git submodules * Add foundry.toml * Change version function to be independent * Update comments * Update gitsubmodule, added Custom Errors * Rearrange functions according to requirements * pump forge-std to 1.8.2 * Add onReceive ERC721 and ERC1155 check * Test adjustVotingPower is unpaused * Add deployPausedDAO.sh * Add forge clean to deploy script * Clean before every forge script runs * Used `../../` to navigate paused script * rename assertInitParamsEq --- foundry.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/foundry.toml b/foundry.toml index 1bf6088c..ddc074f0 100644 --- a/foundry.toml +++ b/foundry.toml @@ -25,6 +25,11 @@ ast = true build_info = true extra_output = ["storageLayout"] +ffi = true +ast = true +build_info = true +extra_output = ["storageLayout"] + [fmt] line_length = 120 multiline_func_header = 'all'