You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an instance of BitcoinClient and then start calling the methods you want to use. You'll need to provide URL, port, username, password to connect, of course.
Something like this:
URI server = new URI("http://server.domain.tld:8332");
BitcoinClient client = new BitcoinClient(MainNetParams.get(), server, "username", "password");
Integer count = client.getBlockCount();
I want to use jsonrpc to connect bitcoind. What should I do?
Can you give me an example?
The text was updated successfully, but these errors were encountered: