unitelife
unitelife

Reputation: 161

How to create a blockchain for record keeping

I have read a lot about how blockchain could be implemented for other technologies other than crypto currencies. I did some research on how to create a fork (build your own) blockchain but they were for creating your own alternative currencies. I was wondering if this community would know or could point me in the right direction as to creating a blockchain that would be used for record keeping.

I have a background in development coding and I have studied solidity in parallel with the ethereum blockchain. I have forked the go-ethereum source code and built it out on an ubuntu virtual machine. However, I am finding it hard to find discussions on creating blockchains for record purposes. I have found online articles on the concept of using blockchain technology for record keeping but finding a hard time on how to kick start this project. Would I have to build a blockchain and use code to build a user interface to interact with it and instead of sending transactions to the block chain, find other data input to send to the blockchain?

Upvotes: 3

Views: 3475

Answers (3)

Aberli
Aberli

Reputation: 1

As the answers above suggest, creating a new blockchain may be the best option for you.

Check out BVM Network. You can create your own chain using BVM, which is very fast & cheap. Also you can customize your blockchain with drap-and-drop UX, very similar to Scratch

Upvotes: 0

Saurabh Mukhekar
Saurabh Mukhekar

Reputation: 1

I agree It's better to create your own Blockchain. You can prefer to use IBM Block Chain solution to create your private blockchain. It will help you to handle and configure setting using dashboards as required.

Upvotes: 0

Urko
Urko

Reputation: 1477

To create a Blockchain for record keeping, you can:

  1. Use a Blockchain that exists. In this case, for example, I think that it would be a good chance to use Ethereum. Here, you have a tutorial about it. Nowadays, there are many people who use the Ethereum network for record keeping, although you should pay some Ethers. Provenance is an example and an interesting project about it.
  2. Create your own Blockchain. For that, if I were you I would use the Hyperledger Fabric. Fabric gives you the chance to create a private Blockchain, so you could control the acces. There, you can deploy the Smart Contract that you require.

When you create a Blockchain or you use one that exists, you deploy your own Smart Contract. There, you define how is going to be your code. Then, you have to define a interfaz which will call to your Blockchain.

Upvotes: 2

Related Questions