Created
April 22, 2022 15:05
-
-
Save bartubozkurt/68148b74fc6889e9a179ee57df4a74ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SPDX-License-Identifier: MIT | |
pragma solidity 0.8.3; | |
contract FunctionsExample { | |
mapping(address => uint) public balanceReceived; | |
address payable owner; | |
constructor() { | |
owner = payable(msg.sender); | |
} | |
function getOwner() public view returns(address) { | |
return owner; | |
} | |
function convertWeiToEth(uint _amount) public pure returns(uint) { | |
return _amount / 1 ether; | |
} | |
function destroySmartContract() public { | |
require(msg.sender == owner, "You are not the owner"); | |
selfdestruct(owner); | |
} | |
function receiveMoney() public payable { | |
assert(balanceReceived[msg.sender] + msg.value >= balanceReceived[msg.sender]); | |
balanceReceived[msg.sender] += msg.value; | |
} | |
function withdrawMoney(address payable _to, uint _amount) public { | |
require(_amount <= balanceReceived[msg.sender], "not enough funds."); | |
assert(balanceReceived[msg.sender] >= balanceReceived[msg.sender] - _amount); | |
balanceReceived[msg.sender] -= _amount; | |
_to.transfer(_amount); | |
} | |
receive() external payable { | |
receiveMoney(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment