wgr-keyring-controller

1.0.0 • Public • Published

Wgr Keyring Controller

A module for managing groups of Wagerr accounts called "Keyrings", defined originally for Wgr browser wallet's multiple-account-type feature.

To add new account types to a KeyringController, just make sure it follows The Keyring Class Protocol.

The KeyringController has three main responsibilities:

  • Initializing & using (signing with) groups of Wagerr accounts ("keyrings").
  • Keeping track of local nicknames for those individual accounts.
  • Providing password-encryption persisting & restoring of secret information.

Installation

npm install bch-keyring-controller --save

Usage

const KeyringController = require('wgr-keyring-controller')

const keyringController = new KeyringController({
  keyringTypes: [SimpleKeyring], // optional array of types to support.
  initState: initState.KeyringController, // Last emitted persisted state.
  encryptor: { // An optional object for defining encryption schemes:
               // Defaults to Browser-native SubtleCrypto.
    encrypt (password, object) {
      return new Promise('encrypted!')
    },
    decrypt (password, encryptedString) {
      return new Promise({ foo: 'bar' })
    },
  },
})

// The KeyringController is also an event emitter:
this.keyringController.on('newAccount', (address) => {
  console.log(`New account created: ${address}`)
})
this.keyringController.on('removedAccount', handleThat)

Methods

Currently the methods are heavily commented in the source code, so it's the best place to look until we aggregate it here as well.

Readme

Keywords

Package Sidebar

Install

npm i wgr-keyring-controller

Weekly Downloads

1

Version

1.0.0

License

ISC

Unpacked Size

1.08 MB

Total Files

291

Last publish

Collaborators

  • skyclean