Skip to content

Instantly share code, notes, and snippets.

@wpitallo
wpitallo / cryptokitties.sol
Created September 18, 2021 12:50 — forked from arpit/cryptokitties.sol
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;