Are there any RPC libraries under development for interfacing with the dcrd and wallet via popular languages like java, python, .net, Javascript, etc? submitted by /u/ZiggyZoomber [link] [comments] Continue reading...
Not sure what the user means by RPC libraries, but there is gRPC for dcrwallet https://github.com/decred/dcrwallet/blob/master/rpc/documentation/README.md
You could use the standard Bitcoin RPC code to integrate with the Decred RPC server. I have not done it myself, but have with a custom blockchain I made and was tinkering with. Built a basic blockchain explorer on top of it. See my link below to view the RPC helper I created for my Ruby/Rails powered explorer. https://github.com/Padchain/Explorer/blob/master/app/services/bitcoin_rpc.rb Good luck!
@jrick has been working on gRPC, which had the ability to work with other language, using the protobuf code generator, if I understand correctly. The legacy RPC is nice and easy, but it seems like it's only for Go clients.