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
Ethers v6 came out earlier in the year so we should upgrade to future proof and benefit from the additional optimisations that come from the version upgrade, such as ES module support that will aid our efforts to support browser testing (pre-requisite for Vitest implementation #813). v6 has also cleaned up a lot of the code and brought stricter function signatures so seems to have been developed with defensive programming in mind.
The text was updated successfully, but these errors were encountered:
arrayify - now getBytesCopy (getBtyesCopy is used over getBytes to avoid issues where a Buffer could be passed in and is then not returned as a UInt8Array)
concat - the function signature has been made stricter here and now only returns a string, we should look to implement our own bytes concatenation function also
Ethers
v6
came out earlier in the year so we should upgrade to future proof and benefit from the additional optimisations that come from the version upgrade, such as ES module support that will aid our efforts to support browser testing (pre-requisite for Vitest implementation #813).v6
has also cleaned up a lot of the code and brought stricter function signatures so seems to have been developed with defensive programming in mind.The text was updated successfully, but these errors were encountered: