How to create a blockchain for keeping records

I have read a lot about how blockchain can be implemented for other technologies besides cryptocurrency. I have done some research on how to fork (build your own) blockchain, but these are for creating your own alternative currencies. I was wondering if this community would recognize or could point me in the right direction to create a blockchain that will be used for record keeping.

I have a background in code development and have studied hardness in parallel with the ethereum blockchain. I have forked the go-ethereum source code and built it in an ubuntu virtual machine. However, I am having a hard time finding discussions on creating blockchains for recording purposes. I found online articles on the concept of using blockchain technology to keep records, but it's hard to find how to start this project. Should I build the blockchain and use the code to create the UI to interact with it and instead of sending transactions to the blockchain, find other data to send the blockchain?

+3


source to share


2 answers


To create a Blockchain for record keeping, you can:

  • Use the Blockchain that exists . In this case, for example, I think it would be nice to use Ethereum. Here you have a tutorial on this. There are many people nowadays who use the Ethereum network to keep records, although you should pay a few ethers. Provenance is an example and an interesting project.
  • Create your own block code . For this, if I were you, I would use Hyperledger Fabric . The fabric gives you the chance to create a private key block so you can control access. There you can deploy the Smart Contract you need.


When you create a Blockchain or use one that exists, you deploy your own Smart Contract. There you define what your code will be. Then you must define the interphase that will trigger your blockchain.

+2


source


Agree Better to create your own block code . You can use the IBM Block Chain solution to create your own blockchain. This will help you process and adjust the parameters through dashboards as needed.



0


source







All Articles