v2.0.0-beta.5 (February 12th, 2026)
·
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.jswhich calledrequire("crypto")via a tsup runtime shim — this throws in browser environments whererequireis undefined. The ESM bundle now correctly resolves to the browser-safeglobalThis.crypto(Web Crypto API), while the CJS bundle continues using Node's nativerequire("crypto").