Javascript SDK of WoopChain protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
neeboo 39fcb128e9 [fix] remove devTestOnly 6 years ago
devTestOnly added testonly 6 years ago
packages [WIP] added branch @types 6 years ago
scripts [breaking] rename packages dependency prefix to `@harmony-js` 6 years ago
typings [fix] update a lot 6 years ago
.babelrc [WIP] add dependencies 6 years ago
.eslintignore [feat] update a lot 6 years ago
.gitignore [fix] remove devTestOnly 6 years ago
.prettierignore [WIP] add dependencies 6 years ago
.prettierrc [WIP] add dependencies 6 years ago
LICENSE [feat] update LICENSE 6 years ago
README.md [chore] fix README.md 6 years ago
gulpfile.js [chore] update a lot 6 years ago
lerna.json v0.0.15 6 years ago
package.json [fix] remove examples and move to another repo (added later) 6 years ago
tsconfig.base.json added harmony-network and new bundler 6 years ago
tsconfig.json [chore] update a lot 6 years ago
tsconfig.test.json [breaking] move blockchain class to core 6 years ago
tslint.json [WIP] add dependencies 6 years ago
webpack.config.js added harmony-network and new bundler 6 years ago

README.md

npm version

Harmony-SDK-Core

A Harmony's blockchain javascript library

It's a mono-repo library, not yet published to npm.

Install from npm/yarn


# npm
npm install @harmony-js/core@next 

# yarn
yarn add @harmony-js/core@next

# tslib may be required, we'd better install it as well
npm install tslib
yarn add tslib

Packages

  1. @harmony-js/core
  2. @harmony-js/account
  3. @harmony-js/crypto
  4. @harmony-js/network
  5. @harmony-js/utils
  6. @harmony-js/transaction
  7. @harmony-js/contract

Manually Build

  1. make sure you have latest node.js and yarn installed

  2. git clone

    git clone git@github.com:FireStack-Lab/Harmony-sdk-core.git
    cd Harmony-sdk-core
    
  3. cleanup and build

    yarn global add lerna && yarn install && lerna bootstrap && lerna link && yarn dist
    

Examples