Bitcoind functionality w/o running a full node

1

I'd like to do some of the example in "Mastering Bitcoin, Programming the Open Blockchain" using bitoind on my Ubuntu system. Is there a program (possibly bitcoind itself) that allows me to do this w/o setting up a full not which I can currently not do for Hardware reasons?

I would mainly like to be able to explore transaction with comments such as bitcoin-cli decoderawtransaction for instance.

Many thanks and sorry if this is a stupid question.

clog14

Posted 2017-11-29T16:45:07.610

Reputation: 113

I guess you could try and use an Api?Rutger Versteegden 2017-11-29T16:53:06.577

Can you give an example?clog14 2017-11-29T16:53:34.540

See my answer below.Rutger Versteegden 2017-11-29T16:54:49.200

Answers

1

I guess you could use some API that provides the same functionality.

See https://chainquery.com/bitcoin-api/decoderawtransaction

bitcoin-cli decoderawtransaction

And much more calls/commands are listed there.

Does this fit your needs?

Rutger Versteegden

Posted 2017-11-29T16:45:07.610

Reputation: 966

Yes, that is pretty good from what I have seen in that short period of time. Let me ask you as well, out of curiosity, is there something like this for the command line in Linux (Ubuntu)?clog14 2017-11-29T17:00:01.553

Ok, i.e. something like bitcoinj is a tool I might want to look into.clog14 2017-11-29T17:05:35.217

0

You could also run bitcoind in regtest mode, which would allow you to experiment with the RPC and everything without having to download the main blockchain (regtest will create its own private blockchain for you to use, which you can mine on using the generate RPC command).

MeshCollider

Posted 2017-11-29T16:45:07.610

Reputation: 8 735