Author

Topic: **CEX.IO Bitcoin Exchange ** Buy Bitcoins with Cards in iOS / Android App*** - page 148. (Read 422328 times)

CEX
legendary
Activity: 1227
Merit: 1003
Dear CEX users,
The maintenance fee will be less.
We are just running some final calculations, and will get back with exact information soon.
sr. member
Activity: 400
Merit: 250
the sun is shining, but the ice is still slippery
Dear CEX users,
There were some minor data-center issues, which resulted 0 hash power for some time.
However everything is fixed now, and ALL users will be compensated for their losses, to make sure you are 100% happy with our service.

I am glad you like our service, we will keep it up an running for your benefit Wink



Just saw this. Compensation from data center downtime? Wow!
This speaks volumes. Well done CEX. Cheers...
hero member
Activity: 816
Merit: 1000
Just trying to understand the fees.

Your saying 0.001 BTC/GHS/HOUR?

so for 24 hours of mining at 1 GHS the fee will be about 0.024BTC?

Let me know if I am do the math correctly.



No, you read it wrong.  It's $0.001, as in a tenth of a penny.

Correct, it's $0.024 per day per GH.  This amounts to $1.00 per kWh.
hero member
Activity: 924
Merit: 1000
Watch out for the "Neg-Rep-Dogie-Police".....
BTC0.1027 per G/h? That's just nuts  Roll Eyes
legendary
Activity: 1582
Merit: 1002
HODL for life.
Just trying to understand the fees.

Your saying 0.001 BTC/GHS/HOUR?

so for 24 hours of mining at 1 GHS the fee will be about 0.024BTC?

Let me know if I am do the math correctly.



No, you read it wrong.  It's $0.001, as in a tenth of a penny.
sr. member
Activity: 397
Merit: 250
Just trying to understand the fees.

Your saying 0.001 BTC/GHS/HOUR?

so for 24 hours of mining at 1 GHS the fee will be about 0.024BTC?

Let me know if I am do the math correctly.

legendary
Activity: 1582
Merit: 1002
HODL for life.
CEX,

   You could probably make a killing if you guys offered scrypt based cloud-mining.  If CryptoIndustries gets machines out the door, they would make a killing on your site.  A dozen or so Horus units and shares for 100-200khs/share.  I'd definitely buy in if you guys ever went that route.  Here's a link to the Horus.

http://www.cryptoindustries.com/?product=horus-10mh

-fuse
sr. member
Activity: 462
Merit: 250
Free World
@CEX

Is it possible to support SCRYPT-BASED MINERS?

Like LiteCoin?



I think no, it's all about bitcoins Smiley

Bitfury ASIC can only calculate SHA-256 hashes, that is why we can not mine litecoins.

Best Reagards,
CEX.IO


I understand... and I know there are no ASICs for alt-crypt yet...

but I am talking about hosted scrypt-based miners... The old RIGs type of miners... you know... mobos/ram/hd/cpu/gpu... (IN THE CLOUD)...

Smiley
legendary
Activity: 1140
Merit: 1000
The Real Jude Austin
CEX
legendary
Activity: 1227
Merit: 1003
@CEX

Is it possible to support SCRYPT-BASED MINERS?

Like LiteCoin?



I think no, it's all about bitcoins Smiley

Bitfury ASIC can only calculate SHA-256 hashes, that is why we can not mine litecoins.

Best Reagards,
CEX.IO
CEX
legendary
Activity: 1227
Merit: 1003
sr. member
Activity: 276
Merit: 250
In Blockchain We Trust!
@CEX

Is it possible to support SCRYPT-BASED MINERS?

Like LiteCoin?



I think no, it's all about bitcoins Smiley
sr. member
Activity: 462
Merit: 250
Free World
@CEX

Is it possible to support SCRYPT-BASED MINERS?

Like LiteCoin?

sr. member
Activity: 266
Merit: 250
legendary
Activity: 1140
Merit: 1000
The Real Jude Austin
Hello everyone!

I am currently working on a UI for CEX.IO.

I am having a little trouble with the trading part tho.

Would anyone be willing to help me with that part?

All I need is a single PHP script that I can set type, amount, and price and send it over the API.

I tried and tried but I just don't understand what I am doing wrong.

Something like this would be perfect:

