npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

chia-javascript

v1.1.0

Published

Client for interacting with the Chia RPC

Readme

chia-javascript

This module is for interacting with the Chia RPC interface. All functions in this module return promises. You may call any of them using async / await or using the 'then()' fucntion.

Installation

npm install chia-javascript

Testing

You can run the automated tests at anytime by running the command below from the root of the repo while on a Chia node with RPC running.

npm test

Configuration

When you initialize any of the classes in this module you can pass them in a JSON object to override a handful of the default configs. Below are the options you can override and some example config objects. |Config Name |Default Value |Description | |----------------|----------------------------------------|-----------------------------------------------------------| |rootKeyDir |(user home dir)/.chia/mainnet/config/ssl|The directory that holds the ssl certificates for your node. Note that you should not add a trailing slash| |hostname|127.0.0.1|The hostname for your node, note that by default your node can only communicate with itself |walletPort|9256|The port your wallet RPC is listening on |fullNodePort|8555|The port your full node RPC is listening on |harvesterPort|8560|The port your harvester RPC is listening on

Examples

/* Override all configs */
const { Wallet, FullNode, Havester } = require('chia-javascript');

let config = {
	rootKeyDir: '/home/myuser/chia_dir/mainnet/config/ssl', //Custom chia directory, this points to the ssl folder that contains all your keys
	hostname: '10.0.0.10',
	walletPort: 9999,
	fullNodePort: 9998,
	harvesterPort: 9997
};

// The below will all run using the custom values you set in the object above
let wallet = new Wallet(config);
let fullNode = new FullNode(config);
let havester = new Havester(config);

Examples

Fetch all wallets IDs:

const { Wallet } = require('chia-javascript');

async function getWallets() {
        let wallet = new Wallet();
        let wallets = await wallet.getWallets();
        console.log(wallets);
}
getWallets();
const { Wallet } = require('chia-javascript');

let wallet = new Wallet();
wallet.getWallets()
.then(wallets => {
    console.log(wallets);
})
.catch(error => {
    console.log(error)
});

/* SAMPLE OUTPUT FOR BOTH EXAMPLES ABOVE:
{ 
	success: true,
	wallets: [ 
		{ data: '', id: 1, name: 'Chia Wallet', type: 0 },
		{ data: '', id: 2, name: 'Pool wallet', type: 9 }
	] 
}
*/

Fetch all public keys:

const { Wallet } = require('chia-javascript');

async function getPublicKeys() {
        let wallet = new Wallet();
        let wallets = await wallet.getPublicKeys();
        console.log(wallets);
}
getPublicKeys();

/* SAMPLE OUTPUT:
{ "public_key_fingerprints": [ xxxxxxxxxx ], "success": true }
*/

Fetch blockchain height info:

const { Wallet } = require('chia-javascript');

async function getHeightInfo() {
        let wallet = new Wallet();
        let wallets = await wallet.getHeightInfo();
        console.log(wallets);
}
getHeightInfo();

/* SAMPLE OUTPUT:
{ "height": 1326017, "success": true }
*/

Add new key

const { Wallet } = require('chia-javascript');
  
async function addKey() {
        let wallet = new Wallet();
        let mnemonic = await wallet.generateMnemonic();
        let mnemonicString = mnemonic.mnemonic.join(" ");

        let newKey = await wallet.addKey([mnemonicString]);
        console.log(newKey);
}
addKey();
/* SAMPLE OUTPUT:
{ "fingerprint": 11111111, "success": true }
*/

Fetch blockchain state:

const { FullNode } = require('chia-javascript');
  
async function getBlockchainState() {
        let fullNode = new FullNode();
        let blockchainState = await fullNode.getBlockchainState();
        console.log(blockchainState);
}
getBlockchainState();

/* SAMPLE OUTPUT:
{ blockchain_state:
   { difficulty: 2752,
     genesis_challenge_initialized: true,
     mempool_size: 24,
     peak:
      { challenge_block_info_hash:
         '0x111111111111111111111111111111111111111111111111111',
        challenge_vdf_output: [Object],
        deficit: 0,
        farmer_puzzle_hash:
         '0x111111111111111111111111111111111111111111111111111',
        fees: null,
        finished_challenge_slot_hashes: null,
        finished_infused_challenge_slot_hashes: null,
        finished_reward_slot_hashes: null,
        header_hash:
         '0x111111111111111111111111111111111111111111111111111',
        height: 11111111111,
        infused_challenge_vdf_output: [Object],
        overflow: false,
        pool_puzzle_hash:
         '0x111111111111111111111111111111111111111111111111111',
        prev_hash:
         '0x111111111111111111111111111111111111111111111111111',
        prev_transaction_block_hash: null,
        prev_transaction_block_height: 11111111111,
        required_iters: 11111111111,
        reward_claims_incorporated: null,
        reward_infusion_new_challenge:
         '0x111111111111111111111111111111111111111111111111111',
        signage_point_index: 11111111111,
        sub_epoch_summary_included: null,
        sub_slot_iters: 11111111111,
        timestamp: null,
        total_iters: 11111111111,
        weight: 11111111111 },
     space: 11111111111,
     sub_slot_iters: 11111111111,
     sync:
      { sync_mode: false,
        sync_progress_height: 0,
        sync_tip_height: 0,
        synced: true } },
  success: true }
*/

Fetch plot info:

const { Harvester } = require('chia-javascript');
  
async function getPlots() {
	let harvester = new Harvester();
	console.log(await harvester.getPlots());
}
getPlots();

