0.1.1 • Published 4 years ago

@duality-solutions/bitcore-lib-dynamic v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Bitcore Library Dynamic

Build Status NPM Package

A pure and powerful JavaScript Dynamic library.

The decentralized nature of the Dynamic network allows for highly resilient Dynamic infrastructure, and the developer community needs reliable, open-source tools to implement Dynamic apps and services.

Table of Contents

Install

NodeJS

npm install @duality-solutions/bitcore-lib-dynamic

Browser

See the section below to generate your own bundle, or download the pre-generated minified file

Building the Browser Bundle

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

npm run build

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

Usage

Browser

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

Modules

Some functionality is implemented as a module that can be installed separately:

Development & Tests

git clone https://github.com/duality-solutions/bitcore-lib-dynamic
cd bitcore-lib-dynamic
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.

Documentation

Examples

Some examples can be found here, below is a list of direct links for some of them.

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.

License

Code released under the MIT license.

Copyright 2013-2017 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.
Copyright 2019 Duality Blockchain Solutions LLC.