0.4.6 • Published 5 years ago

chainium-sdk v0.4.6

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

OwnBlockchainSdkJS

Own Blockchain SDK for JavaScript

Quick Start

$ git clone https://github.com/OwnMarket/OwnBlockchainSdkJS.git
$ cd OwnBlockchainSdkJS/Source
$ npm ci

Run tests:

$ npm test

Usage

Own Blockchain SDK for JS can be used in two scenarios:

  • own-blockchain-sdk npm package
  • own-blockchain-sdk.js standalone library

NPM Package

Add package to the project:

$ npm install own-blockchain-sdk

Use the package in JS code:

var ownSdk = require('own-blockchain-sdk');
var networkCode = 'OWN_PUBLIC_BLOCKCHAIN_TESTNET';

// Create a new wallet
var wallet = ownSdk.crypto.generateWallet();
console.log(wallet);

// Compose a transaction with nonce = 1 and actionFee = 0.01
var tx = ownSdk.transactions.createTx(wallet.address, 1, 0.01);
tx.addTransferChxAction('CHxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 100); // Transfer 100 CHX to CHxxx... address.

// Look at the raw transaction in JSON format
console.log(tx.toJson(4));

// Sign the transaction for submission to node API on TestNet
console.log(tx.sign(networkCode, wallet.privateKey));

Standalone Library

When own-blockchain-sdk.js library is referenced from the browser app, it will create a global ownBlockchainSdk object, which contains all the SDK functionality in nested modules.

Examples of how to use the SDK can be found in the demo directory. Especially useful is the browser-demo.html file, which shows how to generate private key and address pairs and sign transactions.

Build Standalone Library

To build a standalone library for the browser, Browserify package is required:

$ sudo npm install -g browserify

Build is started using the build.sh script (build.bat for Windows):

$ ./build.sh

This results in own-blockchain-sdk.js file being created in dist directory.

0.4.6

5 years ago

0.4.5

5 years ago

0.4.4

5 years ago

0.4.3

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago