Chia-Api
Usage example
const { readFileSync } = require('fs');
const { Connection, constants, ApiClient } = require('chia-api');
(async () => {
const conn = new Connection('localhost:55400', {
cert: readFileSync('private_daemon.crt'),
key: readFileSync('private_daemon.key'),
});
conn.onMessage((message) => {
console.log(message);
});
conn.ensureService(constants.makeServiceNames().walletUi);
const fullNode = new ApiClient.FullNode({ connection: conn, origin: 'my-cool-service' });
await fullNode.init();
const blockchainState = await fullNode.getBlockchainState();
})();
Donate
Changelog
A Changelog can be found here
License
GNU GPLv3 (see LICENSE)