Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am akinhwan on github.
  • I am akinhwan (https://keybase.io/akinhwan) on keybase.
  • I have a public key whose fingerprint is DE34 8BA8 13CE F55E D612 D3E2 4C6B CD48 5F62 2440

To claim this, I am signing this object:

@akinhwan
akinhwan / Pill.sol
Created October 14, 2018 14:37
Pill Smart Contract
pragma solidity ^0.4.17;
contract Dispense {
address public manager;
address[] public rfid;
uint public minimumContribution;
address[] public serialTransactionNo;
mapping(uint => Prescription) prescriptions;