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

Understanding Truffle variable injection magic in test files

In Truffle, when you write tests, you can use 'artifacts' and 'web3' objects, without defining these names: const MyContract =…

Read Story

Instantiate An Inherited Solidity Contract | Episode 9

https://www.youtube.com/watch?v=YBSD1z96Tic

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