Skip to content

CodeChain-io/codechain-sdk-js

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

CodeChain SDK for JavaScript npm version Build Status Gitter

A JavaScript SDK for CodeChain

API Documentation (For SDK users)

If you're looking for an API documentation or a quick start guide, click here

Features

  • Connect to a CodeChain JSON-RPC server
  • Generate an account, create a transacton, sign a transaction

Getting Started (For SDK developers)

Clone the source code

git clone git@github.com:CodeChain-io/codechain-sdk-js.git

Install dependencies

cd codechain-sdk-js && npm install

Running unit tests

npm run test

Building and running integration tests

  1. Run yarn build command.
  2. Run CodeChain RPC server.
  3. Run yarn test-int command.

    It is also possible to indicate specific testcases with --testRegex and -t option. (e.g. yarn test-int --testRegex Rpc -t getBestBlockNumber)