sha256-pow-bundler
v0.1.9
Published
```js import init, { mine, verify } from 'https://deno.land/x/[email protected]/sha256_pow.js';
Downloads
4
Readme
sha256-pow
import init, { mine, verify } from 'https://deno.land/x/[email protected]/sha256_pow.js';
await init();
const target = "00000021e800000000000000000000000000000000000000000000000000000";
const powBuffer = new TextEncoder().encode("Hello, PoW!");
const pow = await mine(powBuffer, target);
console.log("Can verify PoW?", verify(pow, target));