0.3.14 • Published 2 years ago

libzeropool-rs-wasm-web-mt-zkbob v0.3.14

Weekly downloads
-
License
MIT OR Apache-2.0
Repository
github
Last release
2 years ago

libzeropool-rs-wasm

Wasm/JavaScript version of libzeropool-rs.

Install

Bundler version: npm i -S libzeropool-rs-wasm-bundler or nodejs version: npm i -S libzeropool-rs-wasm-nodejs

Usage

import { UserAccount, State } from 'libzeropool-rs-wasm-bundler';

const state = await State.init("any user identifier");
const account = new UserAccount(spendingKey, state);

const address = account.generateAddress();
const mergeTx = await account.createTx([{ to: address, amount: "0"}], blockchainData);

const params = Params.fromBinary(serializedParameters);
const proof = Proof.tx(params, mergeTx.public, mergeTx.secret);

Development

Build

Build both bundler and nodejs versions:

scripts/build

Test in Headless Browsers with wasm-pack test

wasm-pack test --headless --firefox
0.3.14

2 years ago

0.3.13

2 years ago