Accessing Testnet

1

Can i access the testnet without downloading the blockchain? im developing a software to do a testnet (later it will be in mainnet) transaction with a custom message embedded into OP_RETURN. if the users have to download the whole blockchain, the users im targeting for this software, will not be interested of using this.

Anjelo

Posted 2016-06-16T10:04:16.093

Reputation: 33

Question was closed 2016-06-24T20:29:02.243

It seems to me that you were just re-asking the same question again, if you disagree with this close-vote please explain the difference between your questions clearly.Murch 2016-06-24T20:29:42.403

Answers

1

If you are developing in java using the bitcoinj library, they have a mechanism in place to do it without downloading the full block chain. They just download the header lightweight simplified payment verification (SPV) mode. Maybe you can try that.This is the link

jgm

Posted 2016-06-16T10:04:16.093

Reputation: 748

Thanks alot jgm. im thinking of developing the software in C#. do C# has a library such like that?Anjelo 2016-06-17T04:11:17.340

0

You can use regtest instead. You may enable regtest with

bitcoind --regtest

With console output:

bitcoind --regtest --printtoconsole 

renlord

Posted 2016-06-16T10:04:16.093

Reputation: 2 167

0

To access the bitcoind, i will be needing the whole blockchain right?

Do I need the bitcoin blockchain for having a simple wallet using the bitcoind (daemon)?

Anjelo

Posted 2016-06-16T10:04:16.093

Reputation: 33