fbpx

Loan state machine in Solidity

Julien Klepatch

In this video we will create a loan smart contract with Solidity.

There will be 2 kind of parties interacting with the smart contract:

  • investors
  • borrowers

The investor will send Ether at the beginning of the loan, and at the end the borrower will reimburse the investor of the initial amount lent, plus some interest.

The loan has different phases (pending, active, closed), which can be modeled as a state machine. Luckily, Solidity has a construct called enum that is very convenient for state machines. We are going to use a State enum to build our loan state machine and keep our smart contract code clean

0 Comments

Leave a Reply

More great articles

Debugging with require and revert

In Solidity, require and revert statements are used to check some pre-conditions before executing the main part of a function.…

Read Story

Introduction To Truffle | Episode 5

https://youtu.be/M-w6dDDhu6w Developing smart contracts and distributed applications is hard. There are a lot of different libraries to use, you often…

Read Story

ToDo List Ethereum Dapp (Intro)

Last updated: November 2018. This tutorial series will teach you how to build a ToDo List Dapp on Ethereum. It…

Read Story

Never miss a minute

Get great content to your inbox every week. No spam.
[contact-form-7 id="6" title="Footer CTA Subscribe Form"]
Arrow-up