Skip to content

Commit

Permalink
simplified
Browse files Browse the repository at this point in the history
  • Loading branch information
tutulino committed Nov 16, 2017
1 parent c20fdd8 commit 33327be
Showing 1 changed file with 57 additions and 105 deletions.
162 changes: 57 additions & 105 deletions Pools/WHATTOMINE_VIRTUAL.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,17 @@ if ($Querymode -eq "info"){


if (($Querymode -eq "wallet") -or ($Querymode -eq "APIKEY")) {

$PoolRealName=$null
switch($info.AbbName) {
"WTM-SN" {$PoolRealName = 'SUPRNOVA' }
"WTM-SNOVA" {$PoolRealName = 'SUPRNOVA' }
"WTM-MPH" {$PoolRealName = 'MINING_POOL_HUB' }
"WTM-YI" {$PoolRealName = 'YIIMP' }
}

$Info.poolname = $PoolRealName
$result = Get-Pools -Querymode $info.WalletMode -PoolsFilterList $PoolRealName -Info $Info | select-object Pool,currency,balance
if ($PoolRealName -ne $null){
$Info.poolname = $PoolRealName
$result = Get-Pools -Querymode $info.WalletMode -PoolsFilterList $PoolRealName -Info $Info | select-object Pool,currency,balance
}


}
Expand All @@ -80,16 +82,16 @@ if (($Querymode -eq "core" ) -or ($Querymode -eq "Menu")){

$Pools=@()

#Manual Pools zone
#Manual Pools zone (you cand add your pools here - wallet for that coins must exists on config.txt)

#$Pools +=[pscustomobject]@{"coin" = "ZCLASSIC";"algo"="Equihash"; "symbol"= "ZCL";"server"="us-east.equihash-hub.miningpoolhub.com"; "port"= "20575";"location"="US"}
#$Pools +=[pscustomobject]@{"coin" = "ORBITCOIN"; "algo"="NEOSCRYPT"; "symbol"= "ORB"; "server"="yiimp.ccminer.org";"port"="4233";"location"="US"}
$Pools +=[pscustomobject]@{"coin" = "PIRL";"algo"="Ethash"; "symbol"= "PIRL";"server"="pirl.minerpool.net"; "port"= "8004";"location"="US";"User"="XXX";"Pass" = "YYY";"fee"="0";"Abbname"="MinerP";"WalletMode"="NONE"}

#Data from WTM
try {$WTMResponse = Invoke-WebRequest "https://whattomine.com/coins.json" -UseBasicParsing -timeoutsec 10 | ConvertFrom-Json | Select-Object -ExpandProperty coins} catch { WRITE-HOST 'WTM API NOT RESPONDING...ABORTING';EXIT}

$WTMResponse.psobject.properties.name | ForEach-Object {
$A=$WTMResponse.($_).Algorithm

$WTMResponse.($_).Algorithm = get-algo-unified-name ($WTMResponse.($_).Algorithm)

#not necessary delete bad names/algo, only necessary add correct name/algo
Expand All @@ -101,128 +103,78 @@ if (($Querymode -eq "core" ) -or ($Querymode -eq "Menu")){

}

#search if MPH has pool for WTM mcoins
#search on pools where to mine coins, switch sentence determines order to look, if one pool has one coin, no more pools for that coin are searched after.

$MPHPools=Get-Pools -Querymode "core" -PoolsFilterList 'MINING_POOL_HUB' -location $Info.Location
$PoolOrder=1
while ($PoolOrder -le 3)
{

$MPHPools | ForEach-Object {
switch ($PoolOrder)
{
"1"{$PoolToSearch='MINING_POOL_HUB'}
"2"{$PoolToSearch='Suprnova'}
"3"{$PoolToSearch='YIIMP'}

$WTMcoin=$WTMResponse.($_.Info)
}

if (($WTMcoin.Algorithm -eq $_.Algorithm) -and (($Pools | where-object coin -eq $_.info |where-object Algo -eq $_.Algorithm) -eq $null)) {
$Pools +=[pscustomobject]@{
"coin" = $_.Info
"algo"= $_.Algorithm
"symbol"= $WTMResponse.($_.Info).tag
"server"= $_.host
"port"= $_.port
"location"= $_.location
"Fee" = $_.Fee
}
}

}

$HPools=Get-Pools -Querymode "core" -PoolsFilterList $PoolToSearch -location $Info.Location

#search if suprnova has pool for WTM mcoins
$HPools | ForEach-Object {

$SPRPools=Get-Pools -Querymode "core" -PoolsFilterList 'Suprnova' -location $Info.Location
$WTMcoin=$WTMResponse.($_.Info)

$SPRPools | ForEach-Object {
if (($WTMcoin.Algorithm -eq $_.Algorithm) -and (($Pools | where-object coin -eq $_.info |where-object Algo -eq $_.Algorithm) -eq $null)) {
$Pools +=[pscustomobject]@{
"coin" = $_.Info
"algo"= $_.Algorithm
"symbol"= $WTMResponse.($_.Info).tag
"server"= $_.host
"port"= $_.port
"location"= $_.location
"Fee" = $_.Fee
"User"= $_.User
"Password"= $_.Password
"protocol"= $_.Protocol
"Abbname"= $_.Abbname
"WalletMode" = $_.WalletMode
}
}

$WTMcoin=$WTMResponse.($_.Info)
if (($WTMcoin.Algorithm -eq $_.Algorithm) -and (($Pools | where-object coin -eq $_.info |where-object Algo -eq $_.Algorithm) -eq $null)) {
$Pools +=[pscustomobject]@{
"coin" = $_.Info
"algo"= $_.Algorithm
"symbol"= $WTMResponse.($_.Info).tag
"server"= $_.host
"port"= $_.port
"location"= $_.location
"Fee" = $_.Fee
}
}
$PoolOrder++
}

}
#add estimation data to selected pools


#search if Yiimp has pool for WTM mcoins

$YiimpPools=Get-Pools -Querymode "core" -PoolsFilterList 'YIIMP' -location $Info.Location

$YiimpPools | ForEach-Object {

$WTMcoin=$WTMResponse.($_.Info)
if (($WTMcoin.Algorithm -eq $_.Algorithm) -and (($Pools | where-object coin -eq $_.info |where-object Algo -eq $_.Algorithm) -eq $null)) {
if ($_.Info -ne 'decred') { #decred on yiimp has "server full" errors
$Pools +=[pscustomobject]@{
"coin" = $_.Info
"algo"= $_.Algorithm
"symbol"= $WTMResponse.($_.Info).tag
"server"= $_.host
"port"= $_.port
"location"= $_.location
"Fee" = $_.Fee
}
}
}

}


$Pools |ForEach-Object {

$WTMFactor = get-WhattomineFactor ($_.Algo)


if ($WTMFactor -ne $null) {
$Estimate=[Double]($WTMResponse.($_.coin).btc_revenue/$WTMFactor)
$Estimate24h=[Double]($WTMResponse.($_.coin).btc_revenue24/$WTMFactor)
}

if ($_.Server -like '*suprnova*'){
$VPUser="$Username.$WorkerName"
$VPPassword="x"
$VPprotocol="stratum+tcp"
$VpAbbname='SN'
$VpWalletMode='APIKEY'
}


if ($_.Server -like '*yiimp*'){
$VPUser= $CoinsWallets.get_item($_.symbol)
$VPPassword="c=$Yiimp_currency,ID=$WorkerName,stats"
$VPprotocol="stratum+tcp"
$VpAbbname='YI'
$VpWalletMode='WALLET'
}

if ($_.Server -like '*miningpoolhub*'){
$VPUser= "$UserName.$WorkerName"
$VPPassword="x"
$VPprotocol="stratum+tcp"
$VpAbbname='MPH'
$VpWalletMode='APIKEY'
}
$WTMFactor = get-WhattomineFactor ($_.Algo)


if ($WTMFactor -ne $null) {
$Estimate=[Double]($WTMResponse.($_.coin).btc_revenue/$WTMFactor)
$Estimate24h=[Double]($WTMResponse.($_.coin).btc_revenue24/$WTMFactor)
}


$Result+=[PSCustomObject]@{
Algorithm = $_.Algo
Info = $_.Coin
Price = $Estimate
Price24h = $Estimate24h
Protocol = $VPprotocol
Protocol = $_.Protocol
Host = $_.Server
Port = $_.Port
User = $VpUser
Pass = $VpPassword
User = $_.User
Pass = $_.Password
Location = $_.Location
SSL = $false
Symbol = $_.symbol
AbbName = "WTM-"+$VpAbbname
AbbName = "WTM-"+$_.Abbname
ActiveOnManualMode = $ActiveOnManualMode
ActiveOnAutomaticMode = $ActiveOnAutomaticMode
PoolName = $Name
WalletMode = $VpWalletMode
WalletMode = $_.WalletMode
Fee = $_.Fee
}

Expand All @@ -232,8 +184,8 @@ if (($Querymode -eq "core" ) -or ($Querymode -eq "Menu")){
remove-variable WTMResponse
remove-variable Pools
remove-variable WTMcoin
remove-variable MPHPools
remove-variable SPRPools
remove-variable HPools


}

Expand Down

0 comments on commit 33327be

Please sign in to comment.