Skip to content

Commit

Permalink
Create kylacoin_pool.json
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolin1579 committed Oct 22, 2023
1 parent 3539681 commit 9ab9699
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions examples/kylacoin_pool.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"logging": {
"level": "info",
"enableConsoleLog": true,
"enableConsoleColors": true,
"logFile": "",
"logBaseDirectory": "",
"perPoolLogFile": false
},
"banning": {
"manager": "integrated",
"banOnJunkReceive": true,
"banOnInvalidShares": false
},
"notifications": {
"enabled": true,
"email": {
"host": "smtp.example.com",
"port": 587,
"user": "user",
"password": "password",
"fromAddress": "[email protected]",
"fromName": "support"
},
"admin": {
"enabled": false,
"emailAddress": "[email protected]",
"notifyBlockFound": true
}
},
"persistence": {
"postgres": {
"host": "127.0.0.1",
"port": 5432,
"user": "miningcore",
"password": "password",
"database": "miningcore"
}
},
"paymentProcessing": {
"enabled": true,
"interval": 600,
"shareRecoveryFile": "recovered-shares.txt"
},
"pools": [{
"id": "kylacoin",
"enabled": true,
"coin": "kylacoin",
"address": "kc1q39e75kcrez9ramjhjguud43nwkcm8lw03psx28", //kylacoin-cli getnewaddress "" "bech32"
"addressType": "BechSegwit",
"bechPrefix": "kc",
"rewardRecipients": [{
"address": "kc1q39e75kcrez9ramjhjguud43nwkcm8lw03psx28",
"percentage": 0
}],
"blockRefreshInterval": 500,
"jobRebroadcastTimeout": 10,
"clientConnectionTimeout": 600,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 50
},
"ports": {
"3063": {
"listenAddress": "0.0.0.0",
"difficulty": 2,
"name": "GPU/FPGA Mining",
"varDiff": {
"minDiff": 1,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
}
},
"daemons": [{
"host": "127.0.0.1",
"port": 5110,
"user": "user",
"password": "password"
}],
"paymentProcessing": {
"enabled": true,
"minimumPayment": 0.001,
"payoutScheme": "PPLNS",
"payoutSchemeConfig": {
"factor": 0.5
}
}
}]
}

0 comments on commit 9ab9699

Please sign in to comment.