// SPDX-License-Identifier: MIT /** ∩~~~~∩ ξ ・×・ ξ ξ ~ ξ ξ   ξ ξ   “~~~~〇 ξ       ξ ξ ξ ξ~~~ξ ξ ξ   ξ_ξξ_ξ ξ_ξξ_ξ Alpaca Fin Corporation */ // For testing purpose. pragma solidity 0.6.12; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract MockBEP20 is Ownable, ERC20 { constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {} function mint(address _to, uint256 _amount) external onlyOwner { _mint(_to, _amount); } function transferAndCall( address, /* to */ uint256, /* value */ bytes calldata /* data */ ) external pure returns (bool success) { return true; } }