Skip to content

v2.0.0-beta.5 (February 12th, 2026)

Choose a tag to compare

@jinglescode jinglescode released this 12 Feb 05:43
· 42 commits to main since this release

@meshsdk/wallet v2.0.0-beta.5

Fixed

  • ESM bundle no longer breaks in webpack/Vite browser builds. The bundle was inlining @noble/hashes/cryptoNode.js which called require("crypto") via a tsup runtime shim — this throws in browser environments where require is undefined. The ESM bundle now correctly resolves to the browser-safe globalThis.crypto (Web Crypto API), while the CJS bundle continues using Node's native require("crypto").