Installation

BIoT-Core

https://github.com/BIoTws/biot-core

For installation you need:

  1. Any system what supported node.js

  2. Node.js

Installing

$ npm install biot-core

Using

const core = require('biot-core');

async function start() {
	await core.init('test');

	console.error('wallets:', await core.getWallets());
}

start().catch(console.error);

'test' in "init" is passphrase. It is not safe to pass it directly into the code. Please use arguments or other method

BIoT-RPC

https://github.com/BIoTws/biot-rpc

Install

$ git clone https://github.com/BIoTws/biot-rpc
$ cd biot-rpc
$ npm install

If you are launching on testnet execute:

$ ./testnetify.sh

Launch

$ node server

BIoT-WSocket

https://github.com/BIoTws/biot-wsocket

Install

$ git clone https://github.com/BIoTws/biot-wsocket
$ cd biot-wsocket
$ npm install

If you are launching on testnet execute:

$ ./testnetify.sh

Launch

$ node server

BIoT-CLI

https://github.com/BIoTws/biot-cli

Install

$ sudo npm install -g https://github.com/BIoTws/biot-cli
$ cd biot-cli
$ npm install

Examples

$ biot-core --help
$ biot-core getWallets

Last updated