// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../token/ERC20/IERC20Upgradeable.sol"; import "../token/ERC20/utils/SafeERC20Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; contract ERC20ReturnFalseMockUpgradeable is Initializable, ContextUpgradeable { function __ERC20ReturnFalseMock_init() internal onlyInitializing { } function __ERC20ReturnFalseMock_init_unchained() internal onlyInitializing { } 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); // Dummy read from a state variable so that the function is view return 0; } /** * This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; } contract ERC20ReturnTrueMockUpgradeable is Initializable, ContextUpgradeable { function __ERC20ReturnTrueMock_init() internal onlyInitializing { } function __ERC20ReturnTrueMock_init_unchained() internal onlyInitializing { } 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]; } /** * This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; } contract ERC20NoReturnMockUpgradeable is Initializable, ContextUpgradeable { function __ERC20NoReturnMock_init() internal onlyInitializing { } function __ERC20NoReturnMock_init_unchained() internal onlyInitializing { } 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]; } /** * This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; } contract SafeERC20WrapperUpgradeable is Initializable, ContextUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; IERC20Upgradeable private _token; function __SafeERC20Wrapper_init(IERC20Upgradeable token) internal onlyInitializing { __SafeERC20Wrapper_init_unchained(token); } function __SafeERC20Wrapper_init_unchained(IERC20Upgradeable token) internal onlyInitializing { _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 { ERC20ReturnTrueMockUpgradeable(address(_token)).setAllowance(allowance_); } function allowance() public view returns (uint256) { return _token.allowance(address(0), address(0)); } /** * This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }