Package Exports
- @dashevo/dashcore-lib
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@dashevo/dashcore-lib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Dashcore Library
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
NodeJS
npm install @dashevo/dashcore-libBrowser
See the section below to generate your own bundle, or download the pre-generated minified file
Docs
- Addresses
- Block
- Crypto
- Encoding
- Hierarchically-derived Private and Public Keys
- Networks
- PrivateKey
- PublicKey
- Script
- Transaction
- Using Different Units
- Unspent Output
- URI
- Governance Object / Proposal
Examples
Some examples can be find here, below is a list of direct link for some of them.
- Generate a random address
- Generate a address from a SHA256 hash
- Import an address via WIF
- Create a Transaction
- Sign a Dash message
- Verify a Dash message
- Create an OP RETURN transaction
- Create a 2-of-3 multisig P2SH address
- Spend from a 2-of-2 multisig P2SH address
Modules
Some functionality is implemented as a module that can be installed separately:
- Payment Protocol Support
- Peer to Peer Networking
- Bitcoin Core JSON-RPC
- Payment Channels
- Mnemonics
- Elliptical Curve Integrated Encryption Scheme
- Signed Messages
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 dashcore-lib full bundle for the browser:
npm run buildThis 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 installRun all the tests:
npm testYou 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.