Installation
BIoT-Core
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);BIoT-RPC
Install
Launch
BIoT-WSocket
Install
Launch
BIoT-CLI
Install
Examples
Last updated