forked from pk910/PoWFaucet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
faucet-config.example.json
57 lines (50 loc) · 1.95 KB
/
faucet-config.example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"faucetTitle": "Kiln Dev PoW Faucet",
"faucetImage": "/images/fauceth_420.jpg",
"faucetHomeHtml": "<div class='pow-info'><h5>What is a PoW Faucet?</h5>This is a Ethereum Faucet running on the Kiln Testnet.<br>To prevent malicious actors from exhausting all available funds or accumulating enough Ether to mount long running spam attacks, this faucet requires some mining work to be done in exchange for free testnet funds.</div><div class='pow-info'><h5>How does this work?</h5>Just enter your ETH Address and start mining. When you've collected enough ETH, stop mining and claim your rewards.</div>",
"serverPorts": [
{ "port": 8080 }
],
"powShareReward": 25000000000000000,
"claimMinAmount": 100000000000000000,
"claimMaxAmount": 1000000000000000000,
"powSessionTimeout": 3600,
"claimSessionTimeout": 7200,
"claimAddrCooldown": 7200,
"powSessionSecret": "***censored***",
"powScryptParams": {
"cpuAndMemory": 4096,
"blockSize": 8,
"paralellization": 1,
"keyLength": 16,
"difficulty": 10
},
"powNonceCount": 2,
"verifyLocalPercent": 10,
"verifyLocalMaxQueue": 100,
"verifyMinerPeerCount": 2,
"verifyLocalLowPeerPercent": 100,
"verifyMinerPercent": 100,
"verifyMinerIndividuals": 2,
"verifyMinerMissPenalty": 10000000000000000,
"hcaptcha": {
"siteKey": "3f8f7b03-6698-4b4e-b0be-e3a7f2a4a764",
"secret": "***censored***",
"checkSessionStart": true,
"checkBalanceClaim": true
},
"spareFundsAmount": 10000000000000000,
"lowFundsBalance": 2000000000000000000,
"lowFundsWarning": "The faucet is running out of funds! Faucet Balance: {1}",
"noFundsError": "Sorry, the faucet is out of funds :(",
"ethRpcHost": "http://127.0.0.1:8545/",
"ethWalletKey": "***censored***",
"ethChainId": 1337802,
"ethTxGasLimit": 500000,
"ethTxMaxFee": 1800000000,
"ethTxPrioFee": 800000000,
"ethMaxPending": 12,
"ensResolver": {
"rpcHost": "https://main-light.eth.linkpool.io/"
}
}