-
Notifications
You must be signed in to change notification settings - Fork 43
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
Replace ethers
with viem
#528
Conversation
Deploying with Cloudflare Pages
|
036d78c
to
74cc692
Compare
alice.conversations.newConversation(bobUpper) | ||
).resolves.toMatchObject({ | ||
peerAddress: bob.address, | ||
}) |
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.
an all uppercase address generates an error with viem
so removed this test. the getAddress
function runs through this bit of code before returning the checksum address. we could keep the test and update our code to always lowercase an address before generating a checksum address.
74cc692
to
72ab6db
Compare
🎉 This PR is included in version 11.4.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
this PR replaces the use of
ethers
withviem
. see Why Viem for more info on this change.