You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
polygon_mumbai has been present for a long time, so this would be a breaking change that I'd like to avoid. Perhaps there's a way to cleanly support aliases though
Right now, the most convinient way to name chains in config is by following naming used in Chains enum in ethers-rs (as discussed is foundry-rs/foundry#4895). For mumbai network this alias is
mumbai
(polygon-mumbai
is also fine, butmumbai
seems to be the preferred one)https://github.com/gakonst/ethers-rs/blob/3e7606d81b423593db5a38dcf3b5174987efc74c/ethers-core/src/types/chain.rs#L99-L101
But following such pattern for this network results in it being non-found by StdChains, because it uses
polygon_mumbai
alias:forge-std/src/StdChains.sol
Lines 204 to 206 in f18e8aa
I think that it will make sense to change alias in
initializeStdChains
tomumbai
and fix all such differencesThe text was updated successfully, but these errors were encountered: