Private hash
Wander Injected API privateHash() function
The privateHash()
function allows you to create deterministic secrets (hashes) from some data.
Argument
Type
Description
data
ArrayBuffer
The data to hash
Example usage
// connect to the extension
await window.arweaveWallet.connect(["SIGNATURE"]);
// data to be hashed
const data = new TextEncoder().encode("The hash of this msg will be signed.");
// create the hash using the active wallet
const hash = await window.arweaveWallet.privateHash(
data,
{ hashAlgorithm: "SHA-256" }
);
console.log("Data hash is", hash);
Last updated
Was this helpful?