Public bitcoin node accessible to web code?

1

I want to connect to the bitcoin network and broadcast a transaction.

I can't run my own bitcoin node on localhost because I'm in php on a web server (shared host), is there an internet-accessible open-to-the-public trusted reliable well-known node I can use?

Even blockchain.info api requires a local service to be running, so that won't work.

toddmo

Posted 2018-03-19T15:30:49.577

Reputation: 674

Answers

0

You can't do that using Bitcoin-core. What you can do as an alternative is using electrum servers.

You can find all the information about using it and commands in here.

Features:

  • Broadcast transactions.
  • Getting legacy address transactions, unspent and balance.
  • Free and public and there is many available peers.
  • open source (python).

Note: if you want to get segwit address balance, transactions.. you should convert it to script hash first.

Adam

Posted 2018-03-19T15:30:49.577

Reputation: 3 215

I'm in php on a shared web server. Wouldn't this solution require me to have a private virtual server, at least?toddmo 2018-03-24T18:47:19.860

Never, if you have Bitcoin-core you should get VPS, Electrum size is just 20MB, don't forget to open port 50002, 50003Adam 2018-03-25T02:49:51.140

I can't open a port. I can't install software. I don't "have" bitcoin core or anything else, just php files and html pages. I'm on a shared web server. Either I don't understand what you are suggesting or your answer isn't a suitable answer b/c it is disregarding my code environment. Maybe I don't understand then? When I look at your link, it wants me to install some software on the server, correct?toddmo 2018-03-27T17:49:58.027

Sorry, I didn't notice your comment. You can get another server and install electrumx on it, or you can use other people server since its public and you don't need to open those ports though.Adam 2018-04-25T04:41:03.983