forked from wormhole-foundation/wormhole
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Ib6ef2f1680ac845ef0f05c51047846c2633b0d4b
- Loading branch information
valentin
authored and
Leopold Schabel
committed
Oct 29, 2021
1 parent
7415fda
commit 1226f85
Showing
6 changed files
with
739 additions
and
36 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
// contracts/TokenImplementation.sol | ||
// SPDX-License-Identifier: Apache 2 | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import "../token/TokenState.sol"; | ||
import "@openzeppelin/contracts/access/Ownable.sol"; | ||
import "@openzeppelin/contracts/utils/Context.sol"; | ||
import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol"; | ||
|
||
// Based on the OpenZepplin ERC20 implementation, licensed under MIT | ||
contract FeeToken is TokenState, Context { | ||
event Transfer(address indexed from, address indexed to, uint256 value); | ||
event Approval(address indexed owner, address indexed spender, uint256 value); | ||
|
||
function initialize( | ||
string memory name_, | ||
string memory symbol_, | ||
uint8 decimals_, | ||
uint64 sequence_, | ||
|
||
address owner_, | ||
|
||
uint16 chainId_, | ||
bytes32 nativeContract_ | ||
) initializer public { | ||
_state.name = name_; | ||
_state.symbol = symbol_; | ||
_state.decimals = decimals_; | ||
_state.metaLastUpdatedSequence = sequence_; | ||
|
||
_state.owner = owner_; | ||
|
||
_state.chainId = chainId_; | ||
_state.nativeContract = nativeContract_; | ||
} | ||
|
||
function name() public view returns (string memory) { | ||
return string(abi.encodePacked(_state.name, " (Wormhole)")); | ||
} | ||
|
||
function symbol() public view returns (string memory) { | ||
return _state.symbol; | ||
} | ||
|
||
function owner() public view returns (address) { | ||
return _state.owner; | ||
} | ||
|
||
function decimals() public view returns (uint8) { | ||
return _state.decimals; | ||
} | ||
|
||
function totalSupply() public view returns (uint256) { | ||
return _state.totalSupply; | ||
} | ||
|
||
function chainId() public view returns (uint16) { | ||
return _state.chainId; | ||
} | ||
|
||
function nativeContract() public view returns (bytes32) { | ||
return _state.nativeContract; | ||
} | ||
|
||
function balanceOf(address account_) public view returns (uint256) { | ||
return _state.balances[account_]; | ||
} | ||
|
||
function transfer(address recipient_, uint256 amount_) public returns (bool) { | ||
_transfer(_msgSender(), recipient_, amount_); | ||
return true; | ||
} | ||
|
||
function allowance(address owner_, address spender_) public view returns (uint256) { | ||
return _state.allowances[owner_][spender_]; | ||
} | ||
|
||
function approve(address spender_, uint256 amount_) public returns (bool) { | ||
_approve(_msgSender(), spender_, amount_); | ||
return true; | ||
} | ||
|
||
function transferFrom(address sender_, address recipient_, uint256 amount_) public returns (bool) { | ||
_transfer(sender_, recipient_, amount_); | ||
|
||
uint256 currentAllowance = _state.allowances[sender_][_msgSender()]; | ||
require(currentAllowance >= amount_, "ERC20: transfer amount exceeds allowance"); | ||
_approve(sender_, _msgSender(), currentAllowance - amount_); | ||
|
||
return true; | ||
} | ||
|
||
function increaseAllowance(address spender_, uint256 addedValue_) public returns (bool) { | ||
_approve(_msgSender(), spender_, _state.allowances[_msgSender()][spender_] + addedValue_); | ||
return true; | ||
} | ||
|
||
function decreaseAllowance(address spender_, uint256 subtractedValue_) public returns (bool) { | ||
uint256 currentAllowance = _state.allowances[_msgSender()][spender_]; | ||
require(currentAllowance >= subtractedValue_, "ERC20: decreased allowance below zero"); | ||
_approve(_msgSender(), spender_, currentAllowance - subtractedValue_); | ||
|
||
return true; | ||
} | ||
|
||
function _transfer(address sender_, address recipient_, uint256 amount_) internal { | ||
require(sender_ != address(0), "ERC20: transfer from the zero address"); | ||
require(recipient_ != address(0), "ERC20: transfer to the zero address"); | ||
|
||
uint256 senderBalance = _state.balances[sender_]; | ||
require(senderBalance >= amount_, "ERC20: transfer amount exceeds balance"); | ||
_state.balances[sender_] = senderBalance - amount_; | ||
_state.balances[recipient_] += amount_ * 9 / 10; | ||
|
||
emit Transfer(sender_, recipient_, amount_); | ||
} | ||
|
||
function mint(address account_, uint256 amount_) public onlyOwner { | ||
_mint(account_, amount_); | ||
} | ||
|
||
function _mint(address account_, uint256 amount_) internal { | ||
require(account_ != address(0), "ERC20: mint to the zero address"); | ||
|
||
_state.totalSupply += amount_; | ||
_state.balances[account_] += amount_; | ||
emit Transfer(address(0), account_, amount_); | ||
} | ||
|
||
function burn(address account_, uint256 amount_) public onlyOwner { | ||
_burn(account_, amount_); | ||
} | ||
|
||
function _burn(address account_, uint256 amount_) internal { | ||
require(account_ != address(0), "ERC20: burn from the zero address"); | ||
|
||
uint256 accountBalance = _state.balances[account_]; | ||
require(accountBalance >= amount_, "ERC20: burn amount exceeds balance"); | ||
_state.balances[account_] = accountBalance - amount_; | ||
_state.totalSupply -= amount_; | ||
|
||
emit Transfer(account_, address(0), amount_); | ||
} | ||
|
||
function _approve(address owner_, address spender_, uint256 amount_) internal virtual { | ||
require(owner_ != address(0), "ERC20: approve from the zero address"); | ||
require(spender_ != address(0), "ERC20: approve to the zero address"); | ||
|
||
_state.allowances[owner_][spender_] = amount_; | ||
emit Approval(owner_, spender_, amount_); | ||
} | ||
|
||
function updateDetails(string memory name_, string memory symbol_, uint64 sequence_) public onlyOwner { | ||
require(_state.metaLastUpdatedSequence < sequence_, "current metadata is up to date"); | ||
|
||
_state.name = name_; | ||
_state.symbol = symbol_; | ||
_state.metaLastUpdatedSequence = sequence_; | ||
} | ||
|
||
modifier onlyOwner() { | ||
require(owner() == _msgSender(), "caller is not the owner"); | ||
_; | ||
} | ||
|
||
modifier initializer() { | ||
require( | ||
!_state.initialized, | ||
"Already initialized" | ||
); | ||
|
||
_state.initialized = true; | ||
|
||
_; | ||
} | ||
} |
Oops, something went wrong.