Skip to content

A pure and powerful JavaScript Dash library.

License

Notifications You must be signed in to change notification settings

LexxXell/dashcore-lib

Repository files navigation

Dashcore Library

NPM Package Build Status Coverage Status

A pure and powerful JavaScript Dash library.

Principles

Dash is a powerful new peer-to-peer platform for the next generation of financial technology. The decentralized nature of the Dash network allows for highly resilient dash infrastructure, and the developer community needs reliable, open-source tools to implement dash apps and services.

Get Started

npm install dashcore-lib

Docs

Exemples

Security

We're using Bitcore in production, as are many others, but please use common sense when doing anything related to finances! We take no responsibility for your implementation decisions.

If you find a security issue, please email [email protected].

Contributing

Please send pull requests for bug fixes, code optimization, and ideas for improvement. For more information on how to contribute, please refer to our CONTRIBUTING file.

Building the Browser Bundle

To build a bitcore-lib-dash full bundle for the browser:

npm run build

This will generate files named dashcore-lib.js and dashcore-lib.min.js in the dist/ folder.

Usage on Browser

<script src='./dist/dashcore-lib.min.js' type="text/javascript"></script>
<script>
  const PrivateKey = dashcore.PrivateKey;
  const privateKey = new PrivateKey();
  const address = privateKey.toAddress().toString();
</script>

Development & Tests

git clone https://github.com/dashevo/dashcore-lib
cd dashcore-lib
npm install

Run all the tests:

npm test

You can also run just the Node.js tests with npm run test:node, just the browser tests with npm run test:browser or run a test coverage report with npm run coverage.

License

Code released under the MIT license.

Copyright 2013-2017 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc. Copyright 2016-2018 The Dash Foundation, Inc.

About

A pure and powerful JavaScript Dash library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.8%
  • Other 0.2%