Installation
BIoT-Core
https://github.com/BIoTws/biot-core
For installation you need:
Any system what supported node.js
Node.js
Installing
$ npm install biot-coreUsing
const core = require('biot-core');
async function start() {
await core.init('test');
console.error('wallets:', await core.getWallets());
}
start().catch(console.error);const core = require('biot-core');
core.init('test').then(() => {
return core.getWallets();
}).then(wallets => {
console.error('wallets:', wallets);
}).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 installIf you are launching on testnet execute:
$ ./testnetify.shLaunch
$ node serverBIoT-WSocket
https://github.com/BIoTws/biot-wsocket
Install
$ git clone https://github.com/BIoTws/biot-wsocket
$ cd biot-wsocket
$ npm installIf you are launching on testnet execute:
$ ./testnetify.shLaunch
$ node serverBIoT-CLI
https://github.com/BIoTws/biot-cli
Install
$ sudo npm install -g https://github.com/BIoTws/biot-cli
$ cd biot-cli
$ npm installExamples
$ biot-core --help
$ biot-core getWalletsLast updated