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
Fix ESM browser build crash — Upgraded @meshsdk/wallet from 2.0.0-beta.4 to 2.0.0-beta.5. The ESM bundle was inlining @noble/hashes/cryptoNode.js which called require("crypto") via a tsup runtime shim, causing builds to break in webpack/Vite 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").