ERC20WrapperMock.sol 431 B

1234567891011121314151617
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.8.0;
  3. import "../token/ERC20/extensions/ERC20Wrapper.sol";
  4. contract ERC20WrapperMock is ERC20Wrapper {
  5. constructor(
  6. IERC20 _underlyingToken,
  7. string memory name,
  8. string memory symbol
  9. ) ERC20(name, symbol) ERC20Wrapper(_underlyingToken) {}
  10. function recover(address account) public returns (uint256) {
  11. return _recover(account);
  12. }
  13. }