Directory Image
This website uses cookies to improve user experience. By using our website you consent to all cookies in accordance with our Privacy Policy.

What is Blockchain Smart Contracts?

Author: Steven Johnson
by Steven Johnson
Posted: Jun 14, 2018

With the advent of Blockchain expert, the application of internet and IT is rapidly expanding to other non-conventional areas. Asset management is one of them. Think of a situation where you buy an apartment from a seller without signing single paper agreements, Or you sell your apartment without writing lengthy legal agreements and without the involvement of a third party like registrar. Yes, it is possible and it is the future. Smart contracts are the digital version of contracts and it can be used to exchange the digital assets. Smart contracts are used to exchange anything of value in a more secure way without any middleman. Yes.. they are some lines of code that facilitate the same purpose of a written contract.

So if there is no guaranteeing authority how the agreements are implemented? It is the most interesting part of the smart contract. As we mentioned earlier the transactions are totally completed via computer networks and the payment methods will also be compatible with it. Generally, the payments are done through cryptocurrencies like Bitcoin and it is often self-executable.

Smart contracts development is usually created with the help of contract development tools and written using programming languages such as Solidity, Java, Go, Python. Out of which Solidity is the most popular one.

APPLICATIONS:

The applications of smart contracts are many and some of them are:

Insurance Policies: Today it is taking a long period of time to claim an insurance after an accident or any other insured event has occurred. This process is manual and increases the administrative cost. This can be reduced by automating claims processing, verification, and payment. Thus the customer can claim the insurance shortly after an insurance event happens.

Property Sale: Using the smart contracts services for buying and selling of a property decreases the auditing cost. This also improves the transaction efficiency and strengthen the confidence in the system.

Digital Identity: Digital identity like personal data and assets can be protected and shared with trusted channels more safely with smart contracts.

Personal Health Tracking: Tracks patients health-related action and automatically generate reports. It can share the data to trusted channels and same time protect it from unauthorized accessing.

Voting: Validates voter criteria, add votes to the Blockchain expert and develop the result according to majority vote.

Smart contract codes and Smart legal contracts, these are two terms which are often confused while talking about the smart contract. Actually, the smart contract can be classified into these two types. Let look at them individually.

SMART CONTRACT CODES: As you can see from our previous blogs, blockchain applied technologies are largely based on smart contracts. In the case of ‘Hyperledger’ or Ethereum there many internal check and balance conditions which regulates the working of such frameworks, these are smart contract codes. These are also self-executable codes which ensure the security and consistency of the framework.

Here is an example of smart contract code used in Ethereum Blockchain

contract token {

mapping (address => unit) public coinBalanceof ;

event coinTransfer(address sender, address receiver, uint amount) ;

/* initialize contrct with initial supply tokens to the creator of the contracts*/

function token(uint supply) {

if (supply == 0) supply = 1000 ;

coinBalanceOf[msg.sender] = supply ;

}

/* very simple trade function */

function sendCoin(address receiver, uint amount) returns(bools sufficient) {

if (coinBalanceOf[msg.sender]

About the Author

Cybrosys Technologies

Rate this Article
Leave a Comment
Author Thumbnail
I Agree:
Comment 
Pictures
  • staceyroberts  -  4 years ago

    Really a good article. I keep on reading this kind of blockchian information's. I found this one a unique where i gathered a lot of basic idea on smart contracts.

    1
Author: Steven Johnson

Steven Johnson

Member since: Nov 02, 2017
Published articles: 12

Related Articles