Open mpetruska opened 1 month ago
In a discussion with @SuganyaAK, the function getUniqueTokenName uses crypto.subtle.digest("SHA3-256", data), which results in an "unrecognized algorithm name" error.
getUniqueTokenName
crypto.subtle.digest("SHA3-256", data)
don't use crypto , use https://github.com/paulmillr/noble-hashes instead
crypto
In a discussion with @SuganyaAK, the function
getUniqueTokenName
usescrypto.subtle.digest("SHA3-256", data)
, which results in an "unrecognized algorithm name" error.