All Projects → mining-pool → open-grin-pool

mining-pool / open-grin-pool

Licence: MIT license
Open-sourcing pool for grin. Easy to depoly and keep KISS in design. Avaliable to epic (epicash, a grin forkcoin) too.

Programming Languages

go
31211 projects - #10 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to open-grin-pool

CryptoProfitSwitcher
Extensible profit switcher for crypto coins and algorithms
Stars: ✭ 49 (+157.89%)
Mutual labels:  pool
errgroup
errgroup with goroutine worker limits
Stars: ✭ 143 (+652.63%)
Mutual labels:  pool
EpicBot
A simple, multipurpose Discord bot.
Stars: ✭ 130 (+584.21%)
Mutual labels:  epic
workerpool
A workerpool that can get expanded & shrink dynamically.
Stars: ✭ 55 (+189.47%)
Mutual labels:  pool
pool
A pool game written in python and pygame.
Stars: ✭ 33 (+73.68%)
Mutual labels:  pool
Mandelbrot-set-explorer
An interactive Mandelbrot set, made with Python3 and Tkinter
Stars: ✭ 31 (+63.16%)
Mutual labels:  pool
ramos
Generic backend pool
Stars: ✭ 30 (+57.89%)
Mutual labels:  pool
p2pool
Decentralized pool for Monero mining
Stars: ✭ 635 (+3242.11%)
Mutual labels:  pool
epic-awesome-gamer
🍷 Gracefully claim weekly free games and monthly content from Epic Store.
Stars: ✭ 600 (+3057.89%)
Mutual labels:  epic
42-piscine-exam
This repo has all exercises of "C Exam Alone In The Dark - Beginner" sorted from level_00 to Level_05
Stars: ✭ 218 (+1047.37%)
Mutual labels:  pool
finance-project-ddd
Projeto financeiro usando domain driven design, tdd, arquitetura hexagonal e solid
Stars: ✭ 67 (+252.63%)
Mutual labels:  pool
pool
🍭🍭🍭 golang advanced connect pool !!!
Stars: ✭ 18 (-5.26%)
Mutual labels:  pool
safeminer
全网第一款本地连接矿池加密软件,隐藏本地ip、加密数据包、流量混淆,可实现防止被监管的目的
Stars: ✭ 8 (-57.89%)
Mutual labels:  pool
kylin-jdbc-pool
better performance for kylin query
Stars: ✭ 15 (-21.05%)
Mutual labels:  pool
cardanocli-js
Wrapping the cardano-cli inside JavaScript
Stars: ✭ 173 (+810.53%)
Mutual labels:  pool
L3-37
Yet another Tokio connection pooler. May cause robot uprising.
Stars: ✭ 53 (+178.95%)
Mutual labels:  pool
goroutines
It is an efficient, flexible, and lightweight goroutine pool. It provides an easy way to deal with concurrent tasks with limited resource.
Stars: ✭ 88 (+363.16%)
Mutual labels:  pool
pool-reference
Reference python implementation of Chia pool operations for pool operators
Stars: ✭ 452 (+2278.95%)
Mutual labels:  pool
Pbbl
A thread-safe ByteBuffer pool that allows for the automatic reuse of ByteBuffers, which can be over 30x faster than having to allocate a new ByteBuffer when needed.
Stars: ✭ 32 (+68.42%)
Mutual labels:  pool
gringo
Alternative full Grin node on Golang (implementation of the MimbleWimble protocol) https://github.com/mimblewimble/grin
Stars: ✭ 45 (+136.84%)
Mutual labels:  grin

open-grin-pool

FOSSA Status Build Status Go Report Card

This is originally designed for the epic (=epicash). And the codebase of the epic is grin so it can be generally used as the grin pool.

Latest is tested under grin's usernet.

features

  • relay the miner conn to the grin node, totally native experience
  • expose the TUI miner detail to Http API
  • backup the share(submit) histories per specific time interval
  • record the miner's pay method (manually sent coin by pool maintainer)
  • pool status

Usage

# if grin
grin server run 
# if epic
epic server run

# ready
git clone https://github.com/maoxs2/open-grin-pool.git pool
cd pool && go build .

# config
vi config.json

# start
./open-grin-pool 

WebAPI:

  • /pool basic pool status
  • /revenue the revenue last day, which the pool maintainer has to sent today
  • /shares the all miners' shares today
  • /miner/{miner_login} GET is the miner status POST upload the payment method. e.g. curl 127.0.0.1:3333/miner/Hello will get the json of "Hello"'s status. curl -X POST -d "{'pass': 'passwordOfHello', 'pm': 'http://<IP>:<PORT>'}" 127.0.0.1:3333/miner/Hello

The maintainer can manually use this command to send the coin grin wallet send -d http://<IP>:<PORT>. Note, ensure the receiver online before your sending.

WebPage:

  • replace the API address to your API in the web/config.js
  • move all files in web to your Nginx/Apache folder

Config

For server

If you are using epic you can keep all default except auth_pass. The password can be found in the .api_secret file.

knowledge about this, check here

The diff should be the same difficulty to what you configured in server's (not pool's) .toml config file.

For miner

In miner's config(a .toml config file), these 2 params are required

# login for the stratum server (if required)
stratum_server_login = "loginName"

# password for the stratum server (if required)
stratum_server_password = "loginPass"

The agent is optional. Pool treat it as the miner's rig name.

or the miner will not be able to connect to the server and the sol will not be relayed to the node!

TODO

  • Web UI
  • More accurate hash rate
  • Administration based on web
  • multi Backend (failover)
  • multi Port (with different difficulties)

Please donation: LTC: LXxqHY4StG79nqRurdNNt1wF2yCf4Mc986

License

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].