Search content
Sort by

Showing 3 of 3 results by cyrano741
Post
Topic
Board Securities
Re: [BTC-TC] Virtual Community Exchange [WINDING DOWN]
by
cyrano741
on 16/10/2013, 14:39:57 UTC
Have the regular AM shares been converted to direct shares yet?  Anyone know?

We explained our plan in the ASICMINER-PT thread.  I expect to be compiling a CSV of transfers for Friedcat tonight or tomorrow.

Hope that helps.  Smiley



Has the share transfer gone through yet? When/how will we know that it is done?
Post
Topic
Board Beginners & Help
Re: Help with Blockchain.info WebSocket API
by
cyrano741
on 24/07/2013, 00:22:25 UTC
My mistake; you have to send an op to the API. Correct code below for others' reference.


      var conn = new WebSocket('ws://ws.blockchain.info/inv');
      conn.onopen = function () {
        console.log('open');
        conn.send('{"op":"unconfirmed_sub"}');
      }
Post
Topic
Board Beginners & Help
Topic OP
Help with Blockchain.info WebSocket API
by
cyrano741
on 24/07/2013, 00:12:46 UTC
I am try to access the blockchain.info WebSocket API, but I can't get it to work. The connection opens, but then no messages are received. Can anyone give advice on what I'm doing wrong?


 
   
 
 
 



The console output is:

open
close