-
Notifications
You must be signed in to change notification settings - Fork 20
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: migrate to sepolia #273
Conversation
|
||
expect(getProviderConfig()).toEqual({ | ||
networks: [{ name: "goerli", rpcUrl: "https://eth-goerli.alchemyapi.io/v2/_gg7wSSi0KMBsdKnGVfHDueq6xMB9EkC" }], | ||
networks: [{ name: "sepolia", rpcUrl: "https://eth-sepolia.g.alchemy.com/v2/" }], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No default API key used here because we are using a workaround with manual URL (JsonRPCProvider
) for ethers v5 to call Sepolia. Default API key will apply in ethers v6 when we use AlchemyProvider
which supports Sepolia
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
🎉 This PR is included in version 9.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
What this PR does
ethers
to v6 and use the sepolia-supported AlchemyProvider, which consist ofapiKey
property.TODO
tag so that we will remember to revert the change in the future bumpethr-did-resolver
(we are using the pre-ethers v6 version and v6 has support for Sepolia but is a breaking change)