Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 3.46 KB

README.md

File metadata and controls

40 lines (30 loc) · 3.46 KB

Chia-Api

Software License npm Discord

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)