Skip to content

Instantly share code, notes, and snippets.

View zolotokrylin's full-sized avatar
🦄
I am hiring. Please check https://holdex.io/c/jobs

Vadim zolotokrylin

🦄
I am hiring. Please check https://holdex.io/c/jobs
View GitHub Profile
@zolotokrylin
zolotokrylin / cryptokitties.sol
Created March 30, 2021 04:20 — 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;