Socket
Socket
Sign inDemoInstall

abstract-common-wallet

Package Overview
Dependencies
8
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    abstract-common-wallet

A test suite and interface you can use to ensure standard Bitcoin wallet functionality.


Version published
Weekly downloads
2
Maintainers
2
Install size
8.46 MB
Created
Weekly downloads
 

Readme

Source

abstract-common-wallet

A test suite and interface you can use to implement standard Common Wallet powered applications.

Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite. For example, s3-blob-store uses abstract-blob-store, and so does torrent-blob-store, bitstore-blob-store and many others.

Using this module will help to create easy to consume APIs for dealing with bitcoin wallets.

How to use

To use the test suite from this module you can require('abstract-common-wallet/tests')

An example of this can be found in the test-common-wallet test suite.

You have to implement a setup and teardown function after declaring your common wallet object:


// test-common-wallet is a simple to use wallet for intended for use in tests
var testCommonWallet = require('test-common-wallet');

// our wallet benefits from being able to interface with the blockchain
var commonBlockchain = require('blockcypher-unofficial')({
  network: "testnet",
  inBrowser: true
});

// we seed our wallet with the same text to generate the same bitcoin wallet address
var commonWallet = testCommonWallet({
  network: "testnet",
  commonBlockchain: commonBlockchain,
  seed: "someTextSeed"
});

// and then we check to see if our wallet passes all of the tests and adheres to the protocol
var common = {
  setup: function(t, cb) {
    cb(null, commonWallet);
  },
  teardown: function(t, commonWallet, cb) {
    cb();
  }
}

To run the tests simply pass your test module (tap or tape or any other compatible modules are supported), the seed you used to generate your commonWallet Object, and your common methods in:

var abstractCommonWalletTests = require('abstract-common-wallet/tests')
abstractCommonWalletTests(test, seed, common)

A valid common wallet interface should implement the following functions.

Functions

//callback should be of the form (err, response)
cw.signMessage("hey there, this is a message", callback);

//this callback should be of the form (err, signedTxHex, txid)
cw.signTransaction((some unsigned transaction hex to sign), callback);

//will create, sign, and (optionally) propagate a transaction. callback should be of (err, response)
cw.createTransaction({
  value: (the amount of btc to be transacted in satoshi),
  destinationAddress: (the address your Common Wallet object will be sending btc to),
  propagate: (true or false if you want to propagate the tx. Will default to false)
}, callback);

//will login to a compatible back-end server using wallet address as an identifier
cw.login(host, callback);

//will send authenticated requests to compatible back-end server
cq.request(options, callback);

Other Common Wallet Data

In addition to the three functions listed above, a common wallet object will also have these two fields:

  address: (the public address of the wallet)
  network: (the network the wallet is operating on)

Keywords

FAQs

Last updated on 26 Oct 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc