Skip to content

Instantly share code, notes, and snippets.

@glaksmono
Created August 22, 2021 08:50
Show Gist options
  • Save glaksmono/8553af63aeecba8b44616f37eb2ad0c6 to your computer and use it in GitHub Desktop.
Save glaksmono/8553af63aeecba8b44616f37eb2ad0c6 to your computer and use it in GitHub Desktop.
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.13+commit.5b0b510c.js&optimize=false&runs=200&gist=
pragma solidity ^0.5.11;
contract Owned {
address owner;
constructor() public {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner, "You are not allowed");
_;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment