Ecoin crypto

Comment

Author: Admin | 2025-04-28

MyCoin = { "name": "eCoin", "symbol": "ECN", "algorithm": "keccak", /* This is not required and set to false by default. Some coins such as Copperlark and eCoin require it to be set to true. Maxcoin and most others are false. */ "normalHashing": true};Create and start new pool with configuration options and authentication functionvar Stratum = require('stratum-pool');var pool = Stratum.createPool({ "coin": myCoin, "address": "mi4iBXbBsydtcc5yFmsff2zCFVX4XG7qJc", //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": { "n37vuNFkXfk15uFnGoVyHZ6PYQxppD3QqK": 1.5, //1.5% goes to pool op "mirj3LtZxbSTharhtXvotqtJXUY7ki5qfx": 0.5, //0.5% goes to a pool co-owner /* 0.1% donation to NOMP. This pubkey can accept any type of coin, please leave this in your config to help support NOMP development. */ "22851477d63a085dbc2398c8430af1c09e7343f6": 0.1 }, "blockRefreshInterval": 1000, //How often to poll RPC daemons for new blocks, in milliseconds /* Some miner apps will consider the pool dead/offline if it doesn't receive anything new jobs for around a minute, so every time we broadcast jobs, set a timeout to rebroadcast in this many seconds unless we find a new job. Set to zero or remove to disable this. */ "jobRebroadcastTimeout": 55, //instanceId: 37, //Recommend not using this because a crypto-random one will be generated /* Some attackers will create thousands of workers that use up all available socket connections, usually the workers are zombies and don't submit shares after connecting. This features detects those and disconnects them. */ "connectionTimeout": 600, //Remove workers that haven't been in contact

Add Comment