Skip to content

Instantly share code, notes, and snippets.

View richshaw's full-sized avatar

Richard Shaw richshaw

View GitHub Profile
@richshaw
richshaw / loan.sol
Created July 22, 2021 19:21
Video Rental loan Ethereum smart contract
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0 <0.9.0;
/* *
* "Video Rental" Loan
* Alice lends Bob x eth
* Bob owes principle + interest on borrowed eth until term ends
* If Bob does not repay borrowed eth before the term ends then
* Bob will incur a late fee in the form of a higher interest rate.