Pages:
Author

Topic: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - thousands of rigs available! - page 44. (Read 200996 times)

member
Activity: 69
Merit: 10
still no support on my side does mux look at the forums ? or at his emails or have help
sr. member
Activity: 350
Merit: 250
Good luck getting support i send a tic last week and never got a email back just like the IRC channel. lots of the people i there don't reply or tell you good luck on that. Oh and good luck getting a refund if someone miners goes down your not getting your BTC back. Anyhow am working on my own site i just need to find a way to get the miners hosted and start when payment is done.

This is too bad betarigs was good when they started

I got an initial e-mail response about a refund but no response back yet. Bitcoin took over 30 minutes to transfer so the rig ended up closing on me but the Bitcoin still went through. I responded with the necessary information and almost 24Hrs later no response.  Bitcoin amount was a little less than 1BTC
hero member
Activity: 918
Merit: 1002
Does anyone know how to get in touch with customer support, as I would like to try and host some of my 1TH rigs there?
I opened a ticket last weekend about bumping up the cap and they answered within 24 hours, so YMMV.  It's the only reason I've had to open a ticket, but it seemed quick enough.
member
Activity: 69
Merit: 10
Good luck getting support i send a tic last week and never got a email back just like the IRC channel. lots of the people i there don't reply or tell you good luck on that. Oh and good luck getting a refund if someone miners goes down your not getting your BTC back. Anyhow am working on my own site i just need to find a way to get the miners hosted and start when payment is done.

This is too bad betarigs was good when they started
hero member
Activity: 714
Merit: 500
Does anyone know how to get in touch with customer support, as I would like to try and host some of my 1TH rigs there?
hero member
Activity: 714
Merit: 500
How long does it typically take to get a ticket answered on beta?
member
Activity: 102
Merit: 10

would you be willing to share any of your code? I'm using pycurl but I dont know much about ssl, so the certificate issues are giving me a headache

My code is unfinished so I wouldn't recommend running this as is but it will get you started since it is able to read and make changes to your rigs.  You can improve the algorithm.  It sends 3 algo request to Betarigs every minute so that if one is rented, price on remaining algo will increase to 1BTC/Mh/day.  If rental is finished, all price will be set to hardcoded "marketprice".  I have yet to write an algorithm based on few datas to come up with my version of "market price".  During rental progress, it continues to send request every minute which is not how it should be.  I also have yet to add a condition statement so that it will restart sending request when rental ended.

BTW, I meant I use Jq to work with JSON data.  Not Qt. 

Code:

#!/bin/bash

