Author

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

hero member
Activity: 924
Merit: 1000
Watch out for the "Neg-Rep-Dogie-Police".....
False positive by any chance?

https://www.virustotal.com/en-gb/url/209b3949abf26e9ba67cb3ca17ccfbc41a2d198a3f5fb0efd8c64220c45bb274/analysis/1382987137/

VirusTotal also uses MB & it comes up clean - so maybe your MB settings are wrong - or you've got a virus yourself.... Wink
newbie
Activity: 26
Merit: 0
@CEX

I registered last weekend and was very unimpressed, i was sent there by a friend without really knowing anything and just assumed it was in early beta, because the site is like 90% empty, unpopulated.
I mentioned this to said friend last night and he gave me his login so i could see what its about, but again, empty. Firefox, Chrome, IE... empty.

I fired up my remote connection into my homeserver and tried through that, and its all there as i'd been told it was.

I've just found out that Malwarebytes is basically blocking your site, i used Firebug to look for errors and this seems to be what is picking up on:

ReferenceError: io is not defined
var socketio = io.connect('https://ws.cex.io/');
www.cex.io (line 527)

What is thats going on there which is causing MB to block your IP address, and (before adding to ignore list) basically turn your website into a content-less waste of space when visiting it.
hero member
Activity: 924
Merit: 1000
Watch out for the "Neg-Rep-Dogie-Police".....
CEX
legendary
Activity: 1227
Merit: 1003
hero member
Activity: 924
Merit: 1000
Watch out for the "Neg-Rep-Dogie-Police".....
Nice one  Grin

Can you lower the G/h price too?......... Cheesy Cheesy
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);

?>
Jump to: