Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blockchain implementation [closed]

Tags:

blockchain

I am new for blockchain, I want to implement blockchain in our new financial project where prediction will be shared between different parties. A lot of theoretical matter is available on the internet. But where we can start for implementation.

like image 379
Gaurav Kr. Singh Avatar asked Aug 21 '17 11:08

Gaurav Kr. Singh


People also ask

Can a blockchain be closed?

As Bitcoin is decentralised, the network as such cannot be shut down by one government. However, governments have attempted to ban cryptocurrencies before, or at least to restrict their use in their respective jurisdiction.

Why is blockchain not implemented?

Lack of trust among blockchain users is the third major obstacle to widespread implementation. This challenge cuts in two directions: Organizations may not trust the security of the technology itself, and they may not trust other parties on a blockchain network.

Is blockchain closed source?

People are often surprised when they find out that blockchain technology, which is known for its security, is built on open source software code. In fact, this openness is what creates its security and reliability.

Is blockchain development back end?

One of the most time-consuming aspects of blockchain development is backend development. Developing a complete backend infrastructure takes both time and resources; however, programmers no longer have to build this infrastructure from scratch when building wih Moralis.


4 Answers

It depends on the objective of the Blockchain that you want to start up. Also, it depends on if you want to have an open or a private Blockchain.

  • If you want to start up a private Blockchain, i.e. the acces to the Blockchain is controled and the data isn't open, I suggest you to start reading about Hyperledger Fabric.
  • On the other hand, if you want to start up a public Blockchain, i.e. everyone would acces to the Blockchain and the would be open, I suggest you to start reading about Ethereum.

If you give more information about your idea, we could help you. Like Carcigenicate said, your question is too broad.

like image 173
Urko Avatar answered Oct 24 '22 10:10

Urko


You can try exploring Ethereum and NEM for your purposes. The reason mainly is because a lot of financial institutions (startups to enterprise levels) are already either using or experimenting with them with great success.

If you want to create your own Blockchain implementation, try out either BigchainDB (https://www.bigchaindb.com/) or multichain (https://www.multichain.com). Both are open source platforms for creating your own blockchain implementation.

like image 23
Alvin Reyes Avatar answered Oct 24 '22 11:10

Alvin Reyes


To understand Blockchain just start with some Basic Theory but do more Practicals Here i am Share some of Links that will help you a lot :: -> Decentralised Application by Siraj Rawal Intro to Decentralized Apps

-> Decentralised Application Book by Siraj Rawal Decentralized Applications: Harnessing Bitcoin's Blockchain Technology

-> Also use some Block Chain Demo Application so that you can understand the working and concepts which is working behind the System - Blockchain Demo

-> The Most Part is to Understand the IPFS (InterPlanetary File System) it is the backbone of entire Blockchain.

like image 20
code.gsoni Avatar answered Oct 24 '22 12:10

code.gsoni


watch this tutorial, there is also the code to try it.

Github - aymen94 | Simple-Blockchain

like image 20
Aymen Avatar answered Oct 24 '22 11:10

Aymen