#my rigs
x11rignum=(your rig #)
x13rignum=(your rig #)
x15rignum=(your rig #)
nist5rignum=(your rig #)

API_KEY=(enter your own API #)


#need marketprice algo, manually hardcode for now
x11marketprice=(enter your price)
x13marketprice=(enter your price)
x15marketprice=(enter your price)

x11highprice=1
x13highprice=1
x15highprice=1

priceincreased=false

while true; do


###################check all rig rent status#####################

#get information from betarigs then store locally to a txt file
curl https://www.betarigs.com/api/v1/rig/$x11rignum > x11info.txt
sleep 1
curl https://www.betarigs.com/api/v1/rig/$x13rignum > x13info.txt
sleep 1
curl https://www.betarigs.com/api/v1/rig/$x15rignum > x15info.txt
sleep 1
#curl https://www.betarigs.com/api/v1/rig/$nist5rignum > nist5info.txt
#sleep 1

#output is true or false
x11statavail=$(cat x11info.txt | jq '.status.available')
x13statavail=$(cat x13info.txt | jq '.status.available')
x15statavail=$(cat x15info.txt | jq '.status.available')
#nist5statavail=$(cat nist5info.txt | jq '.status.available')

#output are: Available, In Progress, Waiting payment, Offline, etc
x11statlabel=$(cat x11info.txt | jq '.status.label')
x13statlabel=$(cat x13info.txt | jq '.status.label')
x15statlabel=$(cat x15info.txt | jq '.status.label')
#nist5statlabel=$(cat nist5info.txt | jq '.status.label')

##remove "" otherwise string comparison won't work
#x11statlabel=${x11statlabel:1:-1}
#x13statlabel=${x13statlabel:1:-1}
#x15statlabel=${x15statlabel:1:-1}
##nist5statlabel=${nist5statlabel:1:-1}

##default not rented
x11rented=false
x13rented=false
x15rented=false

if [ $x11statavail == false ]; then
    x11rented=true
fi
if [ $x13statavail == false ]; then
    x13rented=true
fi
if [ $x15statavail == false ]; then
    x15rented=true
fi

rentinprogress=false
if [ $x11rented == true ] || [ $x13rented == true ] || [ $x15rented == true ]; then
    rentinprogress=true
fi

################### change high price to market price if rental has completed #####################

string1='{"price":{"per_speed_unit":{"value":'
string2=',"unit":"BTC/Mh/day"}}}'

#if rig is not rented
if [ $rentinprogress == false ]; then
    if [ $priceincreased == false ]; then
        ##readback and store all rig currentprice, I can manually change price online
        x11currprice=$(cat x11info.txt | jq '.price.per_speed_unit.value')
        x13currprice=$(cat x13info.txt | jq '.price.per_speed_unit.value')
        x15currprice=$(cat x15info.txt | jq '.price.per_speed_unit.value')
        #nist5currprice=$(cat nist5info.txt | jq '.price.per_speed_unit.value')

    else #if priceincreased=true means rent period just finished
        ##set all to marketprice for now
        x11currprice=$x11marketprice
        x13currprice=$x13marketprice
        x15currprice=$x15marketprice
        #nist5currprice=$nist5marketprice
       
        jsonstring=$string1$x11currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x11rignum
        sleep 1
        jsonstring=$string1$x13currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x13rignum
        sleep 1
        jsonstring=$string1$x15currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x15rignum
        sleep 1
        #jsonstring=$string1$nist5currprice$string2
        #curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$nist5rignum
        sleep 1

        priceincreased=false
    fi


else #if rent is in progress or waiting for payment

################### set price to high if rental started  #####################

    echo "rent in progress"

    if [ $priceincreased == false ]; then
        echo "increase non rented price now"
       
        #set highprice to rigs not rented
        if [ $x11rented == false ]; then
            echo "set x11 price"
            x11currprice=$x11highprice
            jsonstring=$string1$x11currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x11rignum
             sleep 1
        fi
        if [ $x13rented == false ]; then
            x13currprice=$x13highprice
            jsonstring=$string1$x13currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x13rignum
            sleep 1
        fi
        if [ $x15rented == false ]; then
            x15currprice=$x15highprice
            jsonstring=$string1$x15currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x15rignum
            sleep 1
        fi
        priceincreased=true
    fi

fi

sleep 60

done


newbie
Activity: 35
Merit: 0
I'm using sgminer v5 with the ability to switch between multiple algorithms on the one rig.

I would like the ability to create three rig profiles on Betarigs, x11, x13 and x15 and advertise them all at once and at different rates.

As soon as one of them is hired the others could easily be flicked to "offline" or "rented".

Is this possible at the moment?

E.g. my config file would contain three betarigs pools, one for each algorithm.  Once my rig is hired only one pool should be alive.

At the moment if a second of the above profiles is hired then they would be enabled in sgminer based on priority which is a problem unless there is some way I can deactivate the other profiles once the rig is hired.

Yes, this is possible. I have running this exactly how you mention it beside the offline/online feature. This is because the API of BetaRigs lacks this possibility. So the workaround I use, is to raise all other prices of non-rented algorithms with +15 BTC if one algorithm is rented.

I am using this setup for X11/X13/X15 setup.

Can you post your config please?
newbie
Activity: 27
Merit: 0
Yes, but it is still in testing phase and I'm not in a hurry to release.  My programming skills are minimal compared to many software gurus here so my method is most likely not a good approach but its good enough for me.  I'm simply using shell script and Qt to work with JSON data.

would you be willing to share any of your code? I'm using pycurl but I dont know much about ssl, so the certificate issues are giving me a headache
member
Activity: 102
Merit: 10
has anyone had any luck with using the api? I'm trying to use it with python but keep getting SSL errors, and cloudflare 403 errors when trying to access the data or change my rig prices

Yes, but it is still in testing phase and I'm not in a hurry to release.  My programming skills are minimal compared to many software gurus here so my method is most likely not a good approach but its good enough for me.  I'm simply using shell script and Jq to work with JSON data.
newbie
Activity: 27
Merit: 0
has anyone had any luck with using the api? I'm trying to use it with python but keep getting SSL errors, and cloudflare 403 errors when trying to access the data or change my rig prices
legendary
Activity: 3486
Merit: 1126
What's with the sudden rush for SHA256 miners?

What's being mined, feel i am left out here! Smiley

btcd
full member
Activity: 247
Merit: 100
O__o
have a complain about the support, guys are ok and usually solving the problems, but to get an answer you need to wait 20 or sometimes even 24 hours . not for refunds or stability issues, but for technical questions and rigs' setup

that's really way too long  Undecided 
sr. member
Activity: 798
Merit: 250
Mux if you're paying attention mate, we, rig owners need some sort of protection here. i just noticed the feedback algo gives more weight to negative ratings thus taking away a good chunk of all the good feedback collected over the long period.

can i suggest to give rig owners at least an opportunity to dispute and have the negative feedback removed or reduced? especially if it was renter's fault or due to shitty pool the renter chose?

The worst thing is people who choose shit pools and the hashrate jumps between 20x what is actually possible and then zero and leave you negative feedback about the stability of your rig.

Drives me crazy.

there are also people that

 - msg you the same second their rent starts and ask why is avg hash so low, they paid for full speed..etc.
 - mess up pool/worker settings and then say your rig was offline
 - choose some sh*tcoin and then say you have unstabile rig..etc

its just insane

I strongly agree to this. To me it's like how much are we earning them ? and yet they want to squeeze everything from us, worst of all, by the end of the rental and they are not satisfied, they filed a refund, and we are like giving them free stuff for tat period.

It's unfair to us.
full member
Activity: 161
Merit: 100
digging in the bits... now ant powered!
What's with the sudden rush for SHA256 miners?

What's being mined, feel i am left out here! Smiley
member
Activity: 94
Merit: 10
this is great service, one thing missing: 2nd pool in settings. i wonder if this feature is in development or some to-do plan?
this really is function what we all need, imho.
also, online wallet, so one could rent multiple rigs instantly and without many transactions, would be nice Smiley 
member
Activity: 102
Merit: 10
Need to implement API.  so much to learn...
newbie
Activity: 8
Merit: 0
And admins; please add FRESH so I can leave MiningRigRentals for that algo.
newbie
Activity: 8
Merit: 0
I'm using sgminer v5 with the ability to switch between multiple algorithms on the one rig.

I would like the ability to create three rig profiles on Betarigs, x11, x13 and x15 and advertise them all at once and at different rates.

As soon as one of them is hired the others could easily be flicked to "offline" or "rented".

Is this possible at the moment?

E.g. my config file would contain three betarigs pools, one for each algorithm.  Once my rig is hired only one pool should be alive.

At the moment if a second of the above profiles is hired then they would be enabled in sgminer based on priority which is a problem unless there is some way I can deactivate the other profiles once the rig is hired.

Yes, this is possible. I have running this exactly how you mention it beside the offline/online feature. This is because the API of BetaRigs lacks this possibility. So the workaround I use, is to raise all other prices of non-rented algorithms with +15 BTC if one algorithm is rented.

I am using this setup for X11/X13/X15 setup.
full member
Activity: 203
Merit: 100
I'm using sgminer v5 with the ability to switch between multiple algorithms on the one rig.

I would like the ability to create three rig profiles on Betarigs, x11, x13 and x15 and advertise them all at once and at different rates.

As soon as one of them is hired the others could easily be flicked to "offline" or "rented".

Is this possible at the moment?

E.g. my config file would contain three betarigs pools, one for each algorithm.  Once my rig is hired only one pool should be alive.

At the moment if a second of the above profiles is hired then they would be enabled in sgminer based on priority which is a problem unless there is some way I can deactivate the other profiles once the rig is hired.

You can do it using API for now, Check your rig on the 3 algo like every min using api and once your rig is rented in 1 Algo, with the api set price of your rig in other algo to something extremly high.
When rental is done, set price back to normal Smiley

Will be lot of request to the site, perhaps something they won't like to see that much request to theyr server but for now it's the only way unless betarig do it themself to set other algo to offline when rig is rented in one  Tongue
Pages:
Jump to: