From 2e35fb24c7aeccb95ba84fc33ff2ea1d30a17bb2 Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Fri, 4 Sep 2026 11:49:23 +0300 Subject: [PATCH] development environment updates (no logic changes) Signed-off-by: Uncle Fatso --- deployer.sh | 20 ++++++++++---------- foundry.toml | 15 +-------------- 2 files changed, 11 insertions(+), 24 deletions(-) diff --git a/deployer.sh b/deployer.sh index 89e5cb2..f4ecdcf 100644 --- a/deployer.sh +++ b/deployer.sh @@ -25,11 +25,11 @@ usage() { echo "7) BondDepository" echo "8) StakingDistributor" echo "9) BondingCalculator" - echo "10) Gatekeeper" - echo "11) Governor" - echo "12) AfterPartyFirst" - echo "13) AfterPartySecond" - echo "14) AfterPartyThird" + echo "10) Governor" + echo "11) AfterPartyFirst" + echo "12) AfterPartySecond" + echo "13) AfterPartyThird" + echo "14) Gatekeeper" exit 1 } @@ -111,15 +111,15 @@ for i in $(seq $START $END); do elif [ "9" == "$i" ]; then CONTRACT="BondingCalculator" elif [ "10" == "$i" ]; then - CONTRACT="Gatekeeper" - elif [ "11" == "$i" ]; then CONTRACT="Governor" - elif [ "12" == "$i" ]; then + elif [ "11" == "$i" ]; then CONTRACT="AfterPartyFirst" - elif [ "13" == "$i" ]; then + elif [ "12" == "$i" ]; then CONTRACT="AfterPartySecond" - elif [ "14" == "$i" ]; then + elif [ "13" == "$i" ]; then CONTRACT="AfterPartyThird" + elif [ "14" == "$i" ]; then + CONTRACT="Gatekeeper" else echo "No contract found for index $i" exit diff --git a/foundry.toml b/foundry.toml index dd923b8..5ed8d92 100644 --- a/foundry.toml +++ b/foundry.toml @@ -8,20 +8,7 @@ optimizer = true optimizer_runs = 10000 solc_version = "0.8.20" -gas_reports = [ - "Fatso", - "Ghost", - "Stinky", - "GhostAuthority", - "GhostStaking", - "GhostBondDepository", - "GhostDistributor", - "GhostBondingCalculator", - "GhostTreasury", - "GhostGovernorExposed", - "GatekeeperWeaver", - "Gatekeeper", -] +gas_reports = ["*"] remappings = [ "@openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.0.2/", "@uniswap-v2-core/=dependencies/@uniswap-v2-core-1.0.1/contracts",