New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

handcash

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handcash

Helper methods for HandCash's API

latest
npmnpm
Version
0.0.4
Version published
Weekly downloads
2
100%
Maintainers
2
Weekly downloads
 
Created
Source

HandCash

Helper methods for HandCash's API.

Usage

Installation

npm install handcash

Require the lib

let hc = require('handcash');

Instantiate w/ network passed in via config

Config options for network are testnet and mainnet.

let handcash = new hc({network: "testnet"});

Get receive address for $handle

handcash.receive('rjseibane').then((res) => {
  console.log(res);
  // { receivingAddress: 'mxszqDyaNGFcmTkPjJ2BGRpSTChdVWaNPZ',
  // publicKey:
  //  '03d193439a2f06ed1121be5b4e61381386ffee5ec5bec33daf17e33ccb34622753' }
});

All together

// require lib
let hc = require('handcash');

// instantiate
let handcash = new hc({network: "testnet"});

// get receive address for $handle
handcash.receive('rjseibane').then((res) => {
  console.log(res);
  // { receivingAddress: 'mxszqDyaNGFcmTkPjJ2BGRpSTChdVWaNPZ',
  // publicKey:
  //  '03d193439a2f06ed1121be5b4e61381386ffee5ec5bec33daf17e33ccb34622753' }
});

FAQs

Package last updated on 23 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts