1
I have created a coin by forking Bitcoin. Now I want to create web wallet for this, but do not know how to create json-rpc apis to communicate with the daemon server. Is there any proper documentation for this?
1
I have created a coin by forking Bitcoin. Now I want to create web wallet for this, but do not know how to create json-rpc apis to communicate with the daemon server. Is there any proper documentation for this?
1
Visit API reference (JSON-RPC)
There are several solutions:
Hope it will be helpful!
bitcoin wallet only allows one user for a single node, i am not getting how to enable my node so that anybody having privete key and address can connect and do transactions through my node. – rahul123 – 2018-05-15T08:09:43.427
is there any javascript library like web3 .js for ethereum in bitcoin so that we can do transaction directlly without connecting with any wallet. – rahul123 – 2018-05-15T08:14:44.463
In my opinion, the easiest way is to: 1) Use explorer to check balances and to get inputs and outputs of transactions 2) Use bitcoin-js-lib to generate new addresses, to build and sign transactions 3) Use command line on your server to broadcast transactions to the network (bitcoin-cli sendrawtransaction <hex>) – 0xuser – 2018-05-15T11:17:03.373