Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add sepolia + add comment to remove goerli #163

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ape_hardhat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ def providers():

yield "arbitrum", LOCAL_NETWORK_NAME, HardhatProvider
yield "arbitrum", "mainnet-fork", HardhatForkProvider
# TODO: Remove when goerli is sunset
yield "arbitrum", "goerli-fork", HardhatForkProvider
yield "arbitrum", "sepolia-fork", HardhatForkProvider

yield "avalanche", LOCAL_NETWORK_NAME, HardhatProvider
yield "avalanche", "mainnet-fork", HardhatForkProvider
Expand All @@ -41,7 +43,9 @@ def providers():

yield "optimism", LOCAL_NETWORK_NAME, HardhatProvider
yield "optimism", "mainnet-fork", HardhatForkProvider
# TODO: Remove when goerli is sunset
yield "optimism", "goerli-fork", HardhatForkProvider
yield "optimism", "sepolia-fork", HardhatForkProvider

yield "polygon", LOCAL_NETWORK_NAME, HardhatProvider
yield "polygon", "mainnet-fork", HardhatForkProvider
Expand Down
Loading