2.1.1 • Published 5 years ago

rexx-sdk v2.1.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

rexx-sdk-nodejs

Let developers can all use rexx blockchain services more easily.

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 6.0.0 or higher is required.

Installation is done using the npm install command:

$ npm install rexx-sdk --save

Quick Start

Create rexx-sdk instance:

'use strict';

const RexxSDK = require('rexx-sdk');

const sdk = new RexxSDK({
  host: 'seed1.rexxtest.io:26002',
});

Usage:

// Create account
sdk.account.create().then(data => {
  console.log(data);
}).catch(err => {
  console.log(err.message);
});