Skip to content
This repository has been archived by the owner on Aug 4, 2018. It is now read-only.

EricGrill/chainbyteswallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chainbyteswallet

npm package

NPM Version Downloads Stats Gitter

Simple Standalone Wallet

Installation

npm install chainbyteswallet --save

To Use

// Must set the address and wif to your public address and private key to send from

const wif='';
const address = '';
const wallet = require("chainbyteswallet");
const payor = {"address": address, "wif": wif};
const payee = [{"name": "Person1", "wallet": "1983LDmpGo1iBjz9AAqNEStcaGiya8Wx8N", "amount": 5},
                {"name": "Person2", "wallet": "17J1VUivqLNzw89k5aEfZz3rBk9Pg7hWyY", "amount": 5}]


// 2 people paid $5 USD worth of btc name,wallet,amount array of bitcoin wallets to send usdAmount to.
wallet.pushPayment(payee,payor,'text in transaction opcode').then((result)=> {
    console.log(result);
})
wallet.getAccount(payee[0].wallet).then((result) => {
    console.log(result)  // Show transaction of payments to that address
})

Tests

Mocha tests

npm test

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.