-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
24 lines (24 loc) · 1.03 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$nicehash = new \Minuntu\MineSwitch\Provider\Nicehash("eu","3FxDYFMeFVxo3TzKDvvWUmuLy6fAAp8ZJ6.nas01", "x");
$claymore = new \Minuntu\MineSwitch\Miner\Amd\ClaymoreDual();
return [
new \Minuntu\MineSwitch\MiningConfig(["equihash" => 330], $nicehash, $claymore),
new \Minuntu\MineSwitch\MiningConfig(["cryptonight" => 770], $nicehash, $claymore),
new \Minuntu\MineSwitch\MiningConfig(["daggerhashimoto" => 29*1000*1000 ], $nicehash, $claymore),
new \Minuntu\MineSwitch\MiningConfig(
["daggerhashimoto" => 29*1000*1000 ,"sia" => 707*1000*1000],
$nicehash, $claymore
),
new \Minuntu\MineSwitch\MiningConfig(
["daggerhashimoto" => 29*1000*1000 ,"decred" => 1000*1000*1000],
$nicehash, $claymore
),
new \Minuntu\MineSwitch\MiningConfig(
["daggerhashimoto" => 29*1000*1000 ,"lbry" => 100*1000*1000],
$nicehash, $claymore
),
new \Minuntu\MineSwitch\MiningConfig(
["daggerhashimoto" => 29*1000*1000 ,"pascal" => 415*1000*1000],
$nicehash, $claymore
),
];