Unmineable.js
A JavaScript library for interacting with the UnMineable API and WebSocket
Install / Use
/learn @LockBlock-dev/Unmineable.jsREADME
UnMineable.js
unmineable.js is a Node.js module that allows you to easily interact with the UnMineable API and WebSocket.
• Promise based
• Performant
• 100% coverage of the UnMineable API and WebSocket
Installation
With GitHub :
• Download the project or clone it
• Go to the unmineable.js folder and do npm install
• Require the client.js
With NPM :
• Download the project
• Do npm install unmineable.js
• Require the library
Documentation
See the API documentation
See the WebSocket documentation
See the changelog
Example usage
Using the library - API
const { Client } = require("unmineable.js");
//OR
import { Client } from "unmineable.js";
const client = new Client();
client.stats().then((data) => {
console.log(data);
});
//OR
const myFunc = async () => {
const data = await client.stats();
console.log(data);
};
myFunc();
The library is async, be sure to use async functions or .then()
Using the library - WebSocket
const { Client } = require("unmineable.js");
//OR
import { Client } from "unmineable.js";
const client = new Client();
client.on("event", (data) => {
console.log(data);
});
client.start("UUID"); //uiid can be found in client.wallet function
List of events available here
Credits
Copyright
See the license
Related Skills
canvas
352.2kCanvas Skill Display HTML content on connected OpenClaw nodes (Mac app, iOS, Android). Overview The canvas tool lets you present web content on any connected node's canvas view. Great for: -
gh-issues
352.2kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
node-connect
352.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
oracle
352.2kBest practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
