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
@Chmarusso
Chmarusso / FeeCollector.sol
Created October 4, 2021 16:05
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);