Last active
April 8, 2022 12:22
-
-
Save kunxian-xia/0a84b84cb9494a45b0578b247a270319 to your computer and use it in GitHub Desktop.
WETH9 contract (borrowed from https://github.com/gnosis/canonical-weth/blob/master/contracts/WETH9.sol)
This file contains 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
pragma solidity >=0.4.22; | |
contract WETH9 { | |
string public name = "Wrapped Ether"; | |
string public symbol = "WETH"; | |
uint8 public decimals = 18; | |
event Approval(address indexed src, address indexed guy, uint wad); | |
event Transfer(address indexed src, address indexed dst, uint wad); | |
event Deposit(address indexed dst, uint wad); | |
event Withdrawal(address indexed src, uint wad); | |
mapping (address => uint) public balanceOf; | |
mapping (address => mapping (address => uint)) public allowance; | |
// function() external payable { | |
// deposit(); | |
// } | |
function deposit() public payable { | |
balanceOf[msg.sender] += msg.value; | |
emit Deposit(msg.sender, msg.value); | |
} | |
function _withdraw(address payable to, uint wad) internal { | |
to.transfer(wad); | |
} | |
function withdraw(uint wad) public { | |
require(balanceOf[msg.sender] >= wad); | |
balanceOf[msg.sender] -= wad; | |
// msg.sender.transfer(wad); | |
_withdraw(payable(msg.sender), wad); | |
emit Withdrawal(msg.sender, wad); | |
} | |
function totalSupply() public view returns (uint) { | |
return address(this).balance; | |
} | |
function approve(address guy, uint wad) public returns (bool) { | |
allowance[msg.sender][guy] = wad; | |
emit Approval(msg.sender, guy, wad); | |
return true; | |
} | |
function transfer(address dst, uint wad) public returns (bool) { | |
return transferFrom(msg.sender, dst, wad); | |
} | |
function transferFrom(address src, address dst, uint wad) | |
public | |
returns (bool) | |
{ | |
require(balanceOf[src] >= wad); | |
if (src != msg.sender && allowance[src][msg.sender] != 0) { | |
require(allowance[src][msg.sender] >= wad); | |
allowance[src][msg.sender] -= wad; | |
} | |
balanceOf[src] -= wad; | |
balanceOf[dst] += wad; | |
emit Transfer(src, dst, wad); | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment