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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@turtlecoin/solo-pool

v0.0.8

Published

Pass-Thru Solo Mining Pool

Downloads

32

Readme

image

TurtleCoin: Solo Mining Pool

Prerequisite Maintenance License: MIT Twitter: _TurtleCoin

Overview

This package is designed for operating a solo mining pool that only support solo mining. By doing so, miners can utilize CPU/GPU mining software beyond the core suite mining software. The work provided to each miner is specific to the wallet address (login) they provide when they connect to the pool and rewards are sent directly to the miners via the block coinbase (miner) transaction. There is no middle man.

This is not a PPS or PPLNS pool

Features

  • Single pool port w/ single starting difficulty
  • Pool calculates variable difficulty
    • Shares are not recorded and are only used to keep the connection alive and maintain a reasonable difficulty for the miner
  • Keeps track of solo mined blocks
  • Blocktemplates are independent for each miner wallet address (login)
  • Miners can connect multiple workers and all work on the same blocktemplate (job)
  • Miners can select and/or specify what node they want to use for mining via options in the password field of the mining software
    • host=
    • port=
    • ssl= (use 1 or true to enable; or 0 or false to disable)
    • timeout= (in milliseconds, 1000 minimum)
    • To combine multiple options, separate them by a semicolon ;
      • Example: node=node.turtlepay.io;port=443;ssl=true;timeout=5000
  • Built in webserver with REST API for statistics and dynamic updating of miner node used

Requirements

  • Node.js >= +12.x LTS (or Node v12)
  • Compiler supporting C++17 (gcc/clang/etc)

Installation / Setup

From Source

git clone https://github.com/turtlecoin/node-solo-pool
cd node-solo-pool
yarn
yarn start

From NPM

npm install -g @turtlecoin/solo-pool
solo-pool

Configuration

All configuration is accomplished via environment parameters; or, optionally a .env file for the same.

Note: Default values are provided below

export POOL_HOSTNAME=solo.turtlecoin.dev
export POOL_BIND_IP=0.0.0.0
export POOL_PORT=3333
export POOL_DEFAULT_DIFFICULTY=10000
export POOL_HTTP_PORT=80
export NODE_SSL=1
export NODE_HOST=node.turtlepay.io
export NODE_PORT=443
export NODE_SSL=1
export NODE_TIMEOUT=5000

Thanks

The TurtleCoin Community