Skip to content

Commit

Permalink
Don't use whales, and instead lower mint amount
Browse files Browse the repository at this point in the history
  • Loading branch information
slundqui committed Aug 8, 2024
1 parent b37d681 commit c1436e3
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions scripts/fork_fuzz_bots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c1436e3

Please sign in to comment.