From c1436e3c1b93fab5b023a32ea615717eb972e5fe Mon Sep 17 00:00:00 2001 From: Sheng Lundquist Date: Thu, 8 Aug 2024 10:26:33 -0700 Subject: [PATCH] Don't use whales, and instead lower mint amount --- scripts/fork_fuzz_bots.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/scripts/fork_fuzz_bots.py b/scripts/fork_fuzz_bots.py index 75af21a27..fd46af259 100644 --- a/scripts/fork_fuzz_bots.py +++ b/scripts/fork_fuzz_bots.py @@ -24,13 +24,7 @@ # Note that if a token is missing in this mapping, we will try to # call `mint` on the trading token to fund. SEPOLIA_WHALE_ADDRESSES = { - # We ignore DAI since the underlying base token is mintable - # EZETH - "0xDD0D63E304F3D9d9E54d8945bE95011867c80E4f": "0x54A93937EE00838d659795b9bbbe904a00DdF278", - # RETH - "0x4713c86d0e467064A4CD2a974b7fDA79F7efc338": "0x8DFc7c74331162FE2FCc2Ee83173d806E4Ca2CE8", - # STETH - "0x7c485f458aD1F32FF66BC45306fd32974C963c32": "0xb59b98209e82Fc0549Bb2572809B7CD10289Bb91", + # Note all base tokens are mintable up to 500, so we don't need whales here } # TODO set the static block we fork at, in case whales change @@ -189,7 +183,9 @@ def main(argv: Sequence[str] | None = None) -> None: random_advance_time=False, random_variable_rate=False, lp_share_price_test=False, - base_budget_per_bot=FixedPoint(1000), + # TODO all base tokens are mintable up to 500 base + # If we want more, we need to put minting in a loop. + base_budget_per_bot=FixedPoint(500), whale_accounts=SEPOLIA_WHALE_ADDRESSES, ) except Exception as e: # pylint: disable=broad-except