Skip to content

Instantly share code, notes, and snippets.

View gruvin's full-sized avatar

@#$! gruvin

View GitHub Profile
@gruvin
gruvin / Ownable.sol
Last active June 23, 2020 09:27
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.9+commit.a1d534e.js&optimize=false&gist=
pragma solidity ^0.5.9;
contract Ownable {
address public owner;
string test2;
constructor() public {
owner = msg.sender;
}