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.
Has the share transfer gone through yet? When/how will we know that it is done?
Post
Topic
BoardBeginners & 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
BoardBeginners & 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?