How to create a blockchain using java api

+1 vote
I have created a blockchain using command like multichain-util create chain_name from command prompt, but now i want to create the blockchain without using any command line arguments that means using JSON-RPC calls to create the blockchain with java
asked Aug 30, 2017 by anonymous

1 Answer

0 votes

I'm afraid this is not currently possible via an API, since each instance of multichaind is for a specific blockchain and cannot create new blockchains. However you can run command-line tools from Java, and wrap those in your own Java function. Some things to help you:

answered Aug 30, 2017 by MultiChain
...