Skip to content

GAB5TER/orecore-lib

 
 

Repository files navigation

Orecore Library

A pure and powerful JavaScript Galactrum library.

Principles

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

Table of Contents

Install

git clone https://github.com/GAB5TER/orecore-lib.git

Browser

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

Building the Browser Bundle

To build a orecore-lib full bundle for the browser:

npm run build

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

Usage

Browser

<script src='./dist/orecore-lib.min.js' type="text/javascript"></script>
<script>
  const PrivateKey = orecore.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/GAB5TER/orecore-lib
cd orecore-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.

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.

Building the Browser Bundle

To build a orecore-lib full bundle for the browser:

npm run build

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

Usage on Browser

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

Development & Tests

git clone https://github.com/GAB5TER/orecore-lib
cd orecore-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-2017 The Dash Foundation, Inc.
Copyright 2017-2018 Dash Core Group, Inc.
Copyright 2018-2019 Galactrum Development Team

About

A pure and powerful JavaScript Galatrum library

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 99.9%
  • HTML 0.1%