Skip to content

Instantly share code, notes, and snippets.

View eCoinomic's full-sized avatar

eCoinomic.net eCoinomic

View GitHub Profile
@eCoinomic
eCoinomic / general.sol
Last active August 2, 2020 05:42
general.sol
pragma solidity >=0.4.22 <0.6.0;
// Current version:0.5.3+commit.10d17f24.Emscripten.clang
// Optinization: YES
contract owned {
address public owner;
constructor() public {
owner = msg.sender;