rajaboini
rajaboini

Reputation: 11

how to integrate java or other language with ethereum or solidity or web3js?

I am new to blockchain. I have to implement one use case where user meta information will store in MySql Database and receptive unique id store in blockchain Database.

I am in confusion, how to integrate java or other language(to store in mysql) with etheruem or solidity or web3js(to store data in blockchain)?

Anyone have idea please guide me.

Thanks inadvance

Raja

Upvotes: 1

Views: 1562

Answers (1)

Aldekein
Aldekein

Reputation: 3715

There are some options for you:

  1. Ethereum(J) is the library that can be embedded in any Java/Scala project to provide full support for Ethereum protocol and sub services.
  2. See Ethereum JSON-RPC documentation. You can use any JSON-RPC client available for Java.
  3. If you would like to try other languages you can use Python implementation or NodeJS that uses official web3 library.

Upvotes: 2

Related Questions