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
If you are launching on testnet execute:
Launch
BIoT-WSocket
https://github.com/BIoTws/biot-wsocket
Install
If you are launching on testnet execute:
Launch
BIoT-CLI
https://github.com/BIoTws/biot-cli
Install
Examples
Last updated