Skip to content

Instantly share code, notes, and snippets.

View jjanczur's full-sized avatar

Jacek Janczura jjanczur

View GitHub Profile
@jjanczur
jjanczur / odometer.sol
Created May 8, 2019 09:04 — forked from javahippie/odometer.sol
Smart contract for a car registration and odometer
pragma solidity ^0.4.21;
/**
* Contract to store the mileage of a car
*/
contract Odometer {
event Creation(
address indexed from,
string indexed vin