Bitcoin Forum
June 24, 2024, 09:50:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Securities / Re: [BTC-TC] Virtual Community Exchange [WINDING DOWN] on: October 16, 2013, 02:39:57 PM
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?
2  Bitcoin / Group buys / Re: [OPEN] #16-17-18-19 ASICMiner Erupter USB - .41 to .55 btc (CE + RoHS) 2000+ on: August 07, 2013, 11:55:19 PM
#18 cyrano741; 1; .55 BTC; 1PXG412RxuSGYnbtPrgp1pLQuUd5Cg66Gt
3  Other / Beginners & Help / Re: Help with Blockchain.info WebSocket API on: July 24, 2013, 12:22:25 AM
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"}');
      }
4  Other / Beginners & Help / Help with Blockchain.info WebSocket API on: July 24, 2013, 12:12:46 AM
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?

<html>
  <head>
    <script type="text/javascript">
      var conn = new WebSocket('ws://ws.blockchain.info/inv');
      conn.onopen = function () {
        console.log('open');
      }
      conn.onclose = function () {
        console.log('close');
      }
      conn.onerror = function (error) {
        console.log('websocket error: ' + error);
      }
      conn.onmessage = function (e) {
        console.log(e);
      }
    </script>
  </head>
  <body>
  </body>
</html>


The console output is:

open
close
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!