Coinium Server einrichten

Als Gast bekommst du nur einen geringen Teil der Geschehnisse zu sehen.
Registriere dich jetzt kostenfrei und erblicke das volle Spektrum der eMark Gemeinschaft!
  • Hallo Leute ich versuche gerade für die eMark einen neuen Stratum Server aufzusetzen. Leider scheiter ich bei der coin definition und der grundeinrichtung. Hat jemand erfahrung mit dem Thema ? Basis ist ein Windows Serrver 2012 R2.
    Der coinium Server klang sehr interessant da er alle möglichen ALt coins unterstütz.



    Wo finde ich für die eMark die richtigen blockexplorer werte ? sind einer der Fehler. Vielen dank für eure unterstützung.


    {
    "name": "deutsche eMark DEM",
    "symbol": "DEM",
    "algorithm": "sha256",
    "site": "http://deutsche-emark.de/",
    "blockExplorer": {
    "block": "http://deutsche-emark.de/block/",
    "tx": "http://deutsche-emark.de/tx/",
    "address": "http://deutsche-emark.de//address/"
    }


    "reward": "POS",
    "txMessages": true,
    "enabled": true, //Set this to false and a pool will not be created from this config file
    "coin": "emark.json", //Reference to coin config file in 'coins' directory


    "address": "NauX222rRtE2e2orzKjHTPGykfFHmv2cfh", //Address to where block rewards are given


    /* Block rewards go to the configured pool wallet address to later be paid out to miners,
    except for a percentage that can go to, for examples, pool operator(s) as pool fees or
    or to donations address. Addresses or hashed public keys can be used. Here is an example
    of rewards going to the main pool op, a pool co-owner, and NOMP donation.
    "rewardRecipients": {
    "NWtFftChrx28mvYgqfopmDejxoHiZmAK7u": 1.5, //1.5% goes to pool op
    "NWtFftChrx28mvYgqfopmDejxoHiZmAK7u": 0.5 //0.5% for donation
    },*/


    "paymentProcessing": {
    "enabled": true,


    /* Every this many seconds get submitted blocks from redis, use daemon RPC to check
    their confirmation status, if confirmed then get shares from redis that contributed
    to block and send out payments. */
    "paymentInterval": 30,


    /* Minimum number of coins that a miner must earn before sending payment. Typically,
    a higher minimum means less transactions fees (you profit more) but miners see
    payments less frequently (they dislike). Opposite for a lower minimum payment. */
    "minimumPayment": 0.01,


    /* This daemon is used to send out payments. It MUST be for the daemon that owns the
    configured 'address' that receives the block rewards, otherwise the daemon will not
    be able to confirm blocks or send out payments. */
    "daemon": {
    "host": "127.0.0.1",
    "port": 8925,
    "user": "WALLET USER",
    "password": "WALLET PASS"
    }
    },


    /* Each pool can have as many ports for your miners to connect to as you wish. Each port can
    be configured to use its own pool difficulty and variable difficulty settings. varDiff is
    optional and will only be used for the ports you configure it for. */
    "ports": {
    "3334": { //A port for your miners to connect to
    "diff": 32, //the pool difficulty for this port


    /* Variable difficulty is a feature that will automatically adjust difficulty for
    individual miners based on their hashrate in order to lower networking overhead */
    "varDiff": {
    "minDiff": 32, //Minimum difficulty
    "maxDiff": 2056, //Network difficulty will be used if it is lower than this
    "targetTime": 15, //Try to get 1 share per this many seconds
    "retargetTime": 90, //Check to see if we should retarget every this many seconds
    "variancePercent": 30 //Allow time to very this % from target without retargeting
    }
    },
    "3256": { //Another port for your miners to connect to, this port does not use varDiff
    "diff": 256 //The pool difficulty
    }
    },


    /* More than one daemon instances can be setup in case one drops out-of-sync or dies. */
    "daemons": [
    { //Main daemon instance
    "host": "127.0.0.1",
    "port": 19332,
    "user": "testuser",
    "password": "testpass"
    }
    ],


    /* This allows the pool to connect to the daemon as a node peer to receive block updates.
    It may be the most efficient way to get block updates (faster than polling, less
    intensive than blocknotify script). It requires the additional field "peerMagic" in
    the coin config. */
    "p2p": {
    "enabled": false,


    /* Host for daemon */
    "host": "127.0.0.1",


    /* Port configured for daemon (this is the actual peer port not RPC port) */
    "port": 19333,


    /* If your coin daemon is new enough (i.e. not a shitcoin) then it will support a p2p
    feature that prevents the daemon from spamming our peer node with unnecessary
    transaction data. Assume its supported but if you have problems try disabling it. */
    "disableTransactions": true
    },


    /* Enabled this mode and shares will be inserted into in a MySQL database. You may also want
    to use the "emitInvalidBlockHashes" option below if you require it. The config options
    "redis" and "paymentProcessing" will be ignored/unused if this is enabled. */
    "mposMode": {
    "enabled": false,
    "host": "127.0.0.1", //MySQL db host
    "port": 3306, //MySQL db port
    "user": "me", //MySQL db user
    "password": "mypass", //MySQL db password
    "database": "ltc", //MySQL db database name


    /* Checks for valid password in database when miners connect. */
    "checkPassword": true,


    /* Unregistered workers can automatically be registered (added to database) on stratum
    worker authentication if this is true. */
    "autoCreateWorker": false
    }
    }

  • Also für die Blockinfos und TX nimmst du am besten diese Links:


    http://185.194.142.165:3001/tx/

    http://185.194.142.165:3001/block/

    http://185.194.142.165:3001/address/

    http://185.194.142.165:3001/qr/


    Coinium hängt dann an den Link die jeweilige Adresse an und dann kommen auch die Werte.


    Habe schon Coinium installiert, aber beim testen keine Blöcke erzeugt, bin jetzt wieder auf MPOS umgestiegen ;-)