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

@kzen-networks/tezos-thresh-wallet

v0.1.5

Published

Tezos JavaScript API

Downloads

9

Readme

Tezos Threshold Wallet

npm

Tezos wallet and JS SDK powered by two-party EdDSA (Ed25519).

Installation

  1. If on Linux, install needed packages:
$ sudo apt-get update
$ sudo apt-get install libgmp3-dev pkg-config libssl-dev clang libclang-dev
  1. Install Node.js (tested on Node 10)
  2. Install nightly Rust (tested on rustc 1.38.0-nightly (0b680cfce 2019-07-09))
  3. Install the package:
$ npm install @kzen-networks/tezos-thresh-wallet

Usage

Server (acts as the co-signer in the two-party signing protocol):

import { Ed25519Party1 } from '@kzen-networks/tezos-thresh-wallet';

new Ed25519Party1().launchServer();

Client:

import TezClient, { Ed25519Party2, Ed25519Party2Share } from '@kzen-networks/tezos-thresh-wallet';
const client = new TezClient('http://127.0.0.1:8732');

const P1_SERVER_ENDPOINT = 'http://localhost:8000';
const party2 = new Ed25519Party2(P1_SERVER_ENDPOINT);

(async () => {
  await client.importEd25519Party2(party2);  // activates two-party key generation protocol
  const address = client.party2.publicKeyHash();
  console.log(address);
  // tz1csGALMvB6sh3KJyHAMYVYVMUaucBgBDw7

  /* Now you should deposit XTZ into this address */

  console.log(await client.getBalance(address));  // in mutez (1 XTZ = 1,000,000 mutez)
  // 982974

  const { hash } = await client.transfer({
    source: address,
    to: 'tz1YaqLFe8nywjCiAF1vK1U1yns69nPQoyg1',
    amount: 10000
  });
  console.log(hash);
  // ooebvSGroFp7bma7Gicx5s2GeDT2j69m5r8z2nUMMzogYASCBzX

})();

Demo

You can also use a demo using the command line. Server:

$ demo/server

Client:

$ demo/client --help
Usage: client [options] [command]

Options:
  -h, --help                           output usage information

Commands:
  generate-address|a                   Generate a new Tezos address
  balance|b <address>                  Get the balance of a Tezos address
  transfer|t <from> <to> <xtz_amount>  Transfer XTZ
  delegate|d <from> <to>               Delegate account funds to a given delegator for staking

|Transfer demo| |:--:|

Development

$ git clone https://github.com/KZen-networks/tezos-thresh-wallet
$ cd tezos-thresh-wallet
$ npm install
$ npm run build

Built files will be located in the dist folder.

License

MIT

Credits

This work is a fork extending the work of Andrew Kishino's Sotez.