Skip to content

Commit

Permalink
Updated configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dondreytaylor committed Oct 1, 2018
1 parent 21c4e11 commit 19a7a4a
Show file tree
Hide file tree
Showing 4 changed files with 189 additions and 0 deletions.
6 changes: 6 additions & 0 deletions coins/bth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Bithereum",
"symbol": "BTH",
"algorithm": "equihash",
"txfee": 0.000005
}
6 changes: 6 additions & 0 deletions coins/bth_testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Testnet Bithereum",
"symbol": "TBTH",
"algorithm": "equihash",
"txfee": 0.000005
}
86 changes: 86 additions & 0 deletions pool_configs/bth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"enabled": false,
"coin": "bth.json",

"address": "Gamj56ncG12wNkJAjDccciH1FVBMy7pNbq",

"_comment_address": "a transparent address to send coinbase rewards to and to transfer to zAddress.",

"zAddress": "",
"_comment_zAddress": "Not used",

"tAddress": "",
"_comment_tAddress": "transparent address used to send payments, make this a different address, otherwise payments will not send",

"walletInterval": 5,

"rewardRecipients": {
"": 1.0
},

"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
"ca":""
},

"paymentProcessing": {
"minConf": 10,
"enabled": true,
"paymentMode": "prop",
"_comment_paymentMode":"prop, pplnt",
"paymentInterval": 57,
"_comment_paymentInterval": "Interval in seconds to check and perform payments.",
"minimumPayment": 0.1,
"maxBlocksPerPayment": 3,
"daemon": {
"host": "node1-mainnet.bithereum.network",
"port": 8332,
"user": "bithereum",
"password": "bithereum"
}
},

"ports": {
"3857": {
"tls":false,
"diff": 0.05,
"varDiff": {
"minDiff": 0.04,
"maxDiff": 16,
"targetTime": 15,
"retargetTime": 60,
"variancePercent": 30
}
}
},

"daemons": [
{
"host": "node1-mainnet.bithereum.network",
"port": 8332,
"user": "bithereum",
"password": "bithereum"
}
],

"p2p": {
"enabled": false,
"host": "node1-mainnet.bithereum.network",
"port": 19333,
"disableTransactions": true
},

"mposMode": {
"enabled": false,
"host": "node1-mainnet.bithereum.network",
"port": 3306,
"user": "me",
"password": "mypass",
"database": "kmd",
"checkPassword": true,
"autoCreateWorker": false
}

}
91 changes: 91 additions & 0 deletions pool_configs/bth_testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"enabled": true,
"coin": "bth_testnet.json",

"address": "ms5YGqYrsKHzhGaACPfAZVPxhGfa3GdhdC",
"_comment_address": "a transparent address to send coinbase rewards to and to transfer to zAddress.",

"zAddress": "",
"_comment_zAddress": "Not used",

"tAddress": "",
"_comment_tAddress": "transparent address used to send payments, make this a different address, otherwise payments will not send",

"walletInterval": 5,

"rewardRecipients": {
"": 1.0
},

"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
"ca":""
},

"paymentProcessing": {
"minConf": 10,
"enabled": false,
"paymentMode": "prop",
"_comment_paymentMode":"prop, pplnt",
"paymentInterval": 57,
"_comment_paymentInterval": "Interval in seconds to check and perform payments.",
"minimumPayment": 0.1,
"maxBlocksPerPayment": 3,
"daemon": {
"host": "node1-testnet.bithereum.network",
"port": 8332,
"user": "bithereum",
"password": "bithereum"
}
},

"ports": {
"3857": {
"tls":false,
"diff": 0.05,
"varDiff": {
"minDiff": 0.04,
"maxDiff": 16,
"targetTime": 15,
"retargetTime": 60,
"variancePercent": 30
}
}
},

"daemons": [
{
"host": "node1-testnet.bithereum.network",
"port": 8332,
"user": "bithereum",
"password": "bithereum"
},
{
"host": "node2-testnet.bithereum.network",
"port": 8332,
"user": "bithereum",
"password": "bithereum"
}
],

"p2p": {
"enabled": false,
"host": "node1-testnet.bithereum.network",
"port": 18444,
"disableTransactions": true
},

"mposMode": {
"enabled": false,
"host": "node1-testnet.bithereum.network",
"port": 3306,
"user": "me",
"password": "mypass",
"database": "kmd",
"checkPassword": true,
"autoCreateWorker": false
}

}

0 comments on commit 19a7a4a

Please sign in to comment.