UNPKG

node-miner

Version:

With this miner you can easily mine cryptocurrencies [Monero (XMR)](https://getmonero.org/) and [Electroneum (ETN)](http://electroneum.com/) on any stratum pool from node.js with the highest hashrate on your hardware. To get maximum hashrate this package

42 lines (41 loc) 1.17 kB
/// <reference types="node" /> import * as EventEmitter from "events"; import Donation from "./Donation"; import Miner from "./Miner"; import Queue from "./Queue"; import { Dictionary, Socket, StratumRequestParams, RPCMessage } from "./types"; export declare type Options = { host: string; port: number; ssl: boolean; donation: boolean; }; declare class Connection extends EventEmitter { id: string; host: string; port: number; ssl: boolean; online: boolean; socket: Socket; queue: Queue; buffer: string; rpcId: number; rpc: Dictionary<RPCMessage>; auth: Dictionary<string>; minerId: Dictionary<string>; miners: Miner[]; donations: Donation[]; donation: boolean; constructor(options: Options); connect(): void; kill(): void; ready(): void; receive(message: string): void; send(id: string, method: string, params?: StratumRequestParams): boolean; addMiner(miner: Miner): void; removeMiner(minerId: string): void; addDonation(donation: Donation): void; removeDonation(donationId: string): void; clear(id: string): void; } export default Connection;