This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.8.7; | |
// SPDX-License-Identifier: MIT | |
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
contract FeeCollector { | |
address public owner; | |
uint256 public balance; | |
event TransferReceived(address _from, uint _amount); |