* Initial migration to Solidity 0.6.x - v3.0 first steps (#2063) * Initial migration, missing GSN, 721, 777 and Crowdsales. * Add _beforeTokenOperation and _afterTokenOperation. * Add documentation for hooks. * Add hooks doc * Add missing drafts * Add back ERC721 with hooks * Bring back ERC777 * Notes on hooks * Bring back GSN * Make functions virtual * Make GSN overrides explicit * Fix ERC20Pausable tests * Remove virtual from some view functions * Update linter * Delete examples * Remove unnecessary virtual * Remove roles from Pausable * Remove roles * Remove users of roles * Adapt ERC20 tests * Fix ERC721 tests * Add all ERC721 hooks * Add ERC777 hooks * Fix remaining tests * Bump compiler version * Move 721BurnableMock into mocks directory * Remove _before hooks * Fix tests * Upgrade linter * Put modifiers last * Remove _beforeTokenApproval and _beforeOperatorApproval hooks
131 lines
3.4 KiB
Solidity
131 lines
3.4 KiB
Solidity
pragma solidity ^0.6.0;
|
|
|
|
import "../GSN/Context.sol";
|
|
import "../token/ERC20/IERC20.sol";
|
|
import "../token/ERC20/SafeERC20.sol";
|
|
|
|
contract ERC20ReturnFalseMock is Context {
|
|
uint256 private _allowance;
|
|
|
|
// IERC20's functions are not pure, but these mock implementations are: to prevent Solidity from issuing warnings,
|
|
// we write to a dummy state variable.
|
|
uint256 private _dummy;
|
|
|
|
function transfer(address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return false;
|
|
}
|
|
|
|
function transferFrom(address, address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return false;
|
|
}
|
|
|
|
function approve(address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return false;
|
|
}
|
|
|
|
function allowance(address, address) public view returns (uint256) {
|
|
require(_dummy == 0); // Duummy read from a state variable so that the function is view
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
contract ERC20ReturnTrueMock is Context {
|
|
mapping (address => uint256) private _allowances;
|
|
|
|
// IERC20's functions are not pure, but these mock implementations are: to prevent Solidity from issuing warnings,
|
|
// we write to a dummy state variable.
|
|
uint256 private _dummy;
|
|
|
|
function transfer(address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return true;
|
|
}
|
|
|
|
function transferFrom(address, address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return true;
|
|
}
|
|
|
|
function approve(address, uint256) public returns (bool) {
|
|
_dummy = 0;
|
|
return true;
|
|
}
|
|
|
|
function setAllowance(uint256 allowance_) public {
|
|
_allowances[_msgSender()] = allowance_;
|
|
}
|
|
|
|
function allowance(address owner, address) public view returns (uint256) {
|
|
return _allowances[owner];
|
|
}
|
|
}
|
|
|
|
contract ERC20NoReturnMock is Context {
|
|
mapping (address => uint256) private _allowances;
|
|
|
|
// IERC20's functions are not pure, but these mock implementations are: to prevent Solidity from issuing warnings,
|
|
// we write to a dummy state variable.
|
|
uint256 private _dummy;
|
|
|
|
function transfer(address, uint256) public {
|
|
_dummy = 0;
|
|
}
|
|
|
|
function transferFrom(address, address, uint256) public {
|
|
_dummy = 0;
|
|
}
|
|
|
|
function approve(address, uint256) public {
|
|
_dummy = 0;
|
|
}
|
|
|
|
function setAllowance(uint256 allowance_) public {
|
|
_allowances[_msgSender()] = allowance_;
|
|
}
|
|
|
|
function allowance(address owner, address) public view returns (uint256) {
|
|
return _allowances[owner];
|
|
}
|
|
}
|
|
|
|
contract SafeERC20Wrapper is Context {
|
|
using SafeERC20 for IERC20;
|
|
|
|
IERC20 private _token;
|
|
|
|
constructor (IERC20 token) public {
|
|
_token = token;
|
|
}
|
|
|
|
function transfer() public {
|
|
_token.safeTransfer(address(0), 0);
|
|
}
|
|
|
|
function transferFrom() public {
|
|
_token.safeTransferFrom(address(0), address(0), 0);
|
|
}
|
|
|
|
function approve(uint256 amount) public {
|
|
_token.safeApprove(address(0), amount);
|
|
}
|
|
|
|
function increaseAllowance(uint256 amount) public {
|
|
_token.safeIncreaseAllowance(address(0), amount);
|
|
}
|
|
|
|
function decreaseAllowance(uint256 amount) public {
|
|
_token.safeDecreaseAllowance(address(0), amount);
|
|
}
|
|
|
|
function setAllowance(uint256 allowance_) public {
|
|
ERC20ReturnTrueMock(address(_token)).setAllowance(allowance_);
|
|
}
|
|
|
|
function allowance() public view returns (uint256) {
|
|
return _token.allowance(address(0), address(0));
|
|
}
|
|
}
|