Code:
function cex_query($method, array $req = array()) {
        
// API settings
        
$key ''// your API-key
        
$secret ''// your Secret-key
 
        
$req['method'] = $method;
        
$mt explode(' 'microtime());
        
$req['nonce'] = $mt[1];
       
        
// generate the POST data string
        
$post_data http_build_query($req'''&');
 
        
$sign hash_hmac('sha512'$post_data$secret);
 
        
// generate the extra headers
        
$headers = array(
                        
'Sign: '.$sign,
                        
'Key: '.$key,
        );
 
        
// our curl handle (initialize if required)
        
static $ch null;
        if (
is_null($ch)) {
                
$ch curl_init();
                
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
                
curl_setopt($chCURLOPT_USERAGENT'Mozilla/4.0 (compatible; BTCE PHP client; '.php_uname('s').'; PHP/'.phpversion().')');
        }
        
curl_setopt($chCURLOPT_URL'https://cex.io/api/place_order/GHS/BTC');
        
curl_setopt($chCURLOPT_POSTFIELDS$post_data);
        
curl_setopt($chCURLOPT_HTTPHEADER$headers);
        
curl_setopt($chCURLOPT_SSL_VERIFYPEERFALSE);
 
        
// run the query
        
$res curl_exec($ch);
        if (
$res === false) throw new Exception('Could not get reply: '.curl_error($ch));
        
$dec json_decode($restrue);
        if (!
$dec) throw new Exception('Invalid data received, please make sure connection is working and requested API exists');
        return 
$dec;
}
 

$result cex_query('Trade', array('type' => 'buy''amount' => 1'price' => 10));
 
var_dump($result);

?>
legendary
Activity: 1582
Merit: 1002
HODL for life.
Dear CEX users,
There were some minor data-center issues, which resulted 0 hash power for some time.
However everything is fixed now, and ALL users will be compensated for their losses, to make sure you are 100% happy with our service.

I am glad you like our service, we will keep it up an running for your benefit Wink



Thanks for the update!
hero member
Activity: 504
Merit: 500
Dear CEX users,
There were some minor data-center issues, which resulted 0 hash power for some time.
However everything is fixed now, and ALL users will be compensated for their losses, to make sure you are 100% happy with our service.

I am glad you like our service, we will keep it up an running for your benefit Wink



Handle like PRO's !

Hashrate compensated Wink

Great service, instant GH/s, redeem hardware....

Truly unique in the Bitcoin world, i love it !
CEX
legendary
Activity: 1227
Merit: 1003
Dear CEX users,
There were some minor data-center issues, which resulted 0 hash power for some time.
However everything is fixed now, and ALL users will be compensated for their losses, to make sure you are 100% happy with our service.

I am glad you like our service, we will keep it up an running for your benefit Wink

sr. member
Activity: 462
Merit: 250
Free World
Really good service....

YOU CAN'T BEAT AN INSTANT MINING SERVICE RIGHT AFTER PURCHASE... (5MINS)

I am rating A+ to this... and I hope this continue as a good service...

I would like to point out though...

The server IP that is hosting the graphs was blocked by MALWAREBYTESPRO...

(Type: outgoing, Port: 59191, Process: firefox.exe)
(Type: outgoing, Port: 59193, Process: firefox.exe)
(Type: outgoing, Port: 59196, Process: firefox.exe)

and so on and so forth... I did not really bother... I just went ahead an whitelisted the IP... coz of COMODO SSL was in place...

BTW.. I deposited around 6 BTC already (1btc at first... I was a bit skeptic... then 2btc... then 3btc...)... and hashing good power and can trade very fast too...

ALL in ALL

VERY GOOD SERVICE...

Join and START HASHING!

I-M-M-E-D-I-A-T-E-L-Y


Did I spell that right? lol

--> https://cex.io/  <-- no need for referral... Smiley


legendary
Activity: 1582
Merit: 1002
HODL for life.
Im shocked to see the market holding steady @ 0.09ish, even with the difficulty hike. Not sure what to make of it & unsure of my own personal reentry point into this market. Only time will tell....

I'm with you on that one... I've been eyes glued to the screen all day today looking for when to get back in.

All in all, I've been loving the site.  If you can stay on top of your entry and exit points, it's a nice way to earn some extra coin while trading.  Keep up the good work CEX!
Jump to: