npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@subspace/vdf

v0.1.0

Published

This repository is a port of [VDFs by POA Network](https://github.com/poanetwork/vdf) to WebAssemnbly, so that it runs in any modern browser or Node.js environment.

Downloads

5

Readme

Verifiable Delay Function (VDF) implementation compiled from Rust to WebAssembly

This repository is a port of VDFs by POA Network to WebAssemnbly, so that it runs in any modern browser or Node.js environment.

TypeScript support is also present.

NOTE: Performance is very bad right now, more than an order of magnitude slower than native code.

How to install

npm install @subspace/vdf

How to use

Node.js:

import createVdf from '@subspace/vdf';

createVdf()
    .then((vdfInstance) => {
        const iterations = 3;
        const challenge = Buffer.from('aa', 'hex');
        const intSizeBits = 2048;
        const isPietrzak = false;
        const res = vdfInstance.generate(iterations, challenge, intSizeBits, isPietrzak);
        console.log(Buffer.from(res).toString('hex'));
        console.log(vdfInstance.verify(3, challenge, res, intSizeBits, isPietrzak));
    });

Browser:

requirejs(['@subspace/vdf'], function (createVdf) {
    createVdf()
        .then((vdfInstance) => {
            const iterations = 3;
            const challenge = Uint8Array.of(170);
            const intSizeBits = 2048;
            const isPietrzak = false;
            const res = vdfInstance.generate(iterations, challenge, intSizeBits, isPietrzak);
            console.log(
                res.reduce(
                    (str, byte) => {
                        return str + byte.toString(16).padStart(2, '0');
                    },
                    ''
                )
            );
            console.log(vdfInstance.verify(3, challenge, res, intSizeBits, isPietrzak));
        });
});

API

createVdf(options): Promise

Creates a new instance of Noise library

  • options - Options object that will be passed to underlying Emscripten module (optional)

ILibrary.generate(iterations: number, challenge: Uint8Array, intSizeBits: number, isPietrzak: boolean) => Uint8Array

Generates VDF proof for a given challenge and number of iterations

  • iterations - number of VDF iterations
  • challenge - VDF challenge
  • intSizeBits - the length of the prime numbers generated
  • isPietrzak - if Pietrzak VDF is used when true and Wesolowski VDF is used when false

Returns binary proof, may throw Error exception when failed to generate proof.

ILibrary.verify(iterations: number, challenge: Uint8Array, proof: Uint8Array, intSizeBits: number, isPietrzak: boolean) => boolean

Generates VDF proof for a given challenge and number of iterations

  • iterations - number of VDF iterations
  • challenge - VDF challenge
  • proof - previously generated proof that needs to be verified
  • intSizeBits - the length of the prime numbers generated
  • isPietrzak - if Pietrzak VDF is used when true and Wesolowski VDF is used when false

Returns true if proof is correct, may throw Error exception on incorrect input.

Building source code

Even though this repo contains vdf.js and vdf.wasm, you may still want to build it from source yourself for testing purposes or for publishing updates to NPM.

Instructions below work on Linux (and maybe on macOS, but not tested).

Dependencies

You'll need at least following:

  • curl
  • git
  • gcc
  • emmc, emconfigure (use https://emscripten.org/docs/getting_started/downloads.html)
  • rustup (use https://rustup.rs/)

Prepare

First, make sure you have Rust, Cargo and wasm32-unknown-emscripten target installed:

rustup target add wasm32-unknown-emscripten

Build Rust to WebAssembly

This will compile GMP dependency and Rust code to vdf.js and vdf.wasm files under src.

./build.sh

Build artifacts for NPM

Before publishing to NPM it is necessary to build TypeScript to JavaScript and create minified version of the JavaScript output:

npm run build

Tests

To run tests use:

npm test

NOTE: We can't run tests against upstream repo's vectors yet because of performance issues, so instead we have a very basic test case to make sure it behaves as expected.

Contribution

Feel free to create issues and send pull requests (for big changes create an issue first and link it from the PR), they are highly appreciated!

License

MIT, see license.txt