/* SAMPLE OUTPUT:
{
	"plots": [
		{
			"file_size": 108856412183,
			"filename": "/home/user/plots/plot-k32-2021-08-01-01-11-111.plot",
			"plot-seed": "0x1111111",
			"plot_id": "0x111111111",
			"plot_public_key": "0x1111111111",
			"pool_contract_puzzle_hash": "0x11111111111",
			"pool_public_key": null,
			"size": 32,
			"time_modified": 111111111
		}
	],
	"failed_to_open_filenames": [],
	"not_found_filenames": [],
	"success": true
}
*/

Documentation

Wallet

  • getWallets()
    • Gets a list of wallets for your key.
    • Response:
      • { "success": true, "wallets": [{ "data": "", "id": 1, name: "Test Wallet", "type": 0 }] }
  • getPublicKeys()
    • Get all root public keys accessible by the wallet.
    • Response:
      • { "public_key_fingerprints": [ xxxxxxxxxx ], "success": true }
  • getPrivateKey(fingerprint)
    • Get all root private keys accessible by the wallet.
    • fingerprint can be obtained from the 'public_key_fingerprints' array retunred when calling the getPublicKeys() method above.
    • Response:
      • { "private_key": { "farmer_pk": "xxxxxxxxxxxx", "fingerprint": xxxxxxxxxx, "pk": "xxxxxxxxxxxx", "pool_pk": "xxxxxxxxxxxx", "seed": "xxxxxxxxxxxx", "sk": "xxxxxxxxxxxx" }, "success": true }
  • getSyncStatus()
    • Gets the sync status of the wallet.
    • Response:
      • { "genesis_initialized": true, "success": true, "synced": true, "syncing": false }
  • getHeightInfo()
    • Gets information about the current height of the wallet.
    • Response:
      • { "height": 1326017, "success": true }
  • getWalletBalance(walletId)
    • Retrieves balances for a wallet
    • The walletID parameter is the 'id' field returned from the getWallets() method above.
    • Response: { "success": true, "wallet_balance": { "confirmed_wallet_balance": 123, "max_send_amount": 123, "pending_change": 0, "pending_coin_removal_count": 0, "spendable_balance": 123, "unconfirmed_wallet_balance": 123, "unspent_coin_count": 1, "wallet_id": 1 } }
  • getFarmedAmount()
    • Gets information about farming rewards for this wallet.
    • Response:
      • { "farmed_amount": 0, "farmer_reward_amount": 0, "fee_amount": 0, "last_height_farmed": 0, "pool_reward_amount": 0, "success": true }
  • generateMnemonic()
    • Generate a 24 word mnemonic phrase, used to derive a private key.
    • Response:
      • { "mnemonic": [ "fake", "test", "fake", "fake", "fake", "fake","fake", "fake", "fake", "fake", "fake", "fake", "fake", "fake", "fake", "fake", "fake", "notable", "fake", "fake", "fake", "fake", "fake", "fake" ], "success": true }
  • getNetworkInfo()
    • Retrieves some information about the current network.
    • Response:
      • { "network_name": "mainnet", "network_prefix": "xch" }
  • getTransactionCount(walletId)
    • Gets the number of transactions in this wallet.
    • Response:
      • { "count": 36, "success": true, "wallet_id": 1 }
  • getTransactions(walletId)
    • Gets transaction records for provided wallet.
    • The walletID parameter is the 'id' field returned from the getWallets() method above.
    • Response:
      • { "success": true, "transactions": [ { "additions": [Array], "amount": 100, "confirmed": true, "confirmed_at_height": 772417, "created_at_time": 1637083336, "fee_amount": 0, "name": "0x11111111", "removals": [], "sent": 0, "sent_to": [], "spend_bundle": null, "to_address": "1111111111", "to_puzzle_hash": "0x111111111", "trade_id": null, "type": 0, "wallet_id": 1 } ] }
  • addKey(mnemonic)
    • Add a private key to the keychain.
    • The mnemonic param is an array of strings. Each string in the array is 24 words with a space between them.
    • Response:
      • { "fingerprint": 11111111, "success": true }

FullNode

  • getBlockchainState()
    • Returns current information about the blockchain, including the peak, sync information, difficulty, mempool size, etc.
    • Response:
      • { "blockchain_state": { "difficulty": 2752, "genesis_challenge_initialized": true, "mempool_size": 24, "peak": { "challenge_block_info_hash": "0x111111111111111111111111111111111111111111111111111", "challenge_vdf_output": [Object], "deficit": 0, farmer_puzzle_hash": "0x111111111111111111111111111111111111111111111111111", "fees": null, "finished_challenge_slot_hashes": null, "finished_infused_challenge_slot_hashes": null, "finished_reward_slot_hashes": null, "header_hash": "0x111111111111111111111111111111111111111111111111111", "height": 11111111111, "infused_challenge_vdf_output": [Object], "overflow": false, "pool_puzzle_hash": "0x111111111111111111111111111111111111111111111111111", "prev_hash": "0x111111111111111111111111111111111111111111111111111", "prev_transaction_block_hash": null, "prev_transaction_block_height": 11111111111, "required_iters": 11111111111, "reward_claims_incorporated": null, "reward_infusion_new_challenge": "0x111111111111111111111111111111111111111111111111111", "signage_point_index": 11111111111, "sub_epoch_summary_included": null, "sub_slot_iters": 11111111111, "timestamp": null, "total_iters": 11111111111, "weight": 11111111111 }, "space": 11111111111, "sub_slot_iters": 11111111111, "sync": { "sync_mode": false, "sync_progress_height": 0, "sync_tip_height": 0, "synced": true } }, "success": true }

Harvester

  • getPlots()
    • Gets a list of plots being farmed on this harvester.
    • Response:
      • { "plots": [Array], "failed_to_open_filenames": [Array], "not_found_filenames": [Array], "status": true }