Skip to content

Instantly share code, notes, and snippets.

View IamTalha-Sajid's full-sized avatar
🚀
Working from home

Talha Sajid IamTalha-Sajid

🚀
Working from home
View GitHub Profile
@IamTalha-Sajid
IamTalha-Sajid / FeeCollector.sol
Created May 18, 2022 12:29 — forked from Chmarusso/FeeCollector.sol
Transfer ERC20 from contract
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);