Add AStar to the AlchemyProvider
Hey! Could we get this added as quickly as possible? We're opening up support for AStar and would love it to work out of the box on Ethers.js!
I generally do no add networks that aren’t among the most used directly to the library. Otherwise the library quickly bloats as it is littered with chainIds, network names and urls to networks that remain fairly obscure, and everyone who uses ethers has to incur this cost. I get a lot if requests for random networks.
That is why ethers makes it easy use custom networks, which is what I’d recommend in this case.
In v6, the network object has been expanded and with provider plugins it will be much easier for custom networks to have their own custom functionality without bloating the core.
Make sense?
@deric-alchemy when the network doesn't exist, you can use JsonRpcProvider instead Alchemy Provider, you need only pass the ALCHEMY HTTPS KEY, and all works.
const ethersAlchemyProvider = new ethers.JsonRpcProvider(
"https://eth-goerli.g.alchemy.com/v2/dsasdasdasdasdasdasdasd"
);