Socket
Socket
Sign inDemoInstall

@decentralized-identity/sidetree-bitcoin

Package Overview
Dependencies
Maintainers
8
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@decentralized-identity/sidetree-bitcoin

Node.js implementation of the Sidetree bitcoin module


Version published
Weekly downloads
1
decreased by-50%
Maintainers
8
Weekly downloads
 
Created
Source

sidetree-bitcoin

Blockchain-specific code for the Sidetree-based DID Method implementation on Bitcoin

Getting started

Our reference implementation of the blockchain service is based on bitcored. Here is the list of instructions to deploy Sidetree's extension code along with the bitcored service:

  • Install a Bitcored full node using instructions at this link. We reproduce their instructions below since we run bitcored with node v9 rather than v4:

    • Install node version manager (NVM) by following instructions at this link.
    • Install node v9 by using:
      nvm install v9
      
    • Install Python, ZeroMQ, and Tools. On GNU/Debian distributions, do:
      apt-get install python libzmq3-dev build-essential
      
    • Install bitcore:
      npm install -g bitcore
      
    • Start bitcore (ignore --testnet for mainnet):
      bitcore create mynode --testnet
      
  • Clone this repository to folder $(SIDETREE_BITCOIN_REPO) and run the following:

      cd $(SIDETREE_BITCOIN_REPO)/bitcored-services/sidetree
      npm install bitcore-lib
    
  • Install insight UI:

    cd $(BITCORE_DIR)
    bitcore install insight-api insight-ui
    
  • Add a private key from a Bitcoin wallet to $(SIDETREE_BITCOIN_REPO)/bitcored-services/sidetree/config.json

  • Suppose that we install bitcored to $(BITCORE_DIR) on $(NODE_IP), use the following instructions to add Sidetree's blockchain service:

       cd $(BITCORE_DIR)/node_modules
       ln -s $(SIDETREE_BITCOIN_REPO)/bitcored-services/sidetree
       add the string "sidetree" to the services array in $BITCORE_DIR/bitcore-node.json
    
  • Start the bitcored daemon by running:

     cd $(BITCORE_DIR)
     bitcored
    
  • Verify that the bitcored installation was successful by pointing the browser to: http://$(NODE_IP):3001/insight/

Once Sidetree extension is running in bitcored correctly, we can now build and run the Sidetree blockchain service that will be talking to our Sidetree extension running in bitcored:

  1. Clone this repo and go to the root folder.
  2. Run npm i to install dependencies.
  3. Modify json/config.json accordingly. Some parameters of interest:
    1. Update bitcoreSidetreeServiceUri to point to the bitcored service configured earlier: e.g. 'http://127.0.0.1:3002/SidetreeBlockchainService/'
  4. Run npm run build to build the service.
  5. Run 'npm start` to start the service.

FAQs

Package last updated on 24 Apr 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc