* Strip erc20 package of legacy nonsense and add foundry basics * Make foundry build * Remove obsoleted test/UntransferrableDummyERC20Token.sol contract * Remove obsoleted ERC20 lib variant contracts * Remove obsoleted DummyMultipleReturnERC20Token and DummyNoReturnERC20Token contracts * Move test contract to dedicated folder and remove obsoleted TypeScript contract wrappers * Remove src/interfaces/IEtherToken.sol only used in v3 staking which is being obsoleted [skip ci] * Add foundry test for token * Migrate ZRX token tests to foundry * Fix paths to erc20 contracts * Remove obsoleted references * Pin erc20-contracts package on treasury * Ignore foundry imports in link checker * Run only forge tests for erc20 contracts * Remove DummyERC20Token and its dependencies * Merge IERC20TokenV06 and IERC20TokenV08 into range pragma to cover solidity 0.6.5 to 0.8.x * Merge IEtherTokenV06 and IEtherTokenV08 into range pragma to cover solidity 0.6.5 to 0.8.x * Migrate weth9 tests to foundry * Upload code coverage for erc20 package * Update changelog * Fix review comments Co-authored-by: duncancmt <1207590+duncancmt@users.noreply.github.com> --------- Co-authored-by: duncancmt <1207590+duncancmt@users.noreply.github.com>
137 lines
5.2 KiB
Solidity
137 lines
5.2 KiB
Solidity
/*
|
|
|
|
Copyright 2019 ZeroEx Intl.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
pragma solidity 0.4.11;
|
|
|
|
contract Token {
|
|
/// @return total amount of tokens
|
|
function totalSupply() constant returns (uint256 supply) {}
|
|
|
|
/// @param _owner The address from which the balance will be retrieved
|
|
/// @return The balance
|
|
function balanceOf(address _owner) constant returns (uint256 balance) {}
|
|
|
|
/// @notice send `_value` token to `_to` from `msg.sender`
|
|
/// @param _to The address of the recipient
|
|
/// @param _value The amount of token to be transferred
|
|
/// @return Whether the transfer was successful or not
|
|
function transfer(address _to, uint256 _value) returns (bool success) {}
|
|
|
|
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
|
|
/// @param _from The address of the sender
|
|
/// @param _to The address of the recipient
|
|
/// @param _value The amount of token to be transferred
|
|
/// @return Whether the transfer was successful or not
|
|
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}
|
|
|
|
/// @notice `msg.sender` approves `_addr` to spend `_value` tokens
|
|
/// @param _spender The address of the account able to transfer the tokens
|
|
/// @param _value The amount of wei to be approved for transfer
|
|
/// @return Whether the approval was successful or not
|
|
function approve(address _spender, uint256 _value) returns (bool success) {}
|
|
|
|
/// @param _owner The address of the account owning tokens
|
|
/// @param _spender The address of the account able to transfer the tokens
|
|
/// @return Amount of remaining tokens allowed to spent
|
|
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}
|
|
|
|
event Transfer(address indexed _from, address indexed _to, uint256 _value);
|
|
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
|
|
}
|
|
|
|
contract ERC20Token is Token {
|
|
function transfer(address _to, uint256 _value) returns (bool) {
|
|
//Default assumes totalSupply can't be over max (2^256 - 1).
|
|
if (balances[msg.sender] >= _value && balances[_to] + _value >= balances[_to]) {
|
|
balances[msg.sender] -= _value;
|
|
balances[_to] += _value;
|
|
Transfer(msg.sender, _to, _value);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
|
|
if (
|
|
balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value >= balances[_to]
|
|
) {
|
|
balances[_to] += _value;
|
|
balances[_from] -= _value;
|
|
allowed[_from][msg.sender] -= _value;
|
|
Transfer(_from, _to, _value);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function balanceOf(address _owner) constant returns (uint256) {
|
|
return balances[_owner];
|
|
}
|
|
|
|
function approve(address _spender, uint256 _value) returns (bool) {
|
|
allowed[msg.sender][_spender] = _value;
|
|
Approval(msg.sender, _spender, _value);
|
|
return true;
|
|
}
|
|
|
|
function allowance(address _owner, address _spender) constant returns (uint256) {
|
|
return allowed[_owner][_spender];
|
|
}
|
|
|
|
mapping(address => uint256) balances;
|
|
mapping(address => mapping(address => uint256)) allowed;
|
|
uint256 public totalSupply;
|
|
}
|
|
|
|
contract UnlimitedAllowanceToken is ERC20Token {
|
|
uint256 constant MAX_UINT = 2 ** 256 - 1;
|
|
|
|
/// @dev ERC20 transferFrom, modified such that an allowance of MAX_UINT represents an unlimited allowance.
|
|
/// @param _from Address to transfer from.
|
|
/// @param _to Address to transfer to.
|
|
/// @param _value Amount to transfer.
|
|
/// @return Success of transfer.
|
|
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
|
|
uint256 allowance = allowed[_from][msg.sender];
|
|
if (balances[_from] >= _value && allowance >= _value && balances[_to] + _value >= balances[_to]) {
|
|
balances[_to] += _value;
|
|
balances[_from] -= _value;
|
|
if (allowance < MAX_UINT) {
|
|
allowed[_from][msg.sender] -= _value;
|
|
}
|
|
Transfer(_from, _to, _value);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
contract ZRXToken is UnlimitedAllowanceToken {
|
|
uint8 public constant decimals = 18;
|
|
uint256 public totalSupply = 10 ** 27; // 1 billion tokens, 18 decimal places
|
|
string public constant name = "0x Protocol Token";
|
|
string public constant symbol = "ZRX";
|
|
|
|
function ZRXToken() public {
|
|
balances[msg.sender] = totalSupply;
|
|
}
|
|
}
|