Skip to content

Instantly share code, notes, and snippets.

@Henrydykee
Created July 21, 2022 19:09
Show Gist options
  • Save Henrydykee/e1a82093c0f53930f411bdf63e16cfd2 to your computer and use it in GitHub Desktop.
Save Henrydykee/e1a82093c0f53930f411bdf63e16cfd2 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.17+commit.d19bba13.js&optimize=false&runs=200&gist=
pragma solidity ^0.5.17;
contract SimpleWallet {
address public owner;
constructor() public {
owner = msg.sender;
}
modifier onlyOwner(){
require (owner == msg.sender,"you are not allowed");
_;
}
function withdrawMoney(address payable _to, uint _amount) public onlyOwner {
_to.transfer(_amount);
}
function () external payable {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment