Skip to content

Instantly share code, notes, and snippets.

View jaocamp's full-sized avatar
😁

João Rafael Campos da Silva jaocamp

😁
View GitHub Profile
@gabrielkirsten
gabrielkirsten / loan.sol
Last active April 22, 2021 21:13
POC loan (solidity)
pragma solidity >=0.7.0 <0.9.0;
contract loan {
address payable lender;
address payable borrower;
uint totalcents;
uint payed;
uint interest;