Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Eurobit - The anonymous, digital replacement for the Euro. [AIRDROP]
by
Eurobit_Official
on 04/01/2018, 20:29:47 UTC
Thank you for releasing the source for pools! I will check it out and maybe make a pool. Good job Smiley

About pools, if anyone is just interested in connecting ccminer or something, https://github.com/forknote/forknote-pool.git
works quite well.

Short setup:
- install node v0.10.48 and redis (and gcc-5!)
- install forknote-pool (see README.md)
- run eurobitd
- run simplewallet with rpc enabled:
Code:
$ ./simplewallet --rpc-bind-ip 127.0.0.1 --rpc-bind-port 1111 --wallet-file wallet --password password
- edit config.json (settings not mentioned are not coin specific, just check forknote-pool's README.md)
Code:
{
  "coin": "eurobit",
  "symbol": "EUR",
  "coinUnits": 100000000,

Code:
"poolServer": {
   "poolAddress": "",
}

Code:
"payments": {
  "mixin": 0,
  "transferFee":     100000,
  "minPayment": 10000000000,
  "denomination": 100000000

Code:
"blockUnlocker": {
  "depth": 5,
  "devDonation": 0,
  "coreDevDonation": 0,

Code:
"daemon": {
        "host": "127.0.0.1",
        "port": 8081
    },

Code:
"wallet": {
        "host": "127.0.0.1",
        "port": 1111
    },

then, start it
Code:
$ node init.js
and enjoy
Code:
$ ./ccminer -o stratum+tcp://yourpool:3333 -u  -p x

HTH

Forknote code won't work I don't think, calls different RPC commands
Also not too sure about this but I would suggest using walletd for services but simplewallet could work fine too I suppose Tongue