So I am trying to use LitecoinJ for my Litecoin development (GitHub - GENERALBYTESCOM/litecoinj at litecoin-0.15.1)
However, when I try to connect testnet, it throws an error (null pointer).
NetworkParameters params = TestNet3Params.get();
final Wallet wallet = Wallet.createDeterministic(params, ScriptType.P2PKH);
So I checked TestNet3Params
and it is using Bitcoin testnet DNS seeds:
TestNet3Params() {
...
dnsSeeds = new String[] {
"testnet-seed.bitcoin.jonasschnelli.ch", // Jonas Schnelli
"seed.tbtc.petertodd.org", // Peter Todd
"seed.testnet.bitcoin.sprovoost.nl", // Sjors Provoost
"testnet-seed.bluematt.me", // Matt Corallo
"bitcoin-testnet.bloqseeds.net", // Bloq
};
I know Litecoin.org doesn’t develop LitecoinJ
library, but are there any websites that I can get Litecoin Testnet Seed?