1.0.10 • Published 5 years ago

multichainsdk v1.0.10

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

multichainsdk

multichainsdk node moudule enable developers to reduce their developement time. This module will help to communicate with multichain.

Multichainsdk is basically advanced version of multichain-node ( node module) it has dependency of multichain-node.

  1. We have made this node module to reduce the repetition of same code and logic.
  2. It covers all the rpccalls you just need to pass the inputs which is required for multichain rpccalls rest all multichainsdk will handles by itself.
  3. It was initially started with the mindset of reducing the code size and ease of development.

Installation Steps

1.npm i multichainsdk

2.sudo git clone https://github.com/dhananjay-primechain/multichainsdk.git

example to use multichainsdk

var multichainsdk = require('mutichainsdk');

multichainsdk.issueFrom({

                  from: from_address

                  to: to_address,

                  asset: {
                  name:  asset_name,
                  open: true/false
                  },

                  quantity: quantity,

               }).then((res)=>{

                  return resolve({

                            status: 200,

                            response:"response from multichainsdk."

                  })
              
               }).catch((err)=>{

                  return reject({

                            status: 401,

                            response : err.message,

                    })

                 })

               })

            })
    

Happy Coding! Thank You!

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago