Added ANON (Anonymous Bitcoin) Testnet coin config, and pool_config examples (#46)

* added ANON (Anonymous Bitcoin) Coin Config

* Adding ANON pool config example

* remove wallet addresses

* change back to default prop

* change case

* change filename

* changed to anon_testnet
This commit is contained in:
0x6b656e 2018-08-13 13:52:57 -07:00 committed by nettts
parent eb00976d13
commit 47fa9f4d08
2 changed files with 104 additions and 0 deletions

13
coins/testnet/anon.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "anon_testnet",
"symbol": "anont",
"algorithm": "equihash",
"parameters": {
"N": 144,
"K": 5,
"personalization": "ZcashPoW"
},
"requireShielding": true,
"peerMagic": "7a748d38",
"txfee": 0.0004
}

View File

@ -0,0 +1,91 @@
{
"enabled": true,
"coin": "testnet/anon.json",
"address": "",
"_comment_address": "a transparent address to send coinbase rewards to and to transfer to zAddress.",
"zAddress": "",
"_comment_zAddress": "a private address used to send coins to tAddress.",
"tAddress": "",
"_comment_tAddress": "transparent address used to send payments, make this a different address, otherwise payments will not send",
"invalidAddress":"",
"_comment_invalidAddress": "Invalid addresses will be converted to the above",
"walletInterval": 2.5,
"_comment_walletInterval": "Used to cache coin stats",
"rewardRecipients": {
"": 0.2
},
"tlsOptions": {
"enabled": false,
"serverKey": "",
"serverCert": "",
"ca": ""
},
"paymentProcessing": {
"enabled": true,
"minConf": 10,
"paymentMode": "prop",
"_comment_paymentMode": "prop, pplnt",
"paymentInterval": 120,
"minimumPayment": 0.1,
"maxBlocksPerPayment": 3,
"daemon": {
"host": "127.0.0.1",
"port": 3127,
"user": "rpcuser",
"password": "rpcpassword"
}
},
"ports": {
"3333": {
"tls": false,
"diff": 0.5,
"varDiff": {
"minDiff": 0.04,
"maxDiff": 36,
"targetTime": 15,
"retargetTime": 60,
"variancePercent": 30
}
}
},
"poolId": "main",
"_comment_poolId": "use it for region identification: eu, us, asia or keep default if you have one stratum instance for one coin",
"daemons": [
{
"host": "127.0.0.1",
"port": 3127,
"user": "rpcuser",
"password": "rpcpassword"
}
],
"p2p": {
"enabled": false,
"host": "127.0.0.1",
"port": 19333,
"disableTransactions": true
},
"mposMode": {
"enabled": false,
"host": "127.0.0.1",
"port": 3306,
"user": "me",
"password": "mypass",
"database": "anon_testnet",
"checkPassword": true,
"autoCreateWorker": false
}
}