Skip to content

Instantly share code, notes, and snippets.

View AnthonyMadia's full-sized avatar
🐼
merge

Anthony AnthonyMadia

🐼
merge
View GitHub Profile
@arpit
arpit / cryptokitties.sol
Created January 23, 2018 21:33
Cryptokitties Contract from the Eth blockchain
pragma solidity ^0.4.11;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;